[gentoo-commits] repo/gentoo:master commit in: net-misc/netsed/files/, net-misc/netsed/

2019-11-03 Thread Michał Górny
commit: 4eefc231b50b23b2b19af344630f0844ba856716
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov  4 07:48:03 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Nov  4 07:54:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eefc231

net-misc/netsed: Bump to 0.01c

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

 net-misc/netsed/Manifest |  1 +
 net-misc/netsed/files/netsed-0.01c-man.patch | 79 
 net-misc/netsed/netsed-0.01c.ebuild  | 29 ++
 3 files changed, 109 insertions(+)

diff --git a/net-misc/netsed/Manifest b/net-misc/netsed/Manifest
index e8a114c09dc..f70f0907f00 100644
--- a/net-misc/netsed/Manifest
+++ b/net-misc/netsed/Manifest
@@ -1,2 +1,3 @@
 DIST netsed-0.01b.tgz 6352 BLAKE2B 
0aa8ed9f282f32d139e50af1a1c8d1aae118ff6e892475774125b45c229707c40544199ea70708827636a50e43b8f652138b244cb2f3857c854d49018b996fb7
 SHA512 
edef6ef6e39a17a46a3b4d8019ba2e742b2b5852f804df5e952461a792e3ba7a49fcc33353abf7e532e51586927f28f4b7c6da4f4fbd34a32cdf093f26163dd7
+DIST netsed-0.01c.tgz 12987 BLAKE2B 
9d31a2cde79adc944f69cc2bf522a615201fd48dd1b46152b39368f36657ebebbfa5dbdecd91c965fb63d6e06a2a37317e005483a0c60be30a3ad178157418c2
 SHA512 
de1a1f38698cdcfa3b39975eb7b701abb97fd5035e306b63a6d5a459e4180cf8bb49dc2430acf4767e6d9f9c673f3e1e83040edfb8f331b9b1e10b0036058c57
 DIST netsed_0.01c-2.diff.gz 3140 BLAKE2B 
211c7f71a76b74fc47cc32dbd5e9ad05a2c7c67bd95de73b0bdb09249f245ab8b0190ee79b51cf1d2f2bc99cc0b7fdf8d358851fddafb2815adc640260122c77
 SHA512 
5a729e9800051449f7f52989cb65232e262ac6023f21b8ec688f3ce33ed4be79f9d00993aed7773d83dbe109927a5fc6c64e4775d4958136e5c891b6b82e6b83

diff --git a/net-misc/netsed/files/netsed-0.01c-man.patch 
b/net-misc/netsed/files/netsed-0.01c-man.patch
new file mode 100644
index 000..a35a88b87b0
--- /dev/null
+++ b/net-misc/netsed/files/netsed-0.01c-man.patch
@@ -0,0 +1,79 @@
+--- netsed-0.01c.orig/debian/netsed.1
 netsed-0.01c/debian/netsed.1
+@@ -0,0 +1,76 @@
++.TH NETSED 1 "June 23, 2001" NETSED
++.SH NAME
++netsed \- network packet stream editor
++.SH SYNOPSIS
++.B netsed
++.I proto lport rhost rport rule1
++.RI [ rule2 ] " " ...
++.SH DESCRIPTION
++NetSED is small and handful utility designed to alter the contents of
++packets forwarded thru your network in real time. It is really useful
++for network hackers in following applications:
++.TP
++.B black\-box protocol auditing
++whenever there are two or more propertiary boxes communicating over
++undocumented protocol (by enforcing changes in ongoing transmissions,
++you will be able to test if tested application is secure)
++.TP
++.B fuzz\-alike experiments, integrity tests
++whenever you want to test stability of the application and see how it
++ensures data integrity,
++.TP
++.B other common applications
++fooling other people, content filtering, etc etc \- choose whatever
++you want to.
++.LP
++It perfectly fits netgrep, netcat and tcpdump tools suite :P
++.SH OPTIONS
++.TP
++.B proto
++protocol specification (tcp or udp)
++.TP
++.B lport
++local port to listen on (see README for transparent traffic intercepting
++on some systems)
++.TP
++.B rhost
++where connection should be forwarded (0 = use destination address of
++incoming connection, see README)
++.TP
++.B rport
++destination port (0 = dst port of incoming connection)
++.TP
++.B rule\fIN\fR
++replacement rules (see below)
++.LP
++General replacement rules syntax: s/\fBpat1\fR/\fBpat2\fR\fI[/expire]\fR
++
++This will replace all occurences of \fBpat1\fR with \fBpat2\fR in matching
++packets. Additional parameter (count) can be used to expire rule after 'count'
++succesful substitutions. Eight\-bit characters, including NULL and '/', can
++be passed using HTTP\-alike hex escape sequences (eg. %0a%0d). Single '%'
++can be reached by using '%%'. Examples:
++.TP
++.B 's/andrew/mike/1'
++replace 'andrew' with 'mike' (once)
++.TP
++.B 's/andrew/mike'
++replace all occurences of 'andrew' with 'mike'
++.TP
++.B 's/andrew/mike%00'
++replace 'andrew' with 'mike\\x00\\x00' (to keep orig. size)
++.TP
++.B 's/%%/%2f/20'
++replace '%' with '/' in first 20 packets
++.LP
++Rules are not working on cross\-packet boundaries and are evaluated from
++first to last not expired rule.
++.SH SEE ALSO
++.BR ngrep (8),
++.BR nc (1),
++
++.BR /usr/share/doc/netsed/README.gz
++.SH AUTHOR
++\fBnetsed\fR was written by Michal Zalewski .
++
++This manual page was written by Gergely Nagy .

diff --git a/net-misc/netsed/netsed-0.01c.ebuild 
b/net-misc/netsed/netsed-0.01c.ebuild
new file mode 100644
index 000..979b23a2ae4
--- /dev/null
+++ b/net-misc/netsed/netsed-0.01c.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Small tool for altering forwarded network data in real time"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;

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

2019-11-03 Thread Michał Górny
commit: 208078cb7d0e799883da855caf96ba6d71496001
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Nov  4 07:23:59 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Nov  4 07:54:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=208078cb

xfce-extra/xfce4-time-out-plugin: Bump to 1.1.0

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

 xfce-extra/xfce4-time-out-plugin/Manifest  |  1 +
 .../xfce4-time-out-plugin-1.1.0.ebuild | 35 ++
 2 files changed, 36 insertions(+)

diff --git a/xfce-extra/xfce4-time-out-plugin/Manifest 
b/xfce-extra/xfce4-time-out-plugin/Manifest
index b5b3c66412e..19a626ac018 100644
--- a/xfce-extra/xfce4-time-out-plugin/Manifest
+++ b/xfce-extra/xfce4-time-out-plugin/Manifest
@@ -1 +1,2 @@
 DIST xfce4-time-out-plugin-1.0.3.tar.bz2 362390 BLAKE2B 
db7ba33a1d30dca7361d6ab6be5559786891273a36e00a028a0e27084d3fb4760af18f5cecc5c2edfd9a76640130ba4a4412d2228b26154f8b85173df360fa38
 SHA512 
c2080abef330e9f783b3e9c008a76d11bdbdfe1a666435237b6b06a50e93191a760441a9d343f24234eb4343b550009ed9e2101dbffbec3d8f53c562d4bb3cfc
+DIST xfce4-time-out-plugin-1.1.0.tar.bz2 395843 BLAKE2B 
cd5c49cc6bb31003803cc47b099847dc6d88bed9e36a7372b8d76b25a75bf28079afceda14ee235c724273cde2519fadb701bfd45995b10ea93b3d6b05cb359b
 SHA512 
03d27d98a3968daf93357556a5ca63641ceee3ce9f53db5287ce27a282d3f4a068a2c9be14d7690d4188901245521c03b68bb3fe39e1ed0e1f6a95eecc1dc846

diff --git 
a/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.1.0.ebuild 
b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.1.0.ebuild
new file mode 100644
index 000..ffc66edafa2
--- /dev/null
+++ b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.1.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="A panel plug-in to take periodical breaks from the computer"
+HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-time-out-plugin;
+SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+IUSE=""
+
+RDEPEND="x11-libs/libX11
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfce4-panel-4.12:="
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   virtual/pkgconfig"
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-workspace-wallpapers/

2019-11-03 Thread Andreas Sturmlechner
commit: aff5c6fb92c5a27facb4541c28506b32c469897d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov  3 22:54:11 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Nov  4 07:46:57 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=aff5c6fb

kde-plasma/plasma-workspace-wallpapers: Port away from kde5.eclass

This is using ECM, but on a very basic level.

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

 .../plasma-workspace-wallpapers-5.17.49..ebuild   | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git 
a/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.17.49..ebuild
 
b/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.17.49..ebuild
index f8a3dfac4c..eccdd355c1 100644
--- 
a/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.17.49..ebuild
+++ 
b/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.17.49..ebuild
@@ -3,15 +3,16 @@
 
 EAPI=7
 
-KDE_AUTODEPS="false"
-KDE_DEBUG="false"
-inherit kde5
+inherit kde.org
 
 DESCRIPTION="Wallpapers for the Plasma workspace"
+
+LICENSE="GPL-2"
+SLOT="5"
 KEYWORDS=""
 IUSE=""
 
 BDEPEND="
-   $(add_frameworks_dep extra-cmake-modules)
-   $(add_qt_dep qtcore)
+   dev-qt/qtcore:5
+   kde-frameworks/extra-cmake-modules:5
 "



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

2019-11-03 Thread Andreas Sturmlechner
commit: 413df0761d3135bd4a8dfa1328caa759443fbea4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov  3 22:51:18 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Nov  4 07:46:54 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=413df076

kde-apps/kdeedu-data: Port away from kde5.eclass

This is using ECM, but on a very basic level.

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

 kde-apps/kdeedu-data/kdeedu-data-19.08.49..ebuild | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/kde-apps/kdeedu-data/kdeedu-data-19.08.49..ebuild 
b/kde-apps/kdeedu-data/kdeedu-data-19.08.49..ebuild
index 9c381d8e4f..bcad874e9f 100644
--- a/kde-apps/kdeedu-data/kdeedu-data-19.08.49..ebuild
+++ b/kde-apps/kdeedu-data/kdeedu-data-19.08.49..ebuild
@@ -3,15 +3,16 @@
 
 EAPI=7
 
-KDE_AUTODEPS="false"
-KDE_DEBUG="false"
-inherit kde5
+inherit kde.org
 
 DESCRIPTION="Shared icons, artwork and data files for educational applications"
+
+LICENSE="GPL-2"
+SLOT="5"
 KEYWORDS=""
 IUSE=""
 
 BDEPEND="
-   $(add_frameworks_dep extra-cmake-modules)
-   $(add_qt_dep qtcore)
+   dev-qt/qtcore:5
+   kde-frameworks/extra-cmake-modules:5
 "



[gentoo-commits] proj/kde:master commit in: kde-plasma/breeze-grub/

2019-11-03 Thread Andreas Sturmlechner
commit: c83cb3ae8a58d7e9b128c2f74847f97e775f0eb1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov  3 22:53:48 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Nov  4 07:46:57 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=c83cb3ae

kde-plasma/breeze-grub: Port away from kde5.eclass

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

 kde-plasma/breeze-grub/breeze-grub-5.17.49..ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-plasma/breeze-grub/breeze-grub-5.17.49..ebuild 
b/kde-plasma/breeze-grub/breeze-grub-5.17.49..ebuild
index b54e11cfc2..9e6291db2e 100644
--- a/kde-plasma/breeze-grub/breeze-grub-5.17.49..ebuild
+++ b/kde-plasma/breeze-grub/breeze-grub-5.17.49..ebuild
@@ -3,12 +3,12 @@
 
 EAPI=7
 
-KDE_AUTODEPS="false"
-KDE_DEBUG="false"
-inherit kde5
+inherit kde.org
 
 DESCRIPTION="Breeze theme for GRUB"
+
 LICENSE="GPL-3+"
+SLOT="5"
 KEYWORDS=""
 IUSE=""
 



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

2019-11-03 Thread Tim Harder
commit: 5e37677b713225aa057053011f388abdbacd77f0
Author: Tim Harder  gentoo  org>
AuthorDate: Sat Nov  2 06:45:40 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Mon Nov  4 07:20:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e37677b

dev-util/pkgcheck: add perl use flag to live ebuild

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

 dev-util/pkgcheck/metadata.xml | 1 +
 dev-util/pkgcheck/pkgcheck-.ebuild | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-util/pkgcheck/metadata.xml b/dev-util/pkgcheck/metadata.xml
index 81566c254d1..72342d2b678 100644
--- a/dev-util/pkgcheck/metadata.xml
+++ b/dev-util/pkgcheck/metadata.xml
@@ -7,6 +7,7 @@


Enable support for network checks using 
dev-python/requests
+   Enable support for perl checks using 
dev-perl/Gentoo-PerlMod-Version


pkgcore/pkgcheck

diff --git a/dev-util/pkgcheck/pkgcheck-.ebuild 
b/dev-util/pkgcheck/pkgcheck-.ebuild
index f7ff040bf76..2899d8ff47a 100644
--- a/dev-util/pkgcheck/pkgcheck-.ebuild
+++ b/dev-util/pkgcheck/pkgcheck-.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/pkgcore/pkgcheck;
 
 LICENSE="BSD"
 SLOT="0"
-IUSE="doc network test"
+IUSE="doc network perl test"
 RESTRICT="!test? ( test )"
 
 if [[ ${PV} == * ]]; then
@@ -35,6 +35,7 @@ RDEPEND+="
dev-python/chardet[${PYTHON_USEDEP}]
dev-python/lxml[${PYTHON_USEDEP}]
network? ( dev-python/requests[${PYTHON_USEDEP}] )
+   perl? ( dev-perl/Gentoo-PerlMod-Version )
 "
 DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]



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

2019-11-03 Thread Tim Harder
commit: ca2fd81cab1e8d264e6d8c39e695a2d24091b380
Author: Tim Harder  gentoo  org>
AuthorDate: Wed Oct 23 17:25:17 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Mon Nov  4 07:20:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca2fd81c

media-sound/lilypond: drop myself as a maintainer

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

 media-sound/lilypond/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/media-sound/lilypond/metadata.xml 
b/media-sound/lilypond/metadata.xml
index 75dc5b8e883..a9cdf5b3658 100644
--- a/media-sound/lilypond/metadata.xml
+++ b/media-sound/lilypond/metadata.xml
@@ -1,10 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   radher...@gentoo.org
-   Tim Harder
-   

sch...@gentoo.org
Gentoo Scheme Project



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

2019-11-03 Thread Alfredo Tupone
commit: e8e6b26af6e31c4cd79903cda3830f2364247d09
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Mon Nov  4 06:59:09 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Mon Nov  4 06:59:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8e6b26a

dev-lang/spark: remove old version

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-lang/spark/Manifest  |  2 --
 dev-lang/spark/spark-2017.ebuild | 61 
 2 files changed, 63 deletions(-)

diff --git a/dev-lang/spark/Manifest b/dev-lang/spark/Manifest
index e73c276d0b1..8b779205964 100644
--- a/dev-lang/spark/Manifest
+++ b/dev-lang/spark/Manifest
@@ -1,4 +1,2 @@
-DIST gnat-gpl-2017-src.tar.gz 8783473 BLAKE2B 
b0415b42f4d3a5e8675591a5602ff0a96945670104064671a232c0c12271ee141a3a5d148b8507bdab83cb8a0677c57b78e690060088308c51732bad3715964f
 SHA512 
ae7314a2241107ed4d962dce08306eeb34c5f11e26183935bbb1ccf3a5eb011d6457c1b6fcded93dd0ee9ba31d791971ebe2a5a5a0ae04ff80d87a670325a098
 DIST gnat-gpl-2018-src.tar.gz 8706578 BLAKE2B 
ba245fd91cc5263d5b8c159d9e75caf6bed21dcaa5fa43734af8775a4008ce5f96bfb84a8b5e6e734ff883314ab3219dacec3fe95a5baa33fb712bfb5ff8bce8
 SHA512 
0ff7e848ef77f7e772e2a1b01905307a91c332f32329456f5238c4b7eb46cc118709e8682a5fc826d98a7d99fd15a92c194f4a278f04bc465165cfa616cc3c2e
-DIST spark-gpl-2017-src.tar.gz 19750595 BLAKE2B 
840eb9044b732aad16d2b6be9972e4805caf1e1b521ba40cc2a234871775d0212153ed9e9f84b4a2ddbeefc2b9c7d7556db943153655df6051cf4dc3f1be2e01
 SHA512 
90e7644daa6a935c839da9799c6dc5fe0a566f29c5f5d0a964ef5c888581f18c11adf6aa0151ae72437b91430fae06604dab8c3f1fd3222d749cfd330293ff6e
 DIST spark-gpl-2018-src.tar.gz 20244517 BLAKE2B 
efb8120a869eaf79aa513ea3b3393dcefdb548e66a00a630bfb9d28a59785c15362c111df3635423a7312c491c9929a7bcd8e7161607dc4d3acd6d1c27f3ca3e
 SHA512 
83490a95c2d6401bcd077a8ec508eaf18609b5b480ccd9f247f4bb61164b5e52e34473526cd49ebdf5fd15ac422ed4a121dc50cab96241db02af9e32812a4df8

diff --git a/dev-lang/spark/spark-2017.ebuild b/dev-lang/spark/spark-2017.ebuild
deleted file mode 100644
index be23d86d0c2..000
--- a/dev-lang/spark/spark-2017.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs multiprocessing
-
-MYP=${PN}-gpl-${PV}
-
-DESCRIPTION="Software development for high-reliability applications."
-HOMEPAGE="http://libre.adacore.com;
-SRC_URI="http://mirrors.cdn.adacore.com/art/591c4777c7a447af2deed05e
-   -> ${MYP}-src.tar.gz
-   http://mirrors.cdn.adacore.com/art/591adbb4c7a4473fcc4532a3
-   -> gnat-gpl-2017-src.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE=""
-
-RDEPEND="dev-lang/gnat-gpl:6.3.0
-   >=dev-ada/gnatcoll-2017[gnat_2017,projects,shared]
-   sci-mathematics/alt-ergo
-   sci-mathematics/why3-for-spark"
-DEPEND="${RDEPEND}
-   dev-ada/gprbuild[gnat_2017]"
-
-S="${WORKDIR}"/${MYP}-src
-
-PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
-
-src_prepare() {
-   ln -sf "${WORKDIR}"/gnat-gpl-2017-src/src/ada gnat2why/gnat_src || die
-   GCC_PV=6.3.0
-   sed -i \
-   -e "s:gnatmake:gnatmake-${GCC_PV}:g" \
-   -e "s:gnatls:gnatls-${GCC_PV}:g" \
-   Makefile \
-   gnat2why/Makefile || die
-   default
-}
-
-src_compile() {
-   emake GPRARGS="-XLIBRARY_TYPE=relocatable" gnat2why
-   emake PROD="-XLIBRARY_TYPE=relocatable" gnatprove
-}
-
-src_install() {
-   emake INSTALLDIR="${D}"/usr install
-   einstalldocs
-   dosym ../../../lib64/why3/why3server /usr/libexec/spark/bin/why3server
-   dobin install/bin/gnatprove
-   mv install/share/doc/spark/* "${D}"/usr/share/doc/${PF} || die
-   exeinto /usr/libexec/spark/bin
-   doexe install/bin/gnat2why
-   doexe install/bin/spark_memcached_wrapper
-   doexe install/bin/spark_report
-   doexe install/bin/spark_codepeer_wrapper
-   mv "${D}"/usr/bin/target.atp "${D}"/usr/libexec/spark/bin || die
-}



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

2019-11-03 Thread Hans de Graaff
commit: 73c95ce41b3cbb49cf2848aed1fff842dc71b764
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Nov  4 06:24:12 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Nov  4 06:33:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73c95ce4

dev-ruby/combustion: add 1.1.2

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

 dev-ruby/combustion/Manifest|  1 +
 dev-ruby/combustion/combustion-1.1.2.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-ruby/combustion/Manifest b/dev-ruby/combustion/Manifest
index b90d6b52c2e..7ce06805858 100644
--- a/dev-ruby/combustion/Manifest
+++ b/dev-ruby/combustion/Manifest
@@ -1,2 +1,3 @@
 DIST combustion-1.1.0.gem 18432 BLAKE2B 
32e3c124d21c9fe96e00bab6e600bb0fd40dc998fa72a5256f5f59fce96f6ea7070238b5d0e5668b828abdf6dee3a03b78d750d8695a6e48d1164d4207753320
 SHA512 
d948a0235fbf5dff32c7e448426ec7bf361bad63aeee771ead0030143914bbb33afe6a7e6092e227ff4684bf312ed9194f0f27d71c979b2abdfb13f0e5069158
 DIST combustion-1.1.1.gem 18432 BLAKE2B 
e9e5a8dd5e4bfd865be3ff168c7403b7fa7ff6af9b6bd380bbfb02d8ffbaf9e4f820ecfb71cba58256a6fda64ee702f2159c970c9031722ccc2a4d2f365eafaa
 SHA512 
559b34dfbc501c4be014fbfb6e3f8f61ca25b6ed2551da6bfc258be41161c5249e98e64faacbd9bd754d40c3a3f67d33eeadfe75624519cc4293f7528a7bea16
+DIST combustion-1.1.2.gem 18432 BLAKE2B 
0a8aa7b418b19cc5e75957850670cc01d3d400dd4073ce0771d3070d4a3f518ab8540b70a89eb5c345e2086418b12a807bc072b17ea83dfd10258bd8b2bdee95
 SHA512 
ab9358bb68b5797830c73c3b66021cbfebc71d927d581622909e47bff56240df7cbd1bb2f4b70743d13d1f178f27b9cd5ab6bf964704eeeff4367025b0991633

diff --git a/dev-ruby/combustion/combustion-1.1.2.ebuild 
b/dev-ruby/combustion/combustion-1.1.2.ebuild
new file mode 100644
index 000..e468a5cef19
--- /dev/null
+++ b/dev-ruby/combustion/combustion-1.1.2.ebuild
@@ -0,0 +1,24 @@
+# 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_TASK_TEST=""
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Elegant Rails Engine Testing"
+HOMEPAGE="https://github.com/pat/combustion;
+LICENSE="MIT"
+
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/activesupport-3.0.0:*
+   >=dev-ruby/railties-3.0.0:*
+   >=dev-ruby/thor-0.14.6
+"



[gentoo-commits] data/api:master commit in: files/

2019-11-03 Thread Joonas Niilola
commit: 9b907a6aa89c7f5ef1f4e21be65d163a6da05806
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Nov  4 06:26:21 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 06:26:21 2019 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=9b907a6a

uid-gid.txt: add mongodb UID+GID (481)

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

 files/uid-gid.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/files/uid-gid.txt b/files/uid-gid.txt
index bd1d23a..6b705af 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -205,6 +205,7 @@ vdradmin453 453 requested
 deluge 454 454 acct
 mogilefs   460 -   user.eclass
 i2pd   470 470 acct
+mongodb481 481 acct
 mosquitto  482 482 acct
 bitcoin483 483 acct
 ipfs   484 484 acct



[gentoo-commits] data/api:master commit in: files/

2019-11-03 Thread Joonas Niilola
commit: 9e7c3662b69994a809e33b24018925700504baa4
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Nov  4 06:28:01 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 06:28:01 2019 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=9e7c3662

uid-gid.txt: add tox UID+GID (236)

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

 files/uid-gid.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/files/uid-gid.txt b/files/uid-gid.txt
index 6b705af..35af398 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -174,6 +174,7 @@ uptimed 220 220 acct
 gkrellmd   221 221 acct
 msmtpd 222 222 acct
 nsd223 223 acct
+tox236 236 acct
 distcc 240 -   user.eclass
 slocate-   245 historical  Removed from 
baselayout in 
[r1328](https://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/share.Linux/group?limit_changes=0=1319=1328=2545)
 portage250 250 baselayout



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

2019-11-03 Thread Joonas Niilola
commit: 91ef50928a5ec25d8fcf4ea17b105ee8e6ae938e
Author: Hank Leininger  korelogic  com>
AuthorDate: Sat Oct 26 22:46:45 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 05:42:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91ef5092

net-firewall/fwknop: Version bump to 2.6.10.

Also changed SRC_URI to the main upstream site because github
mangles the .tar.gz to break upstream's PGP signature.

Signed-off-by: Hank Leininger  korelogic.com>
Bug: https://bugs.gentoo.org/698604
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Joonas Niilola  gentoo.org>

 net-firewall/fwknop/Manifest |   1 +
 net-firewall/fwknop/fwknop-2.6.10.ebuild | 130 +++
 2 files changed, 131 insertions(+)

diff --git a/net-firewall/fwknop/Manifest b/net-firewall/fwknop/Manifest
index 27210436a6a..d49b6b5fc1a 100644
--- a/net-firewall/fwknop/Manifest
+++ b/net-firewall/fwknop/Manifest
@@ -1 +1,2 @@
+DIST fwknop-2.6.10.tar.gz 1988197 BLAKE2B 
d4c2010c64ab160f0edc02e2b1530749ee47ff6ed16d6b556d366daef7ce5e22ef38fbbbf6e8cfaa14e0d9706ba2b65937b03c70b54b3429ff1732ae33c1852c
 SHA512 
3b3e35eda574abd1759431c88677eea7078c54cb3252c0ee0e1019b5b8224ed8844d30760da70a952e1cd92b04715a547f6effabda54678f791fff9afa32cd80
 DIST fwknop-2.6.9.tar.gz 3043542 BLAKE2B 
11440fa0fe5e990a269587fa9ee1da0242f3dc939d6dc185d6adff9e9c995a8ffe902a6351a057c619cb6ff056519caea38f7b865978fe5ac810a39281bb3fc3
 SHA512 
4706560d44c911c8604059d88dded9c1b8c99d90ec7dc366c0fba96c79680bdbf1b8b5e76cc34aaf3a1e58fff80db8f5f20c96d57481bdb476a9b99f4d1b

diff --git a/net-firewall/fwknop/fwknop-2.6.10.ebuild 
b/net-firewall/fwknop/fwknop-2.6.10.ebuild
new file mode 100644
index 000..41a07f7c1a8
--- /dev/null
+++ b/net-firewall/fwknop/fwknop-2.6.10.ebuild
@@ -0,0 +1,130 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# Python extension supports only Python 2.
+# See https://github.com/mrash/fwknop/issues/167
+PYTHON_COMPAT=( python2_7 )
+DISTUTILS_OPTIONAL=1
+
+inherit autotools distutils-r1 eutils linux-info readme.gentoo-r1 systemd
+
+DESCRIPTION="Single Packet Authorization and Port Knocking application"
+HOMEPAGE="https://www.cipherdyne.org/fwknop/;
+SRC_URI="https://www.cipherdyne.org/fwknop/download/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+client extras firewalld gdbm gpg +iptables nfqueue python +server 
udp-server"
+
+DEPEND="
+   client? ( net-misc/wget[ssl] )
+   firewalld? ( net-firewall/firewalld[${PYTHON_USEDEP}] )
+   gdbm? ( sys-libs/gdbm )
+   gpg? (
+   app-crypt/gpgme
+   dev-libs/libassuan
+   dev-libs/libgpg-error
+   )
+   iptables? ( net-firewall/iptables )
+   nfqueue? ( net-libs/libnetfilter_queue )
+   python? ( ${PYTHON_DEPS} )
+   server? ( !nfqueue? ( !udp-server? ( net-libs/libpcap ) ) )
+"
+RDEPEND="${DEPEND}"
+
+REQUIRED_USE="
+   nfqueue? ( server )
+   python? ( ${PYTHON_REQUIRED_USE} )
+   server? ( ^^ ( firewalld iptables ) )
+   udp-server? ( server )
+"
+
+DOCS=( AUTHORS ChangeLog README )
+
+DISABLE_AUTOFORMATTING=1
+DOC_CONTENTS="
+Example configuration files were installed to '${EPREFIX}/etc/fwknopd/'.
+Please edit them to suit your needs and then remove the .example suffix.
+
+fwknopd supports several backends: firewalld, iptables, ipfw, pf, ipf.
+You can set the desired backend via FIREWALL_EXE option in fwknopd.conf
+instead of the default one chosen at compile time.
+"
+
+src_prepare() {
+   default_src_prepare
+
+   # Install example configs with .example suffix.
+   if use server; then
+   sed -i -e 's|conf;|conf.example;|g' Makefile.am || die
+   fi
+
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   --localstatedir="${EPREFIX}/run"
+   $(use_enable client)
+   $(use_enable !gdbm file-cache)
+   $(use_enable nfqueue nfq-capture)
+   $(use_enable server)
+   $(use_enable udp-server)
+   $(use_with gpg gpgme)
+   )
+   use firewalld && 
myeconfargs+=(--with-firewalld="${EPREFIX}/usr/sbin/firewalld")
+   use iptables && 
myeconfargs+=(--with-iptables="${EPREFIX}/sbin/iptables")
+
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default_src_install
+
+   if use extras; then
+   dodoc extras/apparmor/usr.sbin.fwknopd
+   dodoc extras/console-qr/console-qr.sh
+   dodoc extras/fwknop-launcher/*
+   fi
+
+   if use server; then
+   newinitd "${FILESDIR}/fwknopd.init" fwknopd
+   newconfd "${FILESDIR}/fwknopd.confd" fwknopd
+   systemd_dounit "${FILESDIR}/fwknopd.service"
+   systemd_newtmpfilesd "${FILESDIR}/fwknopd.tmpfiles.conf" 
fwknopd.conf
+   

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

2019-11-03 Thread Joonas Niilola
commit: dd4d42a62e084fd57566197ea94009e06b55983e
Author: Tomas Mozes  gmail  com>
AuthorDate: Sat Nov  2 20:04:55 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 06:22:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd4d42a6

dev-db/mongodb: use dedicated acct-{group,user} packages

Closes: https://bugs.gentoo.org/698152
Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13529
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-db/mongodb/mongodb-3.6.14.ebuild | 14 +-
 dev-db/mongodb/mongodb-4.0.13.ebuild | 13 -
 dev-db/mongodb/mongodb-4.2.1.ebuild  | 13 -
 3 files changed, 13 insertions(+), 27 deletions(-)

diff --git a/dev-db/mongodb/mongodb-3.6.14.ebuild 
b/dev-db/mongodb/mongodb-3.6.14.ebuild
index a1ca3bf944f..b63d5ceeb56 100644
--- a/dev-db/mongodb/mongodb-3.6.14.ebuild
+++ b/dev-db/mongodb/mongodb-3.6.14.ebuild
@@ -10,7 +10,7 @@ CHECKREQS_DISK_BUILD="2400M"
 CHECKREQS_DISK_USR="512M"
 CHECKREQS_MEMORY="1024M"
 
-inherit check-reqs flag-o-matic multiprocessing pax-utils python-any-r1 
scons-utils systemd toolchain-funcs user
+inherit check-reqs flag-o-matic multiprocessing pax-utils python-any-r1 
scons-utils systemd toolchain-funcs
 
 MY_P=${PN}-src-r${PV/_rc/-rc}
 
@@ -23,7 +23,9 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE="debug kerberos libressl lto mms-agent ssl test +tools"
 
-RDEPEND=">=app-arch/snappy-1.1.3
+RDEPEND="acct-group/mongodb
+   acct-user/mongodb
+   >=app-arch/snappy-1.1.3
>=dev-cpp/yaml-cpp-0.5.3:=
>=dev-libs/boost-1.60:=[threads(+)]
>=dev-libs/libpcre-8.41[cxx]
@@ -54,6 +56,7 @@ PDEPEND="tools? ( >=app-admin/mongo-tools-${PV} )"
 PATCHES=(
"${FILESDIR}/${PN}-3.6.1-fix-scons.patch"
"${FILESDIR}/${PN}-3.6.1-no-compass.patch"
+   "${FILESDIR}/${PN}-4.0.12-boost-1.71-cxxabi-include.patch"
 )
 
 S="${WORKDIR}/${MY_P}"
@@ -70,13 +73,6 @@ pkg_pretend() {
fi
 }
 
-pkg_setup() {
-   enewgroup mongodb
-   enewuser mongodb -1 -1 /var/lib/${PN} mongodb
-
-   python-any-r1_pkg_setup
-}
-
 src_prepare() {
default
 

diff --git a/dev-db/mongodb/mongodb-4.0.13.ebuild 
b/dev-db/mongodb/mongodb-4.0.13.ebuild
index d549bea6ba8..74236bf4fa1 100644
--- a/dev-db/mongodb/mongodb-4.0.13.ebuild
+++ b/dev-db/mongodb/mongodb-4.0.13.ebuild
@@ -10,7 +10,7 @@ CHECKREQS_DISK_BUILD="2400M"
 CHECKREQS_DISK_USR="512M"
 CHECKREQS_MEMORY="1024M"
 
-inherit check-reqs flag-o-matic multiprocessing pax-utils python-any-r1 
scons-utils systemd toolchain-funcs user
+inherit check-reqs flag-o-matic multiprocessing pax-utils python-any-r1 
scons-utils systemd toolchain-funcs
 
 MY_P=${PN}-src-r${PV/_rc/-rc}
 
@@ -23,7 +23,9 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE="debug kerberos libressl lto mms-agent ssl test +tools"
 
-RDEPEND=">=app-arch/snappy-1.1.3
+RDEPEND="acct-group/mongodb
+   acct-user/mongodb
+   >=app-arch/snappy-1.1.3
>=dev-cpp/yaml-cpp-0.5.3:=
>=dev-libs/boost-1.60:=[threads(+)]
>=dev-libs/libpcre-8.41[cxx]
@@ -71,13 +73,6 @@ pkg_pretend() {
fi
 }
 
-pkg_setup() {
-   enewgroup mongodb
-   enewuser mongodb -1 -1 /var/lib/${PN} mongodb
-
-   python-any-r1_pkg_setup
-}
-
 src_prepare() {
default
 

diff --git a/dev-db/mongodb/mongodb-4.2.1.ebuild 
b/dev-db/mongodb/mongodb-4.2.1.ebuild
index 3feef0be5a7..cdd1a9ed1be 100644
--- a/dev-db/mongodb/mongodb-4.2.1.ebuild
+++ b/dev-db/mongodb/mongodb-4.2.1.ebuild
@@ -10,7 +10,7 @@ CHECKREQS_DISK_BUILD="2400M"
 CHECKREQS_DISK_USR="512M"
 CHECKREQS_MEMORY="1024M"
 
-inherit check-reqs flag-o-matic multiprocessing pax-utils python-any-r1 
scons-utils systemd toolchain-funcs user
+inherit check-reqs flag-o-matic multiprocessing pax-utils python-any-r1 
scons-utils systemd toolchain-funcs
 
 MY_P=${PN}-src-r${PV/_rc/-rc}
 
@@ -23,7 +23,9 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE="debug kerberos libressl lto ssl test +tools"
 
-RDEPEND=">=app-arch/snappy-1.1.3
+RDEPEND="acct-group/mongodb
+   acct-user/mongodb
+   >=app-arch/snappy-1.1.3
>=dev-cpp/yaml-cpp-0.6.2:=
>=dev-libs/boost-1.70:=[threads(+)]
>=dev-libs/libpcre-8.42[cxx]
@@ -71,13 +73,6 @@ pkg_pretend() {
fi
 }
 
-pkg_setup() {
-   enewgroup mongodb
-   enewuser mongodb -1 -1 /var/lib/${PN} mongodb
-
-   python-any-r1_pkg_setup
-}
-
 src_prepare() {
default
 



[gentoo-commits] repo/gentoo:master commit in: acct-group/tox/

2019-11-03 Thread Joonas Niilola
commit: 443d8ad0e6d050e6bfe00a953bb9f9b69b42740f
Author: Josiah Mullins  protonmail  com>
AuthorDate: Sat Oct 19 01:46:46 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 06:07:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=443d8ad0

acct-group/tox: new package

This commit will add a package that will allow net-liba/tox
to be compliant with GLEP 81.

Signed-off-by: Josiah Mullins  protonmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 acct-group/tox/metadata.xml | 12 
 acct-group/tox/tox-0.ebuild |  7 +++
 2 files changed, 19 insertions(+)

diff --git a/acct-group/tox/metadata.xml b/acct-group/tox/metadata.xml
new file mode 100644
index 000..5dbf5facde3
--- /dev/null
+++ b/acct-group/tox/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   jomul...@protonmail.com
+   Josiah Mullins
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+

diff --git a/acct-group/tox/tox-0.ebuild b/acct-group/tox/tox-0.ebuild
new file mode 100644
index 000..11d5972c889
--- /dev/null
+++ b/acct-group/tox/tox-0.ebuild
@@ -0,0 +1,7 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit acct-group
+DESCRIPTION="Group management for package net-libs/tox"
+ACCT_GROUP_ID=236 #day-month of first commit of tox (23-6-13).



[gentoo-commits] repo/gentoo:master commit in: acct-user/mongodb/

2019-11-03 Thread Joonas Niilola
commit: 170e80b5d328db487ff52907edc503fcd8aa60a9
Author: Tomas Mozes  gmail  com>
AuthorDate: Sat Nov  2 19:59:43 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 06:22:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=170e80b5

acct-user/mongodb: new group package for UID 481

Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 acct-user/mongodb/metadata.xml | 16 
 acct-user/mongodb/mongodb-0.ebuild | 13 +
 2 files changed, 29 insertions(+)

diff --git a/acct-user/mongodb/metadata.xml b/acct-user/mongodb/metadata.xml
new file mode 100644
index 000..91e6ec60546
--- /dev/null
+++ b/acct-user/mongodb/metadata.xml
@@ -0,0 +1,16 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   ultra...@gentoo.org
+   Alexys Jacob
+   
+   
+   hydrapo...@gmail.com
+   Tomáš Mózes
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+

diff --git a/acct-user/mongodb/mongodb-0.ebuild 
b/acct-user/mongodb/mongodb-0.ebuild
new file mode 100644
index 000..e639a601074
--- /dev/null
+++ b/acct-user/mongodb/mongodb-0.ebuild
@@ -0,0 +1,13 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-user
+
+DESCRIPTION="MongoDB program user"
+ACCT_USER_ID=481
+ACCT_USER_HOME=/var/lib/mongodb
+ACCT_USER_HOME_PERMS=0750
+ACCT_USER_GROUPS=( mongodb )
+acct-user_add_deps



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

2019-11-03 Thread Joonas Niilola
commit: a47abb026819595dce5d2577476a74dab8afe745
Author: Diogo Pereira  gmail  com>
AuthorDate: Fri Nov  1 14:42:55 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 06:19:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a47abb02

net-misc/remmina: remove myself as maintainer

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Diogo Pereira  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13516
Signed-off-by: Joonas Niilola  gentoo.org>

 net-misc/remmina/metadata.xml | 8 
 1 file changed, 8 deletions(-)

diff --git a/net-misc/remmina/metadata.xml b/net-misc/remmina/metadata.xml
index f55944dc7cb..253b4e8ff61 100644
--- a/net-misc/remmina/metadata.xml
+++ b/net-misc/remmina/metadata.xml
@@ -1,14 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   sir.su...@gmail.com
-   Diogo Pereira
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   

bkoh...@gentoo.org
Ben Kohler



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

2019-11-03 Thread Joonas Niilola
commit: 5c35a8973d5f0bf40d7c65b9b252f1929fb0018f
Author: Hank Leininger  korelogic  com>
AuthorDate: Sat Nov  2 18:22:16 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 05:42:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c35a897

net-firewall/fwknop: Added myself as a proxy maintainer.

Signed-off-by: Hank Leininger  korelogic.com>
Closes: https://bugs.gentoo.org/698604
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Closes: https://github.com/gentoo/gentoo/pull/13457
Signed-off-by: Joonas Niilola  gentoo.org>

 net-firewall/fwknop/metadata.xml | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/net-firewall/fwknop/metadata.xml b/net-firewall/fwknop/metadata.xml
index 096122a1ea1..abed2bc853d 100644
--- a/net-firewall/fwknop/metadata.xml
+++ b/net-firewall/fwknop/metadata.xml
@@ -1,7 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   hl...@korelogic.com
+   Hank Leininger
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

Build fwknop client
Install utility scripts and AppArmor policy 
for fwknopd



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

2019-11-03 Thread Joonas Niilola
commit: 0264d76cab957b25e3561c40bb45a738f38bc702
Author: Ralph Seichter  seichter  de>
AuthorDate: Thu Oct 31 16:25:48 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 05:34:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0264d76c

www-servers/nginx-unit: Support AR build variable

The upstream build currently does not support $AR. This ebuild
patches autoconf files to remedy the issue.

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

 www-servers/nginx-unit/files/auto-make.patch   |  14 +++
 www-servers/nginx-unit/files/auto-os-conf.patch| 109 +
 www-servers/nginx-unit/nginx-unit-1.12.0-r3.ebuild |  79 +++
 3 files changed, 202 insertions(+)

diff --git a/www-servers/nginx-unit/files/auto-make.patch 
b/www-servers/nginx-unit/files/auto-make.patch
new file mode 100644
index 000..9a157ed6a86
--- /dev/null
+++ b/www-servers/nginx-unit/files/auto-make.patch
@@ -0,0 +1,14 @@
+--- a/auto/make2019-10-03 16:08:32.0 +0200
 b/auto/make2019-10-31 16:57:43.354566956 +0100
+@@ -13,10 +13,9 @@
+ 
+ cat << END > $NXT_MAKEFILE
+ 
++AR =  $AR
+ CC =  $CC
+ 
+-CFLAGS =  $NXT_CFLAGS $NXT_CC_OPT $CFLAGS
+-
+ NXT_EXEC_LINK =   $NXT_EXEC_LINK $NXT_LD_OPT
+ NXT_SHARED_LOCAL_LINK =   $NXT_SHARED_LOCAL_LINK $NXT_LD_OPT
+ NXT_MODULE_LINK = $NXT_MODULE_LINK

diff --git a/www-servers/nginx-unit/files/auto-os-conf.patch 
b/www-servers/nginx-unit/files/auto-os-conf.patch
new file mode 100644
index 000..e1d6775f935
--- /dev/null
+++ b/www-servers/nginx-unit/files/auto-os-conf.patch
@@ -0,0 +1,109 @@
+--- a/auto/os/conf 2019-10-31 17:17:33.194445276 +0100
 b/auto/os/conf 2019-10-31 17:19:51.780033224 +0100
+@@ -21,7 +21,7 @@
+ Linux)
+ nxt_have=NXT_LINUX . auto/have
+ 
+-NXT_STATIC_LINK="ar -r -c"
++NXT_STATIC_LINK="\$(AR) -r -c"
+ NXT_SHARED_LINK="\$(CC) -shared -Wl,-soname,libnxt.so"
+ NXT_SHARED_LOCAL_LINK="\$(CC) -shared \
+-Wl,-soname,\\\$\$ORIGIN/libnxt.so"
+@@ -44,7 +44,7 @@
+ FreeBSD)
+ nxt_have=NXT_FREEBSD . auto/have
+ 
+-NXT_STATIC_LINK="ar -r -c"
++NXT_STATIC_LINK="\$(AR) -r -c"
+ NXT_SHARED_LINK="\$(CC) -shared -Wl,-soname,libnxt.so"
+ NXT_SHARED_LOCAL_LINK="\$(CC) -shared \
+-Wl,-soname,\\\$\$ORIGIN/libnxt.so"
+@@ -71,14 +71,14 @@
+ case "$NXT_CC_NAME" in
+ 
+ SunC):
+-NXT_STATIC_LINK="ar -r -c"
++NXT_STATIC_LINK="\$(AR) -r -c"
+ NXT_SHARED_LINK="\$(CC) -G -h libnxt.so"
+ NXT_SHARED_LOCAL_LINK="\$(CC) -G -h \\\$\$ORIGIN/libnxt.so"
+ NXT_MODULE_LINK="\$(CC) -G"
+ ;;
+ 
+ *)
+-NXT_STATIC_LINK="ar -r -c"
++NXT_STATIC_LINK="\$(AR) -r -c"
+ NXT_SHARED_LINK="\$(CC) -shared -Wl,-soname,libnxt.so"
+ NXT_SHARED_LOCAL_LINK="\$(CC) -shared \
+-Wl,-soname,\\\$\$ORIGIN/libnxt.so"
+@@ -106,7 +106,7 @@
+ # HFS+ volumes are caseless by default.
+ nxt_have=NXT_HAVE_CASELESS_FILESYSTEM . auto/have
+ 
+-NXT_STATIC_LINK="ar -r -c"
++NXT_STATIC_LINK="\$(AR) -r -c"
+ NXT_SHARED_LINK="\$(CC) -dynamiclib"
+ NXT_SHARED_LOCAL_LINK="\$(CC) -dynamiclib \
+-install_name @executable_path/libnxt.dylib"
+@@ -130,7 +130,7 @@
+ NetBSD)
+ nxt_have=NXT_NETBSD . auto/have
+ 
+-NXT_STATIC_LINK="ar -r -c"
++NXT_STATIC_LINK="\$(AR) -r -c"
+ NXT_SHARED_LINK="\$(CC) -shared"
+ NXT_SHARED_LOCAL_LINK="\$(CC) -shared"
+ NXT_MODULE_LINK="\$(CC) -shared"
+@@ -152,7 +152,7 @@
+ OpenBSD)
+ nxt_have=NXT_OPENBSD . auto/have
+ 
+-NXT_STATIC_LINK="ar -r -c"
++NXT_STATIC_LINK="\$(AR) -r -c"
+ NXT_SHARED_LINK="\$(CC) -shared"
+ NXT_SHARED_LOCAL_LINK="\$(CC) -shared"
+ NXT_MODULE_LINK="\$(CC) -shared"
+@@ -174,7 +174,7 @@
+ DragonFly)
+ nxt_have=NXT_DRAGONFLY . auto/have
+ 
+-NXT_STATIC_LINK="ar -r -c"
++NXT_STATIC_LINK="\$(AR) -r -c"
+ NXT_SHARED_LINK="\$(CC) -shared"
+ NXT_SHARED_LOCAL_LINK="\$(CC) -shared"
+ NXT_MODULE_LINK="\$(CC) -shared"
+@@ -196,7 +196,7 @@
+ AIX)
+ nxt_have=NXT_AIX . auto/have
+ 
+-NXT_STATIC_LINK="ar -r -c"
++NXT_STATIC_LINK="\$(AR) -r -c"
+ NXT_SHARED_LINK="\$(CC) -G"
+ NXT_SHARED_LOCAL_LINK="\$(CC) -G"
+ NXT_MODULE_LINK="\$(CC) -G"
+@@ -220,7 +220,7 @@
+ NXT_EXEC_LINK="\$(CC)"
+ 

[gentoo-commits] repo/gentoo:master commit in: acct-user/tox/

2019-11-03 Thread Joonas Niilola
commit: 5fb3202c71a57851398b7df7f7521e158048727e
Author: Josiah Mullins  protonmail  com>
AuthorDate: Sat Oct 19 01:50:27 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 06:07:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fb3202c

acct-user/tox: new package

This commit will add a package that will allow net-libs/tox
to be compliant with GLEP 81.

Signed-off-by: Josiah Mullins  protonmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 acct-user/tox/metadata.xml | 12 
 acct-user/tox/tox-0.ebuild | 13 +
 2 files changed, 25 insertions(+)

diff --git a/acct-user/tox/metadata.xml b/acct-user/tox/metadata.xml
new file mode 100644
index 000..5dbf5facde3
--- /dev/null
+++ b/acct-user/tox/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   jomul...@protonmail.com
+   Josiah Mullins
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+

diff --git a/acct-user/tox/tox-0.ebuild b/acct-user/tox/tox-0.ebuild
new file mode 100644
index 000..35678586fa8
--- /dev/null
+++ b/acct-user/tox/tox-0.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-user
+
+DESCRIPTION="User for package net-libs/tox"
+
+ACCT_USER_ID=236 #day-month of first tox commit
+ACCT_USER_GROUPS=( tox )
+
+acct-user_add_deps



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

2019-11-03 Thread Joonas Niilola
commit: dbcbb9582bd42c7f60577af77213febd693599c0
Author: Josiah Mullins  protonmail  com>
AuthorDate: Sat Nov  2 23:24:42 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 06:07:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbcbb958

net-libs/tox: bump to 0.2.10

This commit will update tox to version 0.2.10. It also brings
tox into compliance with GLEP 81.

Signed-off-by: Josiah Mullins  protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12638
Signed-off-by: Joonas Niilola  gentoo.org>

 net-libs/tox/Manifest  |   1 +
 net-libs/tox/tox-0.2.10.ebuild | 115 +
 2 files changed, 116 insertions(+)

diff --git a/net-libs/tox/Manifest b/net-libs/tox/Manifest
index d9048b81122..4aecac3f229 100644
--- a/net-libs/tox/Manifest
+++ b/net-libs/tox/Manifest
@@ -1,2 +1,3 @@
+DIST c-toxcore-0.2.10.tar.gz 515842 BLAKE2B 
8e79f9a5045b5fef7825e5eb21644625607d86e472ec75ff45ff826712efa515682f9439181d52444b2a6a21472c6e78a3bea5bb7e356373faf733e2644a315d
 SHA512 
8a6a78c52a67be0b727d0d3a8d1cece20ad716a2e694df0aa747eee7764f64c957458584f59db5e727a9803ed7b21adc1ad8d7e80fd6651e7774ca3504b38fc7
 DIST c-toxcore-0.2.8.tar.gz 502907 BLAKE2B 
0ca2c861b3cd982b471fac5cf8bdacd21c3248118846cc17e51f33ba04cf3da12a64578744e47daa27bb8613762a6f562eb550f0b7af05a66696412f6d0a6360
 SHA512 
a23a87a74fe97091b00ea76676a22578ed1e2426ac777146bb6efc984f1bfd3fff0d7fb149691155b8e2db56e1e088a1884536e5b717ff5c45a87b437f275735
 DIST c-toxcore-0.2.9.tar.gz 510806 BLAKE2B 
e67bdb86757d1431cc9d627dbc9afa9f54c3deb7814b38c2126849d10e9225aa58d2b23d175622678be74894ea197d3084719422a605d95eb4c55c4597a79f98
 SHA512 
917826a906a9ca4f04f34494616b8e36ec9e74c6b0709c50e8fe2dd9da680d170013fef242a3fe1b834e8e54cd2dde6be1c14e5d977f8531436ef34280bc3966

diff --git a/net-libs/tox/tox-0.2.10.ebuild b/net-libs/tox/tox-0.2.10.ebuild
new file mode 100644
index 000..11d676ea613
--- /dev/null
+++ b/net-libs/tox/tox-0.2.10.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils systemd
+
+MY_P="c-toxcore-${PV}"
+DESCRIPTION="Encrypted P2P, messaging, and audio/video calling platform"
+HOMEPAGE="https://tox.chat;
+SRC_URI="https://github.com/TokTok/c-toxcore/archive/v${PV}.tar.gz -> 
${MY_P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0/0.2"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="+av daemon dht-node ipv6 log-debug +log-error log-info log-trace 
log-warn static-libs test"
+
+REQUIRED_USE="?? ( log-debug log-error log-info log-trace log-warn )
+   daemon? ( dht-node )"
+RESTRICT="!test? ( test )"
+
+BDEPEND="virtual/pkgconfig"
+
+DEPEND="
+   >dev-libs/libsodium-0.6.1:=[asm,urandom,-minimal]
+   av? (
+   media-libs/libvpx
+   media-libs/opus
+   )
+   daemon? ( dev-libs/libconfig )"
+RDEPEND="
+   ${DEPEND}
+   daemon? (
+   acct-group/tox
+   acct-user/tox
+   )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   cmake-utils_src_prepare
+   #remove faulty tests
+   for testname in bootstrap lan_discovery save_compatibility tcp_relay 
tox_many_tcp; do
+   sed -i -e "/^auto_test(${testname})$/d" CMakeLists.txt || die
+   done
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DAUTOTEST=$(usex test)
+   -DBOOTSTRAP_DAEMON=$(usex daemon)
+   -DBUILD_MISC_TESTS=$(usex test)
+   -DBUILD_TOXAV=$(usex av)
+   -DDHT_BOOTSTRAP=$(usex dht-node)
+   -DENABLE_SHARED=ON
+   -DENABLE_STATIC=$(usex static-libs)
+   -DMUST_BUILD_TOXAV=$(usex av))
+   if use test; then
+   mycmakeargs+=(
+   -DBUILD_AV_TEST=$(usex av)
+   -DTEST_TIMEOUT_SECONDS=120
+   -DUSE_IPV6=$(usex ipv6))
+   else
+   mycmakeargs+=(
+   -DBUILD_AV_TEST=OFF
+   -DUSE_IPV6=OFF)
+   fi
+
+   if use log-trace; then
+   mycmakeargs+=(-DMIN_LOGGER_LEVEL="TRACE")
+   elif use log-debug; then
+   mycmakeargs+=(-DMIN_LOGGER_LEVEL="DEBUG")
+   elif use log-info; then
+   mycmakeargs+=(-DMIN_LOGGER_LEVEL="INFO")
+   elif use log-warn; then
+   mycmakeargs+=(-DMIN_LOGGER_LEVEL="WARNING")
+   elif use log-error; then
+   mycmakeargs+=(-DMIN_LOGGER_LEVEL="ERROR")
+   else
+   mycmakeargs+=(-DMIN_LOGGER_LEVEL="")
+   einfo "Logging disabled"
+   fi
+
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   if use daemon; then
+   newinitd "${FILESDIR}"/initd tox-dht-daemon
+   newconfd "${FILESDIR}"/confd tox-dht-daemon
+   insinto /etc
+   doins "${FILESDIR}"/tox-bootstrapd.conf
+ 

[gentoo-commits] repo/gentoo:master commit in: acct-group/mongodb/

2019-11-03 Thread Joonas Niilola
commit: 0a0e4cee73d25c274380b84d342fff553edbad0f
Author: Tomas Mozes  gmail  com>
AuthorDate: Sat Nov  2 19:58:21 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 06:22:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a0e4cee

acct-group/mongodb: new group package for GID 481

Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 acct-group/mongodb/metadata.xml | 16 
 acct-group/mongodb/mongodb-0.ebuild |  9 +
 2 files changed, 25 insertions(+)

diff --git a/acct-group/mongodb/metadata.xml b/acct-group/mongodb/metadata.xml
new file mode 100644
index 000..91e6ec60546
--- /dev/null
+++ b/acct-group/mongodb/metadata.xml
@@ -0,0 +1,16 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   ultra...@gentoo.org
+   Alexys Jacob
+   
+   
+   hydrapo...@gmail.com
+   Tomáš Mózes
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+

diff --git a/acct-group/mongodb/mongodb-0.ebuild 
b/acct-group/mongodb/mongodb-0.ebuild
new file mode 100644
index 000..ae4d2c0aa26
--- /dev/null
+++ b/acct-group/mongodb/mongodb-0.ebuild
@@ -0,0 +1,9 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-group
+
+DESCRIPTION="MongoDB program group"
+ACCT_GROUP_ID=481



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

2019-11-03 Thread Joonas Niilola
commit: 9e2eb6cf66ed0095be122abec0d033d9dbc77417
Author: Josiah Mullins  protonmail  com>
AuthorDate: Sat Oct 19 01:57:21 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 06:07:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e2eb6cf

net-libs/tox: update tox-

This commit introduces compatability with GLEP 81;
updates the EAPI from 6 to 7; updates the cflags
options; disables dht-node by default; and
optimizes the package requirement section.

Signed-off-by: Josiah Mullins  protonmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 net-libs/tox/tox-.ebuild | 89 
 1 file changed, 65 insertions(+), 24 deletions(-)

diff --git a/net-libs/tox/tox-.ebuild b/net-libs/tox/tox-.ebuild
index 3c267ef0e1e..501b16dc726 100644
--- a/net-libs/tox/tox-.ebuild
+++ b/net-libs/tox/tox-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit cmake-utils git-r3 systemd user
+inherit cmake-utils git-r3 systemd
 
 DESCRIPTION="Encrypted P2P, messaging, and audio/video calling platform"
 HOMEPAGE="https://tox.chat;
@@ -13,29 +13,66 @@ EGIT_REPO_URI="https://github.com/TokTok/c-toxcore.git;
 LICENSE="GPL-3+"
 SLOT="0/0.2"
 KEYWORDS=""
-IUSE="+av daemon log-debug log-trace +no-log static-libs test"
+IUSE="+av daemon dht-node ipv6 log-debug +log-error log-info log-trace 
log-warn static-libs test"
 
-REQUIRED_USE="^^ ( no-log log-trace log-debug )"
+REQUIRED_USE="^^ ( log-debug log-error log-info log-trace log-warn )
+   daemon? ( dht-node )"
 
-RDEPEND="
-   av? ( media-libs/libvpx:=
+COMMON_DEPEND="
+   av? ( media-libs/libvpx
media-libs/opus )
-   daemon? ( dev-libs/libconfig )
+   daemon? ( acct-group/tox
+   acct-user/tox
+   dev-libs/libconfig )
>=dev-libs/libsodium-0.6.1:=[asm,urandom,-minimal]"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
+BDEPEND="virtual/pkgconfig"
+
+DEPEND="${COMMON_DEPEND}"
+
+RDEPEND="${COMMON_DEPEND}"
+
+src_prepare() {
+   cmake-utils_src_prepare
+   #remove faulty tests
+   for testname in bootstrap lan_discovery save_compatibility tcp_relay 
tox_many_tcp; do
+   sed -i -e "/^auto_test(${testname})$/d" CMakeLists.txt || die
+   done
+}
 
 src_configure() {
local mycmakeargs=(
-   -DTRACE=$(usex log-trace)
-   -DDEBUG=$(usex log-debug)
-   -DBUILD_TOXAV=$(usex av)
-   -DMUST_BUILD_TOXAV=$(usex av)
-   -DBUILD_AV_TEST=$(usex av)
+   -DAUTOTEST=$(usex test)
-DBOOTSTRAP_DAEMON=$(usex daemon)
+   -DBUILD_TOXAV=$(usex av)
+   -DDHT_BOOTSTRAP=$(usex dht-node)
+   -DENABLE_SHARED=ON
-DENABLE_STATIC=$(usex static-libs)
-   )
+   -DMUST_BUILD_TOXAV=$(usex av))
+   if use test; then
+   mycmakeargs+=(
+   -DBUILD_AV_TEST=$(usex av)
+   -DTEST_TIMEOUT_SECONDS=120
+   -DUSE_IPV6=$(usex ipv6))
+   else
+   mycmakeargs+=(
+   -DBUILD_AV_TEST=OFF
+   -DUSE_IPV6=OFF)
+   fi
 
+   if use log-trace; then
+   mycmakeargs+=(-DMIN_LOGGER_LEVEL="TRACE")
+   elif use log-debug; then
+   mycmakeargs+=(-DMIN_LOGGER_LEVEL="DEBUG")
+   elif use log-info; then
+   mycmakeargs+=(-DMIN_LOGGER_LEVEL="INFO")
+   elif use log-warn; then
+   mycmakeargs+=(-DMIN_LOGGER_LEVEL="WARNING")
+   elif use log-error; then
+   mycmakeargs+=(-DMIN_LOGGER_LEVEL="ERROR")
+   else
+   mycmakeargs+=(-DMIN_LOGGER_LEVEL="")
+   einfo "Logging Disabled"
+   fi
cmake-utils_src_configure
 }
 
@@ -49,20 +86,24 @@ src_install() {
doins "${FILESDIR}"/tox-bootstrapd.conf
systemd_dounit "${FILESDIR}"/tox-bootstrapd.service
fi
-
-   find "${D}" -name '*.la' -delete || die
 }
 
 pkg_postinst() {
+   if use dht-node; then
+   ewarn "There is currently an unresolved issue with tox"
+   ewarn "DHT Bootstrap node that causes the program to be"
+   ewarn "built with a null library reference. This"
+   ewarn "causes an infinite loop for certain rev-dep-rebuild"
+   ewarn "commands. If you aren't running a node, please"
+   ewarn "consider disabling the dht-node flag"
+   fi
if use daemon; then
-   enewgroup tox
-   enewuser tox -1 -1 -1 tox
-   if [[ -f ${EROOT%/}/var/lib/tox-dht-bootstrap/key ]]; then
+   if [[ -f ${EROOT}/var/lib/tox-dht-bootstrap/key ]]; then
ewarn 

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

2019-11-03 Thread Joonas Niilola
commit: df649eeb06507032a1b197462f084d3ef7748f4d
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Nov  4 05:23:33 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 05:23:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df649eeb

package.mask: remove some WIP EAPI-0 masks

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 8bd68121832..3e150209d09 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -370,13 +370,11 @@ dev-embedded/gnap
 dev-libs/xplc
 dev-vcs/cvsd
 dev-vcs/cvsq
-dev-vcs/svn2cl
 mail-client/biabam
 mail-client/pinepgp
 mail-filter/clamassassin
 mail-filter/clamsmtp
 mail-filter/disspam
-mail-filter/sqlgrey
 media-gfx/cthumb
 media-gfx/fblogo
 net-dialup/globespan-adsl
@@ -392,7 +390,6 @@ net-mail/hotwayd
 net-mail/popick
 net-mail/poppassd_ceti
 net-mail/spamcup
-net-mail/vacation
 net-mail/yosucker
 net-misc/cgterm
 net-misc/clockspeed-conf
@@ -402,7 +399,6 @@ net-misc/sendfile
 net-news/yencode
 net-nntp/slrnconf
 net-nntp/ubh
-net-p2p/createtorrent
 net-p2p/ctcs
 net-proxy/ratproxy
 net-wireless/airsnort
@@ -411,7 +407,6 @@ sys-auth/pam-afs-session
 sys-auth/pam_chroot
 sys-auth/pam_require
 sys-block/dellmgr
-sys-fs/gt5
 
 # Michał Górny  (2019-10-04)
 # Unmaintained, EAPI 0 packages.  No reverse dependencies.  If you want



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

2019-11-03 Thread William Hubbs
commit: af006cbd1619eaca82b9c0203c860f2ed2dc8bce
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Nov  4 04:30:26 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Nov  4 04:36:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af006cbd

sys-apps/openrc: repoman fixes: remove FreeBSD support

The freebsd packages and profiles are gone, so stop repoman from
complaining about the FreeBSD dependencies.

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: William Hubbs  gentoo.org>

 sys-apps/openrc/openrc-0.41.2.ebuild | 35 +--
 sys-apps/openrc/openrc-0.42.1.ebuild | 33 -
 sys-apps/openrc/openrc-.ebuild   | 33 -
 3 files changed, 25 insertions(+), 76 deletions(-)

diff --git a/sys-apps/openrc/openrc-0.41.2.ebuild 
b/sys-apps/openrc/openrc-0.41.2.ebuild
index 029b236f6ad..81bb6c4a741 100644
--- a/sys-apps/openrc/openrc-0.41.2.ebuild
+++ b/sys-apps/openrc/openrc-0.41.2.ebuild
@@ -19,19 +19,17 @@ fi
 LICENSE="BSD-2"
 SLOT="0"
 IUSE="audit bash debug ncurses pam newnet prefix +netifrc selinux static-libs
-   unicode kernel_linux kernel_FreeBSD"
+   unicode"
 
-COMMON_DEPEND="kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-ubin-9.0_rc 
sys-process/fuser-bsd ) )
+COMMON_DEPEND="
ncurses? ( sys-libs/ncurses:0= )
pam? (
sys-auth/pambase
sys-libs/pam
)
audit? ( sys-process/audit )
-   kernel_linux? (
-   sys-process/psmisc
-   !=sys-libs/libselinux-2.6
@@ -44,11 +42,8 @@ DEPEND="${COMMON_DEPEND}
 RDEPEND="${COMMON_DEPEND}
bash? ( app-shells/bash )
!prefix? (
-   kernel_linux? (
-   >=sys-apps/sysvinit-2.86-r6[selinux?]
-   virtual/tmpfiles
-   )
-   kernel_FreeBSD? ( sys-freebsd/freebsd-sbin )
+   >=sys-apps/sysvinit-2.86-r6[selinux?]
+   virtual/tmpfiles
)
selinux? (
>=sec-policy/selinux-base-policy-2.20170204-r4
@@ -84,13 +79,8 @@ src_compile() {
SH=$(usex bash /bin/bash /bin/sh)"
 
local brand="Unknown"
-   if use kernel_linux ; then
-   MAKE_ARGS="${MAKE_ARGS} OS=Linux"
-   brand="Linux"
-   elif use kernel_FreeBSD ; then
-   MAKE_ARGS="${MAKE_ARGS} OS=FreeBSD"
-   brand="FreeBSD"
-   fi
+   MAKE_ARGS="${MAKE_ARGS} OS=Linux"
+   brand="Linux"
export BRANDING="Gentoo ${brand}"
use prefix && MAKE_ARGS="${MAKE_ARGS} MKPREFIX=yes PREFIX=${EPREFIX}"
export DEBUG=$(usev debug)
@@ -124,9 +114,6 @@ src_install() {
gen_usr_ldscript libeinfo.so
gen_usr_ldscript librc.so
 
-   if ! use kernel_linux; then
-   keepdir /lib/rc/init.d
-   fi
keepdir /lib/rc/tmp
 
# Setup unicode defaults for silly unicode users
@@ -179,11 +166,7 @@ pkg_postinst() {
fi
 
# Added for 0.35.
-   if use kernel_linux && [[ ! -h "${EROOT}"/lib ]]; then
-   if [[ -d "${EROOT}$(get_libdir)"/rc ]]; then
-   cp -RPp "${EROOT}$(get_libdir)/rc" "${EROOT}"lib
-   fi
-   elif ! use kernel_linux; then
+   if [[ ! -h "${EROOT}"/lib ]]; then
if [[ -d "${EROOT}$(get_libdir)"/rc ]]; then
cp -RPp "${EROOT}$(get_libdir)/rc" "${EROOT}"lib
fi

diff --git a/sys-apps/openrc/openrc-0.42.1.ebuild 
b/sys-apps/openrc/openrc-0.42.1.ebuild
index 9bb3ff7fbb3..3e6f63ea18b 100644
--- a/sys-apps/openrc/openrc-0.42.1.ebuild
+++ b/sys-apps/openrc/openrc-0.42.1.ebuild
@@ -19,19 +19,17 @@ fi
 LICENSE="BSD-2"
 SLOT="0"
 IUSE="audit bash debug ncurses pam newnet prefix +netifrc selinux static-libs
-   sysv-utils unicode kernel_linux kernel_FreeBSD"
+   sysv-utils unicode"
 
-COMMON_DEPEND="kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-ubin-9.0_rc 
sys-process/fuser-bsd ) )
+COMMON_DEPEND="
ncurses? ( sys-libs/ncurses:0= )
pam? (
sys-auth/pambase
sys-libs/pam
)
audit? ( sys-process/audit )
-   kernel_linux? (
-   sys-process/psmisc
-   !=sys-libs/libselinux-2.6
@@ -44,12 +42,9 @@ DEPEND="${COMMON_DEPEND}
 RDEPEND="${COMMON_DEPEND}
bash? ( app-shells/bash )
!prefix? (
-   kernel_linux? (
sysv-utils? ( !sys-apps/sysvinit )
!sysv-utils? ( >=sys-apps/sysvinit-2.86-r6[selinux?] )
-   virtual/tmpfiles
-   )
-   kernel_FreeBSD? ( sys-freebsd/freebsd-sbin )
+   virtual/tmpfiles
)
selinux? (
>=sec-policy/selinux-base-policy-2.20170204-r4
@@ -86,13 +81,8 @@ src_compile() {
SH=$(usex bash /bin/bash /bin/sh)"
 
local brand="Unknown"
- 

[gentoo-commits] repo/gentoo:master commit in: dev-lua/luv/

2019-11-03 Thread Joonas Niilola
commit: 6cc69169c28f37e7a706d7e875a78636630f8cd0
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Nov  4 03:55:34 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov  4 03:55:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cc69169

dev-lua/luv: add ~arm64 for 1.32.0

Tested-by: Roy Bamford  gentoo.org>
Closes: https://bugs.gentoo.org/695024
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lua/luv/luv-1.32.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luv/luv-1.32.0.0.ebuild b/dev-lua/luv/luv-1.32.0.0.ebuild
index b684cb17f6b..5333e5fd0ac 100644
--- a/dev-lua/luv/luv-1.32.0.0.ebuild
+++ b/dev-lua/luv/luv-1.32.0.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0 MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE="luajit test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: gui-libs/wlroots/

2019-11-03 Thread Aaron Bauman
commit: 472a5852ad8b5c25dfabf4e8a622f09b5704a8e3
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Nov  4 03:16:02 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Nov  4 03:16:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=472a5852

gui-libs/wlroots: bump to 0.8.1

* bump subslot as breaking changes were introduced in 0.8.0

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

 gui-libs/wlroots/Manifest |  1 +
 gui-libs/wlroots/wlroots-0.8.1.ebuild | 75 +++
 2 files changed, 76 insertions(+)

diff --git a/gui-libs/wlroots/Manifest b/gui-libs/wlroots/Manifest
index ebe699f2ff6..d69983bcb2f 100644
--- a/gui-libs/wlroots/Manifest
+++ b/gui-libs/wlroots/Manifest
@@ -1,2 +1,3 @@
 DIST wlroots-0.6.0.tar.gz 497934 BLAKE2B 
a0b631831752e533f83ed62e402ef69b0994df050fd643cf2ef89556face4a822b3936bc758b70ab160eedda8ced16c0992dc209600914095784bba97bd26ee2
 SHA512 
c205d4303a381e11ef2f4db2faac1ddf9ad85c675824aae9cfe62d9f8bd313f1568d4810db1d006416783b50c8364198648a46d1ba453a0d8f659d6920618286
 DIST wlroots-0.7.0.tar.gz 446392 BLAKE2B 
ed69ae2e5484428222cd430d7c74935b0801044cacab804ffe3673c5ecf08104a5fbfbaa930c8ef4df3e43de1073910ba970028307a0a3c57483c5d502832292
 SHA512 
20e7e81bb945cc683c793f1258e83dbeea5e933faa066125f16a24aa7151000c620f9f47cad21540f8bea7d053d181cb89a2803c30fac1b1b9f3345065b9ba9c
+DIST wlroots-0.8.1.tar.gz 451814 BLAKE2B 
85f221ba9068839f326e09df616f6182f518b9a129730dda794103305e3c0786d609a7cc6cb60a90c9d51cb77e3dbbc5993901271dcf1bd656c7744260561b06
 SHA512 
da41513de48e00303b31fde620463389103215011c6cc49b9a2420a1529889722aa54f26a211179c528709edb6b90ba2efdae5e4bcef18147d9516f3a94e365a

diff --git a/gui-libs/wlroots/wlroots-0.8.1.ebuild 
b/gui-libs/wlroots/wlroots-0.8.1.ebuild
new file mode 100644
index 000..fb0cf5f0576
--- /dev/null
+++ b/gui-libs/wlroots/wlroots-0.8.1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit fcaps meson
+
+DESCRIPTION="Pluggable, composable, unopinionated modules for building a 
Wayland compositor"
+HOMEPAGE="https://github.com/swaywm/wlroots;
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="https://github.com/swaywm/${PN}.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/swaywm/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0/8"
+IUSE="elogind icccm systemd x11-backend X"
+REQUIRED_USE="?? ( elogind systemd )"
+
+DEPEND="
+   >=dev-libs/libinput-1.9.0:0=
+   >=dev-libs/wayland-1.17.0
+   media-libs/mesa[egl,gles2,gbm]
+   virtual/libudev
+   x11-libs/libdrm
+   x11-libs/libxkbcommon
+   x11-libs/pixman
+   elogind? ( >=sys-auth/elogind-237 )
+   icccm? ( x11-libs/xcb-util-wm )
+   systemd? ( >=sys-apps/systemd-237 )
+   x11-backend? ( x11-libs/libxcb:0= )
+   X? (
+   x11-base/xorg-server[wayland]
+   x11-libs/libxcb:0=
+   x11-libs/xcb-util-image
+   )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   >=dev-libs/wayland-protocols-1.17
+   virtual/pkgconfig
+"
+
+src_configure() {
+   # xcb-util-errors is not on Gentoo Repository (and upstream seems 
inactive?)
+   local emesonargs=(
+   "-Dxcb-errors=disabled"
+   -Dlibcap=$(usex filecaps enabled disabled)
+   -Dxcb-icccm=$(usex icccm enabled disabled)
+   -Dxwayland=$(usex X enabled disabled)
+   -Dx11-backend=$(usex x11-backend enabled disabled)
+   "-Dexamples=false"
+   "-Dwerror=false"
+   )
+   if use systemd; then
+   emesonargs+=("-Dlogind=enabled" "-Dlogind-provider=systemd")
+   elif use elogind; then
+   emesonargs+=("-Dlogind=enabled" "-Dlogind-provider=elogind")
+   else
+   emesonargs+=("-Dlogind=disabled")
+   fi
+
+   meson_src_configure
+}
+
+pkg_postinst() {
+   elog "You must be in the input group to allow your compositor"
+   elog "to access input devices via libinput."
+}



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

2019-11-03 Thread Mike Gilbert
commit: fc37b9a6cd2e923613c6a0a4a36c9b99346f8dd3
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Nov  4 00:11:21 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Nov  4 00:11:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc37b9a6

app-shells/kshdb: depend on app-shells/ksh

Package-Manager: Portage-2.3.78_p6, Repoman-2.3.17_p102
Signed-off-by: Mike Gilbert  gentoo.org>

 app-shells/kshdb/kshdb-1.0.0.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app-shells/kshdb/kshdb-1.0.0.ebuild 
b/app-shells/kshdb/kshdb-1.0.0.ebuild
index 2c739287e1a..e2a594debad 100644
--- a/app-shells/kshdb/kshdb-1.0.0.ebuild
+++ b/app-shells/kshdb/kshdb-1.0.0.ebuild
@@ -13,6 +13,8 @@ LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~amd64"
 
+RDEPEND="app-shells/ksh"
+
 PATCHES=(
"${FILESDIR}"/kshdb-1.0.0-remove-COLORFGBG-message.patch
 )



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

2019-11-03 Thread Mike Gilbert
commit: 579bc83a9d8018574434dd946ff9fa0af91c25e6
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Nov  3 23:58:47 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Nov  3 23:59:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=579bc83a

app-shells/kshdb: new package

Package-Manager: Portage-2.3.78_p6, Repoman-2.3.17_p102
Signed-off-by: Mike Gilbert  gentoo.org>

 app-shells/kshdb/Manifest  |  1 +
 .../kshdb-1.0.0-remove-COLORFGBG-message.patch | 47 ++
 app-shells/kshdb/kshdb-1.0.0.ebuild| 23 +++
 app-shells/kshdb/metadata.xml  |  8 
 4 files changed, 79 insertions(+)

diff --git a/app-shells/kshdb/Manifest b/app-shells/kshdb/Manifest
new file mode 100644
index 000..88cb0b05759
--- /dev/null
+++ b/app-shells/kshdb/Manifest
@@ -0,0 +1 @@
+DIST kshdb-1.0.0.tar.gz 153633 BLAKE2B 
91e5d77e1a74f98149ef4c953c34b6a4ac43f68c930092bde6f5313be6d581072fb8ef39a500204e5eb544e1e6bc53d1f5f7800ba1d333020f6908bbde2268f6
 SHA512 
f010b3b739f1a9fdead52c251a536405f8cbae67882c554b034ef115a9d9ecd60438d883d51dd282a747068e108ad8e5d9442380b6563a2aa262c35b423ee1dd

diff --git a/app-shells/kshdb/files/kshdb-1.0.0-remove-COLORFGBG-message.patch 
b/app-shells/kshdb/files/kshdb-1.0.0-remove-COLORFGBG-message.patch
new file mode 100644
index 000..48db4dbccfd
--- /dev/null
+++ b/app-shells/kshdb/files/kshdb-1.0.0-remove-COLORFGBG-message.patch
@@ -0,0 +1,47 @@
+From a989aef80767d6608f3c3c9db007c5aafd022358 Mon Sep 17 00:00:00 2001
+From: rocky 
+Date: Sun, 3 Nov 2019 18:23:07 -0500
+Subject: [PATCH] Remove COLORFGBG message from term-background.sh
+
+---
+ init/term-background.sh | 12 
+ 1 file changed, 4 insertions(+), 8 deletions(-)
+
+diff --git a/init/term-background.sh b/init/term-background.sh
+index 63f6e7d..716bb04 100644
+--- a/init/term-background.sh
 b/init/term-background.sh
+@@ -57,9 +57,9 @@ get_default_bg() {
+ # Pass as parameters R G B values in hex
+ # On return, variable is_dark_bg is set
+ is_dark_rgb() {
+-typeset r g b
++typeset -i r g b
+ r=$1; g=$2; b=$3
+-if (( (16#$r + 16#$g + 16#$b) < $TERMINAL_COLOR_MIDPOINT )) ; then
++if (( (16#r + 16#g + 16#b) < TERMINAL_COLOR_MIDPOINT )) ; then
+   is_dark_bg=1
+ else
+   is_dark_bg=0
+@@ -172,11 +172,7 @@ if (( !success )) && [[ -n $TERM ]] ; then
+ fi
+ 
+ if (( success )) ; then
+-if (( is_dark_bg == 1 )) ; then
+-  echo "Dark background from ${method}"
+-else
+-  echo "Light background from ${method}"
+-fi
++:
+ elif [[ -n $COLORFGBG ]] ; then
+ # Note that this can be wrong if
+ # COLORFGBG was set prior invoking a terminal
+@@ -196,7 +192,7 @@ fi
+ # some environment variables
+ if is_sourced  ; then
+ if (( exitrc == 0 )) ; then
+-  if (( $is_dark_bg == 1 ))  ; then
++  if (( is_dark_bg == 1 ))  ; then
+   export DARK_BG=1
+   [[ -z $COLORFGBG ]] && export COLORFGBG='0;15'
+   else

diff --git a/app-shells/kshdb/kshdb-1.0.0.ebuild 
b/app-shells/kshdb/kshdb-1.0.0.ebuild
new file mode 100644
index 000..2c739287e1a
--- /dev/null
+++ b/app-shells/kshdb/kshdb-1.0.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Korn Shell Debugger"
+HOMEPAGE="https://github.com/rocky/kshdb;
+SRC_URI="https://github.com/rocky/kshdb/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+PATCHES=(
+   "${FILESDIR}"/kshdb-1.0.0-remove-COLORFGBG-message.patch
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}

diff --git a/app-shells/kshdb/metadata.xml b/app-shells/kshdb/metadata.xml
new file mode 100644
index 000..de09ffd8b08
--- /dev/null
+++ b/app-shells/kshdb/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   flop...@gentoo.org
+   Mike Gilbert
+   
+



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

2019-11-03 Thread Mike Pagano
commit: ec1ddfe403d8fdab4481ff6a00641fc6070fb018
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Nov  3 23:27:40 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Nov  3 23:27:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec1ddfe4

sys-kernel/git-sources: Linux patch 5.4-rc6

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

 sys-kernel/git-sources/Manifest   |  1 +
 sys-kernel/git-sources/git-sources-5.4_rc6.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index 93c40c455f9..5cae3f6c2a7 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -4,3 +4,4 @@ DIST patch-5.4-rc2.patch 64354864 BLAKE2B 
864d97e1ed5986448fdb1bc8782e1be236b702
 DIST patch-5.4-rc3.patch 64816978 BLAKE2B 
792d0a5149c03ee81c82a1a59b54f64339c5fada49a81115e303deda82a07b3f5f6f5a38205ad01490fc24e7bf7d4d3937e4dd597b6d367e9ddc5f81728a5f27
 SHA512 
a370c3093d8bfcb6fc6bacaca9e5eff44c32d14f5b49c534298407f1e2625802f93afd407e3f2c002f86adbb64ef3a97a7d29ced09b79600238029e0375c7b4b
 DIST patch-5.4-rc4.patch 65188215 BLAKE2B 
b21830779c7e941ba794fe574a705b292615a83fc59632a6d6bb40cb30dbb51af38879c65e0e8c7cbe8e2b3393f273866b737b86ae79c327f369e6289e082103
 SHA512 
7f7efd9b0a26c55974e6ce7f979ee1eabce8e9bdf4f5a2392d9c61e8a9a1f00045ddf683c1574e0fb6849dbca8fc79397e7dc2fbeac3d72b68162c8e1f4d0f11
 DIST patch-5.4-rc5.patch 65413587 BLAKE2B 
c96d21d762e5cf348bc270459c360ff76cdaa1027a05c55b13db64de1479cf3017b97231450f96bf4e40002b246c9eaf88b0f028d5487298fbfa80c7d7363ed0
 SHA512 
457827d6877dd8c071437d3def99d23d3c65091cda89908f093b77fb59e3ae22e601b62f6156aa27a484415ce2e6084fee22709ab460ca33a79be5ea038ea105
+DIST patch-5.4-rc6.patch 65835147 BLAKE2B 
e63b88e78069da1dfdb543855e819fafd2c7c694f0d6d3592d289289fed374291a7085fea48aa662f67a294a2b62cba49de74820d1c96123c6f69cc5e1d8fb2f
 SHA512 
59f724e2afd61aeb177a437adb3f8013a8a8bca360ca63a71cb3dc10724ef809ee8ed21c780045223f69be25ab81e89a0d8c18ec531b6ae63eb2b3597d7c2b60

diff --git a/sys-kernel/git-sources/git-sources-5.4_rc6.ebuild 
b/sys-kernel/git-sources/git-sources-5.4_rc6.ebuild
new file mode 100644
index 000..7f3937ff792
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-5.4_rc6.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="1"
+K_BASE_VER="5.3"
+K_EXP_GENPATCHES_NOUSE="1"
+K_FROM_GIT="yes"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release
+[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="The very latest -git version of the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"
+IUSE=""
+
+K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
+experimental nature. If you have any issues, try a matching vanilla-sources
+ebuild -- if the problem is not there, please contact the upstream kernel
+developers at https://bugzilla.kernel.org and on the linux-kernel mailing list 
to
+report the problem so it can be fixed in time for the next kernel release."
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   >=sys-devel/patch-2.7.5"
+
+pkg_postinst() {
+   postinst_sources
+}



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

2019-11-03 Thread Cédric Krier
commit: 5c0baead423341d6265383f75521f94f687bc935
Author: Cédric Krier  gentoo  org>
AuthorDate: Sun Nov  3 23:04:27 2019 +
Commit: Cédric Krier  gentoo  org>
CommitDate: Sun Nov  3 23:06:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c0baead

dev-python/phonenumbers: Restrict test

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Cédric Krier  gentoo.org>

 dev-python/phonenumbers/phonenumbers-8.10.22.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/phonenumbers/phonenumbers-8.10.22.ebuild 
b/dev-python/phonenumbers/phonenumbers-8.10.22.ebuild
index 6504f27a128..dd568b8273a 100644
--- a/dev-python/phonenumbers/phonenumbers-8.10.22.ebuild
+++ b/dev-python/phonenumbers/phonenumbers-8.10.22.ebuild
@@ -15,6 +15,7 @@ LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 



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

2019-11-03 Thread Cédric Krier
commit: f31499c37d3918fa63b94fc6646927be6d5d2802
Author: Cédric Krier  gentoo  org>
AuthorDate: Sun Nov  3 23:06:06 2019 +
Commit: Cédric Krier  gentoo  org>
CommitDate: Sun Nov  3 23:06:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f31499c3

dev-python/python-stdnum: Restrict test

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Cédric Krier  gentoo.org>

 dev-python/python-stdnum/python-stdnum-1.12.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/python-stdnum/python-stdnum-1.12.ebuild 
b/dev-python/python-stdnum/python-stdnum-1.12.ebuild
index 18bda3addee..afa8a22186a 100644
--- a/dev-python/python-stdnum/python-stdnum-1.12.ebuild
+++ b/dev-python/python-stdnum/python-stdnum-1.12.ebuild
@@ -14,6 +14,7 @@ LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="vies test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="vies? ( || ( dev-python/zeep dev-python/suds ) )"
 DEPEND="${DEPEND}



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

2019-11-03 Thread Mike Gilbert
commit: f026431efa6b2d04b5f90ee333c94a9f0c7c6dbb
Author: Stephan Hartmann  googlemail  com>
AuthorDate: Sun Nov  3 10:04:20 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Nov  3 22:42:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f026431e

www-client/chromium: security cleanup

Bug: https://bugs.gentoo.org/699068
Closes: https://github.com/gentoo/gentoo/pull/13534
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Stephan Hartmann  googlemail.com>
Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/chromium/Manifest |   1 -
 www-client/chromium/chromium-78.0.3904.70.ebuild | 742 ---
 2 files changed, 743 deletions(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 4bb3400bd48..26041a8b3ef 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,4 +1,3 @@
 DIST chromium-78-revert-noexcept-r1.patch.gz 12094 BLAKE2B 
1fd0c939af773ed398c9ab14fa80b042b4237cabdbcb06425e4d1c72200ec49c3c1383cfc95013cce4df411b0a2397b79030d41a0379ae80a0c60bae1fbb5ffa
 SHA512 
dcb62b82b34d5d6982762cacfe3ab7d3538d908b3befe7666f5d70d98ba4f979b5bf056e5c5343ed76aa744a643318fc5a75ddedfcb1b7de3e7c28eb2587439f
-DIST chromium-78.0.3904.70.tar.xz 742787108 BLAKE2B 
623a0359f461672d8d6c97b4703f5b50c6ac423350ba96b7f37582be38d9cc66674e441b506405bc5f136df19df886036ef5abae4b8c2e4e953ec296e2a25bb4
 SHA512 
95d926ea92a0e744284a4c5fca619e3a067dd0fdfaa7c05b5a069d2a8d1159bf849335e21e5803bd28175c1994bd4ff15337ad0a3063445fab74eef113275545
 DIST chromium-78.0.3904.87.tar.xz 742861696 BLAKE2B 
f8e99207876d879dc74873950e3647d41f0c687a9cd6285f44d54a4c39ceac68d455a79c38f0c9c4815ad025b2b6fae95305f0bc47e2d4c0f2937810068ffe1e
 SHA512 
9c59c01c7224771dd1db648a8cea6cda646062b4b172eb7bf0767a0b5ebead038697a8c0ec2c4ef758b876bb7a1c862223b8ef3c23308fd0c99752444305a713
 DIST chromium-79.0.3945.8.tar.xz 777902956 BLAKE2B 
eba9e94c9305a5fe9aaf8848456a69427219a29b139217d9b5409a35cb4a508d217fe82c08e3bc9325675180bfe7d7c93d583adf9d8ad6c04de1209b2305a1d3
 SHA512 
78358d0dbb8bd574c450f5443b7dfc888ea89ad9fa9da156106d260f1b3921deb6f5a50931c689c1855c9ffdef5e001d8636e8a00d416c9e9efe8bea2a8dfc6d

diff --git a/www-client/chromium/chromium-78.0.3904.70.ebuild 
b/www-client/chromium/chromium-78.0.3904.70.ebuild
deleted file mode 100644
index de0984e8544..000
--- a/www-client/chromium/chromium-78.0.3904.70.ebuild
+++ /dev/null
@@ -1,742 +0,0 @@
-# Copyright 2009-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python2_7 )
-
-CHROMIUM_LANGS="am ar bg bn ca cs da de el en-GB es es-419 et fa fi fil fr gu 
he
-   hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl 
sr
-   sv sw ta te th tr uk vi zh-CN zh-TW"
-
-inherit check-reqs chromium-2 desktop flag-o-matic multilib ninja-utils 
pax-utils portability python-any-r1 readme.gentoo-r1 toolchain-funcs xdg-utils
-
-DESCRIPTION="Open-source version of Google Chrome web browser"
-HOMEPAGE="http://chromium.org/;
-SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz
-   
https://dev.gentoo.org/~floppym/dist/chromium-78-revert-noexcept-r1.patch.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
-IUSE="+closure-compile component-build cups cpu_flags_arm_neon gnome-keyring 
+hangouts jumbo-build kerberos pic +proprietary-codecs pulseaudio selinux +suid 
+system-ffmpeg +system-icu +system-libvpx +tcmalloc widevine"
-RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )"
-REQUIRED_USE="component-build? ( !suid )"
-
-COMMON_DEPEND="
-   >=app-accessibility/at-spi2-atk-2.26:2
-   app-arch/bzip2:=
-   cups? ( >=net-print/cups-1.3.11:= )
-   >=dev-libs/atk-2.26
-   dev-libs/expat:=
-   dev-libs/glib:2
-   system-icu? ( >=dev-libs/icu-64:= )
-   >=dev-libs/libxml2-2.9.4-r3:=[icu]
-   dev-libs/libxslt:=
-   dev-libs/nspr:=
-   >=dev-libs/nss-3.26:=
-   >=dev-libs/re2-0.2016.11.01:=
-   gnome-keyring? ( >=gnome-base/libgnome-keyring-3.12:= )
-   >=media-libs/alsa-lib-1.0.19:=
-   media-libs/fontconfig:=
-   media-libs/freetype:=
-   >=media-libs/harfbuzz-2.4.0:0=[icu(-)]
-   media-libs/libjpeg-turbo:=
-   media-libs/libpng:=
-   system-libvpx? ( media-libs/libvpx:=[postproc,svc] )
-   >=media-libs/openh264-1.6.0:=
-   pulseaudio? ( media-sound/pulseaudio:= )
-   system-ffmpeg? (
-   >=media-video/ffmpeg-4:=
-   || (
-   media-video/ffmpeg[-samba]
-   >=net-fs/samba-4.5.10-r1[-debug(-)]
-   )
-   !=net-fs/samba-4.5.12-r0
-   media-libs/opus:=
-   )
-   sys-apps/dbus:=
-   sys-apps/pciutils:=
-   virtual/udev
-   x11-libs/cairo:=
-   x11-libs/gdk-pixbuf:2
-   x11-libs/gtk+:3[X]
-   x11-libs/libX11:=
-   

[gentoo-commits] repo/gentoo:master commit in: x11-apps/xkbprint/

2019-11-03 Thread Matt Turner
commit: d63ea3abdbee93ba3e1b2372a7581f7168cd6274
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov  3 22:26:27 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov  3 22:27:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d63ea3ab

x11-apps/xkbprint: Version bump to 1.0.5

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

 x11-apps/xkbprint/Manifest  |  1 +
 x11-apps/xkbprint/xkbprint-1.0.5.ebuild | 14 ++
 2 files changed, 15 insertions(+)

diff --git a/x11-apps/xkbprint/Manifest b/x11-apps/xkbprint/Manifest
index 9544ce8ed59..cd162fcd3c5 100644
--- a/x11-apps/xkbprint/Manifest
+++ b/x11-apps/xkbprint/Manifest
@@ -1 +1,2 @@
 DIST xkbprint-1.0.4.tar.bz2 163810 BLAKE2B 
cdbd0f949c7e68159811a1a725d44d5f7f66a98783321debd0b50d1bf59958519d4a061e955b9411bb9ba148bf99ddc5f8aecc74ffe6d488cb75c96104482b7d
 SHA512 
bb65a93ae737cd4b78787fef51972f4d0072a272166f82103bfaa92cf275db6363fae3530539b7c9a4139f6b87512019ac15ab3478d4ad05967ad18a8e80033a
+DIST xkbprint-1.0.5.tar.bz2 166856 BLAKE2B 
99d375e88a871ff440ebed587b01961a6e2fa196a28c267dbaa6cdd10bacdc99767f12032411eb8448e8a2f7c6792c2f7b6f428d208a9263f94b4c959d2a0431
 SHA512 
ac3870352f3a595b5b8a8cb64f39e9bea81b17572c73cfbf72482477a2f576d0ffcdcf735cb3c66b8a88a7fe0f7aece6738cbac87df5641e44fae1ab9b97111f

diff --git a/x11-apps/xkbprint/xkbprint-1.0.5.ebuild 
b/x11-apps/xkbprint/xkbprint-1.0.5.ebuild
new file mode 100644
index 000..831c06d4c5a
--- /dev/null
+++ b/x11-apps/xkbprint/xkbprint-1.0.5.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xorg-3
+
+DESCRIPTION="Print an XKB keyboard description"
+KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE=""
+RDEPEND="x11-libs/libxkbfile
+   >=x11-libs/libX11-1.6.9"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto"



[gentoo-commits] data/api:master commit in: files/overlays/

2019-11-03 Thread Michał Górny
commit: d2c8551333891ffd270b72ef6712ee987240b806
Author: Mike Crawford  gmail  com>
AuthorDate: Sun Nov  3 20:35:51 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov  3 22:25:17 2019 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=d2c85513

repositories: Add usenet-overlay

Closes: https://github.com/gentoo/api-gentoo-org/pull/226
Signed-off-by: Michał Górny  gentoo.org>

 files/overlays/repositories.xml | 13 +
 1 file changed, 13 insertions(+)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index e123bd0..c11df9c 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -5282,5 +5282,18 @@
 https://github.com/comio/plex-overlay.git
 https://github.com/comio/plex-overlay/commits/master.atom
   
+  
+usenet-overlay
+Personal Overlay for Lidarr, Radarr and Sonarr 

+https://github.com/xartin/gentoo-overlay
+
+  mcrawf...@eliteitminds.com
+  Michael Crawford
+
+https://github.com/xartin/gentoo-overlay.git
+git+ssh://g...@github.com/xartin/gentoo-overlay.git
+https://github.com/xartin/gentoo-overlay/commits/master.atom
+  
   
 
+



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

2019-11-03 Thread Denis Dupeyron
commit: 43647036d768ad81066900ecc16aff1b85fc923b
Author: Denis Dupeyron  gentoo  org>
AuthorDate: Sun Nov  3 22:16:58 2019 +
Commit: Denis Dupeyron  gentoo  org>
CommitDate: Sun Nov  3 22:17:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43647036

sci-electronics/ngspice: bump to 31, bug 660354

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Denis Dupeyron  gentoo.org>

 sci-electronics/ngspice/Manifest  |   2 +
 sci-electronics/ngspice/metadata.xml  |   1 +
 sci-electronics/ngspice/ngspice-31.ebuild | 181 ++
 3 files changed, 184 insertions(+)

diff --git a/sci-electronics/ngspice/Manifest b/sci-electronics/ngspice/Manifest
index 106266fe01b..57c13c48af8 100644
--- a/sci-electronics/ngspice/Manifest
+++ b/sci-electronics/ngspice/Manifest
@@ -1,2 +1,4 @@
 DIST ngspice-27-manual.pdf 3117788 BLAKE2B 
6e271abc50b0139c4776844ea31176d231e68c70ce34d0daec48aefc5ef5a9eac90a77f3141081f38c6ac8d42bb95ec061bf1d43bfd3a4fb13e4822c2eff4f57
 SHA512 
ed87764715917e2cd832c49e911a2908dba9907f9f01c933cb7f97a92c7f9ff345bc26a2f0561dd34b2eede6874b6a67b4864abf3dcff127bd0306e778e997b5
 DIST ngspice-27.tar.gz 7372998 BLAKE2B 
ce8590518fa4eb4292c73c4eaefdd9d0da19bca8120b51daae954a5b9d86f51912d2dccb5a827480caadce8321373d96f045226db4986a78bcc9170f2e46f9a5
 SHA512 
1714f95ab5716c228a0b39395a742e8b9a823e0e6f7e08625d089541ea786df5fd7b9d2982bcec8431e27ac6ba7603ecc507f9cfcb0a6aacd53f5633f52bd2ea
+DIST ngspice-31-manual.pdf 2149244 BLAKE2B 
155f7299cbb6d7c7953d8488e11f0bffc3c18097f02194c491174a9af387cda9e87cb79b13a37f402616386e7e82230eb4d41909fe37d900792e48f2f49c71dd
 SHA512 
3322df92791718979a275f2640f82c3417f394a76d27ebf06b46f29a40a1ee3ef57c65a75a7ba67e697b55bd435f81e9ee61c78532f991a2dd6844b4f325eb55
+DIST ngspice-31.tar.gz 7250057 BLAKE2B 
dabc8e1084eba957d6dad06e74f878b51e97dc8bc49b04ee612a6f9eaadde7302450c9ab93e943c4af42197b6bbdca7cae534464ccd2fcd4869b8a48b6f3140d
 SHA512 
448024f398d267911d5d2a48da03eb0d87ba1133ce39d5132bd318dde8ad359d19c7f85f6b4ec88c08b081c9140f7b931334d84173019a22aa2ac98482bd7d5d

diff --git a/sci-electronics/ngspice/metadata.xml 
b/sci-electronics/ngspice/metadata.xml
index ed47ec5f170..293e59a7c77 100644
--- a/sci-electronics/ngspice/metadata.xml
+++ b/sci-electronics/ngspice/metadata.xml
@@ -10,6 +10,7 @@
three open source software packages: Spice3f5, Cider1b1 and 
Xspice.


+   Build old and deprecated apps
Build ngspice as a shared library



diff --git a/sci-electronics/ngspice/ngspice-31.ebuild 
b/sci-electronics/ngspice/ngspice-31.ebuild
new file mode 100644
index 000..b29be4149ff
--- /dev/null
+++ b/sci-electronics/ngspice/ngspice-31.ebuild
@@ -0,0 +1,181 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools multibuild toolchain-funcs virtualx
+
+DESCRIPTION="The Next Generation Spice (Electronic Circuit Simulator)"
+SRC_URI="mirror://sourceforge/ngspice/${P}.tar.gz
+   doc? ( mirror://sourceforge/ngspice/${P}-manual.pdf )"
+HOMEPAGE="http://ngspice.sourceforge.net;
+LICENSE="BSD GPL-2"
+
+SLOT="0"
+IUSE="X debug deprecated doc examples fftw openmp +readline +shared tcl"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x64-macos"
+
+DEPEND="sys-libs/ncurses:0=
+   X? ( x11-libs/libXaw
+   x11-libs/libXt
+   x11-libs/libX11 )
+   fftw? ( sci-libs/fftw:3.0 )
+   readline? ( sys-libs/readline:0= )
+   tcl? ( dev-lang/tcl:0
+   dev-tcltk/blt )"
+RDEPEND="${DEPEND}
+   X? ( sci-visualization/xgraph )"
+
+DOCS=(
+   ANALYSES
+   AUTHORS
+   BUGS
+   ChangeLog
+   DEVICES
+   FAQ
+   NEWS
+   README
+   README.vdmos
+   Stuarts_Poly_Notes
+)
+
+pkg_setup() {
+   MULTIBUILD_VARIANTS=( "binaries" )
+   use shared && MULTIBUILD_VARIANTS+=( "shared" )
+   use tcl && MULTIBUILD_VARIANTS+=( "tcl" )
+   use openmp && tc-check-openmp
+}
+
+src_prepare() {
+   if use tcl; then
+   if use examples; then
+   find examples/tclspice -type f -iname \*tcl -or -iname 
\*.sh |
+   while read s
+   do
+   sed -i -e 
's@../../../src/.libs/libspice...@libspice.so@g' \
+   -e 's@package require BLT@package 
require Tk\npackage require BLT@g' \
+   -e "s@spice::codemodel 
\(.*\)/\(.*\).cm@spice::codemodel /usr/$(get_libdir)/ngspice/\2.cm@g" \
+   "${s}" || die "sed failed"
+   done
+   fi
+   fi
+
+   eapply_user
+   eautoreconf
+   multibuild_copy_sources
+}
+
+src_configure() {
+   multibuild_foreach_variant ngspice_configure
+}
+
+ngspice_configure() {
+   pushd "${BUILD_DIR}"
+
+   local myconf

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

2019-11-03 Thread Cédric Krier
commit: 9d21ee6767ea72962af3e9501624f956f7d48d34
Author: Cédric Krier  gentoo  org>
AuthorDate: Sun Nov  3 22:14:58 2019 +
Commit: Cédric Krier  gentoo  org>
CommitDate: Sun Nov  3 22:15:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d21ee67

dev-python/python-stdnum: Version bumps

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Cédric Krier  gentoo.org>

 dev-python/python-stdnum/Manifest   | 2 +-
 .../{python-stdnum-1.11.ebuild => python-stdnum-1.12.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/python-stdnum/Manifest 
b/dev-python/python-stdnum/Manifest
index b309ec2ca24..80e9508daef 100644
--- a/dev-python/python-stdnum/Manifest
+++ b/dev-python/python-stdnum/Manifest
@@ -1 +1 @@
-DIST python-stdnum-1.11.tar.gz 835905 BLAKE2B 
e6a65d9bc96879a7c39fc1c9c0d4442f475cd01b21a325274d98e237f4edf0bf8d5b27ef91696a5465492cee006e87d4d7969c5b8c531c6e8a6c7d839c302b10
 SHA512 
1369c38c93575aefdf727f831f68f7858390d9d29d5f1c1caba0de12afd994a5c6e9b89f76cff30a694ae056b19816c813e9c42f8a7a882f5b9257c374dcbad1
+DIST python-stdnum-1.12.tar.gz 882778 BLAKE2B 
49b0b83b8a76cf8963b35729b8acb1bb7f6cc8071cfee5490ba8f60fb2b74df28e11e65d9dafe6c717d297382628fe924ab5e193d8a39597cc214b98f12fa5dd
 SHA512 
7eefc997494f538cddda8a6ca60d60c52e35f53023edd69b540c3f1aded00d795741ef429f84be6637e737e031b0ca771d4c1a060c94c90d7aa4144cdb0a536f

diff --git a/dev-python/python-stdnum/python-stdnum-1.11.ebuild 
b/dev-python/python-stdnum/python-stdnum-1.12.ebuild
similarity index 100%
rename from dev-python/python-stdnum/python-stdnum-1.11.ebuild
rename to dev-python/python-stdnum/python-stdnum-1.12.ebuild



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/sh/, profiles/targets/desktop/, profiles/arch/m68k/, ...

2019-11-03 Thread Matt Turner
commit: 61f5f2eb1e4fcb968ac4e3faac38d6d70fed5de8
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov  3 22:09:01 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov  3 22:12:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61f5f2eb

profiles: Drop IUSE=glamor

libepoxy is stable on s390, so remove those masks entirely.

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

 profiles/arch/m68k/package.use.mask| 3 +--
 profiles/arch/s390/package.use.mask| 5 -
 profiles/arch/sh/package.use.mask  | 3 +--
 profiles/targets/desktop/make.defaults | 2 +-
 4 files changed, 3 insertions(+), 10 deletions(-)

diff --git a/profiles/arch/m68k/package.use.mask 
b/profiles/arch/m68k/package.use.mask
index c143bc4ea26..3ab6baaf2f2 100644
--- a/profiles/arch/m68k/package.use.mask
+++ b/profiles/arch/m68k/package.use.mask
@@ -7,8 +7,7 @@ net-libs/gnutls test-full
 
 # Matt Turner  (2017-02-25)
 # Needs libepoxy keywording, bug #510940
-x11-base/xorg-server glamor wayland
-x11-drivers/xf86-video-ati glamor
+x11-base/xorg-server wayland
 
 # Mike Frysinger  (2015-03-16)
 # Needs sci-physics/bullet tested #499974

diff --git a/profiles/arch/s390/package.use.mask 
b/profiles/arch/s390/package.use.mask
index 413a3a14b04..f1f9dab66c1 100644
--- a/profiles/arch/s390/package.use.mask
+++ b/profiles/arch/s390/package.use.mask
@@ -56,11 +56,6 @@ dev-libs/efl physics
 # Not tested
 app-portage/layman g-sorcery
 
-# Chí-Thanh Christopher Nguyễn  (2014-09-16)
-# Needs libepoxy keywording, bug #510940
-x11-base/xorg-server glamor wayland
-x11-drivers/xf86-video-ati glamor
-
 # Mikle Kolyada  (2014-01-11)
 # too much unkeyworded dependencies (bug #497068)
 dev-vcs/git mediawiki mediawiki-experimental

diff --git a/profiles/arch/sh/package.use.mask 
b/profiles/arch/sh/package.use.mask
index 61a2417200c..9f38a48d1ff 100644
--- a/profiles/arch/sh/package.use.mask
+++ b/profiles/arch/sh/package.use.mask
@@ -19,8 +19,7 @@ media-sound/pulseaudio native-headset ofono-headset
 
 # Matt Turner  (2017-02-25)
 # Needs libepoxy keywording, bug #510940
-x11-base/xorg-server glamor wayland
-x11-drivers/xf86-video-ati glamor
+x11-base/xorg-server wayland
 
 # Sergey Popov  (2015-10-24)
 # Not tested

diff --git a/profiles/targets/desktop/make.defaults 
b/profiles/targets/desktop/make.defaults
index 5724093fcef..0d420b3b94e 100644
--- a/profiles/targets/desktop/make.defaults
+++ b/profiles/targets/desktop/make.defaults
@@ -1,4 +1,4 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-USE="a52 aac acpi alsa bluetooth branding cairo cdda cdr consolekit cups dbus 
dri dts dvd dvdr emboss encode exif fam flac gif glamor gpm gtk icu jpeg lcms 
ldap libnotify mad mng mp3 mp4 mpeg ogg opengl pango pdf png policykit ppds qt5 
sdl spell startup-notification svg tiff truetype vorbis udev udisks unicode 
upower usb wxwidgets X xcb x264 xml xv xvid"
+USE="a52 aac acpi alsa bluetooth branding cairo cdda cdr consolekit cups dbus 
dri dts dvd dvdr emboss encode exif fam flac gif gpm gtk icu jpeg lcms ldap 
libnotify mad mng mp3 mp4 mpeg ogg opengl pango pdf png policykit ppds qt5 sdl 
spell startup-notification svg tiff truetype vorbis udev udisks unicode upower 
usb wxwidgets X xcb x264 xml xv xvid"



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

2019-11-03 Thread Matt Turner
commit: d12b997419cdaefed32901d40039e98689258edc
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov  3 22:07:01 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov  3 22:12:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d12b9974

x11-base/xorg-drivers: Update dep for IUSE=glamor removal

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

 x11-base/xorg-drivers/xorg-drivers-1.20.ebuild | 10 +-
 x11-base/xorg-drivers/xorg-drivers-.ebuild | 10 +-
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/x11-base/xorg-drivers/xorg-drivers-1.20.ebuild 
b/x11-base/xorg-drivers/xorg-drivers-1.20.ebuild
index fc0fa18b37a..e11cd07feb3 100644
--- a/x11-base/xorg-drivers/xorg-drivers-1.20.ebuild
+++ b/x11-base/xorg-drivers/xorg-drivers-1.20.ebuild
@@ -72,11 +72,11 @@ PDEPEND="
video_cards_ast?   ( x11-drivers/xf86-video-ast )
video_cards_dummy? ( x11-drivers/xf86-video-dummy )
video_cards_fbdev? ( >=x11-drivers/xf86-video-fbdev-0.5.0 )
-   video_cards_freedreno? ( >=x11-base/xorg-server-${PV}[glamor] )
+   video_cards_freedreno? ( >=x11-base/xorg-server-${PV}[-minimal] )
video_cards_geode? ( x11-drivers/xf86-video-geode )
video_cards_glint? ( >=x11-drivers/xf86-video-glint-1.2.9 )
video_cards_i915?  ( x11-drivers/xf86-video-intel )
-   video_cards_i965?  ( >=x11-base/xorg-server-${PV}[glamor] )
+   video_cards_i965?  ( >=x11-base/xorg-server-${PV}[-minimal] )
video_cards_intel? ( !video_cards_i965? ( 
>=x11-drivers/xf86-video-intel-2.99.917_p20180214-r1 ) )
video_cards_mga?   ( >=x11-drivers/xf86-video-mga-1.6.5 )
video_cards_nouveau?   ( >=x11-drivers/xf86-video-nouveau-1.0.13 )
@@ -86,10 +86,10 @@ PDEPEND="
video_cards_nvidia?( x11-drivers/nvidia-drivers )
video_cards_r128?  ( >=x11-drivers/xf86-video-r128-6.10.2 )
video_cards_radeon?( >=x11-drivers/xf86-video-ati-18.0.1-r1 )
-   video_cards_radeonsi?  ( 
>=x11-drivers/xf86-video-ati-18.0.1-r1[glamor] )
+   video_cards_radeonsi?  ( >=x11-drivers/xf86-video-ati-18.0.1-r1 )
video_cards_siliconmotion? ( 
>=x11-drivers/xf86-video-siliconmotion-1.7.9 )
-   video_cards_tegra? ( >=x11-base/xorg-server-${PV}[glamor] )
-   video_cards_vc4?   ( >=x11-base/xorg-server-${PV}[glamor] )
+   video_cards_tegra? ( >=x11-base/xorg-server-${PV}[-minimal] )
+   video_cards_vc4?   ( >=x11-base/xorg-server-${PV}[-minimal] )
video_cards_vesa?  ( x11-drivers/xf86-video-vesa )
video_cards_via?   ( x11-drivers/xf86-video-openchrome )
video_cards_virtualbox?( x11-drivers/xf86-video-vboxvideo )

diff --git a/x11-base/xorg-drivers/xorg-drivers-.ebuild 
b/x11-base/xorg-drivers/xorg-drivers-.ebuild
index 10daad342d7..cd83934c3ef 100644
--- a/x11-base/xorg-drivers/xorg-drivers-.ebuild
+++ b/x11-base/xorg-drivers/xorg-drivers-.ebuild
@@ -72,11 +72,11 @@ PDEPEND="
video_cards_ast?   ( x11-drivers/xf86-video-ast )
video_cards_dummy? ( x11-drivers/xf86-video-dummy )
video_cards_fbdev? ( >=x11-drivers/xf86-video-fbdev-0.5.0 )
-   video_cards_freedreno? ( >=x11-base/xorg-server-${PV}[glamor] )
+   video_cards_freedreno? ( >=x11-base/xorg-server-${PV}[-minimal] )
video_cards_geode? ( x11-drivers/xf86-video-geode )
video_cards_glint? ( >=x11-drivers/xf86-video-glint-1.2.9 )
video_cards_i915?  ( x11-drivers/xf86-video-intel )
-   video_cards_i965?  ( >=x11-base/xorg-server-${PV}[glamor] )
+   video_cards_i965?  ( >=x11-base/xorg-server-${PV}[-minimal] )
video_cards_intel? ( !video_cards_i965? ( 
>=x11-drivers/xf86-video-intel-2.99.917_p20180214-r1 ) )
video_cards_mga?   ( >=x11-drivers/xf86-video-mga-1.6.5 )
video_cards_nouveau?   ( >=x11-drivers/xf86-video-nouveau-1.0.13 )
@@ -86,10 +86,10 @@ PDEPEND="
video_cards_nvidia?( x11-drivers/nvidia-drivers )
video_cards_r128?  ( >=x11-drivers/xf86-video-r128-6.10.2 )
video_cards_radeon?( >=x11-drivers/xf86-video-ati-18.0.1-r1 )
-   video_cards_radeonsi?  ( 
>=x11-drivers/xf86-video-ati-18.0.1-r1[glamor] )
+   video_cards_radeonsi?  ( >=x11-drivers/xf86-video-ati-18.0.1-r1 )
video_cards_siliconmotion? ( 
>=x11-drivers/xf86-video-siliconmotion-1.7.9 )
-   video_cards_tegra? ( >=x11-base/xorg-server-${PV}[glamor] )
-   video_cards_vc4?   ( >=x11-base/xorg-server-${PV}[glamor] )
+   video_cards_tegra? ( >=x11-base/xorg-server-${PV}[-minimal] )
+   video_cards_vc4?   ( 

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

2019-11-03 Thread Matt Turner
commit: 973e7833b16816c19d0f6015fec49cc26bc376d3
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov  3 22:02:49 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov  3 22:12:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=973e7833

x11-drivers/xf86-video-ati: Drop glamor USE flag

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

 x11-drivers/xf86-video-ati/metadata.xml | 3 ---
 x11-drivers/xf86-video-ati/xf86-video-ati-19.0.1.ebuild | 6 +++---
 x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild | 6 +++---
 x11-drivers/xf86-video-ati/xf86-video-ati-.ebuild   | 6 +++---
 4 files changed, 9 insertions(+), 12 deletions(-)

diff --git a/x11-drivers/xf86-video-ati/metadata.xml 
b/x11-drivers/xf86-video-ati/metadata.xml
index 38cf49862d0..e943b72b8a4 100644
--- a/x11-drivers/xf86-video-ati/metadata.xml
+++ b/x11-drivers/xf86-video-ati/metadata.xml
@@ -5,7 +5,4 @@
x...@gentoo.org
X11
 
-
-   Enable Glamor OpenGL 2D acceleration
-
 

diff --git a/x11-drivers/xf86-video-ati/xf86-video-ati-19.0.1.ebuild 
b/x11-drivers/xf86-video-ati/xf86-video-ati-19.0.1.ebuild
index 489c9927db8..7b2f0601420 100644
--- a/x11-drivers/xf86-video-ati/xf86-video-ati-19.0.1.ebuild
+++ b/x11-drivers/xf86-video-ati/xf86-video-ati-19.0.1.ebuild
@@ -15,11 +15,11 @@ fi
 DESCRIPTION="ATI video driver"
 HOMEPAGE="https://www.x.org/wiki/ati/;
 
-IUSE="+glamor udev"
+IUSE="udev"
 
 RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_radeon]
>=x11-libs/libpciaccess-0.8.0
-   glamor? ( x11-base/xorg-server[glamor] )
+   x11-base/xorg-server[-minimal]
udev? ( virtual/libudev:= )"
 DEPEND="${RDEPEND}
x11-base/xorg-proto"
@@ -37,7 +37,7 @@ pkg_pretend() {
 
 pkg_setup() {
XORG_CONFIGURE_OPTIONS=(
-   $(use_enable glamor)
+   --enable-glamor
$(use_enable udev)
)
 }

diff --git a/x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild 
b/x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild
index 252dd5e7f9c..2aab4b2d729 100644
--- a/x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild
+++ b/x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild
@@ -15,11 +15,11 @@ fi
 DESCRIPTION="ATI video driver"
 HOMEPAGE="https://www.x.org/wiki/ati/;
 
-IUSE="+glamor udev"
+IUSE="udev"
 
 RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_radeon]
>=x11-libs/libpciaccess-0.8.0
-   glamor? ( x11-base/xorg-server[glamor] )
+   x11-base/xorg-server[-minimal]
udev? ( virtual/libudev:= )"
 DEPEND="${RDEPEND}
x11-base/xorg-proto"
@@ -37,7 +37,7 @@ pkg_pretend() {
 
 pkg_setup() {
XORG_CONFIGURE_OPTIONS=(
-   $(use_enable glamor)
+   --enable-glamor
$(use_enable udev)
)
 }

diff --git a/x11-drivers/xf86-video-ati/xf86-video-ati-.ebuild 
b/x11-drivers/xf86-video-ati/xf86-video-ati-.ebuild
index 252dd5e7f9c..2aab4b2d729 100644
--- a/x11-drivers/xf86-video-ati/xf86-video-ati-.ebuild
+++ b/x11-drivers/xf86-video-ati/xf86-video-ati-.ebuild
@@ -15,11 +15,11 @@ fi
 DESCRIPTION="ATI video driver"
 HOMEPAGE="https://www.x.org/wiki/ati/;
 
-IUSE="+glamor udev"
+IUSE="udev"
 
 RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_radeon]
>=x11-libs/libpciaccess-0.8.0
-   glamor? ( x11-base/xorg-server[glamor] )
+   x11-base/xorg-server[-minimal]
udev? ( virtual/libudev:= )"
 DEPEND="${RDEPEND}
x11-base/xorg-proto"
@@ -37,7 +37,7 @@ pkg_pretend() {
 
 pkg_setup() {
XORG_CONFIGURE_OPTIONS=(
-   $(use_enable glamor)
+   --enable-glamor
$(use_enable udev)
)
 }



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

2019-11-03 Thread Matt Turner
commit: dba654a63339bddce214386c83330c39e443fd06
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov  3 21:55:57 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov  3 22:12:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dba654a6

x11-base/xorg-server: Enable glamor with USE=-minimal

It only adds a dependency on media-libs/libepoxy which is small and used
by many other packages. glamor can be disabled at runtime with Option
"AccelMethod" in xorg.conf.

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

 x11-base/xorg-server/metadata.xml  |  1 -
 x11-base/xorg-server/xorg-server-1.20.5.ebuild | 17 +++--
 x11-base/xorg-server/xorg-server-.ebuild   | 18 --
 3 files changed, 15 insertions(+), 21 deletions(-)

diff --git a/x11-base/xorg-server/metadata.xml 
b/x11-base/xorg-server/metadata.xml
index b3f0d6f2cde..2e8d8799f90 100644
--- a/x11-base/xorg-server/metadata.xml
+++ b/x11-base/xorg-server/metadata.xml
@@ -8,7 +8,6 @@
 
Build the Distributed Multiheaded X server
Use elogind to get control over framebuffer when 
running as regular user
-   Enable Glamor OpenGL 2D acceleration
Build the kdrive X servers
Use libglvnd for dispatch.
Enable libunwind usage for backtraces

diff --git a/x11-base/xorg-server/xorg-server-1.20.5.ebuild 
b/x11-base/xorg-server/xorg-server-1.20.5.ebuild
index 601e6ae7a36..8f859c2eaf5 100644
--- a/x11-base/xorg-server/xorg-server-1.20.5.ebuild
+++ b/x11-base/xorg-server/xorg-server-1.20.5.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} != * ]]; then
 fi
 
 IUSE_SERVERS="dmx kdrive wayland xephyr xnest xorg xvfb"
-IUSE="${IUSE_SERVERS} debug elogind +glamor ipv6 libressl libglvnd minimal 
selinux +suid systemd +udev unwind xcsecurity"
+IUSE="${IUSE_SERVERS} debug elogind ipv6 libressl libglvnd minimal selinux 
+suid systemd +udev unwind xcsecurity"
 
 CDEPEND="libglvnd? (
media-libs/libglvnd
@@ -52,11 +52,6 @@ CDEPEND="libglvnd? (
>=x11-libs/libXres-1.0.3
>=x11-libs/libXtst-1.0.99.2
)
-   glamor? (
-   media-libs/libepoxy[X,egl(+)]
-   >=media-libs/mesa-18[egl,gbm]
-   !x11-libs/glamor
-   )
kdrive? (
>=x11-libs/libXext-1.0.5
x11-libs/libXv
@@ -72,7 +67,8 @@ CDEPEND="libglvnd? (
!minimal? (
>=x11-libs/libX11-1.1.5
>=x11-libs/libXext-1.0.5
-   >=media-libs/mesa-18[X(+)]
+   >=media-libs/mesa-18[X(+),egl,gbm]
+   media-libs/libepoxy[X,egl(+)]
)
udev? ( virtual/libudev:= )
unwind? ( sys-libs/libunwind )
@@ -119,7 +115,7 @@ REQUIRED_USE="!minimal? (
)
elogind? ( udev )
?? ( elogind systemd )
-   minimal? ( !glamor !wayland )
+   minimal? ( !wayland )
xephyr? ( kdrive )"
 
 UPSTREAMED_PATCHES=(
@@ -136,9 +132,10 @@ PATCHES=(
 )
 
 pkg_setup() {
-   if use wayland && ! use glamor; then
+   if use wayland && use minimal; then
ewarn "glamor is necessary for acceleration under Xwayland."
ewarn "Performance may be unacceptable without it."
+   ewarn "Build with USE=-minimal to enable glamor."
fi
 
# localstatedir is used for the log location; we need to override the 
default
@@ -150,7 +147,6 @@ pkg_setup() {
$(use_enable ipv6)
$(use_enable debug)
$(use_enable dmx)
-   $(use_enable glamor)
$(use_enable kdrive)
$(use_enable unwind libunwind)
$(use_enable wayland xwayland)
@@ -159,6 +155,7 @@ pkg_setup() {
$(use_enable !minimal dri)
$(use_enable !minimal dri2)
$(use_enable !minimal dri3)
+   $(use_enable !minimal glamor)
$(use_enable !minimal glx)
$(use_enable xcsecurity)
$(use_enable xephyr)

diff --git a/x11-base/xorg-server/xorg-server-.ebuild 
b/x11-base/xorg-server/xorg-server-.ebuild
index e9c4e004534..25dac9a8620 100644
--- a/x11-base/xorg-server/xorg-server-.ebuild
+++ b/x11-base/xorg-server/xorg-server-.ebuild
@@ -4,6 +4,7 @@
 EAPI=7
 
 XORG_DOC=doc
+XORG_EAUTORECONF="yes"
 inherit xorg-3 multilib flag-o-matic
 EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/xserver.git;
 
@@ -14,7 +15,7 @@ if [[ ${PV} != * ]]; then
 fi
 
 IUSE_SERVERS="dmx kdrive wayland xephyr xnest xorg xvfb"
-IUSE="${IUSE_SERVERS} debug elogind +glamor ipv6 libressl libglvnd minimal 
selinux +suid systemd +udev unwind xcsecurity"
+IUSE="${IUSE_SERVERS} debug elogind ipv6 libressl libglvnd minimal selinux 
+suid systemd +udev unwind xcsecurity"
 
 CDEPEND="libglvnd? (
media-libs/libglvnd
@@ -51,11 +52,6 @@ CDEPEND="libglvnd? (

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

2019-11-03 Thread Matt Turner
commit: 31a4af30aa5170f62e70639c4fab35b76e304446
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov  3 22:03:47 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov  3 22:12:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31a4af30

x11-drivers/xf86-video-amdgpu: Update dep for IUSE=glamor removal

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

 x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-19.0.1.ebuild | 2 +-
 x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-19.1.0.ebuild | 2 +-
 x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-.ebuild   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-19.0.1.ebuild 
b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-19.0.1.ebuild
index 195ac3dbba1..d1d64a0c5d9 100644
--- a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-19.0.1.ebuild
+++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-19.0.1.ebuild
@@ -16,7 +16,7 @@ DESCRIPTION="Accelerated Open Source driver for AMDGPU cards"
 IUSE="udev"
 
 RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_amdgpu]
-   x11-base/xorg-server[glamor(-)]
+   x11-base/xorg-server[-minimal]
udev? ( virtual/libudev:= )"
 DEPEND="${RDEPEND}"
 

diff --git a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-19.1.0.ebuild 
b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-19.1.0.ebuild
index dc1d719f289..726d5faa862 100644
--- a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-19.1.0.ebuild
+++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-19.1.0.ebuild
@@ -16,7 +16,7 @@ DESCRIPTION="Accelerated Open Source driver for AMDGPU cards"
 IUSE="udev"
 
 RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_amdgpu]
-   x11-base/xorg-server[glamor(-)]
+   x11-base/xorg-server[-minimal]
udev? ( virtual/libudev:= )"
 DEPEND="${RDEPEND}"
 

diff --git a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-.ebuild 
b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-.ebuild
index dc1d719f289..726d5faa862 100644
--- a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-.ebuild
+++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-.ebuild
@@ -16,7 +16,7 @@ DESCRIPTION="Accelerated Open Source driver for AMDGPU cards"
 IUSE="udev"
 
 RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_amdgpu]
-   x11-base/xorg-server[glamor(-)]
+   x11-base/xorg-server[-minimal]
udev? ( virtual/libudev:= )"
 DEPEND="${RDEPEND}"
 



[gentoo-commits] repo/gentoo:master commit in: net-im/mattermost-desktop-bin/

2019-11-03 Thread Matthew Thode
commit: 48076b8ca205364318b89f183f331af0d757bfac
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Nov  3 22:08:36 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Nov  3 22:08:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48076b8c

net-im/mattermost-desktop-bin: fix dosym

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

 net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.3.1.ebuild 
b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.3.1.ebuild
index 288732cad02..49e7cc922ba 100644
--- a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.3.1.ebuild
+++ b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.3.1.ebuild
@@ -84,7 +84,7 @@ src_install() {
exeinto "/opt/${MY_PN}"
doexe *.so "${MY_PN}"
 
-   dosym "/opt/${MY_PN}/${MY_PN}" "/usr/bin/${MY_PN}"
+   dosym "../../opt/${MY_PN}/${MY_PN}" "${EROOT}/usr/bin/${MY_PN}"
 
newicon "${S}/icon.svg" "${MY_PN}.svg"
make_desktop_entry "${MY_PN}" Mattermost "${MY_PN}"



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

2019-11-03 Thread Cédric Krier
commit: 8e5dee4d6e971d00fefffa1c81cae5e50fd55dfd
Author: Cédric Krier  gentoo  org>
AuthorDate: Sun Nov  3 22:06:49 2019 +
Commit: Cédric Krier  gentoo  org>
CommitDate: Sun Nov  3 22:06:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e5dee4d

dev-python/phonenumbers: Version bumps

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Cédric Krier  gentoo.org>

 dev-python/phonenumbers/Manifest| 2 +-
 .../{phonenumbers-8.10.18.ebuild => phonenumbers-8.10.22.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/phonenumbers/Manifest b/dev-python/phonenumbers/Manifest
index bf224349d2c..7c1f81b8931 100644
--- a/dev-python/phonenumbers/Manifest
+++ b/dev-python/phonenumbers/Manifest
@@ -1 +1 @@
-DIST phonenumbers-8.10.18.tar.gz 2307397 BLAKE2B 
13e39a6fbb1a3d08dfbd373f1e425a8dd7fc7199e9cf0eb4386bf9cf1dcdaa6e90ff9cf1aa5ae9296397f827e8db1f02d740bcffba40810f4e6d74563b398dc5
 SHA512 
001c549d561770d1e0cbe6c8b15b091fad0eb362d5893b4d066f773ef497ed3b2b27c3a85f7114c1d8b41a16614005b8947ee5189b5bebfc6ee044cd3f0fa30b
+DIST phonenumbers-8.10.22.tar.gz 2307815 BLAKE2B 
397711a4cca97be68986cbb21ab971710c213a74fbb0e2c79de67b98ab44c3e25e95f6bfc2c469c1abfaf0d1c3848114a0be47d08650c7ac57a01240b7a79270
 SHA512 
f7c540276324a373bc0caa9aa3b87da31b98bfd24fbffab2f9137f0c6f72bba88022d9820193dfe482ee621fc3c90126bd93cb51bb4715dcbd1c3fa689e055b5

diff --git a/dev-python/phonenumbers/phonenumbers-8.10.18.ebuild 
b/dev-python/phonenumbers/phonenumbers-8.10.22.ebuild
similarity index 100%
rename from dev-python/phonenumbers/phonenumbers-8.10.18.ebuild
rename to dev-python/phonenumbers/phonenumbers-8.10.22.ebuild



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

2019-11-03 Thread Zac Medico
commit: bc2a6090600db70d91ddc6a52828a353c19ea333
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Nov  3 21:40:30 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Nov  3 21:41:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc2a6090

app-emulation/libpod: Bump to version 1.6.3

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.6.3.ebuild | 130 +++
 2 files changed, 131 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index 24023149209..e09b88df125 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1,2 +1,3 @@
 DIST libpod-1.5.1.tar.gz 8010274 BLAKE2B 
4928b45a6d86fe14ff7359c856da664d14fc578dcff095c984eb0fa3b4aed42576cf610f19a9015064f406109d79cd6df60eb0b2990e5058de1e4f9f7d9ae7ee
 SHA512 
d9d422c4189adb840cfe3dd8b7e8278412f0ea17e4ccd2cdf4f4b134a87b1add61bbdca1c8d9db3db846c272e2ab3f624bf9e4aac005b78d0c7e161af898dc02
 DIST libpod-1.6.2.tar.gz 8270781 BLAKE2B 
5d86533ddc821f731292e126102a31d651956c275a22c5c4ab3c57b9351832a1d85d75be877343c60af47716f9d1776315b3bf41fb17037d02fee10cf88efba3
 SHA512 
68192dda019623e3f3af9f82f946be8efbaf3e2c54acf23f62af67ac1ca093dd4dba11d2a7c1c950b99060393ed7e945752c1eaa9eada0dfc30f3dcaac8e1c04
+DIST libpod-1.6.3.tar.gz 8340471 BLAKE2B 
b017a29ab034d8432b3abe2d920e0a71ad6542a5f088ed0de8fc67e846b409efbfd5be2e72908b52b5d21f05ce30c31db3bd55f8d8974711eb8f48cf8c3553a5
 SHA512 
a4d9f4c74db42fade86c36f4b2c27b8b3ff42db90af21bccab2eae8e9d710ae102c05e1fa926ac1d8e67613e11fa40163800077b61e49d90de521ab472e9c8dd

diff --git a/app-emulation/libpod/libpod-1.6.3.ebuild 
b/app-emulation/libpod/libpod-1.6.3.ebuild
new file mode 100644
index 000..f2d8fa4c489
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.6.3.ebuild
@@ -0,0 +1,130 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="9d087f6a766259ba53b224944f1b7b778035c370"
+
+inherit bash-completion-r1 flag-o-matic go-module
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree +rootless selinux"
+REQUIRED_USE="!ostree"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   >=app-emulation/runc-1.0.0_rc6
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   export -n GOCACHE XDG_CACHE_HOME
+   GOBIN="${S}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   GIT_BRANCH_CLEAN=master \
+   COMMIT_NO="${EGIT_COMMIT}" \
+   GIT_COMMIT="${EGIT_COMMIT}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+
+   insinto /etc/containers
+   newins test/registries.conf registries.conf.example
+   newins test/policy.json policy.json.example
+
+   newinitd "${FILESDIR}"/podman.initd podman
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/podman.logrotated" podman
+
+  

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

2019-11-03 Thread Matthew Thode
commit: 8649651cb261c051ab550ee372b288c69cdc6939
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Nov  3 21:07:50 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Nov  3 21:08:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8649651c

sys-cluster/openstack-meta: switch to ~ from =

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

 .../openstack-meta/openstack-meta-2019.2.1.ebuild| 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/sys-cluster/openstack-meta/openstack-meta-2019.2.1.ebuild 
b/sys-cluster/openstack-meta/openstack-meta-2019.2.1.ebuild
index 63696c6be7e..ac4818df593 100644
--- a/sys-cluster/openstack-meta/openstack-meta-2019.2.1.ebuild
+++ b/sys-cluster/openstack-meta/openstack-meta-2019.2.1.ebuild
@@ -16,12 +16,12 @@ fi
 
 DEPEND=""
 RDEPEND="
-   keystone? ( =sys-auth/keystone-16.0.0 )
-   swift? ( =sys-cluster/swift-2.23.1 )
-   neutron? ( =sys-cluster/neutron-15.0.0 )
-   glance? ( =app-admin/glance-19.0.0 )
-   cinder? ( =sys-cluster/cinder-15.0.0 )
-   nova? ( =sys-cluster/nova-20.0.0 )
-   heat? ( =sys-cluster/heat-13.0.0 )
-   placement? ( =sys-cluster/placement-2.0.0 )
+   keystone? ( ~sys-auth/keystone-16.0.0 )
+   swift? ( ~sys-cluster/swift-2.23.1 )
+   neutron? ( ~sys-cluster/neutron-15.0.0 )
+   glance? ( ~app-admin/glance-19.0.0 )
+   cinder? ( ~sys-cluster/cinder-15.0.0 )
+   nova? ( ~sys-cluster/nova-20.0.0 )
+   heat? ( ~sys-cluster/heat-13.0.0 )
+   placement? ( ~sys-cluster/placement-2.0.0 )
 "



[gentoo-commits] repo/gentoo:master commit in: dev-ada/libadalang-tools/

2019-11-03 Thread Alfredo Tupone
commit: 8eb97c26aafd517175544eab34ebcad31893a50f
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Sun Nov  3 21:06:52 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Sun Nov  3 21:07:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eb97c26

dev-ada/libadalang-tools: remove use gnat_2016

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/libadalang-tools/libadalang-tools-2018.ebuild | 4 ++--
 dev-ada/libadalang-tools/libadalang-tools-2019.ebuild | 5 ++---
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/dev-ada/libadalang-tools/libadalang-tools-2018.ebuild 
b/dev-ada/libadalang-tools/libadalang-tools-2018.ebuild
index 65d07091482..308236635c2 100644
--- a/dev-ada/libadalang-tools/libadalang-tools-2018.ebuild
+++ b/dev-ada/libadalang-tools/libadalang-tools-2018.ebuild
@@ -12,11 +12,11 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5b0819dfc7a447df26c27a59 ->
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE="gnat_2016 gnat_2017 +gnat_2018"
+IUSE="gnat_2017 +gnat_2018"
 
 RDEPEND=""
 DEPEND="${RDEPEND}
-   
dev-ada/libadalang[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?,static-libs]"
+   dev-ada/libadalang[gnat_2017(-)?,gnat_2018(-)?,static-libs]"
 
 S="${WORKDIR}"/${PN}-src
 

diff --git a/dev-ada/libadalang-tools/libadalang-tools-2019.ebuild 
b/dev-ada/libadalang-tools/libadalang-tools-2019.ebuild
index b32836a551f..1a42399a912 100644
--- a/dev-ada/libadalang-tools/libadalang-tools-2019.ebuild
+++ b/dev-ada/libadalang-tools/libadalang-tools-2019.ebuild
@@ -14,13 +14,12 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5cdf8f4e31e87a8f1d42509f ->
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE="gnat_2016 gnat_2017 gnat_2018 +gnat_2019"
+IUSE="gnat_2017 gnat_2018 +gnat_2019"
 
 RDEPEND=""
 DEPEND="${RDEPEND}
-   dev-ada/libadalang[gnat_2016(-)?]

dev-ada/libadalang[gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?,static-libs]
-   dev-ada/gprbuild[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?]
+   dev-ada/gprbuild[gnat_2017(-)?,gnat_2018(-)?]
dev-ada/gprbuild[gnat_2019(-)?]"
 
 S="${WORKDIR}"/${MYP}-src



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

2019-11-03 Thread Stefan Strogin
commit: 246b84be1eb3b268b5be04904798b721dd321585
Author: Stefan Strogin  gentoo  org>
AuthorDate: Sun Nov  3 21:04:24 2019 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Sun Nov  3 21:05:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=246b84be

package.mask: unmask >=dev-libs/libressl-3.0.1

Signed-off-by: Stefan Strogin  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 1f08542e16e..8bd68121832 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -338,10 +338,6 @@ mail-mta/qmail-ldap
 # Removal in 30 days.  Bug #696916.
 net-im/openfire
 
-# Stefan Strogin  (2019-10-05)
-# Masked for testing
->=dev-libs/libressl-3.0.1
-
 # Michał Górny  (2019-10-05)
 # Apparently included in apache-2.4, rendering split package obsolete.
 # Removal in 30 days.  Bug #680768.



[gentoo-commits] repo/gentoo:master commit in: app-cdr/xfburn/

2019-11-03 Thread Michał Górny
commit: ea43f79581897a92eb81459660f74b53e7ed5da6
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov  3 20:26:38 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov  3 20:58:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea43f795

app-cdr/xfburn: Bump to 0.6.1

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

 app-cdr/xfburn/Manifest|  1 +
 app-cdr/xfburn/xfburn-0.6.1.ebuild | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/app-cdr/xfburn/Manifest b/app-cdr/xfburn/Manifest
index 1d5a92c6b95..8735087f6cd 100644
--- a/app-cdr/xfburn/Manifest
+++ b/app-cdr/xfburn/Manifest
@@ -1,2 +1,3 @@
 DIST xfburn-0.5.5.tar.bz2 819546 BLAKE2B 
180f50e9dc8e9bb2372ac7335374b09eade93b6477e557b4282ee65705e55d1f391578343e3473061921cfe296e0da9dae0ddb8823fc5daadc673537331f3085
 SHA512 
37574aa7dcec65c26a8fd5019c3776196763fa1ebb0f531002f5bcb72a6eb0ec19ed994dd14726988766d890ef257c39c26e64ca3f5944386c03d9b54c26a90a
 DIST xfburn-0.6.0.tar.bz2 847356 BLAKE2B 
76f7dce31166b4524631fb1278adfb8a456f5ec8202ca1e29d86cc52b58a084a09099602c3258eda85f93e0d802afd281a15d91801b79d16520ebd13cc5fceb8
 SHA512 
b72f75ed8923cda1eaed9c64385a9e578635a678ef6fce54e8d1b27e3974b8def8b83ec66a1e0113521fe637901af02c53bb806e1b67e10687b7e0a6c9d80a5b
+DIST xfburn-0.6.1.tar.bz2 847568 BLAKE2B 
30ce56257d4794c23712cebd334f0cfa6c631f55f7213fc7daecb1d693450821faef4c9a78de824e7832fdcb91c128fb75c639a5fa403932e74619cc8910e5ed
 SHA512 
8ea747ab248a20e835082bbb89e09c3e4746201a1da956bc87a2eef5359d1508e5461c7d8a35327aa2261fb7cac576e8521596f83011bc2240b2fbebde60b9c2

diff --git a/app-cdr/xfburn/xfburn-0.6.1.ebuild 
b/app-cdr/xfburn/xfburn-0.6.1.ebuild
new file mode 100644
index 000..d33252959c5
--- /dev/null
+++ b/app-cdr/xfburn/xfburn-0.6.1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="GTK+ based CD and DVD burning application"
+HOMEPAGE="https://goodies.xfce.org/projects/applications/xfburn;
+SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
+IUSE="gstreamer +udev"
+
+RDEPEND=">=dev-libs/glib-2.32:=
+   >=dev-libs/libburn-0.4.2:=
+   >=dev-libs/libisofs-0.6.2:=
+   >=x11-libs/gtk+-3.20:3=
+   >=xfce-base/exo-0.11:=
+   >=xfce-base/libxfce4ui-4.12:=
+   gstreamer? (
+   media-libs/gstreamer:1.0=
+   media-libs/gst-plugins-base:1.0= )
+   udev? ( dev-libs/libgudev:= )"
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+src_configure() {
+   local myconf=(
+   $(use_enable udev gudev)
+   $(use_enable gstreamer)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: app-portage/java-ebuilder/

2019-11-03 Thread Miroslav Šulc
commit: 9679eeb8cb5cb72c3431af854be544316aa4f084
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Nov  3 20:56:13 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Nov  3 20:56:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9679eeb8

app-portage/java-ebuilder-0.4.0: bump

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 app-portage/java-ebuilder/Manifest  | 2 +-
 .../{java-ebuilder-0.3.0.ebuild => java-ebuilder-0.4.0.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/java-ebuilder/Manifest 
b/app-portage/java-ebuilder/Manifest
index 5cf9428f053..c47e29cf026 100644
--- a/app-portage/java-ebuilder/Manifest
+++ b/app-portage/java-ebuilder/Manifest
@@ -1 +1 @@
-DIST java-ebuilder-0.3.0.tar.gz 23127 BLAKE2B 
2893d8afffe128bff769f2e2bbeaa393182c8d6671cdc3da0755a3cabb07552f6f22d9120e77232f7db83dbde5baae8ce9b40becbad85fabaf5238f6ee96bbeb
 SHA512 
0f6ce22d144e888c05d4cbe488434454f9f5ff8598ebb6e6f9734bab90cead14283b6b82b5bfc52aa43f39ad786085453d6171d81537af2983717363645b6c63
+DIST java-ebuilder-0.4.0.tar.gz 26063 BLAKE2B 
ae7dfac8695ab1b0c42b1c12f4bb3a4bb088b95f30e9c1563aa39e5bf05f0e3c1ceee17802c1e7b858f875a88b179f64b2cc6075b051b9bdbf8a4c017bf25248
 SHA512 
690e80296c48ba34076f6fc75ff4c131dc9e633e49d818d8db8a9a8bba3e0281bd5049768b8130eaa212f2d7782f7a4fcb6ae44de0e5e57be363d4936152

diff --git a/app-portage/java-ebuilder/java-ebuilder-0.3.0.ebuild 
b/app-portage/java-ebuilder/java-ebuilder-0.4.0.ebuild
similarity index 100%
rename from app-portage/java-ebuilder/java-ebuilder-0.3.0.ebuild
rename to app-portage/java-ebuilder/java-ebuilder-0.4.0.ebuild



[gentoo-commits] proj/java-ebuilder: New tag: 0.4.0

2019-11-03 Thread Miroslav Šulc
commit: 
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Nov  3 20:53:32 2019 +

New tag: 0.4.0




[gentoo-commits] proj/java-ebuilder:master commit in: /

2019-11-03 Thread Miroslav Šulc
commit: 4b2a4637ab026982ca541b12d33e646ec5a2eded
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Nov  3 20:52:51 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Nov  3 20:53:01 2019 +
URL:https://gitweb.gentoo.org/proj/java-ebuilder.git/commit/?id=4b2a4637

release 0.4.0

Signed-off-by: Miroslav Šulc  gentoo.org>

 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 0f7729f..23df7aa 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
 4.0.0
 org.gentoo
 java-ebuilder
-0.4.0-SNAPSHOT
+0.4.0
 jar
 Gentoo Java ebuild Builder
 Java team tool for semi-automatic creation of ebuilds from 
pom.xml.



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

2019-11-03 Thread Louis Sautier
commit: 95511d79bc4214a1475e1ae8c91fa42db59fde77
Author: Louis Sautier  gentoo  org>
AuthorDate: Sun Nov  3 20:37:59 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sun Nov  3 20:48:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95511d79

dev-python/html2text: add PyPI upstream info to metadata.xml

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/html2text/metadata.xml | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/dev-python/html2text/metadata.xml 
b/dev-python/html2text/metadata.xml
index 3f2858f880f..10cbc1a47a3 100644
--- a/dev-python/html2text/metadata.xml
+++ b/dev-python/html2text/metadata.xml
@@ -1,11 +1,12 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-pyt...@gentoo.org
-Python
-  
-  
-Alir3z4/html2text
-  
+   
+   pyt...@gentoo.org
+   Python
+   
+   
+   Alir3z4/html2text
+   html2text
+   
 



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

2019-11-03 Thread Louis Sautier
commit: 011e8d3137d03208b4d1c12f6f9becb5a55173eb
Author: Louis Sautier  gentoo  org>
AuthorDate: Sun Nov  3 20:36:31 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sun Nov  3 20:48:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=011e8d31

dev-python/html2text: bump to 2019.9.26, support Python 3.7

* Python 2 is no longer supported.
* chardet and feedparser are no longer required.
* pytest is now required to run tests.
* fetch source from PyPI instead of GitHub.

Closes: https://bugs.gentoo.org/694524
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/html2text/Manifest   |  1 +
 dev-python/html2text/html2text-2019.9.26.ebuild | 35 +
 2 files changed, 36 insertions(+)

diff --git a/dev-python/html2text/Manifest b/dev-python/html2text/Manifest
index 71e2e3a3259..36125da4c2a 100644
--- a/dev-python/html2text/Manifest
+++ b/dev-python/html2text/Manifest
@@ -1,3 +1,4 @@
 DIST html2text-2016.5.29.tar.gz 46879 BLAKE2B 
0e7ccae7ae4d90fb202d9fdb8edd81f74b204f81c2410f345eb923fe610f61fab6ba71bcc95138fb3706ee51007a2c72c76497cee48818032934e7f809fd46ae
 SHA512 
58b71fda6ea6fd1a71dec757c91cf342265a2c89ff5c45e752436068419fb6c1faa1ca0d5a6baafaaa60186a85aefdd840989177ce30e55bcda1c6209fc375be
 DIST html2text-2017.10.4.tar.gz 50527 BLAKE2B 
96b7060761a629cf4313104323517c4a9070aabfa02be43e80c89b56b92329785817abc7ab9fef4a8537cbde4a797926d3c1d444c11f3db6112074a31d8a8e61
 SHA512 
c7f9b765572b5eac72837aa757f0be07df0270b49f9b3a3ec8c3c65ff929505166b0510c106116ffdca484b56120b6c162f86b600d88a5a35e86d06cd6b6fa19
 DIST html2text-2018.1.9-1.tar.gz 51173 BLAKE2B 
a21cd3e579d47081e669fda3f3147fc28d816478885942565a1b93b86292e2729e93bfea6b5326703e575f209f5bd7dd905d72011b8153b8c40d31c83acf9057
 SHA512 
773b508864a2fa31e961e132118702429f5b7836e90bd521db2ed6b4215de49d63991a99b7ad7d5aac3074a3c14e4d384557a4eb5b43c7e2aada46d5434ed229
+DIST html2text-2019.9.26.tar.gz 48634 BLAKE2B 
efece48c7b05171f9bae833663292d7804838b5a791f1f734b3a258843a71616ada2ebee7cee406e0bfa1a3dce67040d41621bd87be100a2c0d4ca6d75829aa9
 SHA512 
4c6a52e96d3997a6ebe41c2955e2f6bd5189f49aadd7d7afbe67b85a2f61a0aafd0fc09fef184cb9407b9ab26f120ef235294e4e9d8f41e3b6b8f6fc29aa386d

diff --git a/dev-python/html2text/html2text-2019.9.26.ebuild 
b/dev-python/html2text/html2text-2019.9.26.ebuild
new file mode 100644
index 000..d79e5a231b4
--- /dev/null
+++ b/dev-python/html2text/html2text-2019.9.26.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( pypy3 python3_{5,6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Turn HTML into equivalent Markdown-structured text"
+HOMEPAGE="https://github.com/Alir3z4/html2text 
https://pypi.org/project/html2text/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE="test"
+
+# pkg_resources is used for entry points
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+"
+
+DOCS=( AUTHORS.rst ChangeLog.rst README.md )
+
+python_prepare_all() {
+   # naming conflict with app-text/html2text, bug 421647
+   sed -i 's/html2text = html2text.cli:main/py\0/' setup.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   pytest -vv || die "tests failed with ${EPYTHON}"
+}



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

2019-11-03 Thread Louis Sautier
commit: f26a5a8777e14c7935b0a5bef161d1b665e4e27a
Author: Louis Sautier  gentoo  org>
AuthorDate: Sun Nov  3 20:44:03 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sun Nov  3 20:48:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f26a5a87

dev-python/html2text: remove old

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/html2text/Manifest   |  2 --
 dev-python/html2text/html2text-2016.5.29.ebuild | 35 -
 dev-python/html2text/html2text-2017.10.4.ebuild | 34 
 3 files changed, 71 deletions(-)

diff --git a/dev-python/html2text/Manifest b/dev-python/html2text/Manifest
index 36125da4c2a..e832f9d7c99 100644
--- a/dev-python/html2text/Manifest
+++ b/dev-python/html2text/Manifest
@@ -1,4 +1,2 @@
-DIST html2text-2016.5.29.tar.gz 46879 BLAKE2B 
0e7ccae7ae4d90fb202d9fdb8edd81f74b204f81c2410f345eb923fe610f61fab6ba71bcc95138fb3706ee51007a2c72c76497cee48818032934e7f809fd46ae
 SHA512 
58b71fda6ea6fd1a71dec757c91cf342265a2c89ff5c45e752436068419fb6c1faa1ca0d5a6baafaaa60186a85aefdd840989177ce30e55bcda1c6209fc375be
-DIST html2text-2017.10.4.tar.gz 50527 BLAKE2B 
96b7060761a629cf4313104323517c4a9070aabfa02be43e80c89b56b92329785817abc7ab9fef4a8537cbde4a797926d3c1d444c11f3db6112074a31d8a8e61
 SHA512 
c7f9b765572b5eac72837aa757f0be07df0270b49f9b3a3ec8c3c65ff929505166b0510c106116ffdca484b56120b6c162f86b600d88a5a35e86d06cd6b6fa19
 DIST html2text-2018.1.9-1.tar.gz 51173 BLAKE2B 
a21cd3e579d47081e669fda3f3147fc28d816478885942565a1b93b86292e2729e93bfea6b5326703e575f209f5bd7dd905d72011b8153b8c40d31c83acf9057
 SHA512 
773b508864a2fa31e961e132118702429f5b7836e90bd521db2ed6b4215de49d63991a99b7ad7d5aac3074a3c14e4d384557a4eb5b43c7e2aada46d5434ed229
 DIST html2text-2019.9.26.tar.gz 48634 BLAKE2B 
efece48c7b05171f9bae833663292d7804838b5a791f1f734b3a258843a71616ada2ebee7cee406e0bfa1a3dce67040d41621bd87be100a2c0d4ca6d75829aa9
 SHA512 
4c6a52e96d3997a6ebe41c2955e2f6bd5189f49aadd7d7afbe67b85a2f61a0aafd0fc09fef184cb9407b9ab26f120ef235294e4e9d8f41e3b6b8f6fc29aa386d

diff --git a/dev-python/html2text/html2text-2016.5.29.ebuild 
b/dev-python/html2text/html2text-2016.5.29.ebuild
deleted file mode 100644
index a573db30529..000
--- a/dev-python/html2text/html2text-2016.5.29.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
-PYTHON_COMPAT=( python{2_7,3_5} pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="Turn HTML into equivalent Markdown-structured text"
-HOMEPAGE="https://github.com/html2text/html2text
-   https://github.com/Alir3z4/html2text 
https://pypi.org/project/html2text/;
-SRC_URI="https://github.com/Alir3z4/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${CDEPEND}
-   dev-python/chardet[${PYTHON_USEDEP}]
-   dev-python/feedparser[${PYTHON_USEDEP}]"
-DEPEND="${CDEPEND}"
-
-DOCS=( AUTHORS.rst ChangeLog.rst README.md )
-
-src_prepare() {
-   default
-
-   # naming conflict with app-text/html2text, bug 421647
-   sed -i 's/html2text=html2text.cli:main/py\0/' setup.py || die
-}
-
-python_test() {
-   "${PYTHON}" test/test_html2text.py -v || die "tests failed with 
${EPYTHON}"
-}

diff --git a/dev-python/html2text/html2text-2017.10.4.ebuild 
b/dev-python/html2text/html2text-2017.10.4.ebuild
deleted file mode 100644
index 13cf26a8677..000
--- a/dev-python/html2text/html2text-2017.10.4.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_{5,6}} pypy{,3} )
-
-inherit distutils-r1
-
-DESCRIPTION="Turn HTML into equivalent Markdown-structured text"
-HOMEPAGE="https://github.com/Alir3z4/html2text 
https://pypi.org/project/html2text/;
-SRC_URI="https://github.com/Alir3z4/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-
-CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${CDEPEND}
-   dev-python/chardet[${PYTHON_USEDEP}]
-   dev-python/feedparser[${PYTHON_USEDEP}]"
-DEPEND="${CDEPEND}"
-
-DOCS=( AUTHORS.rst ChangeLog.rst README.md )
-
-src_prepare() {
-   default
-
-   # naming conflict with app-text/html2text, bug 421647
-   sed -i 's/html2text=html2text.cli:main/py\0/' setup.py || die
-}
-
-python_test() {
-   "${PYTHON}" test/test_html2text.py -v || die "tests failed with 
${EPYTHON}"
-}



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

2019-11-03 Thread Alfredo Tupone
commit: b6af606210aedc6585eefba8c9014e239882915c
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Sun Nov  3 20:40:38 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Sun Nov  3 20:42:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6af6062

package.mask: Last rite dev-ada/gnatcoll

Signed-off-by: Alfredo Tupone  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 87fa6c9e3ef..1f08542e16e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Alfredo Tupone  (2019-11-03)
+# No more needed. Substituted by dev-ada/gnatcoll-core and others
+# Removal in 30 days.
+dev-ada/gnatcoll
+
 # Thomas Deutschmann  (2019-11-03)
 # Infinite loop in TAILQ_FOREACH_SAFE when running for some time
 # Bug #698856



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

2019-11-03 Thread Denis Dupeyron
commit: 0f2814561f6750e9d9c1d93d9538934b60bdc0cb
Author: Denis Dupeyron  gentoo  org>
AuthorDate: Sun Nov  3 20:40:42 2019 +
Commit: Denis Dupeyron  gentoo  org>
CommitDate: Sun Nov  3 20:41:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f281456

dev-libs/libstroke: update to EAPI 7

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Denis Dupeyron  gentoo.org>

 dev-libs/libstroke/libstroke-0.5.1-r1.ebuild | 32 
 1 file changed, 32 insertions(+)

diff --git a/dev-libs/libstroke/libstroke-0.5.1-r1.ebuild 
b/dev-libs/libstroke/libstroke-0.5.1-r1.ebuild
new file mode 100644
index 000..983798ae225
--- /dev/null
+++ b/dev-libs/libstroke/libstroke-0.5.1-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils autotools
+
+DESCRIPTION="A Stroke and Gesture recognition Library"
+HOMEPAGE="http://www.etla.net/libstroke/;
+SRC_URI="http://www.etla.net/libstroke/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+RDEPEND="x11-libs/libX11"
+DEPEND="x11-base/xorg-proto
+   ${RDEPEND}"
+
+src_prepare() {
+   eapply "${FILESDIR}"/${P}-m4_syntax.patch
+   eapply "${FILESDIR}"/${P}-no_gtk1.patch
+   eapply "${FILESDIR}"/${P}-autotools.patch
+   eapply_user
+   eautoreconf
+}
+
+src_install () {
+   emake DESTDIR="${D}" install || die
+   dodoc CREDITS ChangeLog README
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ada/asis/

2019-11-03 Thread Alfredo Tupone
commit: ecd1cce4e90ddf0dcf309f92f83764d109a04cba
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Sun Nov  3 20:33:54 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Sun Nov  3 20:33:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecd1cce4

dev-ada/asis: Remove dependency on dev-ada/gnatcoll

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/asis/asis-2016-r1.ebuild | 5 +
 dev-ada/asis/asis-2016.ebuild| 5 +
 dev-ada/asis/asis-2018.ebuild| 5 +
 dev-ada/asis/asis-2019-r1.ebuild | 5 +
 dev-ada/asis/asis-2019.ebuild| 5 +
 5 files changed, 5 insertions(+), 20 deletions(-)

diff --git a/dev-ada/asis/asis-2016-r1.ebuild b/dev-ada/asis/asis-2016-r1.ebuild
index acbf13c1d35..1918e6f75d2 100644
--- a/dev-ada/asis/asis-2016-r1.ebuild
+++ b/dev-ada/asis/asis-2016-r1.ebuild
@@ -18,10 +18,7 @@ KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="dev-ada/gnat_util[${ADA_USEDEP}]
-   || (
-   dev-ada/gnatcoll[${ADA_USEDEP},projects,shared]
-   dev-ada/gnatcoll-core[${ADA_USEDEP},shared]
-   )"
+   dev-ada/gnatcoll-core[${ADA_USEDEP},shared]"
 DEPEND="${RDEPEND}
dev-ada/gprbuild[${ADA_USEDEP}]"
 

diff --git a/dev-ada/asis/asis-2016.ebuild b/dev-ada/asis/asis-2016.ebuild
index e86f691ae7b..04c0050fa64 100644
--- a/dev-ada/asis/asis-2016.ebuild
+++ b/dev-ada/asis/asis-2016.ebuild
@@ -17,10 +17,7 @@ KEYWORDS="amd64 x86"
 IUSE="+gnat_2016 gnat_2017 gnat_2018"
 
 RDEPEND="dev-ada/gnat_util[gnat_2016(-)?,gnat_2017(-)?]
-   || (
-   dev-ada/gnatcoll[gnat_2016=,gnat_2017=,projects,shared]
-   dev-ada/gnatcoll-core[gnat_2016=,gnat_2017=,shared]
-   )"
+   dev-ada/gnatcoll-core[gnat_2016=,gnat_2017=,shared]"
 DEPEND="${RDEPEND}
dev-ada/gprbuild[gnat_2016(-)?,gnat_2017(-)?]"
 

diff --git a/dev-ada/asis/asis-2018.ebuild b/dev-ada/asis/asis-2018.ebuild
index b895af4212b..c289e599186 100644
--- a/dev-ada/asis/asis-2018.ebuild
+++ b/dev-ada/asis/asis-2018.ebuild
@@ -17,10 +17,7 @@ KEYWORDS="amd64 x86"
 IUSE="gnat_2017 +gnat_2018"
 
 RDEPEND="dev-ada/gnat_util[gnat_2017(-)?,gnat_2018(-)?]
-   || (
-   dev-ada/gnatcoll-core[gnat_2017(-)?,gnat_2018(-)?,shared]
-   dev-ada/gnatcoll[gnat_2017(-)?,gnat_2018(-)?,projects,shared]
-   )"
+   dev-ada/gnatcoll-core[gnat_2017(-)?,gnat_2018(-)?,shared]"
 DEPEND="${RDEPEND}
dev-ada/gprbuild[gnat_2017(-)?,gnat_2018(-)?]"
 

diff --git a/dev-ada/asis/asis-2019-r1.ebuild b/dev-ada/asis/asis-2019-r1.ebuild
index b55e5b3ed45..ce52378a785 100644
--- a/dev-ada/asis/asis-2019-r1.ebuild
+++ b/dev-ada/asis/asis-2019-r1.ebuild
@@ -19,10 +19,7 @@ IUSE=""
 
 RDEPEND="
dev-ada/gnat_util[${ADA_USEDEP}]
-   || (
-   dev-ada/gnatcoll-core[${ADA_USEDEP},shared]
-   dev-ada/gnatcoll[${ADA_USEDEP},projects,shared]
-   )"
+   dev-ada/gnatcoll-core[${ADA_USEDEP},shared]"
 DEPEND="${RDEPEND}
dev-ada/gprbuild[${ADA_USEDEP}]"
 

diff --git a/dev-ada/asis/asis-2019.ebuild b/dev-ada/asis/asis-2019.ebuild
index 7477d83c7a8..957c6f8e1b9 100644
--- a/dev-ada/asis/asis-2019.ebuild
+++ b/dev-ada/asis/asis-2019.ebuild
@@ -19,10 +19,7 @@ IUSE="gnat_2017 gnat_2018 +gnat_2019"
 RDEPEND="
dev-ada/gnat_util[gnat_2017(-)?]
dev-ada/gnat_util[gnat_2018(-)?,gnat_2019(-)?]
-   || (
-   
dev-ada/gnatcoll-core[gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?,shared]
-   
dev-ada/gnatcoll[gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?,projects,shared]
-   )"
+   dev-ada/gnatcoll-core[gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?,shared]"
 DEPEND="${RDEPEND}
 dev-ada/gprbuild[gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]"
 



[gentoo-commits] repo/gentoo:master commit in: dev-ada/langkit/, dev-ada/langkit/files/

2019-11-03 Thread Alfredo Tupone
commit: 17f07cd9da176bc52795eeff3152d2ba3546873c
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Sun Nov  3 20:28:17 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Sun Nov  3 20:28:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17f07cd9

dev-ada/langkit: Remove old version

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/langkit/Manifest|  1 -
 dev-ada/langkit/files/langkit-2017-gentoo.patch | 69 -
 dev-ada/langkit/langkit-2017.ebuild | 45 
 3 files changed, 115 deletions(-)

diff --git a/dev-ada/langkit/Manifest b/dev-ada/langkit/Manifest
index da77d80482b..325726889af 100644
--- a/dev-ada/langkit/Manifest
+++ b/dev-ada/langkit/Manifest
@@ -1,3 +1,2 @@
 DIST langkit-2019-20190510-19B8C-src.tar.gz 699205 BLAKE2B 
770f904cf2a2014dc6ed6383d3be51361a311d1feb5d594bf9e81ab80a01835ac0b24cd743539a70dff2120307b25a61f781586b504d910401018afcf3b8ae7b
 SHA512 
fbaac1b6407292396711d3deba3a7b5eef6655b877c5515a3653699decdbb2c9824b42bb8e9680122a3ac6ac3eb605333eda7c0265fafd6ab2d117f932790b3b
 DIST langkit-gpl-2018.tar.gz 565649 BLAKE2B 
e18beea565351eb4b10baa9168db742598817d231c5eab578b17c2b0409ac77b9972f8f426499e086779eaeda0ac1ba11e5cb3b47ecab8e63674b7ef654b26b7
 SHA512 
62a8820c3fd3d44f6cd22e181f6eddcf52945c93ea5eb793a63b7f13e71705807170b0cc4c3873b127e3fafe751a5dd27da54087986f506f8500b916ef1f078f
-DIST langkit-gps-src-2017.tar.gz 364589 BLAKE2B 
14d80e904ded20a73d65a5828157ea82672559b5bb47e465381989ad3a6e90f41bd0c6db0a5e4f7b7c532fd4f697f9bc8cb3163c6e61106d0d44da994b1c7b28
 SHA512 
1c86e60710e4def3d430372eed11bf1a27bf82e84c7b787c5a0be15229b6e5f786dbdf830a311423dd7539841de3076d370afc8b4c1b0cddd1bc379372dcdc95

diff --git a/dev-ada/langkit/files/langkit-2017-gentoo.patch 
b/dev-ada/langkit/files/langkit-2017-gentoo.patch
deleted file mode 100644
index 7b6501ed8a7..000
--- a/dev-ada/langkit/files/langkit-2017-gentoo.patch
+++ /dev/null
@@ -1,69 +0,0 @@
 a/langkit/compile_context.py   2017-12-13 22:12:38.689143125 +0100
-+++ b/langkit/compile_context.py   2017-12-13 22:13:02.446737994 +0100
-@@ -1171,8 +1171,7 @@
- # the Quex specification changed from last build.
- if generate_lexer and self.cache.is_stale('quex_specification',
-   quex_spec):
--quex_py_file = path.join(os.environ["QUEX_PATH"], "quex-exe.py")
--subprocess.check_call([sys.executable, quex_py_file, "-i",
-+subprocess.check_call(["quex", "-i",
-quex_file,
-"-o", "quex_lexer",
-"--buffer-element-size", "4",
 a/langkit/templates/pkg_analysis_body_ada.mako 2017-12-26 
20:47:28.461617512 +0100
-+++ b/langkit/templates/pkg_analysis_body_ada.mako 2017-12-26 
20:47:58.912060490 +0100
-@@ -2196,7 +2196,7 @@
---  printing them.
- 
-function Hash (S : Lexical_Env) return Hash_Type is
-- (Hash_Type (To_Integer (S.all'Address)));
-+ (Hash_Type'Mod (To_Integer (S.all'Address)));
- 
-package Address_To_Id_Maps is new Ada.Containers.Hashed_Maps
-  (Lexical_Env, Integer, Hash, "=");
 a/testsuite/testsuite_support/__init__.py  2018-05-02 21:40:04.977442020 
+0200
-+++ b/testsuite/testsuite_support/__init__.py  2018-05-02 21:40:45.422759387 
+0200
-@@ -68,6 +68,8 @@
- # to build it in parallel.
- if not self.global_env['options'].disable_tear_up_builds:
--p = Run(['gprbuild', '-p', '-f', '-P',
-+p = Run(['gprbuild', '-p', '-f', '-XLIBRARY_TYPE=relocatable',
-+ '-XGPR_BUILD=relocatable',
-+ '-XXMLADA_BUILD=relocatable', '-P',
-  os.path.join(self.root_dir, '..', 'langkit', 'support',
-   'langkit_support.gpr')], output=PIPE)
- report(p, "Langkit support")
 a/testsuite/testsuite_support/langkit_support_driver.py2018-05-03 
08:01:20.019944992 +0200
-+++ b/testsuite/testsuite_support/langkit_support_driver.py2018-05-03 
08:02:50.146430288 +0200
-@@ -36,5 +36,8 @@
- ))
- 
- self.run_and_check(['gprbuild', '-p', '-P', 'p.gpr', '-gnata',
-+'-XLIBRARY_TYPE=relocatable',
-+'-XGPR_BUILD=relocatable',
-+'-XXMLADA_BUILD=relocatable',
- '-cargs', '-O0', '-g'])
- self.run_and_check(['./{}'.format(source[:-4])])
-+++ a/testsuite/testsuite_support/adalog_driver.py 2018-05-03 
08:14:30.998698722 +0200
 b/testsuite/testsuite_support/adalog_driver.py 2018-05-03 
08:16:48.275417176 +0200
-@@ -41,6 +41,9 @@
- )
- ))
- 
--self.run_and_check(['gprbuild', '-p', '-P', 'p.gpr', '-cargs', '-O0',
-+

[gentoo-commits] repo/gentoo:master commit in: dev-ada/libadalang/

2019-11-03 Thread Alfredo Tupone
commit: 612a4df0e8cddf0f58a3a2a420a99125cc59c1b3
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Sun Nov  3 20:26:34 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Sun Nov  3 20:26:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=612a4df0

dev-ada/libadalang: remove old versions

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/libadalang/Manifest  |  1 -
 dev-ada/libadalang/libadalang-2017-r1.ebuild | 51 
 dev-ada/libadalang/libadalang-2017-r2.ebuild | 59 
 dev-ada/libadalang/libadalang-2018.ebuild| 59 
 4 files changed, 170 deletions(-)

diff --git a/dev-ada/libadalang/Manifest b/dev-ada/libadalang/Manifest
index ad2092a0e14..963641874fc 100644
--- a/dev-ada/libadalang/Manifest
+++ b/dev-ada/libadalang/Manifest
@@ -1,3 +1,2 @@
-DIST libadalang-2017-src.tar.gz 1862217 BLAKE2B 
58f72726285e56a15278e85902fabf988327ea86a08cc6c86271d61075a6b19a0bffa86e5302f5c32e6d35ef95473ad747853b14899a12d09d49d656f4e6559e
 SHA512 
c8663a7214c3c1dd73a6589a6db10d219fcd2db39ba2ce184eea85272c5f206ab0aa8d13b0e19b08a5996906c7fbddd479795363ec22e889dfceda9967c346c7
 DIST libadalang-2019-20190510-19916-src.tar.gz 2345942 BLAKE2B 
807fd6ea0183b5535e96b258998a0540aa77dec0669db81bae10b56894e12bbb381b356bd55d6684156101d2ea0e5439c2551a4213a81e79e4697a7ff6ba5df2
 SHA512 
9ebf8d0c01d12f5a8081fced9504b78a45cbde6ecc0e6abeed99aff03abd0b241c1ecba85b256911e474cb77e10e5e387f64d51a2d9b18596baf40313f44f089
 DIST libadalang-gpl-2018-src.tar.gz 1990774 BLAKE2B 
ffad46d4988de7fb8c9bf94d24360a726c59e3c70a2318725a59e0b6b62351e8f5d8dd6501964618607122e3c7cb3bda0e1181818c68324d4067d59ac93e2b1c
 SHA512 
b95196323097065be2996ced767f8f89fb77445f99c249d84043c68d926d61c78b310b4fef0699d08f9112dc423596c076f452745469a75a8467c35b5e10ac2c

diff --git a/dev-ada/libadalang/libadalang-2017-r1.ebuild 
b/dev-ada/libadalang/libadalang-2017-r1.ebuild
deleted file mode 100644
index ef338c30499..000
--- a/dev-ada/libadalang/libadalang-2017-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-single-r1
-
-DESCRIPTION="high performance semantic engine for the Ada programming language"
-HOMEPAGE="https://libre.adacore.com/;
-SRC_URI="http://mirrors.cdn.adacore.com/art/591c45e2c7a447af2deed042
-   -> ${P}-src.tar.gz"
-
-LICENSE="GPL-3 gcc-runtime-library-exception-3.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gnat_2016 +gnat_2017"
-
-RDEPEND="dev-python/pyyaml
-   dev-ada/gnatcoll[projects,shared,gnat_2016=,gnat_2017=]
-   ${PYTHON_DEPS}"
-DEPEND="${RDEPEND}
-   ~dev-ada/langkit-2017"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-S="${WORKDIR}"/${PN}-gps-src
-
-PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
-
-src_prepare() {
-   default
-   rm -r ada/testsuite/tests/acats_parse || die
-}
-
-src_configure() {
-   ada/manage.py generate || die
-}
-
-src_compile() {
-   ada/manage.py --verbosity=debug build || die
-}
-
-src_test () {
-   ada/manage.py test | grep FAILED && die
-}
-
-src_install () {
-   ada/manage.py install "${D}"usr
-   python_domodule build/python/libadalang.py
-}

diff --git a/dev-ada/libadalang/libadalang-2017-r2.ebuild 
b/dev-ada/libadalang/libadalang-2017-r2.ebuild
deleted file mode 100644
index 7896a4c5e03..000
--- a/dev-ada/libadalang/libadalang-2017-r2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 )
-ADA_COMPAT=( gnat_201{6,7} )
-
-inherit ada python-single-r1
-
-DESCRIPTION="high performance semantic engine for the Ada programming language"
-HOMEPAGE="https://libre.adacore.com/;
-SRC_URI="http://mirrors.cdn.adacore.com/art/591c45e2c7a447af2deed042
-   -> ${P}-src.tar.gz"
-
-LICENSE="GPL-3 gcc-runtime-library-exception-3.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="${ADA_DEPS}
-   dev-python/pyyaml
-   dev-ada/gnatcoll[${ADA_USEDEP},projects,shared]
-   ${PYTHON_DEPS}"
-DEPEND="${RDEPEND}
-   ~dev-ada/langkit-2017"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}
-   ${ADA_REQUIRED_USE}"
-
-S="${WORKDIR}"/${PN}-gps-src
-
-PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
-
-pkg_setup() {
-   python-single-r1_pkg_setup
-   ada_pkg_setup
-}
-
-src_prepare() {
-   default
-   rm -r ada/testsuite/tests/acats_parse || die
-}
-
-src_configure() {
-   ada/manage.py generate || die
-}
-
-src_compile() {
-   ada/manage.py --verbosity=debug build || die
-}
-
-src_test () {
-   ada/manage.py test | grep FAILED && die
-}
-
-src_install () {
-   ada/manage.py install "${D}"/usr
-   python_domodule build/python/libadalang.py
-}

diff --git 

[gentoo-commits] repo/gentoo:master commit in: gui-apps/wl-clipboard/

2019-11-03 Thread Matthew Thode
commit: 2ea245fa8d168a1b51ddbbe5754db083aa09c23f
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Nov  3 20:12:56 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Nov  3 20:21:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ea245fa

gui-apps/wl-clipboard: add arm64 keyword

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

 gui-apps/wl-clipboard/wl-clipboard-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/wl-clipboard/wl-clipboard-.ebuild 
b/gui-apps/wl-clipboard/wl-clipboard-.ebuild
index d7fcf533747..a49d485faf1 100644
--- a/gui-apps/wl-clipboard/wl-clipboard-.ebuild
+++ b/gui-apps/wl-clipboard/wl-clipboard-.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI="https://github.com/bugaevc/${PN}.git;
 else
SRC_URI="https://github.com/bugaevc/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
 LICENSE="GPL-3"



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

2019-11-03 Thread Matthew Thode
commit: 33e2a528a365566ce0e43c4d359ced5313c9e3a0
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Nov  3 20:14:48 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Nov  3 20:21:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33e2a528

app-admin/puppetdb: 6.7.1 stable amd64/x86 with cleanup

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

 app-admin/puppetdb/Manifest  |  1 -
 app-admin/puppetdb/puppetdb-6.5.0.ebuild | 92 
 app-admin/puppetdb/puppetdb-6.7.1.ebuild |  2 +-
 3 files changed, 1 insertion(+), 94 deletions(-)

diff --git a/app-admin/puppetdb/Manifest b/app-admin/puppetdb/Manifest
index 81f9e473349..17f9b4da639 100644
--- a/app-admin/puppetdb/Manifest
+++ b/app-admin/puppetdb/Manifest
@@ -1,3 +1,2 @@
-DIST puppetdb-6.5.0.tar.gz 41768030 BLAKE2B 
2a52239dabb5c026f4d00ee2942e3128ce50f1de23aa5ff5d53f2020237b54867b48727e774ecc27f5f18bd1617b43fcf30fbd3b03a730ca60d5bab7296e3f9c
 SHA512 
8aee40101a17e22ef5b9b7b965ffe8d8a9b8dfaa787721b3e6a5e7363b98e0c52dc0583216a058540618a6a980cf80f138fa6b358a9daac518abd50981910cf5
 DIST puppetdb-6.6.0.tar.gz 43366185 BLAKE2B 
224c13ff2583a7c8124f03845eca4756be6446e7470565c44d3fe1fcb756d5564ae2ded69d0bef1dda939efe082756c0e44afd3c6b0fc4268a744946860b5a02
 SHA512 
5076f52af51b7a3b43a0deb9cf1f10d77da98a5e531983d3661cda522c8d46f70882457934be6f70e77587b930077c0a4d2eaf7ed41eff9c6bcf4bc5ecbf2205
 DIST puppetdb-6.7.1.tar.gz 43563417 BLAKE2B 
902397b2bedb64f4ccb2d6932d6dbfb7d67c479640fb8429aecf3de558ce31ab0017175f183ee3e66268d802fc9901f5473271b6598414a7b57182bc1788f1e3
 SHA512 
58c6f3db268885e603bb1219f89c2aeb237c042fe7eccc95ce5622cfc739f971d9d37e0cc37cae335552d0d9845fccfd9425381faf6ec3534b20991bd9f7db0e

diff --git a/app-admin/puppetdb/puppetdb-6.5.0.ebuild 
b/app-admin/puppetdb/puppetdb-6.5.0.ebuild
deleted file mode 100644
index 77d1c1ca9cc..000
--- a/app-admin/puppetdb/puppetdb-6.5.0.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multilib systemd user
-
-DESCRIPTION="PuppetDB collects data generated by Puppet."
-HOMEPAGE="http://docs.puppetlabs.com/puppetdb/;
-SRC_URI="https://downloads.puppetlabs.com/${PN}/${P}.tar.gz;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-# will need the same keywords as puppet
-KEYWORDS="amd64 x86"
-
-RDEPEND+=">=virtual/jdk-1.8.0"
-DEPEND+=""
-
-pkg_setup() {
-   enewgroup puppetdb
-   enewuser puppetdb -1 -1 /opt/puppetlabs/server/data/puppetdb "puppetdb"
-}
-
-src_prepare() {
-   sed -i 's/sysconfig/conf\.d/g' ext/redhat/puppetdb.service || die
-   sed -i 's/sysconfig/conf\.d/g' ext/bin/puppetdb || die
-   sed -i 's/sysconfig/conf\.d/g' install.sh || die
-   sed -i 's/var\/run/run/g' ext/puppetdb.tmpfiles.conf || die
-   sed -i 's/var\/run/run/g' install.sh || die
-   default
-}
-
-src_compile() {
-   einfo "not compiling"
-}
-
-src_install() {
-   dodir /opt/puppetlabs/server/data/puppetdb
-   insinto /opt/puppetlabs/server/apps/puppetdb
-   insopts -m0744
-   doins ext/ezbake-functions.sh
-   insopts -m0644
-   doins ext/ezbake.manifest
-   doins puppetdb.jar
-   insinto /etc/puppetlabs/puppetdb
-   doins ext/config/logback.xml
-   doins ext/config/bootstrap.cfg
-   doins ext/config/request-logging.xml
-   insinto /etc/puppetlabs/puppetdb/conf.d
-   doins ext/config/conf.d/jetty.ini
-   doins ext/config/conf.d/repl.ini
-   doins ext/config/conf.d/database.ini
-   doins ext/config/conf.d/config.ini
-   insopts -m0755
-   insinto /opt/puppetlabs/server/apps/puppetdb/scripts
-   doins install.sh
-   insinto /opt/puppetlabs/server/apps/puppetdb/cli/apps
-   doins ext/cli/foreground
-   doins ext/cli/ssl-setup
-   doins ext/cli/config-migration
-   doins ext/cli/foreground
-   doins ext/cli/anonymize
-   doins ext/cli/reload
-   doins ext/cli/start
-   doins ext/cli/stop
-   insinto /opt/puppetlabs/server/apps/puppetdb/bin
-   doins ext/bin/puppetdb
-   insopts -m0644
-   dodir /opt/puppetlabs/server/bin
-   dosym ../apps/puppetdb/bin/puppetdb /opt/puppetlabs/server/bin/puppetdb
-   dodir /opt/puppetlabs/bin
-   dosym ../server/apps/puppetdb/bin/puppetdb /opt/puppetlabs/bin/puppetdb
-   dosym ../../opt/puppetlabs/server/apps/puppetdb/bin/puppetdb 
/usr/bin/puppetdb
-   # init type tasks
-   newconfd ext/default puppetdb
-   systemd_dounit ext/redhat/puppetdb.service
-   systemd_newtmpfilesd ext/puppetdb.tmpfiles.conf puppetdb.conf
-   newinitd "${FILESDIR}/puppetdb.initd-r2" puppetdb
-   # misc
-   insinto /etc/logrotate.d
-   newins ext/puppetdb.logrotate.conf puppetdb
-   fowners -R puppetdb:puppetdb /opt/puppetlabs/server/data/puppetdb
-   fperms -R 770 

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

2019-11-03 Thread Matthew Thode
commit: ad065d2a5763847d03f97c6738b256af104dad9f
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Nov  3 20:19:45 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Nov  3 20:21:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad065d2a

sys-cluster/swift: 2.23.1 stable amd64/x86 with cleanup

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

 sys-cluster/swift/Manifest |   2 -
 sys-cluster/swift/swift-2.20.0.ebuild  | 122 
 sys-cluster/swift/swift-2.23.0.ebuild  | 125 -
 sys-cluster/swift/swift-2.23.1.ebuild  |   2 +-
 sys-cluster/swift/swift-2018.2..ebuild | 122 
 5 files changed, 1 insertion(+), 372 deletions(-)

diff --git a/sys-cluster/swift/Manifest b/sys-cluster/swift/Manifest
index 5212d1428d8..415523b38e8 100644
--- a/sys-cluster/swift/Manifest
+++ b/sys-cluster/swift/Manifest
@@ -1,5 +1,3 @@
-DIST swift-2.20.0.tar.gz 3012428 BLAKE2B 
48cfb52bce8d89836ede3d82cde197e282b55cec7fa9366c18102a2259a2c96553c573c92b884e6471a3ff5a5fc88ff3eeadbb200c691db3c6b20b6881132576
 SHA512 
15f1082a94f16684001b1d6eaa635500d41dd2ed0b65b87d8fc2363f96179cbc4d40a6faee10e966ad954e45035ed77c31dc265daa2c7c9d17a0e81890e6bc79
 DIST swift-2.21.0.tar.gz 3025042 BLAKE2B 
847b11fa61620cdd07acadd1d4fcc43c9fc53ecfc958e8cb617dde6b643bce116662df74b9b2a01df8551847c4577fedd25aab3951ce437cf5d046552e3b22e0
 SHA512 
ceb96401aa5d1ab36dc0a08455970f9c1704868d778970cad9783463bf8a25dddc7431df0aa73e4d2d7d4f6ef2908fa5faede749fe94e32d5f67e61768edd964
 DIST swift-2.22.0.tar.gz 3070436 BLAKE2B 
53049ba901cf5a46d4567c7fa3620b0ad486d88897beb75887d81c5beb747a08ff52e7eba93eab9e9e087c82447d99f0fd85c97211fb4e930ce5b27a1bba41f1
 SHA512 
855f9d35399251ac86d687b652a9372da4d2f03dff8dee1743357c14c79f6ea8903b7c67d99fed08b6b4cdfa2cfd6ecb78b010b2ee83195eda30c4a9463a5a0c
-DIST swift-2.23.0.tar.gz 3091166 BLAKE2B 
ec08e2617adc1dbe430215eca49728c7fd96e4b644a251852e4c90a709e8dde0e554e996cc4879efe32017a4e7098c0aa787bb344f79706eb2e0afcb2d7f977c
 SHA512 
e90fc1ebc9613ab3da9300b18c15c4661b06dc11e527a665d9a186926ba5640f4f261841d03e6215f7b0bb01cb04b5e242280ffd178e5d7af9343b11e5a661e2
 DIST swift-2.23.1.tar.gz 3044545 BLAKE2B 
b3b06aefa7c58b718f7d9c1c1b9bc92f442b83202b8d5c2dbbb777650088f2d939f5e9d0fbe83cea38fd6635d072cd8bb3894d64ed9767dde203064c1b81cfdb
 SHA512 
48aa82b178f5e3901363c2b9deea12a58b1ba86cc46937dd9ec074ecc005b04a6ce732d4e9fce2497c6c62b659038da40ed43550256584bb371df4e596fb

diff --git a/sys-cluster/swift/swift-2.20.0.ebuild 
b/sys-cluster/swift/swift-2.20.0.ebuild
deleted file mode 100644
index 4590ab73cd1..000
--- a/sys-cluster/swift/swift-2.20.0.ebuild
+++ /dev/null
@@ -1,122 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 eutils linux-info user
-
-DESCRIPTION="A highly available, distributed, and eventually consistent 
object/blob store"
-HOMEPAGE="https://launchpad.net/swift;
-if [[ ${PV} == * ]];then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/openstack/swift.git;
-   EGIT_BRANCH="stable/pike"
-else
-   SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz;
-   KEYWORDS="amd64 ~arm64 x86"
-fi
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="proxy account container object +memcached"
-REQUIRED_USE="|| ( proxy account container object )"
-
-CDEPEND=">=dev-python/pbr-1.8.0[${PYTHON_USEDEP}]"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/dnspython-1.14.0:0[${PYTHON_USEDEP}]
-   >=dev-python/eventlet-0.17.4[${PYTHON_USEDEP}]
-   !~dev-python/eventlet-0.23.0[${PYTHON_USEDEP}]
-   >=dev-python/greenlet-0.3.1[${PYTHON_USEDEP}]
-   >=dev-python/netifaces-0.5[${PYTHON_USEDEP}]
-   !~dev-python/netifaces-0.10.0[${PYTHON_USEDEP}]
-   !~dev-python/netifaces-0.10.1[${PYTHON_USEDEP}]
-   >=dev-python/pastedeploy-1.3.3[${PYTHON_USEDEP}]
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-   dev-python/pyxattr[${PYTHON_USEDEP}]
-   >=dev-python/PyECLib-1.3.1[${PYTHON_USEDEP}]
-   >=dev-python/cryptography-1.6.0[${PYTHON_USEDEP}]
-   !~dev-python/cryptography-2.0[${PYTHON_USEDEP}]
-   >=dev-python/ipaddress-1.0.16[${PYTHON_USEDEP}]
-   memcached? ( net-misc/memcached )
-   net-misc/rsync[xattr]"
-
-pkg_pretend() {
-   linux-info_pkg_setup
-   CONFIG_CHECK="~EXT3_FS_XATTR ~SQUASHFS_XATTR ~CIFS_XATTR ~JFFS2_FS_XATTR
-   ~TMPFS_XATTR ~UBIFS_FS_XATTR ~EXT2_FS_XATTR ~REISERFS_FS_XATTR 
~EXT4_FS_XATTR
-   ~ZFS"
-   if linux_config_exists; then
-   for module in ${CONFIG_CHECK}; do
-   linux_chkconfig_present ${module} || ewarn "${module} 
needs to be enabled"
-   done
-   fi
-}
-
-pkg_setup() {
-  

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

2019-11-03 Thread Matthew Thode
commit: 685834a0b784731e67b5542954845086295369af
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Nov  3 20:15:27 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Nov  3 20:21:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=685834a0

app-admin/puppetserver: 6.7.1 stable amd64/x86 with cleanup

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

 app-admin/puppetserver/Manifest  |   1 -
 app-admin/puppetserver/puppetserver-6.5.0.ebuild | 135 ---
 app-admin/puppetserver/puppetserver-6.7.1.ebuild |   2 +-
 3 files changed, 1 insertion(+), 137 deletions(-)

diff --git a/app-admin/puppetserver/Manifest b/app-admin/puppetserver/Manifest
index 57ed6811be8..dc1b4616481 100644
--- a/app-admin/puppetserver/Manifest
+++ b/app-admin/puppetserver/Manifest
@@ -1,3 +1,2 @@
-DIST puppetserver-6.5.0.tar.gz 76080713 BLAKE2B 
0562128001a24eae6cec071a366e16ab3ce5b0babbe50330ecddd13ab3dbfd35d6cb23634770e4bd7904cd231752ce923d4af8dc42d783cc137f300efcb05fb2
 SHA512 
d871f3817c370ddd08e8d791deb1a30aa50ab0d801192ebfb5ef225d8dce21885175fe4e9911287437b687b2bcbf5a098d8b9511b24bd05fdf4854575a686cfe
 DIST puppetserver-6.6.0.tar.gz 59095750 BLAKE2B 
adbc08a68a1382106c43d27604c2cef52bd1d9875c5f555320d97d31dcf9d248c88baa2d6dfd37a855010fda76ad4d273a7bd5eca77bb216aabf6a120e41cee0
 SHA512 
2b43092752e246027a437398d6d23a4085caa2956a1453cec2e62f1001fca1c98bddca0a9d90c178ce9c89a06c26edcaee49416c1b8a4941e2bc4b6b5bb1fe0e
 DIST puppetserver-6.7.1.tar.gz 59202711 BLAKE2B 
9f88617811d05dc09ee568b40ff332f88e44998916df6d2c88a268fe443d35b62e4d94816acc49a87dd355925bb13e99f8694596831423013b96119a4e1a0727
 SHA512 
80af1266d122f131f8d5385acbcf712d3042e7665eb739491d1d3d06adec8c0d78009aaec86161ed4fdb180bf529a48b2964c784ec728d40319f63c6d2f8f0df

diff --git a/app-admin/puppetserver/puppetserver-6.5.0.ebuild 
b/app-admin/puppetserver/puppetserver-6.5.0.ebuild
deleted file mode 100644
index 9200fa82fd3..000
--- a/app-admin/puppetserver/puppetserver-6.5.0.ebuild
+++ /dev/null
@@ -1,135 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multilib systemd user
-
-DESCRIPTION="Puppet Server is the next-generation application for managing 
Puppet agents."
-HOMEPAGE="http://docs.puppetlabs.com/puppetserver/;
-SRC_URI="https://downloads.puppetlabs.com/puppet/${P}.tar.gz;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="puppetdb"
-# will need the same keywords as puppet
-KEYWORDS="amd64 x86"
-
-RDEPEND+="
-   >=virtual/jdk-1.8.0
-   app-admin/puppet-agent[puppetdb?]"
-DEPEND+=""
-
-pkg_setup() {
-   enewgroup puppet
-   enewuser puppet -1 -1 /opt/puppetlabs/server/data/puppetserver "puppet"
-}
-
-src_prepare() {
-   sed -i 's/sysconfig\/puppetserver/default\/puppetserver/g' 
ext/redhat/puppetserver.service || die
-   sed -i 's/sysconfig\/puppetserver/default\/puppetserver/g' 
ext/bin/puppetserver || die
-   sed -i 's/sysconfig\/puppetserver/default\/puppetserver/g' install.sh 
|| die
-   sed -i 's/var\/run/run/g' ext/config/conf.d/puppetserver.conf || die
-   sed -i 's/var\/run/run/g' ext/redhat/puppetserver.service || die
-   sed -i 's/var\/run/run/g' install.sh || die
-   default
-}
-
-src_compile() {
-   einfo "not compiling"
-}
-
-src_install() {
-   insinto /opt/puppetlabs/server/apps/puppetserver
-   insopts -m0774
-   doins ext/ezbake-functions.sh
-   insopts -m0644
-   doins ext/ezbake.manifest
-   doins puppet-server-release.jar
-   insinto /etc/puppetlabs/puppetserver
-   doins ext/config/logback.xml
-   doins ext/config/request-logging.xml
-   insinto /etc/puppetlabs/puppetserver/services.d
-   doins ext/system-config/services.d/bootstrap.cfg
-   doins ext/config/services.d/ca.cfg
-   insinto /etc/puppetlabs/puppetserver/conf.d
-   doins ext/config/conf.d/puppetserver.conf
-   doins ext/config/conf.d/auth.conf
-   doins ext/config/conf.d/global.conf
-   doins ext/config/conf.d/web-routes.conf
-   doins ext/config/conf.d/metrics.conf
-   doins ext/config/conf.d/webserver.conf
-   insopts -m0755
-   insinto /opt/puppetlabs/server/apps/puppetserver/scripts
-   doins install.sh
-   insinto /opt/puppetlabs/server/apps/puppetserver/cli/apps
-   doins ext/cli/ca
-   doins ext/cli/irb
-   doins ext/cli/foreground
-   doins ext/cli/gem
-   doins ext/cli/ruby
-   doins ext/cli/reload
-   doins ext/cli/start
-   doins ext/cli/stop
-   insinto /opt/puppetlabs/server/apps/puppetserver/cli
-   doins ext/cli_defaults/cli-defaults.sh
-   insinto /opt/puppetlabs/server/apps/puppetserver/bin
-   doins ext/bin/puppetserver
-   insopts -m0644
-   dodir /opt/puppetlabs/server/bin
-   dosym ../apps/puppetserver/bin/puppetserver 

[gentoo-commits] repo/gentoo:master commit in: net-im/mattermost-desktop-bin/

2019-11-03 Thread Matthew Thode
commit: 330e2695adb83f2d4d5af45fcb2fe18a9e0769ac
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Nov  3 20:08:42 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Nov  3 20:21:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=330e2695

net-im/mattermost-desktop-bin: 4.3.1 bump

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

 net-im/mattermost-desktop-bin/Manifest |  3 +
 .../mattermost-desktop-bin-4.3.1.ebuild| 93 ++
 2 files changed, 96 insertions(+)

diff --git a/net-im/mattermost-desktop-bin/Manifest 
b/net-im/mattermost-desktop-bin/Manifest
index 199effec862..11fbac65382 100644
--- a/net-im/mattermost-desktop-bin/Manifest
+++ b/net-im/mattermost-desktop-bin/Manifest
@@ -1,3 +1,6 @@
 DIST mattermost-desktop-4.2.3-linux-ia32.tar.gz 66255949 BLAKE2B 
de657ed1944e516c184eaa65bea7a8e395c97b93e788bd5f7c13e749d6ecde7a26b0c4901a838c23f1785ff1c498cc982082bc9836bdd8b74cce6a53f49d8a13
 SHA512 
e8ff1893b8e9bfd7ea99b64f99b3a2302939dc21877fe99de5137cfcc5d6ae688f1fabcba4ebac4e0e41366a419666a5a37795a9804a15f6a12d083d20797613
 DIST mattermost-desktop-4.2.3-linux-x64.tar.gz 63208288 BLAKE2B 
6f8389bf1149ca14b9f97f71a897e2900e194ca0fc0a4fe68fc317d594347db9d6f3887e5ec191498ee278a3e83aab5101c53857132353f9441b90ea7ea26a67
 SHA512 
0c0a700741c21cc9f10049b10ba9c561f0d50d705eeecf1044a5a14c3707b93ad4eeb58c7bed8ed3898d4c3ac43853203fd1c3ed8c60830657084159768c4a7b
+DIST mattermost-desktop-4.3.1-linux-ia32.tar.gz 96713874 BLAKE2B 
863b570cb2e67ce675b5ed07add09f9f80fca9902dac70c2ba68ff3a42499b369dd7b4872872564d04e37fb026d6cdac463fcf300e39083533650616f53cd674
 SHA512 
0da5e1b355b7745a8d8fcd11e2e007aaef8e90691021eb5df5c523888f272ec4d3adf2fb28ad2d011d15e32cf8d9d298eb5d9ef29ef10f3810eb751422881583
+DIST mattermost-desktop-4.3.1-linux-x64.tar.gz 95188620 BLAKE2B 
ebbe7de9940551d5d217a56e8ff75bcc7eea92baf7916c0e1f57bea18c6267734984b4d4ea79e18cb0b4bda58cc71d6252758aa03d15d192ac38d2b5cb906273
 SHA512 
f0fef61f14b15c5b63d0533f422792a7540a33963241853b79524090dca8513f677ebafada7a73c22ce8fb36103712f2029ee5b96bf415e12be547634044c899
 DIST mattermost-desktop-bin-4.2.3.tar.gz 1126293 BLAKE2B 
363236d8fe2df03cef66ce32d650af9caabf83cd1e37b4bd5b36ddb3fd015fa60608e49491d4ffdda3495bcf7318da6f4019e52a27e0971b0e47164ced1bc1f4
 SHA512 
478124a2cf9fff618035d408a73176fd68c21d16fdbecc307c621bf576d9bbdd2663a52a1dd4be6e3a0ea52029270d3f1d92c2180f0158b3c29d4116630c6f37
+DIST mattermost-desktop-bin-4.3.1.tar.gz 1187305 BLAKE2B 
42005f0eb9b127362ef1a1fa50c50fcba55a3c9402f71dfb79e39dee1b8c74f7b9da01daa10de6f0ef7fa09ed5373ec6f8587f3f42510994eb7f5b0449ec35fe
 SHA512 
8e0a0c904db387dad872aca5430e38927d99445cb53f0afe5ccf0fb783ae53684bc40a338ccac3a78cc0bf578488cddf4580dbc76f131864bfc648667da97c05

diff --git a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.3.1.ebuild 
b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.3.1.ebuild
new file mode 100644
index 000..288732cad02
--- /dev/null
+++ b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-4.3.1.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN%-*}"
+
+inherit desktop eutils
+
+DESCRIPTION="Mattermost Desktop application"
+HOMEPAGE="https://about.mattermost.com/;
+
+SRC_URI="
+   https://github.com/mattermost/desktop/archive/v${PV}.tar.gz -> 
${P}.tar.gz
+   amd64? ( 
https://releases.mattermost.com/desktop/${PV}/mattermost-desktop-${PV}-linux-x64.tar.gz
 )
+   x86?   ( 
https://releases.mattermost.com/desktop/${PV}/mattermost-desktop-${PV}-linux-ia32.tar.gz
 )
+"
+
+LICENSE="Apache-2.0 GPL-2+ LGPL-2.1+ MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   gnome-base/gconf:2
+   dev-libs/atk:0
+   dev-libs/expat:0
+   dev-libs/glib:2
+   dev-libs/nspr:0
+   dev-libs/nss:0
+   gnome-base/gconf:2
+   media-libs/alsa-lib:0
+   media-libs/fontconfig:1.0
+   media-libs/freetype:2
+   net-print/cups:0
+   sys-apps/dbus:0
+   sys-devel/gcc
+   sys-libs/glibc:2.2
+   x11-libs/cairo:0
+   x11-libs/gdk-pixbuf:2
+   x11-libs/gtk+:2
+   x11-libs/libX11:0
+   x11-libs/libxcb:0/1.12
+   x11-libs/libXcomposite:0
+   x11-libs/libXcursor:0
+   x11-libs/libXdamage:0
+   x11-libs/libXext:0
+   x11-libs/libXfixes:0
+   x11-libs/libXi:0
+   x11-libs/libXrandr:0
+   x11-libs/libXrender:0
+   x11-libs/libXScrnSaver:0
+   x11-libs/libXtst:0
+   x11-libs/pango:0"
+
+QA_PREBUILT="
+   opt/mattermost-desktop/mattermost-desktop
+   opt/mattermost-desktop/libnode.so
+   opt/mattermost-desktop/libffmpeg.so
+"
+
+DOCS=(
+   NOTICE.txt
+   LICENSES.chromium.html
+   LICENSE.txt
+   LICENSE.electron.txt
+   README.md
+)
+
+src_unpack() {
+   unpack ${A}
+   use amd64 && mv 

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

2019-11-03 Thread Matthew Thode
commit: 715f7381b15216196a15e27eabde68c04a33755e
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Nov  3 20:20:56 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Nov  3 20:21:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=715f7381

sys-cluster/openstack-meta: 2019.2.1 bump with cleanup

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

 .../openstack-meta-2018.2..ebuild  | 22 --
 ...9.2.0.ebuild => openstack-meta-2019.2.1.ebuild} |  2 +-
 2 files changed, 1 insertion(+), 23 deletions(-)

diff --git a/sys-cluster/openstack-meta/openstack-meta-2018.2..ebuild 
b/sys-cluster/openstack-meta/openstack-meta-2018.2..ebuild
deleted file mode 100644
index ea5f7467b12..000
--- a/sys-cluster/openstack-meta/openstack-meta-2018.2..ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A openstack meta-package for installing the various openstack 
pieces"
-HOMEPAGE="https://openstack.org;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="cinder glance heat keystone neutron nova swift"
-
-DEPEND=""
-RDEPEND="
-   keystone? ( ~sys-auth/keystone-${PV} )
-   swift? ( ~sys-cluster/swift-${PV} )
-   neutron? ( ~sys-cluster/neutron-${PV} )
-   glance? ( ~app-admin/glance-${PV} )
-   cinder? ( ~sys-cluster/cinder-${PV} )
-   nova? ( ~sys-cluster/nova-${PV} )
-   heat? ( ~sys-cluster/heat-${PV} )
-"

diff --git a/sys-cluster/openstack-meta/openstack-meta-2019.2.0.ebuild 
b/sys-cluster/openstack-meta/openstack-meta-2019.2.1.ebuild
similarity index 94%
rename from sys-cluster/openstack-meta/openstack-meta-2019.2.0.ebuild
rename to sys-cluster/openstack-meta/openstack-meta-2019.2.1.ebuild
index fc968b7fb15..63696c6be7e 100644
--- a/sys-cluster/openstack-meta/openstack-meta-2019.2.0.ebuild
+++ b/sys-cluster/openstack-meta/openstack-meta-2019.2.1.ebuild
@@ -17,7 +17,7 @@ fi
 DEPEND=""
 RDEPEND="
keystone? ( =sys-auth/keystone-16.0.0 )
-   swift? ( =sys-cluster/swift-2.23.0 )
+   swift? ( =sys-cluster/swift-2.23.1 )
neutron? ( =sys-cluster/neutron-15.0.0 )
glance? ( =app-admin/glance-19.0.0 )
cinder? ( =sys-cluster/cinder-15.0.0 )



[gentoo-commits] repo/gentoo:master commit in: gui-apps/wl-clipboard/

2019-11-03 Thread Matthew Thode
commit: f930ae790b039726f287a9abeb699e5d82c07e21
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Nov  3 20:12:17 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Nov  3 20:21:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f930ae79

gui-apps/wl-clipboard: 2.0.0 stable amd64/x86

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

 gui-apps/wl-clipboard/wl-clipboard-2.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/wl-clipboard/wl-clipboard-2.0.0.ebuild 
b/gui-apps/wl-clipboard/wl-clipboard-2.0.0.ebuild
index d7fcf533747..0637e5ff3bb 100644
--- a/gui-apps/wl-clipboard/wl-clipboard-2.0.0.ebuild
+++ b/gui-apps/wl-clipboard/wl-clipboard-2.0.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI="https://github.com/bugaevc/${PN}.git;
 else
SRC_URI="https://github.com/bugaevc/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~arm64 x86"
 fi
 
 LICENSE="GPL-3"



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

2019-11-03 Thread Matthew Thode
commit: 0205bb7c17c4f7ca8a7c22ffd05a5defc0b7b94f
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Nov  3 20:17:40 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Nov  3 20:21:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0205bb7c

dev-ruby/puppetdb-termini: 6.7.1 stable amd64/x86 with cleanup

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

 dev-ruby/puppetdb-termini/Manifest |  1 -
 .../puppetdb-termini/puppetdb-termini-6.5.0.ebuild | 28 --
 .../puppetdb-termini/puppetdb-termini-6.7.1.ebuild |  2 +-
 3 files changed, 1 insertion(+), 30 deletions(-)

diff --git a/dev-ruby/puppetdb-termini/Manifest 
b/dev-ruby/puppetdb-termini/Manifest
index 7f937a33631..8d2a64ca829 100644
--- a/dev-ruby/puppetdb-termini/Manifest
+++ b/dev-ruby/puppetdb-termini/Manifest
@@ -1,3 +1,2 @@
-DIST puppetdb-termini_6.5.0-1stretch_all.deb 20870 BLAKE2B 
41cf79f2b7ce218fdfbce2588d8e206a3751ffb07a133bc5ddef3f5662c51eb9d12cda3017921edd4aafc064ff35713daaea9542dac687b3f399f2706657131f
 SHA512 
956952bbc81cbcabd8ef3e37b9ebc7c489c90da7b75ff2c9a3e36cd312ee3f7eb3350cbf21a8b44f1d6722ddd3168f5795ba7258147f340a111b9dc29796cd84
 DIST puppetdb-termini_6.6.0-1stretch_all.deb 21210 BLAKE2B 
366c5d0d97e3e1f63e61bc6a8d7d05b621c226cff872c4f780b4b08aac8db9ebcbbe5e5c81f9a79f11e1fc9cedb8c42d86e69055fb5af2195f07c59347699eda
 SHA512 
b410322239933539b685c65c1f85ecca28269adaf94d4521b4ee6d0780701889c6aaec4c01fdcdce1338277544d249c597ac9c697bdacdeb943c53fd6538d348
 DIST puppetdb-termini_6.7.1-1stretch_all.deb 21284 BLAKE2B 
f56f9bfa97f711be08250cc525714af55b9defe2f12b17b2a5f3ec931d9f2f461f009bd0c3534eee848b45d3454752392479ae179695d27f42bc7e4747903dba
 SHA512 
b03a3ebcc068ab7274abd7096821231dcafc1ce7064b6692f5834f28f3046905c855336c5aff4db1b031a2d06c616a75fa48860f45800bfc167c9045364bbcd4

diff --git a/dev-ruby/puppetdb-termini/puppetdb-termini-6.5.0.ebuild 
b/dev-ruby/puppetdb-termini/puppetdb-termini-6.5.0.ebuild
deleted file mode 100644
index 5dea78fa68f..000
--- a/dev-ruby/puppetdb-termini/puppetdb-termini-6.5.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-inherit unpacker
-
-DESCRIPTION="Library needed to connect puppet to puppetdb"
-HOMEPAGE="http://docs.puppetlabs.com/puppetdb/;
-SRC_URI="http://apt.puppetlabs.com/pool/stretch/puppet/${PN:0:1}/${PN}/${PN}_${PV}-1stretch_all.deb;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-# will need the same keywords as puppet
-KEYWORDS="amd64 ~ppc x86"
-
-RDEPEND+=""
-DEPEND+=""
-
-S=${WORKDIR}
-
-src_install() {
-   insinto opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/
-   doins -r opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/*
-}

diff --git a/dev-ruby/puppetdb-termini/puppetdb-termini-6.7.1.ebuild 
b/dev-ruby/puppetdb-termini/puppetdb-termini-6.7.1.ebuild
index 6d51b944dfd..5dea78fa68f 100644
--- a/dev-ruby/puppetdb-termini/puppetdb-termini-6.7.1.ebuild
+++ b/dev-ruby/puppetdb-termini/puppetdb-termini-6.7.1.ebuild
@@ -15,7 +15,7 @@ LICENSE="Apache-2.0"
 SLOT="0"
 IUSE=""
 # will need the same keywords as puppet
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 
 RDEPEND+=""
 DEPEND+=""



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

2019-11-03 Thread Matthew Thode
commit: 78bac0b007e8a6ff0beff53c3325cff60a5c2371
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Nov  3 20:16:45 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Nov  3 20:21:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78bac0b0

app-admin/puppet: 6.10.1 stable amd64/x86 with cleanup

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

 app-admin/puppet/Manifest |   1 -
 app-admin/puppet/puppet-6.10.1.ebuild |   2 +-
 app-admin/puppet/puppet-6.8.0.ebuild  | 138 --
 3 files changed, 1 insertion(+), 140 deletions(-)

diff --git a/app-admin/puppet/Manifest b/app-admin/puppet/Manifest
index bc414ec999f..2c4a4927694 100644
--- a/app-admin/puppet/Manifest
+++ b/app-admin/puppet/Manifest
@@ -3,5 +3,4 @@ DIST puppet-5.5.14.tar.gz 3075736 BLAKE2B 
bfea82d40f9671cdefab0b10c9481e4fbad397
 DIST puppet-5.5.16.tar.gz 3084466 BLAKE2B 
f3e2f12331b4794b90a81a4f80e626fcd3d5252b7cbdacc1d6243faa557540d3a68e5e23b7b5c3e4f4286774e9a9198e59fb15d7d7c41d7193754ed5c80dd624
 SHA512 
7d9e533e352a22e347ac6467094c4bdbde893c2503f47b4a2d175fd6e759e6662991efdd1a0a83d9495d22f28da4ae7a30cc771c5d90b8252c4618bd8837833a
 DIST puppet-5.5.17.tar.gz 3090402 BLAKE2B 
7722ec4196ee766c29eddd7dc73539a4a5a0e4cc781a84af25210488328b5ae01178ca64e8eef14152cbeca06dc8fe145b5e39ce6a120d7689fc32cbbbe16f9f
 SHA512 
95c6cd836a9f732ccfe2d8b83096e79c32428c43390c0826663f896ca1388e1fe3b55d93a5a7548831e95de85247db717866c36786d591e207341c734d70168b
 DIST puppet-6.10.1.tar.gz 2809383 BLAKE2B 
1589dcfa7d73b81ab7fbc3fca4b2fe956f5d240d11583c484262d5243e4713bb4aa9cd5c655e9566468050ab2e5c0ec0cc720e3ff9088add0744e02147b4e3bb
 SHA512 
211c9837eb4a77a54bf09811a1a84709eef06f17e0c5c9c598d01bce2e183e69974709ad4dfb8f5fecd7433c1ff52757aa699c623155d1a0742f2e07eaf2ec56
-DIST puppet-6.8.0.tar.gz 2906582 BLAKE2B 
2dd2f9eb203aa951e0ea9639efa20aac3edb063b4bd68dd0b05a07fc2a399c4b59b3b87a1cb573096c5042920080623b9afb9c4d863b6249664edcc291cd1787
 SHA512 
c8446529e706dab7fd156b5bbca638f1722b07a638f626df2002a4ad218ec5e448f533395a6eed613b31ebbacea56539e903c040998d4110c8a362f2ead7f43b
 DIST puppet-6.9.0.tar.gz 2911311 BLAKE2B 
1d58d0e976430031732de4f63c3ec100088f1d93894cf52caff252befeabe1ea3cf51939063143bd7c9011bb56f2a6420ba38ae230edea19ac8f1f135ed6f56f
 SHA512 
4d1bc1a398c1e75bf8e832d477a0fff4fa3613510f8d59d73594e6fc2f2bbbedf050b1e7729b71bb1428c230f42fcf7b98f7a7683fc3c52cb36a596e20e6540b

diff --git a/app-admin/puppet/puppet-6.10.1.ebuild 
b/app-admin/puppet/puppet-6.10.1.ebuild
index 2fac345af4a..477c81270a0 100644
--- a/app-admin/puppet/puppet-6.10.1.ebuild
+++ b/app-admin/puppet/puppet-6.10.1.ebuild
@@ -19,7 +19,7 @@ SRC_URI="http://downloads.puppetlabs.com/puppet/${P}.tar.gz;
 
 LICENSE="Apache-2.0 GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86"
 IUSE="augeas diff doc emacs ldap rrdtool selinux shadow sqlite vim-syntax"
 RESTRICT="test"
 

diff --git a/app-admin/puppet/puppet-6.8.0.ebuild 
b/app-admin/puppet/puppet-6.8.0.ebuild
deleted file mode 100644
index eeefd4e8c63..000
--- a/app-admin/puppet/puppet-6.8.0.ebuild
+++ /dev/null
@@ -1,138 +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_TEST="rspec3"
-
-RUBY_FAKEGEM_TASK_DOC="doc:all"
-
-RUBY_FAKEGEM_EXTRAINSTALL="locales"
-
-inherit eutils user ruby-fakegem eapi7-ver
-
-DESCRIPTION="A system automation and configuration management software."
-HOMEPAGE="https://puppet.com/;
-SRC_URI="http://downloads.puppetlabs.com/puppet/${P}.tar.gz;
-
-LICENSE="Apache-2.0 GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86"
-IUSE="augeas diff doc emacs ldap rrdtool selinux shadow sqlite vim-syntax"
-RESTRICT="test"
-
-ruby_add_rdepend "
-   dev-ruby/hiera
-   dev-ruby/json:=
-   dev-ruby/semantic_puppet
-   >=dev-ruby/facter-3.0.0
-   augeas? ( dev-ruby/ruby-augeas )
-   diff? ( dev-ruby/diff-lcs )
-   doc? ( dev-ruby/rdoc )
-   ldap? ( dev-ruby/ruby-ldap )
-   shadow? ( dev-ruby/ruby-shadow )
-   sqlite? ( dev-ruby/sqlite3 )
-   virtual/ruby-ssl
-   dev-ruby/hocon"
-
-ruby_add_bdepend "
-   doc? ( dev-ruby/yard )
-   test? (
-   dev-ruby/mocha
-   dev-ruby/rack
-   dev-ruby/rspec-its
-   )"
-# this should go in the above lists, but isn't because of test deps not being 
keyworded
-#   dev-ruby/rspec-collection_matchers
-
-RDEPEND+=" ${RDEPEND}
-   rrdtool? ( >=net-analyzer/rrdtool-1.2.23[ruby] )
-   selinux? (
-   sys-libs/libselinux[ruby]
-   sec-policy/selinux-puppet
-   )
-   vim-syntax? ( >=app-vim/puppet-syntax-3.0.1 )
-   >=app-portage/eix-0.18.0"
-PDEPEND="emacs? ( >=app-emacs/puppet-mode-0.3-r1 )"
-
-pkg_setup() {
-   enewgroup puppet
-   

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

2019-11-03 Thread Matthew Thode
commit: fcb5faf712d7970154b0c31c7d2dd5222d3e4509
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Nov  3 20:14:08 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sun Nov  3 20:21:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcb5faf7

app-admin/puppet-agent: 6.10.1 stable amd64/x86 with cleanup

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

 app-admin/puppet-agent/Manifest   |  2 -
 app-admin/puppet-agent/puppet-agent-6.10.1.ebuild |  2 +-
 app-admin/puppet-agent/puppet-agent-6.8.0.ebuild  | 79 ---
 3 files changed, 1 insertion(+), 82 deletions(-)

diff --git a/app-admin/puppet-agent/Manifest b/app-admin/puppet-agent/Manifest
index 11b0c4f384c..ddeb97addf9 100644
--- a/app-admin/puppet-agent/Manifest
+++ b/app-admin/puppet-agent/Manifest
@@ -1,6 +1,4 @@
 DIST puppet-agent_6.10.1-1stretch_amd64.deb 19712026 BLAKE2B 
82f5d9d18a3171b230d0e6027b9b8409b51096e12c5fd88844643320a0f5f654bc79880b35565571a6367a2d95f7a8f90ac811c2df1f1ec6c1866508c7e112e0
 SHA512 
8b289f8690fb67d353bc004a281e3e32a118048523bb6c743fa8ff46f2583c155ddffc22a7898662b598128f5ef75d77fd9a99b43c4afb72a23a2bfa3959f0c6
 DIST puppet-agent_6.10.1-1stretch_i386.deb 20055310 BLAKE2B 
31bb9bd40f5098b666d911545b565654d84a422625536eff954256851089d211ea2660dbdab7b73df370efc0bbc41875617df3012ee734ec586af87967e8bc02
 SHA512 
33348839a245bcda4c76feae214d72bb36c1959c1b6f5f9c2db084ad1bb0018393ab6bd94e16ed987a23b2f253baf31f1df0453ead1cc6860941954ff31930c2
-DIST puppet-agent_6.8.0-1stretch_amd64.deb 19184708 BLAKE2B 
ac961857784eaaa55604285cf305dac437007628ea5baa3c3ae9a8a345fcb8cf2b20820bd80cc2c96afb77cb03c4d2779b17b1183c9bc9461b56860d2179f448
 SHA512 
707146f71b21df4b89244df7b786f481136cfe7b0cabf20aa0d4784aca547ba85c75d13309b77c853b9e034b8271f350b30bc5358010d90b7573e3fdb63c31b6
-DIST puppet-agent_6.8.0-1stretch_i386.deb 19478404 BLAKE2B 
0b9d76bb3d745ca42e489e16a133d684aa0e485941d59c6773c447f5fc79be7a964f0a2ff9e4c334a47b7d2ffc0264bd49e4f7806cbc2e72e037da1c9e385d51
 SHA512 
f8bc962b32abbaf070b81245b7488b4fc131d5a9e3ec94ac97038f5e9c942c70a493e61e13190fe2837eb898518724bb5f360b37531003dab37606436d66219b
 DIST puppet-agent_6.9.0-1stretch_amd64.deb 19846122 BLAKE2B 
7f9133d1f5cb85f45c96490c230ee0cfda707db390a3a39be218fcd730e2298099e6d70c4f44bb5c6af46736c2c8aa7906a16375088c0119045dc77b53343b91
 SHA512 
f96cb1a6108a21192493b7b9958243e537ab41ce3ab6a7dde4d12bcd5da25ec6a5b29632acb87c4e156256578e8348c6fdfe26043539292f98203cce69b04fff
 DIST puppet-agent_6.9.0-1stretch_i386.deb 20170516 BLAKE2B 
391a61a847bc05f9f03885f2e2140ea42b4eeca247f3223f17a82d3ede2e1bbc88226f9794777f4b20e81943d94b11612f8d4ffd9f74c2f494bdc242fb05e1a1
 SHA512 
595dbe1591a8ee9d703a3efdf103a3095966b22cafd0fd63fb2a7b9274ea858b55d0b915ecc32e93c49bcbeba453654fc9126efe3855924fb5c5b6732e0af83d

diff --git a/app-admin/puppet-agent/puppet-agent-6.10.1.ebuild 
b/app-admin/puppet-agent/puppet-agent-6.10.1.ebuild
index a72df734d6b..c648209a4a7 100644
--- a/app-admin/puppet-agent/puppet-agent-6.10.1.ebuild
+++ b/app-admin/puppet-agent/puppet-agent-6.10.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="puppetdb selinux"
 RESTRICT="strip"
 

diff --git a/app-admin/puppet-agent/puppet-agent-6.8.0.ebuild 
b/app-admin/puppet-agent/puppet-agent-6.8.0.ebuild
deleted file mode 100644
index c648209a4a7..000
--- a/app-admin/puppet-agent/puppet-agent-6.8.0.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit eutils systemd unpacker user
-
-DESCRIPTION="general puppet client utils along with hiera and facter"
-HOMEPAGE="https://puppetlabs.com/;
-SRC_BASE="http://apt.puppetlabs.com/pool/stretch/puppet/${PN:0:1}/${PN}/${PN}_${PV}-1stretch;
-SRC_URI="
-   amd64? ( ${SRC_BASE}_amd64.deb )
-   x86?   ( ${SRC_BASE}_i386.deb )"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="puppetdb selinux"
-RESTRICT="strip"
-
-CDEPEND="!app-admin/augeas
-   !app-admin/puppet
-   !dev-ruby/hiera
-   !dev-ruby/facter
-   !app-emulation/virt-what"
-
-DEPEND="
-   ${CDEPEND}"
-RDEPEND="${CDEPEND}
-   app-portage/eix
-   sys-apps/dmidecode
-   sys-libs/glibc
-   sys-libs/readline:0/7
-   sys-libs/ncurses:0[tinfo]
-   selinux? (
-   sys-libs/libselinux[ruby]
-   sec-policy/selinux-puppet
-   )
-   puppetdb? ( >=dev-ruby/puppetdb-termini-5.0.1 )"
-
-S=${WORKDIR}
-
-pkg_setup() {
-   enewgroup puppet
-   enewuser puppet -1 -1 /var/run/puppet puppet
-}
-
-src_install() {
-   # conf.d
-   doconfd etc/default/puppet
-   doconfd etc/default/pxp-agent
-   # logrotate.d
-   insinto /etc/logrotate.d
-   doins etc/logrotate.d/pxp-agent
-   # puppet itself
-   insinto /etc/puppetlabs
-   doins -r 

[gentoo-commits] repo/gentoo:master commit in: dev-util/japi-compliance-checker/

2019-11-03 Thread Miroslav Šulc
commit: ab4ce76c8ac4c4f5e630b5f621afb40dff55ad0a
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Nov  3 20:17:05 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Nov  3 20:17:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab4ce76c

dev-util/japi-compliance-checker: new ebuild

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-util/japi-compliance-checker/Manifest  |  1 +
 .../japi-compliance-checker-2.4.ebuild | 28 
 .../japi-compliance-checker-.ebuild| 30 ++
 dev-util/japi-compliance-checker/metadata.xml  |  9 +++
 4 files changed, 68 insertions(+)

diff --git a/dev-util/japi-compliance-checker/Manifest 
b/dev-util/japi-compliance-checker/Manifest
new file mode 100644
index 000..3e441d0827f
--- /dev/null
+++ b/dev-util/japi-compliance-checker/Manifest
@@ -0,0 +1 @@
+DIST japi-compliance-checker-2.4.tar.gz 80249 BLAKE2B 
fe3eca473d5c7a25ca8e4afb104e498b4c71cf0a0280ca4f5c98c1ea742883de0c883053359e4211e0e2781542b85a92f42ffd48db76d27e15eeb868bc80c3a9
 SHA512 
53ec4d67478627cc08bd98f76b3d6600e29e71752863c38ba717c7e40432081f32933cd0a68c51dbbd3179bcbbfb7d356996038d4068299a6e2ad2f4e2ff1913

diff --git 
a/dev-util/japi-compliance-checker/japi-compliance-checker-2.4.ebuild 
b/dev-util/japi-compliance-checker/japi-compliance-checker-2.4.ebuild
new file mode 100644
index 000..c2ef8ddb652
--- /dev/null
+++ b/dev-util/japi-compliance-checker/japi-compliance-checker-2.4.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Java API compliance checker"
+HOMEPAGE="https://github.com/lvc/japi-compliance-checker;
+SRC_URI="https://github.com/lvc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND=">=dev-lang/perl-5"
+RDEPEND="${DEPEND}
+   >=virtual/jdk-1.8:*
+"
+
+src_compile() {
+   :
+}
+
+PREFIX="/usr"
+
+src_install() {
+   mkdir -p "${D}${PREFIX}"
+   perl Makefile.pl -install --destdir "${D}" || die "install failed"
+}

diff --git 
a/dev-util/japi-compliance-checker/japi-compliance-checker-.ebuild 
b/dev-util/japi-compliance-checker/japi-compliance-checker-.ebuild
new file mode 100644
index 000..0c12532893d
--- /dev/null
+++ b/dev-util/japi-compliance-checker/japi-compliance-checker-.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit git-r3
+
+DESCRIPTION="Java API compliance checker"
+HOMEPAGE="https://github.com/lvc/japi-compliance-checker;
+EGIT_REPO_URI="https://github.com/lvc/japi-compliance-checker.git;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS=""
+
+DEPEND=">=dev-lang/perl-5"
+RDEPEND="${DEPEND}
+   >=virtual/jdk-1.8:*
+"
+
+src_compile() {
+   :
+}
+
+PREFIX="/usr"
+
+src_install() {
+   mkdir -p "${D}${PREFIX}"
+   perl Makefile.pl -install --destdir "${D}" || die "install failed"
+}

diff --git a/dev-util/japi-compliance-checker/metadata.xml 
b/dev-util/japi-compliance-checker/metadata.xml
new file mode 100644
index 000..30007d86dcd
--- /dev/null
+++ b/dev-util/japi-compliance-checker/metadata.xml
@@ -0,0 +1,9 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   fordf...@gentoo.org
+   Miroslav Šulc
+
+A tool for checking backward API/ABI compatibility of a Java 
library
+



[gentoo-commits] proj/portage:master commit in: bin/install-qa-check.d/

2019-11-03 Thread Zac Medico
commit: 5952ad42e44d15da4d3a73d43f6bcc3714bf9a4f
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Nov  3 20:11:35 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Nov  3 20:11:50 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=5952ad42

Revert "install-qa-check.d: handle libtool files and static libs from /"

This reverts commit a2506e4ebd47781eb81b7d13b0a1a376ed028c77.

Signed-off-by: Zac Medico  gentoo.org>

 bin/install-qa-check.d/80libraries | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/install-qa-check.d/80libraries 
b/bin/install-qa-check.d/80libraries
index 806605293..e59369bf6 100644
--- a/bin/install-qa-check.d/80libraries
+++ b/bin/install-qa-check.d/80libraries
@@ -139,7 +139,7 @@ lib_check() {
# https://bugs.gentoo.org/4411
local abort="no"
local a s
-   for a in "${ED%/}"{/usr,}/lib*/*.a ; do
+   for a in "${ED%/}"/usr/lib*/*.a ; do
s=${a%.a}.so
if [[ ! -e ${s} ]] ; then
s=${s%usr/*}${s##*/usr/}
@@ -154,7 +154,7 @@ lib_check() {
 
# Verify that the libtool files don't contain bogus $D entries.
local abort=no gentoo_bug=no always_overflow=no
-   for a in "${ED%/}"{/usr,}/lib*/*.la ; do
+   for a in "${ED%/}"/usr/lib*/*.la ; do
s=${a##*/}
if grep -qs "${ED}" "${a}" ; then
__vecho -ne '\n'



[gentoo-commits] proj/portage:master commit in: bin/install-qa-check.d/

2019-11-03 Thread Zac Medico
commit: ae2a76261fd7e519bfbb3b8c4b41aa511d039245
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Nov  3 20:12:02 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Nov  3 20:14:42 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=ae2a7626

Revert "install-qa-check.d: remove check that bans libtool files and static 
libs from /"

This reverts commit 498900e5e51460502d8271f409a4c614a021613b.
This change is still being discussed.

See: 
https://archives.gentoo.org/gentoo-portage-dev/message/6e4cfbb0ef9c36dc6511d4f2003cc458
Bug: https://bugs.gentoo.org/699252
Signed-off-by: Zac Medico  gentoo.org>

 bin/install-qa-check.d/80libraries | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/bin/install-qa-check.d/80libraries 
b/bin/install-qa-check.d/80libraries
index e59369bf6..d1d2c4fdd 100644
--- a/bin/install-qa-check.d/80libraries
+++ b/bin/install-qa-check.d/80libraries
@@ -152,6 +152,16 @@ lib_check() {
done
[[ ${abort} == "yes" ]] && die "add those ldscripts"
 
+   # Make sure people don't store libtool files or static libs in /lib
+   f=$(ls "${ED%/}"/lib*/*.{a,la} 2>/dev/null)
+   if [[ -n ${f} ]] ; then
+   __vecho -ne '\n'
+   eqawarn "QA Notice: Excessive files found in the / partition"
+   eqawarn "${f}"
+   __vecho -ne '\n'
+   die "static archives (*.a) and libtool library files (*.la) 
belong in /usr/lib*, not /lib*"
+   fi
+
# Verify that the libtool files don't contain bogus $D entries.
local abort=no gentoo_bug=no always_overflow=no
for a in "${ED%/}"/usr/lib*/*.la ; do



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

2019-11-03 Thread Louis Sautier
commit: 8690071aea0072a4df9e2477f38e37db77a0a124
Author: Louis Sautier  gentoo  org>
AuthorDate: Sun Nov  3 20:13:35 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sun Nov  3 20:14:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8690071a

www-apps/klaus: remove old

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Louis Sautier  gentoo.org>

 www-apps/klaus/Manifest   |  1 -
 www-apps/klaus/klaus-1.3.0.ebuild | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/www-apps/klaus/Manifest b/www-apps/klaus/Manifest
index 901293e3a4e..0da73ca8bae 100644
--- a/www-apps/klaus/Manifest
+++ b/www-apps/klaus/Manifest
@@ -1,3 +1,2 @@
-DIST klaus-1.3.0.tar.gz 35363 BLAKE2B 
881f9bd1a80d4a580a0dc84a7b8528a5703777817495639bb3ea8f608c2495287a37fe43839d0c64002e1d36453d37f116c73c9a7ef93651bc8a2d010d4d2e2c
 SHA512 
c159d8195b1bde43f46d013f0337e998d905b1f3a9a23caf5f71180d19192c3c391cc5143545bd3d05a2aef45451a43e873ca3828c8f9f69ae3eaaa0d00560cb
 DIST klaus-1.4.0.tar.gz 36879 BLAKE2B 
8a621338514e3be143c5b64a0a486d47edc7e7a14c839bc135e7c1693fd09ddea1529b5b2e1d8e0bb70f152629d7bff288f9221ae4243dac01995da4d00e5848
 SHA512 
8e596590fe29c62eeb823047780f747a0f4908f926dad8ff54000469dca013fcfcbaf7b53c0555db095fef71e4d9056e9b6e959005550bdfccc338f1ee3a5d2c
 DIST klaus-1.5.0.tar.gz 37819 BLAKE2B 
06c987a6f0192e745d2216387d0547fa8d6787100fb75515e954830b214ac19e997d9da7eb6a9ecf30c9a7a7d3cbf1f63ced1cf3ec2544f16e7262fc79664489
 SHA512 
fa371bde18b112fafe26a2782d48123a083e111ab183c26e2af6a31a70a6028eb7c82bc5f3eda04703c61684ed990256e99d770b1328e4c61d3b0d13be65cb13

diff --git a/www-apps/klaus/klaus-1.3.0.ebuild 
b/www-apps/klaus/klaus-1.3.0.ebuild
deleted file mode 100644
index 012d6a339be..000
--- a/www-apps/klaus/klaus-1.3.0.ebuild
+++ /dev/null
@@ -1,31 +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,6,7}} )
-
-inherit distutils-r1
-
-DESCRIPTION="A simple, easy-to-set-up Git web viewer"
-HOMEPAGE="https://github.com/jonashaag/klaus/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="ctags"
-
-RDEPEND="
-   >=dev-python/dulwich-0.19.3[${PYTHON_USEDEP}]
-   dev-python/flask[${PYTHON_USEDEP}]
-   dev-python/httpauth[${PYTHON_USEDEP}]
-   dev-python/humanize[${PYTHON_USEDEP}]
-   dev-python/pygments[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   ctags? ( dev-python/python-ctags[${PYTHON_USEDEP}] )
-"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-
-# The tests can only be run from a git repository
-# so they are not included in the source distributions



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

2019-11-03 Thread Louis Sautier
commit: 620840254e817d5aa32158a4646590791804c1dc
Author: Louis Sautier  gentoo  org>
AuthorDate: Sun Nov  3 20:13:23 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sun Nov  3 20:14:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62084025

www-apps/klaus: bump to 1.5.0

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Louis Sautier  gentoo.org>

 www-apps/klaus/Manifest   |  1 +
 www-apps/klaus/klaus-1.5.0.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/www-apps/klaus/Manifest b/www-apps/klaus/Manifest
index 62b93f45230..901293e3a4e 100644
--- a/www-apps/klaus/Manifest
+++ b/www-apps/klaus/Manifest
@@ -1,2 +1,3 @@
 DIST klaus-1.3.0.tar.gz 35363 BLAKE2B 
881f9bd1a80d4a580a0dc84a7b8528a5703777817495639bb3ea8f608c2495287a37fe43839d0c64002e1d36453d37f116c73c9a7ef93651bc8a2d010d4d2e2c
 SHA512 
c159d8195b1bde43f46d013f0337e998d905b1f3a9a23caf5f71180d19192c3c391cc5143545bd3d05a2aef45451a43e873ca3828c8f9f69ae3eaaa0d00560cb
 DIST klaus-1.4.0.tar.gz 36879 BLAKE2B 
8a621338514e3be143c5b64a0a486d47edc7e7a14c839bc135e7c1693fd09ddea1529b5b2e1d8e0bb70f152629d7bff288f9221ae4243dac01995da4d00e5848
 SHA512 
8e596590fe29c62eeb823047780f747a0f4908f926dad8ff54000469dca013fcfcbaf7b53c0555db095fef71e4d9056e9b6e959005550bdfccc338f1ee3a5d2c
+DIST klaus-1.5.0.tar.gz 37819 BLAKE2B 
06c987a6f0192e745d2216387d0547fa8d6787100fb75515e954830b214ac19e997d9da7eb6a9ecf30c9a7a7d3cbf1f63ced1cf3ec2544f16e7262fc79664489
 SHA512 
fa371bde18b112fafe26a2782d48123a083e111ab183c26e2af6a31a70a6028eb7c82bc5f3eda04703c61684ed990256e99d770b1328e4c61d3b0d13be65cb13

diff --git a/www-apps/klaus/klaus-1.5.0.ebuild 
b/www-apps/klaus/klaus-1.5.0.ebuild
new file mode 100644
index 000..1966b9410b7
--- /dev/null
+++ b/www-apps/klaus/klaus-1.5.0.ebuild
@@ -0,0 +1,36 @@
+# 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,6,7}} )
+
+inherit distutils-r1
+
+DESCRIPTION="A simple, easy-to-set-up Git web viewer"
+HOMEPAGE="https://github.com/jonashaag/klaus/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="ctags"
+
+RDEPEND="
+   >=dev-python/dulwich-0.19.3[${PYTHON_USEDEP}]
+   dev-python/flask[${PYTHON_USEDEP}]
+   dev-python/httpauth[${PYTHON_USEDEP}]
+   dev-python/humanize[${PYTHON_USEDEP}]
+   dev-python/pygments[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   ctags? ( dev-python/python-ctags[${PYTHON_USEDEP}] )
+"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+# The tests can only be run from a git repository
+# so they are not included in the source distributions
+
+python_install_all() {
+   distutils-r1_python_install_all
+   doman ${PN}.1
+}



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

2019-11-03 Thread Miroslav Šulc
commit: 309cf6b34558677bb60c5524c8f3a31e2f7fcf0c
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Nov  3 20:04:22 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Nov  3 20:04:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=309cf6b3

dev-util/pkgdiff: new package

Closes: https://bugs.gentoo.org/656326
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-util/pkgdiff/Manifest |  1 +
 dev-util/pkgdiff/metadata.xml |  9 +
 dev-util/pkgdiff/pkgdiff-1.7.2.ebuild | 31 +++
 dev-util/pkgdiff/pkgdiff-.ebuild  | 33 +
 4 files changed, 74 insertions(+)

diff --git a/dev-util/pkgdiff/Manifest b/dev-util/pkgdiff/Manifest
new file mode 100644
index 000..1fff2bd7d3b
--- /dev/null
+++ b/dev-util/pkgdiff/Manifest
@@ -0,0 +1 @@
+DIST pkgdiff-1.7.2.tar.gz 56592 BLAKE2B 
6190a8c1e018766802e12234890629efb356680dee84afdea1f989bc91196edc5460c3af3cba5229116ddcafac81f728d1d4eb52f009f9dc5f711a7718f2b0a9
 SHA512 
2369488e9705280be9b326b07aa9ef0e211440921b9cce5c35560a14d1ad4ac0040eb54024a88a4a5f8f831208b43124c17a817a44840500b490c89bf877b904

diff --git a/dev-util/pkgdiff/metadata.xml b/dev-util/pkgdiff/metadata.xml
new file mode 100644
index 000..eaf46a7bd99
--- /dev/null
+++ b/dev-util/pkgdiff/metadata.xml
@@ -0,0 +1,9 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   fordf...@gentoo.org
+   Miroslav Šulc
+
+A tool for visualizing changes in Linux software 
packages
+

diff --git a/dev-util/pkgdiff/pkgdiff-1.7.2.ebuild 
b/dev-util/pkgdiff/pkgdiff-1.7.2.ebuild
new file mode 100644
index 000..10a3971dd70
--- /dev/null
+++ b/dev-util/pkgdiff/pkgdiff-1.7.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Package Changes Analyzer (pkgdiff)"
+HOMEPAGE="https://github.com/lvc/pkgdiff;
+SRC_URI="https://github.com/lvc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND=">=dev-lang/perl-5"
+RDEPEND="${DEPEND}
+   sys-apps/diffutils
+   app-text/wdiff
+   sys-apps/gawk
+   sys-devel/binutils
+"
+
+src_compile() {
+   :
+}
+
+PREFIX="/usr"
+
+src_install() {
+   mkdir -p "${D}${PREFIX}"
+   perl Makefile.pl -install --destdir "${D}" || die "install failed"
+}

diff --git a/dev-util/pkgdiff/pkgdiff-.ebuild 
b/dev-util/pkgdiff/pkgdiff-.ebuild
new file mode 100644
index 000..f397a5715c4
--- /dev/null
+++ b/dev-util/pkgdiff/pkgdiff-.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit git-r3
+
+DESCRIPTION="Package Changes Analyzer (pkgdiff)"
+HOMEPAGE="https://github.com/lvc/pkgdiff;
+EGIT_REPO_URI="https://github.com/lvc/${PN}.git;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS=""
+
+DEPEND=">=dev-lang/perl-5"
+RDEPEND="${DEPEND}
+   sys-apps/diffutils
+   app-text/wdiff
+   sys-apps/gawk
+   sys-devel/binutils
+"
+
+src_compile() {
+   :
+}
+
+PREFIX="/usr"
+
+src_install() {
+   mkdir -p "${D}${PREFIX}"
+   perl Makefile.pl -install --destdir "${D}" || die "install failed"
+}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-plugin-check_lm_sensors/

2019-11-03 Thread Louis Sautier
commit: 2bb0303372f0d8a1ab0d00f029c3859cfc4a47f2
Author: Louis Sautier  gentoo  org>
AuthorDate: Sun Nov  3 20:03:41 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sun Nov  3 20:03:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bb03033

net-analyzer/nagios-plugin-check_lm_sensors: remove old

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Louis Sautier  gentoo.org>

 .../nagios-plugin-check_lm_sensors/Manifest|  1 -
 ...-plugin-check_lm_sensors-4.1.1_p20170912.ebuild | 36 --
 2 files changed, 37 deletions(-)

diff --git a/net-analyzer/nagios-plugin-check_lm_sensors/Manifest 
b/net-analyzer/nagios-plugin-check_lm_sensors/Manifest
index 563a41bf8ee..6c9406511ff 100644
--- a/net-analyzer/nagios-plugin-check_lm_sensors/Manifest
+++ b/net-analyzer/nagios-plugin-check_lm_sensors/Manifest
@@ -1,2 +1 @@
-DIST nagios-plugin-check_lm_sensors-4.1.1_p20170912.tar.gz 21681 BLAKE2B 
7144c9b9fc4a2b2ccd964ce356809e8ea393b05f86015e5efe5b0ef70fccb585d520fdbba486fd1637c0ef9d2853d270cfb069f6bed22a105b5d80977a8481d7
 SHA512 
7870e29f58179bd71c917c2bcfe7ff0ee9f28be8b41b19b8f4f3e623fc3ca12395d6dbd55eef3f4084b3fedf2b1c4dc745357d045d19e1f00a3fe2e24a236e77
 DIST nagios-plugin-check_lm_sensors-4.1.1_p20191028.tar.gz 21775 BLAKE2B 
d1b9946f45ea30e66baa87825c29aa64f18927ec5c07641d05789f189bc3aacb9764b3790eaa699d83c11860027bc36af9b85ba95b2845afa7533d03fd9d153d
 SHA512 
4473719e5631edbebb8d8ee79578243a97c46cf70a14a2c780560df811f9d4d63081788b2059a9636f26d19a68ac0a44d6b68a4b386b1145d3f3fad8d60439fe

diff --git 
a/net-analyzer/nagios-plugin-check_lm_sensors/nagios-plugin-check_lm_sensors-4.1.1_p20170912.ebuild
 
b/net-analyzer/nagios-plugin-check_lm_sensors/nagios-plugin-check_lm_sensors-4.1.1_p20170912.ebuild
deleted file mode 100644
index 4587bb043e4..000
--- 
a/net-analyzer/nagios-plugin-check_lm_sensors/nagios-plugin-check_lm_sensors-4.1.1_p20170912.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit perl-module vcs-snapshot
-
-MY_PN="${PN/nagios-plugin-/}"
-MY_COMMIT="36e453f791f0c8e32c2ead204f68511fd2ad4529"
-
-DESCRIPTION="Nagios plugin to monitor the values of onboard sensors and disk 
temperatures"
-HOMEPAGE="https://github.com/matteocorti/check_lm_sensors;
-SRC_URI="https://github.com/matteocorti/${MY_PN}/archive/${MY_COMMIT}.tar.gz 
-> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="dev-perl/Module-Install"
-RDEPEND="
-   dev-perl/Monitoring-Plugin
-   virtual/perl-Getopt-Long
-"
-
-src_compile() {
-   default
-   pod2man ${MY_PN}.pod > ${MY_PN}.1 || die
-}
-
-src_install() {
-   perl-module_src_install
-   doman ${MY_PN}.1
-   local plugindir="/usr/$(get_libdir)/nagios/plugins"
-   dodir "${plugindir}"
-   mv "${ED}/usr/bin/${MY_PN}" "${ED}/${plugindir}" || die
-}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-plugin-check_lm_sensors/

2019-11-03 Thread Louis Sautier
commit: 22c432c0273f91f4e7f093fec3a2edc4f71071d0
Author: Louis Sautier  gentoo  org>
AuthorDate: Sun Nov  3 20:02:20 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sun Nov  3 20:03:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22c432c0

net-analyzer/nagios-plugin-check_lm_sensors: bump to 4.1.1_p20191028

This version uses sensors's JSON output and works properly with
sys-apps/lm-sensors-3.6.0.

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Louis Sautier  gentoo.org>

 .../nagios-plugin-check_lm_sensors/Manifest|  1 +
 ...-plugin-check_lm_sensors-4.1.1_p20191028.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/net-analyzer/nagios-plugin-check_lm_sensors/Manifest 
b/net-analyzer/nagios-plugin-check_lm_sensors/Manifest
index 1dcf0ec3498..563a41bf8ee 100644
--- a/net-analyzer/nagios-plugin-check_lm_sensors/Manifest
+++ b/net-analyzer/nagios-plugin-check_lm_sensors/Manifest
@@ -1 +1,2 @@
 DIST nagios-plugin-check_lm_sensors-4.1.1_p20170912.tar.gz 21681 BLAKE2B 
7144c9b9fc4a2b2ccd964ce356809e8ea393b05f86015e5efe5b0ef70fccb585d520fdbba486fd1637c0ef9d2853d270cfb069f6bed22a105b5d80977a8481d7
 SHA512 
7870e29f58179bd71c917c2bcfe7ff0ee9f28be8b41b19b8f4f3e623fc3ca12395d6dbd55eef3f4084b3fedf2b1c4dc745357d045d19e1f00a3fe2e24a236e77
+DIST nagios-plugin-check_lm_sensors-4.1.1_p20191028.tar.gz 21775 BLAKE2B 
d1b9946f45ea30e66baa87825c29aa64f18927ec5c07641d05789f189bc3aacb9764b3790eaa699d83c11860027bc36af9b85ba95b2845afa7533d03fd9d153d
 SHA512 
4473719e5631edbebb8d8ee79578243a97c46cf70a14a2c780560df811f9d4d63081788b2059a9636f26d19a68ac0a44d6b68a4b386b1145d3f3fad8d60439fe

diff --git 
a/net-analyzer/nagios-plugin-check_lm_sensors/nagios-plugin-check_lm_sensors-4.1.1_p20191028.ebuild
 
b/net-analyzer/nagios-plugin-check_lm_sensors/nagios-plugin-check_lm_sensors-4.1.1_p20191028.ebuild
new file mode 100644
index 000..cd457b7e25d
--- /dev/null
+++ 
b/net-analyzer/nagios-plugin-check_lm_sensors/nagios-plugin-check_lm_sensors-4.1.1_p20191028.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit perl-module vcs-snapshot
+
+MY_PN="${PN/nagios-plugin-/}"
+MY_COMMIT="80db8aa58be8f5d7800564d62305281be1ec8e6b"
+
+DESCRIPTION="Nagios plugin to monitor the values of onboard sensors and disk 
temperatures"
+HOMEPAGE="https://github.com/matteocorti/check_lm_sensors;
+SRC_URI="https://github.com/matteocorti/${MY_PN}/archive/${MY_COMMIT}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="dev-perl/Module-Install"
+RDEPEND="
+   dev-perl/JSON-MaybeXS
+   dev-perl/Monitoring-Plugin
+   virtual/perl-Getopt-Long
+"
+
+src_compile() {
+   default
+   pod2man ${MY_PN}.pod > ${MY_PN}.1 || die
+}
+
+src_install() {
+   perl-module_src_install
+   doman ${MY_PN}.1
+   local plugindir="/usr/$(get_libdir)/nagios/plugins"
+   dodir "${plugindir}"
+   mv "${ED}/usr/bin/${MY_PN}" "${ED}/${plugindir}" || die
+}



[gentoo-commits] proj/portage:master commit in: bin/install-qa-check.d/

2019-11-03 Thread Zac Medico
commit: a2506e4ebd47781eb81b7d13b0a1a376ed028c77
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Nov  3 19:59:06 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Nov  3 20:00:59 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=a2506e4e

install-qa-check.d: handle libtool files and static libs from /

Fixes: 498900e5e514 ("install-qa-check.d: remove check that bans libtool files 
and static libs from /")
Bug: https://bugs.gentoo.org/699252
Signed-off-by: Zac Medico  gentoo.org>

 bin/install-qa-check.d/80libraries | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/install-qa-check.d/80libraries 
b/bin/install-qa-check.d/80libraries
index e59369bf6..806605293 100644
--- a/bin/install-qa-check.d/80libraries
+++ b/bin/install-qa-check.d/80libraries
@@ -139,7 +139,7 @@ lib_check() {
# https://bugs.gentoo.org/4411
local abort="no"
local a s
-   for a in "${ED%/}"/usr/lib*/*.a ; do
+   for a in "${ED%/}"{/usr,}/lib*/*.a ; do
s=${a%.a}.so
if [[ ! -e ${s} ]] ; then
s=${s%usr/*}${s##*/usr/}
@@ -154,7 +154,7 @@ lib_check() {
 
# Verify that the libtool files don't contain bogus $D entries.
local abort=no gentoo_bug=no always_overflow=no
-   for a in "${ED%/}"/usr/lib*/*.la ; do
+   for a in "${ED%/}"{/usr,}/lib*/*.la ; do
s=${a##*/}
if grep -qs "${ED}" "${a}" ; then
__vecho -ne '\n'



[gentoo-commits] data/api:master commit in: files/overlays/

2019-11-03 Thread Michał Górny
commit: c6dcd072882613010a1eb75f8632e656e1fca579
Author: Adam Purkrt  purkrt  net>
AuthorDate: Sun Nov  3 18:17:51 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov  3 19:52:11 2019 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=c6dcd072

repositories: Add apurkrt overlay

Closes: https://github.com/gentoo/api-gentoo-org/pull/225
Signed-off-by: Michał Górny  gentoo.org>

 files/overlays/repositories.xml | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 7a2a20e..e123bd0 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -389,6 +389,16 @@
 g...@github.com:anyc/anyc-overlay.git
 https://github.com/anyc/anyc-overlay/commits/master.atom
   
+  
+apurkrt
+Xfce development ebuilds and other 
stuff
+https://gitlab.com/apurkrt/apurkrt
+
+  a...@purkrt.net
+  Adam Purkrt
+
+https://gitlab.com/apurkrt/apurkrt.git
+  
   
 arax-os-overlay
 Arax OS overlay



[gentoo-commits] proj/portage:master commit in: bin/install-qa-check.d/

2019-11-03 Thread Zac Medico
commit: 498900e5e51460502d8271f409a4c614a021613b
Author: William Hubbs  gentoo  org>
AuthorDate: Sun Oct 27 17:40:07 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Nov  3 19:44:44 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=498900e5

install-qa-check.d: remove check that bans libtool files and static libs from /

Most upstreams and build systems do not make this distinction, so this
causes unnecessary hacks in ebuilds.

Bug: https://bugs.gentoo.org/699252
Signed-off-by: William Hubbs  gentoo.org>
Signed-off-by: Zac Medico  gentoo.org>

 bin/install-qa-check.d/80libraries | 10 --
 1 file changed, 10 deletions(-)

diff --git a/bin/install-qa-check.d/80libraries 
b/bin/install-qa-check.d/80libraries
index d1d2c4fdd..e59369bf6 100644
--- a/bin/install-qa-check.d/80libraries
+++ b/bin/install-qa-check.d/80libraries
@@ -152,16 +152,6 @@ lib_check() {
done
[[ ${abort} == "yes" ]] && die "add those ldscripts"
 
-   # Make sure people don't store libtool files or static libs in /lib
-   f=$(ls "${ED%/}"/lib*/*.{a,la} 2>/dev/null)
-   if [[ -n ${f} ]] ; then
-   __vecho -ne '\n'
-   eqawarn "QA Notice: Excessive files found in the / partition"
-   eqawarn "${f}"
-   __vecho -ne '\n'
-   die "static archives (*.a) and libtool library files (*.la) 
belong in /usr/lib*, not /lib*"
-   fi
-
# Verify that the libtool files don't contain bogus $D entries.
local abort=no gentoo_bug=no always_overflow=no
for a in "${ED%/}"/usr/lib*/*.la ; do



[gentoo-commits] proj/kde:master commit in: profiles/package.mask/

2019-11-03 Thread Andreas Sturmlechner
commit: 2ac90bf391b601a7d14fa3bd824d2b1732ff7a12
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 12:42:55 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 12:43:21 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=2ac90bf3

profiles: Add kde-frameworks-5.64 package.mask

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

 profiles/package.mask/kde-frameworks-5.64 | 85 +++
 1 file changed, 85 insertions(+)

diff --git a/profiles/package.mask/kde-frameworks-5.64 
b/profiles/package.mask/kde-frameworks-5.64
new file mode 100644
index 00..bfe1d4af40
--- /dev/null
+++ b/profiles/package.mask/kde-frameworks-5.64
@@ -0,0 +1,85 @@
+# Andreas Sturmlechner  (02 Nov 2019)
+# KDE Frameworks 5.64.0 mask
+# Not released yet.
+~kde-frameworks/attica-5.64.0:5
+~kde-frameworks/baloo-5.64.0:5
+~kde-frameworks/bluez-qt-5.64.0:5
+~kde-frameworks/breeze-icons-5.64.0:5
+~kde-frameworks/breeze-icons-rcc-5.64.0:5
+~kde-frameworks/extra-cmake-modules-5.64.0:5
+~kde-frameworks/frameworkintegration-5.64.0:5
+~kde-frameworks/kactivities-5.64.0:5
+~kde-frameworks/kactivities-stats-5.64.0:5
+~kde-frameworks/kapidox-5.64.0:5
+~kde-frameworks/karchive-5.64.0:5
+~kde-frameworks/kauth-5.64.0:5
+~kde-frameworks/kbookmarks-5.64.0:5
+~kde-frameworks/kcalendarcore-5.64.0:5
+~kde-frameworks/kcmutils-5.64.0:5
+~kde-frameworks/kcodecs-5.64.0:5
+~kde-frameworks/kcompletion-5.64.0:5
+~kde-frameworks/kconfig-5.64.0:5
+~kde-frameworks/kconfigwidgets-5.64.0:5
+~kde-frameworks/kcontacts-5.64.0:5
+~kde-frameworks/kcoreaddons-5.64.0:5
+~kde-frameworks/kcrash-5.64.0:5
+~kde-frameworks/kdbusaddons-5.64.0:5
+~kde-frameworks/kdeclarative-5.64.0:5
+~kde-frameworks/kded-5.64.0:5
+~kde-frameworks/kdelibs4support-5.64.0:5
+~kde-frameworks/kdesignerplugin-5.64.0:5
+~kde-frameworks/kdesu-5.64.0:5
+~kde-frameworks/kdewebkit-5.64.0:5
+~kde-frameworks/kdnssd-5.64.0:5
+~kde-frameworks/kdoctools-5.64.0:5
+~kde-frameworks/kemoticons-5.64.0:5
+~kde-frameworks/kfilemetadata-5.64.0:5
+~kde-frameworks/kglobalaccel-5.64.0:5
+~kde-frameworks/kguiaddons-5.64.0:5
+~kde-frameworks/kholidays-5.64.0:5
+~kde-frameworks/khtml-5.64.0:5
+~kde-frameworks/ki18n-5.64.0:5
+~kde-frameworks/kiconthemes-5.64.0:5
+~kde-frameworks/kidletime-5.64.0:5
+~kde-frameworks/kimageformats-5.64.0:5
+~kde-frameworks/kinit-5.64.0:5
+~kde-frameworks/kio-5.64.0:5
+~kde-frameworks/kirigami-5.64.0:5
+~kde-frameworks/kitemmodels-5.64.0:5
+~kde-frameworks/kitemviews-5.64.0:5
+~kde-frameworks/kjobwidgets-5.64.0:5
+~kde-frameworks/kjs-5.64.0:5
+~kde-frameworks/kjsembed-5.64.0:5
+~kde-frameworks/kmediaplayer-5.64.0:5
+~kde-frameworks/knewstuff-5.64.0:5
+~kde-frameworks/knotifications-5.64.0:5
+~kde-frameworks/knotifyconfig-5.64.0:5
+~kde-frameworks/kpackage-5.64.0:5
+~kde-frameworks/kparts-5.64.0:5
+~kde-frameworks/kpeople-5.64.0:5
+~kde-frameworks/kplotting-5.64.0:5
+~kde-frameworks/kpty-5.64.0:5
+~kde-frameworks/kross-5.64.0:5
+~kde-frameworks/krunner-5.64.0:5
+~kde-frameworks/kservice-5.64.0:5
+~kde-frameworks/ktexteditor-5.64.0:5
+~kde-frameworks/ktextwidgets-5.64.0:5
+~kde-frameworks/kunitconversion-5.64.0:5
+~kde-frameworks/kwallet-5.64.0:5
+~kde-frameworks/kwayland-5.64.0:5
+~kde-frameworks/kwidgetsaddons-5.64.0:5
+~kde-frameworks/kwindowsystem-5.64.0:5
+~kde-frameworks/kxmlgui-5.64.0:5
+~kde-frameworks/kxmlrpcclient-5.64.0:5
+~kde-frameworks/modemmanager-qt-5.64.0:5
+~kde-frameworks/networkmanager-qt-5.64.0:5
+~kde-frameworks/oxygen-icons-5.64.0:5
+~kde-frameworks/plasma-5.64.0:5
+~kde-frameworks/prison-5.64.0:5
+~kde-frameworks/purpose-5.64.0:5
+~kde-frameworks/qqc2-desktop-style-5.64.0:5
+~kde-frameworks/solid-5.64.0:5
+~kde-frameworks/sonnet-5.64.0:5
+~kde-frameworks/syndication-5.64.0:5
+~kde-frameworks/syntax-highlighting-5.64.0:5
+~kde-frameworks/threadweaver-5.64.0:5



[gentoo-commits] proj/kde:master commit in: Documentation/package.unmask/, Documentation/package.mask/, ...

2019-11-03 Thread Andreas Sturmlechner
commit: 2d3cce9a7f60efdb436d157faa64caa188e6a988
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 12:46:02 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 12:47:44 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=2d3cce9a

Documentation: Add KDE Frameworks 5.64.0

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

 Documentation/maintainers/regenerate-files |  2 +-
 .../.kde-frameworks-5.64/_HEADER_  |  2 +
 .../.kde-frameworks-5.64/kde-frameworks-5.64   |  1 +
 .../.kde-frameworks-5.64/more-deps |  0
 .../kde-frameworks-5.64.keywords   | 85 ++
 Documentation/package.mask/kde-frameworks-5.64 | 85 ++
 .../package.unmask/.kde-frameworks-5.64/_HEADER_   |  2 +
 .../.kde-frameworks-5.64/kde-frameworks-5.64   |  1 +
 Documentation/package.unmask/kde-frameworks-5.64   | 85 ++
 9 files changed, 262 insertions(+), 1 deletion(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index c86742fe7a..3059323541 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -9,7 +9,7 @@ cd "$(dirname $0)"
 SCRIPT=$(basename $0)
 HEADER="# Autogenerated by ${SCRIPT}, DO NOT EDIT."
 
-KF_RELEASES="5.60 5.63"
+KF_RELEASES="5.60 5.63 5.64"
 KF_RELEASE=${KF_RELEASE:-5.60}
 
 PLASMA_RELEASES="5.16 5.17"

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5.64/_HEADER_ 
b/Documentation/package.accept_keywords/.kde-frameworks-5.64/_HEADER_
new file mode 100644
index 00..a7f8a437a2
--- /dev/null
+++ b/Documentation/package.accept_keywords/.kde-frameworks-5.64/_HEADER_
@@ -0,0 +1,2 @@
+# You can use this file to keyword/unkeyword the KDE Frameworks 5.64 release.
+# Edit Documentation/package.accept_keywords/.kde-frameworks-5.64/ files 
instead.

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5.64/kde-frameworks-5.64
 
b/Documentation/package.accept_keywords/.kde-frameworks-5.64/kde-frameworks-5.64
new file mode 12
index 00..fcecd4d3df
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-frameworks-5.64/kde-frameworks-5.64
@@ -0,0 +1 @@
+../../../sets/kde-frameworks-5.64
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5.64/more-deps 
b/Documentation/package.accept_keywords/.kde-frameworks-5.64/more-deps
new file mode 100644
index 00..e69de29bb2

diff --git a/Documentation/package.accept_keywords/kde-frameworks-5.64.keywords 
b/Documentation/package.accept_keywords/kde-frameworks-5.64.keywords
new file mode 100644
index 00..5457083f8b
--- /dev/null
+++ b/Documentation/package.accept_keywords/kde-frameworks-5.64.keywords
@@ -0,0 +1,85 @@
+# Autogenerated by regenerate-files, DO NOT EDIT.
+# You can use this file to keyword/unkeyword the KDE Frameworks 5.64 release.
+# Edit Documentation/package.accept_keywords/.kde-frameworks-5.64/ files 
instead.
+

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

2019-11-03 Thread Andreas Sturmlechner
commit: 5878300380907933db6177ed258d0a2ccc33a485
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov  3 17:42:40 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov  3 18:33:24 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=58783003

kde.org.eclass: Mark KDE Applications 19.08.3 unreleased

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

 eclass/kde.org.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass
index 713fe7cd52..1f888b6307 100644
--- a/eclass/kde.org.eclass
+++ b/eclass/kde.org.eclass
@@ -66,7 +66,7 @@ fi
 # An array of $CATEGORY-$PV pairs of packages that are unreleased upstream.
 # Any package matching this will have fetch restriction enabled, and receive
 # a proper error message via pkg_nofetch.
-KDE_UNRELEASED=( kde-frameworks-5.64.0 )
+KDE_UNRELEASED=( kde-frameworks-5.64.0 kde-apps-19.08.3 )
 
 HOMEPAGE="https://kde.org/;
 



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

2019-11-03 Thread Andreas Sturmlechner
commit: 6e09aa737c31b0ad1c97015713e6b24315d58501
Author: Alexander Tsoy  tsoy  me>
AuthorDate: Sat Nov  2 11:52:49 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 11:52:49 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6e09aa73

cmake-utils.eclass: Fix BUILD_SHARED_LIBS variable type

This fixes the following warning:

  CMake Warning (dev) at gentoo_common_config.cmake:8 (SET):
implicitly converting 'BOOLEAN' to 'STRING' type.

Signed-off-by: Alexander Tsoy  tsoy.me>
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 eclass/cmake-utils.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass
index 109b584afb..e7a48116da 100644
--- a/eclass/cmake-utils.eclass
+++ b/eclass/cmake-utils.eclass
@@ -649,7 +649,7 @@ cmake-utils_src_configure() {
if [[ ${EAPI} != [56] ]]; then
cat >> "${common_config}" <<- _EOF_ || die
SET (CMAKE_INSTALL_DOCDIR 
"${EPREFIX}/usr/share/doc/${PF}" CACHE PATH "")
-   SET (BUILD_SHARED_LIBS ON CACHE BOOLEAN "")
+   SET (BUILD_SHARED_LIBS ON CACHE BOOL "")
_EOF_
fi
 



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

2019-11-03 Thread Andreas Sturmlechner
commit: 9522191274bf1805ff06f2aa805167d675983aac
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 12:43:59 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 12:43:59 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=95221912

kde.org.eclass: Mark KDE Frameworks 5.64.0 unreleased

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

 eclass/kde.org.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass
index 3f86779c52..713fe7cd52 100644
--- a/eclass/kde.org.eclass
+++ b/eclass/kde.org.eclass
@@ -66,7 +66,7 @@ fi
 # An array of $CATEGORY-$PV pairs of packages that are unreleased upstream.
 # Any package matching this will have fetch restriction enabled, and receive
 # a proper error message via pkg_nofetch.
-KDE_UNRELEASED=( )
+KDE_UNRELEASED=( kde-frameworks-5.64.0 )
 
 HOMEPAGE="https://kde.org/;
 



[gentoo-commits] proj/kde:master commit in: kde-frameworks/sonnet/, kde-frameworks/ki18n/, kde-frameworks/kimageformats/, ...

2019-11-03 Thread Andreas Sturmlechner
commit: c4bab5dfd33273ba987009fba152d0713ff01c8d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov  3 13:18:06 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov  3 13:18:06 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=c4bab5df

kde-frameworks: Add KDE Frameworks 5.64.0

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

 kde-frameworks/attica/attica-5.64.0.ebuild | 25 ++
 kde-frameworks/baloo/baloo-5.64.0.ebuild   | 34 
 kde-frameworks/bluez-qt/bluez-qt-5.64.0.ebuild | 37 +
 .../breeze-icons-rcc-5.64.0.ebuild | 27 +++
 .../breeze-icons/breeze-icons-5.64.0.ebuild| 25 ++
 .../extra-cmake-modules-5.64.0.ebuild  | 67 +++
 .../frameworkintegration-5.64.0.ebuild | 54 +
 .../kactivities-stats-5.64.0.ebuild| 21 +
 .../kactivities/kactivities-5.64.0.ebuild  | 26 ++
 kde-frameworks/kapidox/kapidox-5.64.0.ebuild   | 24 ++
 kde-frameworks/karchive/karchive-5.64.0.ebuild | 27 +++
 kde-frameworks/kauth/kauth-5.64.0.ebuild   | 42 ++
 kde-frameworks/kbookmarks/kbookmarks-5.64.0.ebuild | 31 +++
 .../kcalendarcore/kcalendarcore-5.64.0.ebuild  | 26 ++
 kde-frameworks/kcmutils/kcmutils-5.64.0.ebuild | 31 +++
 kde-frameworks/kcodecs/kcodecs-5.64.0.ebuild   | 16 
 .../kcompletion/kcompletion-5.64.0.ebuild  | 23 ++
 kde-frameworks/kconfig/kconfig-5.64.0.ebuild   | 36 +
 .../kconfigwidgets/kconfigwidgets-5.64.0.ebuild| 38 +
 kde-frameworks/kcontacts/kcontacts-5.64.0.ebuild   | 34 
 .../kcoreaddons/kcoreaddons-5.64.0.ebuild  | 39 +
 kde-frameworks/kcrash/kcrash-5.64.0.ebuild | 30 +++
 .../kdbusaddons/kdbusaddons-5.64.0.ebuild  | 29 +++
 .../kdeclarative/kdeclarative-5.64.0.ebuild| 32 
 kde-frameworks/kded/kded-5.64.0.ebuild | 37 +
 .../kdelibs4support/kdelibs4support-5.64.0.ebuild  | 94 ++
 .../kdesignerplugin/kdesignerplugin-5.64.0.ebuild  | 23 ++
 kde-frameworks/kdesu/kdesu-5.64.0.ebuild   | 32 
 kde-frameworks/kdewebkit/kdewebkit-5.64.0.ebuild   | 38 +
 kde-frameworks/kdnssd/kdnssd-5.64.0.ebuild | 32 
 kde-frameworks/kdoctools/kdoctools-5.64.0.ebuild   | 46 +++
 kde-frameworks/kemoticons/kemoticons-5.64.0.ebuild | 26 ++
 .../kfilemetadata/kfilemetadata-5.64.0.ebuild  | 68 
 .../kglobalaccel/kglobalaccel-5.64.0.ebuild| 30 +++
 kde-frameworks/kguiaddons/kguiaddons-5.64.0.ebuild | 22 +
 kde-frameworks/kholidays/kholidays-5.64.0.ebuild   | 30 +++
 kde-frameworks/khtml/khtml-5.64.0.ebuild   | 70 
 kde-frameworks/ki18n/ki18n-5.64.0.ebuild   | 37 +
 .../kiconthemes/kiconthemes-5.64.0.ebuild  | 30 +++
 kde-frameworks/kidletime/kidletime-5.64.0.ebuild   | 46 +++
 .../kimageformats/kimageformats-5.64.0.ebuild  | 35 
 kde-frameworks/kinit/kinit-5.64.0.ebuild   | 47 +++
 kde-frameworks/kio/kio-5.64.0.ebuild   | 81 +++
 kde-frameworks/kirigami/kirigami-5.64.0.ebuild | 44 ++
 .../kitemmodels/kitemmodels-5.64.0.ebuild  | 14 
 kde-frameworks/kitemviews/kitemviews-5.64.0.ebuild | 23 ++
 .../kjobwidgets/kjobwidgets-5.64.0.ebuild  | 37 +
 kde-frameworks/kjs/kjs-5.64.0.ebuild   | 23 ++
 kde-frameworks/kjsembed/kjsembed-5.64.0.ebuild | 26 ++
 .../kmediaplayer/kmediaplayer-5.64.0.ebuild| 21 +
 kde-frameworks/knewstuff/knewstuff-5.64.0.ebuild   | 36 +
 .../knotifications/knotifications-5.64.0.ebuild| 48 +++
 .../knotifyconfig/knotifyconfig-5.64.0.ebuild  | 24 ++
 kde-frameworks/kpackage/kpackage-5.64.0.ebuild | 35 
 kde-frameworks/kparts/kparts-5.64.0.ebuild | 30 +++
 kde-frameworks/kpeople/kpeople-5.64.0.ebuild   | 39 +
 kde-frameworks/kplotting/kplotting-5.64.0.ebuild   | 19 +
 kde-frameworks/kpty/kpty-5.64.0.ebuild | 26 ++
 kde-frameworks/kross/kross-5.64.0.ebuild   | 32 
 kde-frameworks/krunner/krunner-5.64.0.ebuild   | 36 +
 kde-frameworks/kservice/kservice-5.64.0.ebuild | 48 +++
 .../ktexteditor/ktexteditor-5.64.0.ebuild  | 56 +
 .../ktextwidgets/ktextwidgets-5.64.0.ebuild| 38 +
 .../kunitconversion/kunitconversion-5.64.0.ebuild  | 26 ++
 kde-frameworks/kwallet/kwallet-5.64.0.ebuild   | 51 
 kde-frameworks/kwayland/kwayland-5.64.0.ebuild | 30 +++
 .../kwidgetsaddons/kwidgetsaddons-5.64.0.ebuild| 29 +++
 .../kwindowsystem/kwindowsystem-5.64.0.ebuild  | 42 ++
 

[gentoo-commits] proj/kde:master commit in: kde-misc/latte-dock/

2019-11-03 Thread Andreas Sturmlechner
commit: d883dea859b2fb7c373dbb0e7d08f05d70cac419
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 22:13:40 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 22:13:40 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d883dea8

kde-misc/latte-dock: Raise >=KF-5.63 minimum to drop DEPEND

Upstream commit 8d4e96ed44908ce2a64b7e475462964c0674bf83

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

 kde-misc/latte-dock/latte-dock-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-misc/latte-dock/latte-dock-.ebuild 
b/kde-misc/latte-dock/latte-dock-.ebuild
index 5613308302..3c9f5501f3 100644
--- a/kde-misc/latte-dock/latte-dock-.ebuild
+++ b/kde-misc/latte-dock/latte-dock-.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=7
 
+FRAMEWORKS_MINIMAL="5.63.0"
 inherit kde5
 
 if [[ ${KDE_BUILD_TYPE} = release ]]; then
@@ -37,7 +38,6 @@ DEPEND="
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep plasma X)
-   $(add_plasma_dep libksysguard)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgraphicaleffects)



[gentoo-commits] proj/kde:master commit in: profiles/package.mask/

2019-11-03 Thread Andreas Sturmlechner
commit: 5db67eed61b52e0431d7149c72f9efa7280e46a3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Nov  3 17:42:14 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov  3 18:33:12 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=5db67eed

profiles: Add kde-apps-19.08.3 package.mask

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

 profiles/package.mask/kde-apps-19.08.3 | 238 +
 1 file changed, 238 insertions(+)

diff --git a/profiles/package.mask/kde-apps-19.08.3 
b/profiles/package.mask/kde-apps-19.08.3
new file mode 100644
index 00..886b70df77
--- /dev/null
+++ b/profiles/package.mask/kde-apps-19.08.3
@@ -0,0 +1,238 @@
+# Andreas Sturmlechner  (03 Nov 2019)
+# KDE Applications 19.08.3 mask
+# Not yet released.
+~kde-apps/akonadi-19.08.3
+~kde-apps/akonadi-calendar-19.08.3
+~kde-apps/akonadiconsole-19.08.3
+~kde-apps/akonadi-contacts-19.08.3
+~kde-apps/akonadi-import-wizard-19.08.3
+~kde-apps/akonadi-mime-19.08.3
+~kde-apps/akonadi-notes-19.08.3
+~kde-apps/akonadi-search-19.08.3
+~kde-apps/akregator-19.08.3
+~kde-apps/analitza-19.08.3
+~kde-apps/ark-19.08.3
+~kde-apps/artikulate-19.08.3
+~kde-apps/audiocd-kio-19.08.3
+~kde-apps/baloo-widgets-19.08.3
+~kde-apps/blinken-19.08.3
+~kde-apps/bomber-19.08.3
+~kde-apps/bovo-19.08.3
+~kde-apps/calendarjanitor-19.08.3
+~kde-apps/calendarsupport-19.08.3
+~kde-apps/cantor-19.08.3
+~kde-apps/cervisia-19.08.3
+~kde-apps/dolphin-19.08.3
+~kde-apps/dolphin-plugins-bazaar-19.08.3
+~kde-apps/dolphin-plugins-dropbox-19.08.3
+~kde-apps/dolphin-plugins-git-19.08.3
+~kde-apps/dolphin-plugins-mercurial-19.08.3
+~kde-apps/dolphin-plugins-subversion-19.08.3
+~kde-apps/dragon-19.08.3
+~kde-apps/eventviews-19.08.3
+~kde-apps/ffmpegthumbs-19.08.3
+~kde-apps/filelight-19.08.3
+~kde-apps/granatier-19.08.3
+~kde-apps/grantlee-editor-19.08.3
+~kde-apps/grantleetheme-19.08.3
+~kde-apps/gwenview-19.08.3
+~kde-apps/incidenceeditor-19.08.3
+~kde-apps/juk-19.08.3
+~kde-apps/k3b-19.08.3
+~kde-apps/kaccounts-integration-19.08.3
+~kde-apps/kaccounts-providers-19.08.3
+~kde-apps/kaddressbook-19.08.3
+~kde-apps/kajongg-19.08.3
+~kde-apps/kalarm-19.08.3
+~kde-apps/kalarmcal-19.08.3
+~kde-apps/kalgebra-19.08.3
+~kde-apps/kalzium-19.08.3
+~kde-apps/kamera-19.08.3
+~kde-apps/kamoso-19.08.3
+~kde-apps/kanagram-19.08.3
+~kde-apps/kapman-19.08.3
+~kde-apps/kapptemplate-19.08.3
+~kde-apps/kate-19.08.3
+~kde-apps/katomic-19.08.3
+~kde-apps/kbackup-19.08.3
+~kde-apps/kblackbox-19.08.3
+~kde-apps/kblocks-19.08.3
+~kde-apps/kblog-19.08.3
+~kde-apps/kbounce-19.08.3
+~kde-apps/kbreakout-19.08.3
+~kde-apps/kbruch-19.08.3
+~kde-apps/kcachegrind-19.08.3
+~kde-apps/kcalc-19.08.3
+~kde-apps/kcalutils-19.08.3
+~kde-apps/kcharselect-19.08.3
+~kde-apps/kcolorchooser-19.08.3
+~kde-apps/kcron-19.08.3
+~kde-apps/kdav-19.08.3
+~kde-apps/kdeaccessibility-meta-19.08.3
+~kde-apps/kdeadmin-meta-19.08.3
+~kde-apps/kde-apps-meta-19.08.3
+~kde-apps/kdebase-meta-19.08.3
+~kde-apps/kdebugsettings-19.08.3
+~kde-apps/kdecore-meta-19.08.3
+~kde-apps/kde-dev-scripts-19.08.3
+~kde-apps/kde-dev-utils-19.08.3
+~kde-apps/kdeedu-data-19.08.3
+~kde-apps/kdeedu-meta-19.08.3
+~kde-apps/kdegames-meta-19.08.3
+~kde-apps/kdegraphics-meta-19.08.3
+~kde-apps/kdegraphics-mobipocket-19.08.3
+~kde-apps/kde-meta-19.08.3
+~kde-apps/kdemultimedia-meta-19.08.3
+~kde-apps/kdenetwork-filesharing-19.08.3
+~kde-apps/kdenetwork-meta-19.08.3
+~kde-apps/kdenlive-19.08.3
+~kde-apps/kdepim-addons-19.08.3
+~kde-apps/kdepim-apps-libs-19.08.3
+~kde-apps/kdepim-meta-19.08.3
+~kde-apps/kdepim-runtime-19.08.3
+~kde-apps/kdesdk-kioslaves-19.08.3
+~kde-apps/kdesdk-meta-19.08.3
+~kde-apps/kdesdk-thumbnailers-19.08.3
+~kde-apps/kdeutils-meta-19.08.3
+~kde-apps/kdf-19.08.3
+~kde-apps/kdialog-19.08.3
+~kde-apps/kdiamond-19.08.3
+~kde-apps/keditbookmarks-19.08.3
+~kde-apps/kfind-19.08.3
+~kde-apps/kfloppy-19.08.3
+~kde-apps/kfourinline-19.08.3
+~kde-apps/kgeography-19.08.3
+~kde-apps/kget-19.08.3
+~kde-apps/kgoldrunner-19.08.3
+~kde-apps/kgpg-19.08.3
+~kde-apps/khangman-19.08.3
+~kde-apps/khelpcenter-19.08.3
+~kde-apps/kidentitymanagement-19.08.3
+~kde-apps/kig-19.08.3
+~kde-apps/kigo-19.08.3
+~kde-apps/killbots-19.08.3
+~kde-apps/kimagemapeditor-19.08.3
+~kde-apps/kimap-19.08.3
+~kde-apps/kio-extras-19.08.3
+~kde-apps/kipi-plugins-19.08.3
+~kde-apps/kiriki-19.08.3
+~kde-apps/kiten-19.08.3
+~kde-apps/kitinerary-19.08.3
+~kde-apps/kjumpingcube-19.08.3
+~kde-apps/kldap-19.08.3
+~kde-apps/kleopatra-19.08.3
+~kde-apps/klettres-19.08.3
+~kde-apps/klickety-19.08.3
+~kde-apps/klines-19.08.3
+~kde-apps/kmag-19.08.3
+~kde-apps/kmahjongg-19.08.3
+~kde-apps/kmail-19.08.3
+~kde-apps/kmail-account-wizard-19.08.3
+~kde-apps/kmailtransport-19.08.3
+~kde-apps/kmbox-19.08.3
+~kde-apps/kmime-19.08.3
+~kde-apps/kmines-19.08.3
+~kde-apps/kmix-19.08.3
+~kde-apps/kmousetool-19.08.3
+~kde-apps/kmouth-19.08.3
+~kde-apps/kmplot-19.08.3
+~kde-apps/knavalbattle-19.08.3

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

2019-11-03 Thread Andreas Sturmlechner
commit: c2f3fe6de6fbb623fe62d2d494f9db07ac526d82
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 12:40:38 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 12:40:38 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=c2f3fe6d

Documentation: Update CONTRIBUTORS

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

 Documentation/CONTRIBUTORS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/CONTRIBUTORS b/Documentation/CONTRIBUTORS
index 8b08a41563..06e6ead980 100644
--- a/Documentation/CONTRIBUTORS
+++ b/Documentation/CONTRIBUTORS
@@ -2,6 +2,7 @@
 A. Wilcox 
 Alex Alexander 
 Alex Turbov 
+Alexander Tsoy 
 Alexandr Akulich 
 Alexey Shvetsov 
 Alon Bar-Lev 



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

2019-11-03 Thread Andreas Sturmlechner
commit: 3760a90ad86674e762729ef2ed2442dacb73c1fb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Nov  2 12:41:57 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Nov  2 12:41:57 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=3760a90a

sets: Add kde-frameworks-5.64

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

 sets/kde-frameworks-5.64 | 82 
 1 file changed, 82 insertions(+)

diff --git a/sets/kde-frameworks-5.64 b/sets/kde-frameworks-5.64
new file mode 100644
index 00..c6fb4fdc25
--- /dev/null
+++ b/sets/kde-frameworks-5.64
@@ -0,0 +1,82 @@
+

[gentoo-commits] repo/gentoo:master commit in: dev-ada/gps/, dev-ada/gps/files/

2019-11-03 Thread Alfredo Tupone
commit: 420ab9ba4ada904e5582c90f8a77c01e611381d5
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Sun Nov  3 18:13:32 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Sun Nov  3 18:15:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=420ab9ba

dev-ada/gps: remove old version

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/gps/Manifest|   2 -
 dev-ada/gps/files/gps-2017-gentoo.patch | 339 
 dev-ada/gps/gps-2017.ebuild |  87 
 3 files changed, 428 deletions(-)

diff --git a/dev-ada/gps/Manifest b/dev-ada/gps/Manifest
index 1b976f5d7a2..41219d3921b 100644
--- a/dev-ada/gps/Manifest
+++ b/dev-ada/gps/Manifest
@@ -1,5 +1,3 @@
-DIST gnat-gpl-2017-x86_64-linux-bin.tar.gz 496338280 BLAKE2B 
b3eee6d311fb9c20bc8fa7217c0731ca1e91ced38700df1d63d91a16c3fa28dfd44c7c8e867c3a857b88e4f0c8b2a7200fb6a8a630b8403538c4784f8914d1a5
 SHA512 
01a8f3be9b7b7e83cc5bd4a45137b1d35c6448bc22a88bcaf5d312cd63e11081b6b2fe9f09ad2a27d8f0b6471fc5c1a99573bf3bcee1589329054074eaeef04f
-DIST gps-gpl-2017-src.tar.gz 41216830 BLAKE2B 
51ca89c38fa81888a9cf1831cf97f7e0ad72c444328a29063249a4fe72bbdc8357552d470872e9fbbeaf349ef0427b59fa41a0efb56200a07a9426343c731a57
 SHA512 
101ecef7f183de1da0c2b09d77f284a5e8c5ae56f34a897c8d471e79fe9a2832742608ff5251197ba2a52b5d9dfee6c6937fc22cd55f6d8f38359b070393cb64
 DIST gps-gpl-2018-src.tar.gz 40541905 BLAKE2B 
abe38dd23d9afede27b4ec8294e3245c12d52d60491b6e7c1b2d120a6f1e5d808fdcfb648e72da31376e2de176f7a039c5493341ad295db33b6a1ce44bb64096
 SHA512 
da0eaa85eb753f215354c9765272d85378f36ebe207314bab9211642f9d9b505a3d05cdec9de6964ae9139c4f8942a29e06c72db32b2aeb053a694e9c982e470
 DIST gtk+-3.14.15-src.tar.gz 32009863 BLAKE2B 
93c6897c431fa8e1c19ea758378bc7e365d486d1decccefbba64876d8c51a488e6bcf932481daa11e7e43a960a328c3db746e41a845e574c6b6070ab71e23188
 SHA512 
add4607a1758319a938d2be0bbd0dd140c4099accffa9301e3049bc460bf94f395c5a092368214e8b28d53bc25335d1b8329b50c7eb80a1e9a65b2e154135b84
 DIST libadalang-tools-gpl-2018-src.tar.gz 19938182 BLAKE2B 
34104f3bc43c165a9b74ba8c0c03ee2f34686bcd06b5ced730f70f654d8b808e129a85566e081830b4f20304c793eefe0af81b56984cf06190302ad2f6a419be
 SHA512 
a1176575944cd88b9da5f4e9f03caa1a4d09358df71e6a91300d0b35c2a843d0ea1a77fbd93e7b7f16cef1b978022ee20991f5c2ff74f7d05878c3de1220f2b5

diff --git a/dev-ada/gps/files/gps-2017-gentoo.patch 
b/dev-ada/gps/files/gps-2017-gentoo.patch
deleted file mode 100644
index 1af2488c932..000
--- a/dev-ada/gps/files/gps-2017-gentoo.patch
+++ /dev/null
@@ -1,339 +0,0 @@
 a/aclocal.m4   2017-05-13 21:59:20.129039064 +0200
-+++ b/aclocal.m4   2017-05-13 22:02:12.637234659 +0200
-@@ -37,7 +37,7 @@
-   HAVE_GNAT_PROJECT_$1=yes
- else
-   # Try with "gnatls", in case gprls was not available
--  if AC_TRY_COMMAND([gnat ls -Pconftest.gpr system.ads > /dev/null 
2>conftest.out])
-+  if AC_TRY_COMMAND([@GNAT@ ls -Pconftest.gpr system.ads > /dev/null 
2>conftest.out])
-   then
- HAVE_GNAT_PROJECT_$1=yes
-   else
-@@ -156,7 +156,7 @@
- 
- AC_DEFUN(AM_PATH_GNAT,
- [
--   AC_PATH_PROG(GNATMAKE, gnatmake, no)
-+   AC_PATH_PROG(GNATMAKE, @GNATMAKE@, no)
- 
-if test x$GNATMAKE = xno ; then
-   AC_MSG_ERROR(I could not find gnatmake. See the file 'INSTALL' for more 
details.)
-@@ -279,7 +279,7 @@
- AC_MSG_RESULT($GTK_PREFIX $GLIB_PREFIX $ATK_PREFIX $PANGO_PREFIX 
$CAIRO_PREFIX)
-   fi
- 
--  AC_PATH_PROG(GNATDRV, gnat, no)
-+  AC_PATH_PROG(GNATDRV, @GNAT@, no)
-   min_gtk_version=ifelse([$1], ,2.0.0,$1)
-   AC_MSG_CHECKING(for GtkAda - version >= $min_gtk_version)
-   GTKADA_PRJ=`$GNATDRV ls -vP1 -Pgtkada 2>&1 | grep gtkada.gpr | grep Parsing 
| cut -d'"' -f2 | head -1`
 a/templates_parser/templates_parser.gpr2017-05-18 21:34:42.892039427 
+0200
-+++ b/templates_parser/templates_parser.gpr2017-05-18 21:35:16.661512990 
+0200
-@@ -55,7 +55,7 @@
- 
-end Naming;
- 
--   Common_Options := ("-gnat05");
-+   Common_Options := ("-gnat05", "-fPIC");
---  Common options used for the Debug and Release modes
- 
-Debug_Options :=
 a/shared.gpr.in2017-05-18 21:35:56.475892075 +0200
-+++ b/shared.gpr.in2017-05-18 21:36:24.972447550 +0200
-@@ -24,7 +24,7 @@
-end IDE;
- 
-package Compiler is
--  Common := ("-g", "-gnat12");
-+  Common := ("-g", "-gnat12", "-fPIC");
-   Optimize := ();
- 
-   case OS is
-@@ -83,6 +83,7 @@
-  when "false" =>
- null;
-   end case;
-+  for Driver use External ("CC", "gcc");
-end Linker;
- 
- end Shared;
 a/common/common_with_xmlada.gpr.in 2017-05-18 21:37:25.302506085 +0200
-+++ b/common/common_with_xmlada.gpr.in 2017-05-18 21:37:58.472988222 +0200
-@@ -13,7 +13,7 @@
-   for Switches ("Ada") use Shared.Compiler'Switches ("Ada");
-   for Switches ("C") use Shared.Compiler'Switches ("C");
-   for Switches ("test_htables.adb") use ("-g", "-O2", 

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

2019-11-03 Thread Thomas Deutschmann
commit: 67dd25a116ce143deb5534e2f61c194e2a1e5ad6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Nov  3 18:12:48 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Nov  3 18:12:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67dd25a1

package.mask: Unmask >=dev-db/mysql-connector-c++-8

Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 2838bbf3204..87fa6c9e3ef 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -742,11 +742,6 @@ dev-java/eclipse-ecj:4.10
 # x11-drivers/nvidia-drivers. Work in progress.
 media-libs/libglvnd
 
-# Brian Evans  (2018-04-20)
-# Likely to break a lot of software
-# Masked for initial testing
->=dev-db/mysql-connector-c++-8.0.0
-
 # James Le Cuirot  (2017-12-17)
 # Java 9+ is not yet fully supported on Gentoo. Packages cannot depend
 # on it so these virtuals are not yet required. If you wish to use



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

2019-11-03 Thread Thomas Deutschmann
commit: 549bd76ddcf0c425e58ed38325b8d5d947be21d9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Nov  3 18:10:47 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Nov  3 18:10:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=549bd76d

package.mask: Mask =net-misc/dhcpcd-8.1.1

Bug: https://bugs.gentoo.org/698856
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 849c599864b..2838bbf3204 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Thomas Deutschmann  (2019-11-03)
+# Infinite loop in TAILQ_FOREACH_SAFE when running for some time
+# Bug #698856
+=net-misc/dhcpcd-8.1.1
+
 # Michał Górny  (2019-11-03)
 # Discontinued upstream.  Relies on app-portage/flaggie make.conf
 # editing support that was fragile and therefore was removed.



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

2019-11-03 Thread Craig Andrews
commit: e071290a0c5ba61ad4d1e8f9d43b43be1e5a70eb
Author: Craig Andrews  gentoo  org>
AuthorDate: Sun Nov  3 17:42:56 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Sun Nov  3 17:43:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e071290a

net-analyzer/netdata: Add fcaps for xenstat.plugin

Bug: https://github.com/gentoo/gentoo/pull/13515
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Craig Andrews  gentoo.org>

 net-analyzer/netdata/netdata-.ebuild | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/net-analyzer/netdata/netdata-.ebuild 
b/net-analyzer/netdata/netdata-.ebuild
index 183c7fd636c..5bf3bf1042d 100644
--- a/net-analyzer/netdata/netdata-.ebuild
+++ b/net-analyzer/netdata/netdata-.ebuild
@@ -121,3 +121,9 @@ src_install() {
insinto /etc/netdata
doins system/netdata.conf
 }
+
+pkg_postinst() {
+   if use xen ; then
+   fcaps 'cap_dac_override' 
'usr/libexec/netdata/plugins.d/xenstat.plugin'
+   fi
+}



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

2019-11-03 Thread Mikle Kolyada
commit: a9d216b99db26c211392398b5326cdad14ca96a2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Nov  3 17:20:20 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Nov  3 17:25:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9d216b9

sys-auth/pambase: freebsd cleanup

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

 sys-auth/pambase/pambase-20150213-r1.ebuild | 7 ++-
 sys-auth/pambase/pambase-20150213-r2.ebuild | 7 ++-
 sys-auth/pambase/pambase-20190402.ebuild| 7 ++-
 3 files changed, 6 insertions(+), 15 deletions(-)

diff --git a/sys-auth/pambase/pambase-20150213-r1.ebuild 
b/sys-auth/pambase/pambase-20150213-r1.ebuild
index 0723482334c..db06772ced1 100644
--- a/sys-auth/pambase/pambase-20150213-r1.ebuild
+++ b/sys-auth/pambase/pambase-20150213-r1.ebuild
@@ -17,17 +17,14 @@ RESTRICT="binchecks"
 MIN_PAM_REQ=1.1.3
 
 RDEPEND="
-   || (
-   >=sys-libs/pam-${MIN_PAM_REQ}
-   ( sys-auth/openpam sys-freebsd/freebsd-pam-modules )
-   )
+   >=sys-libs/pam-${MIN_PAM_REQ}
consolekit? ( sys-auth/consolekit[pam] )
cracklib? ( sys-libs/pam[cracklib] )
elogind? ( sys-auth/elogind[pam] )
gnome-keyring? ( gnome-base/gnome-keyring[pam] )
mktemp? ( sys-auth/pam_mktemp )
pam_krb5? (
-   || ( >=sys-libs/pam-${MIN_PAM_REQ} sys-auth/openpam )
+   >=sys-libs/pam-${MIN_PAM_REQ}
sys-auth/pam_krb5
)
pam_ssh? ( sys-auth/pam_ssh )

diff --git a/sys-auth/pambase/pambase-20150213-r2.ebuild 
b/sys-auth/pambase/pambase-20150213-r2.ebuild
index 401153cb1ef..a54afa8ebc8 100644
--- a/sys-auth/pambase/pambase-20150213-r2.ebuild
+++ b/sys-auth/pambase/pambase-20150213-r2.ebuild
@@ -17,16 +17,13 @@ RESTRICT="binchecks"
 MIN_PAM_REQ=1.1.3
 
 RDEPEND="
-   || (
-   >=sys-libs/pam-${MIN_PAM_REQ}
-   ( sys-auth/openpam sys-freebsd/freebsd-pam-modules )
-   )
+   >=sys-libs/pam-${MIN_PAM_REQ}
consolekit? ( sys-auth/consolekit[pam] )
cracklib? ( sys-libs/pam[cracklib] )
elogind? ( sys-auth/elogind[pam] )
mktemp? ( sys-auth/pam_mktemp )
pam_krb5? (
-   || ( >=sys-libs/pam-${MIN_PAM_REQ} sys-auth/openpam )
+   >=sys-libs/pam-${MIN_PAM_REQ} 
sys-auth/pam_krb5
)
pam_ssh? ( sys-auth/pam_ssh )

diff --git a/sys-auth/pambase/pambase-20190402.ebuild 
b/sys-auth/pambase/pambase-20190402.ebuild
index 5fde66a76bf..440da938090 100644
--- a/sys-auth/pambase/pambase-20190402.ebuild
+++ b/sys-auth/pambase/pambase-20190402.ebuild
@@ -19,16 +19,13 @@ REQUIRED_USE="?? ( consolekit elogind systemd )"
 MIN_PAM_REQ=1.1.3
 
 RDEPEND="
-   || (
-   >=sys-libs/pam-${MIN_PAM_REQ}
-   ( sys-auth/openpam sys-freebsd/freebsd-pam-modules )
-   )
+   >=sys-libs/pam-${MIN_PAM_REQ}
consolekit? ( sys-auth/consolekit[pam] )
cracklib? ( sys-libs/pam[cracklib] )
elogind? ( sys-auth/elogind[pam] )
mktemp? ( sys-auth/pam_mktemp )
pam_krb5? (
-   || ( >=sys-libs/pam-${MIN_PAM_REQ} sys-auth/openpam )
+   >=sys-libs/pam-${MIN_PAM_REQ} 
sys-auth/pam_krb5
)
pam_ssh? ( sys-auth/pam_ssh )



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

2019-11-03 Thread Andreas Sturmlechner
commit: b6705a7e2e9b22764b62a7ea49c31955c6353b53
Author: Jimi Huotari  gentoo  org>
AuthorDate: Thu Sep 19 11:20:34 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov  3 17:19:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6705a7e

media-video/obs-studio: add version 24.0.3

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Jimi Huotari  gentoo.org>
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-video/obs-studio/Manifest |   1 +
 media-video/obs-studio/obs-studio-24.0.3.ebuild | 132 
 2 files changed, 133 insertions(+)

diff --git a/media-video/obs-studio/Manifest b/media-video/obs-studio/Manifest
index cbc06a6f446..99942d9afc6 100644
--- a/media-video/obs-studio/Manifest
+++ b/media-video/obs-studio/Manifest
@@ -1 +1,2 @@
 DIST obs-studio-23.2.1.tar.gz 6204515 BLAKE2B 
bd025a1ec2809e8a0b47fba79c6a3d40feb255a03a461725501a9c7cdbc40c04b75ff714fa4b3787f876a3f524f3371119a3ea9666c3aeb003184f1eb2a63123
 SHA512 
aabc23d825c2ca3f40274a8e2c4935939dab4955d929c44b28cebde114e808543c1c0dc05791bb6d9f2611effb0f2cb3e20c9a653154c30a9851ea94e74c8169
+DIST obs-studio-24.0.3.tar.gz 6285359 BLAKE2B 
f799e93e9c35c22e5d7f6e4da04e30b06a3a1ad1b3bfd0a75acdbb5d1f28a717d84809a1f35a858252ff30094fa80521d752a35b5285b0a606d0d77ff88fb3cf
 SHA512 
57cef700076457da1eee344042261e1ada6d6744fcb3033a1d4eaffb9e84dd350aa198984fba3de82d4e727706f562c7c3568d95de6859a4942d9fa6368a02ab

diff --git a/media-video/obs-studio/obs-studio-24.0.3.ebuild 
b/media-video/obs-studio/obs-studio-24.0.3.ebuild
new file mode 100644
index 000..58691bbb1db
--- /dev/null
+++ b/media-video/obs-studio/obs-studio-24.0.3.ebuild
@@ -0,0 +1,132 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+inherit cmake-utils python-single-r1 xdg-utils
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/obsproject/obs-studio.git;
+   EGIT_SUBMODULES=()
+else
+   SRC_URI="https://github.com/obsproject/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Software for Recording and Streaming Live Video Content"
+HOMEPAGE="https://obsproject.com;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa fdk imagemagick jack luajit nvenc pulseaudio python speex +ssl 
truetype v4l vlc"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+BDEPEND="
+   luajit? ( dev-lang/swig )
+   python? ( dev-lang/swig )
+"
+DEPEND="
+   >=dev-libs/jansson-2.5
+   dev-qt/qtcore:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtmultimedia:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtquickcontrols:5
+   dev-qt/qtsql:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-video/ffmpeg:=[x264]
+   net-misc/curl
+   x11-libs/libXcomposite
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   alsa? ( media-libs/alsa-lib )
+   fdk? ( media-libs/fdk-aac:= )
+   imagemagick? ( media-gfx/imagemagick:= )
+   jack? ( virtual/jack )
+   luajit? ( dev-lang/luajit:2 )
+   nvenc? (
+   || (
+   =media-video/ffmpeg-4[video_cards_nvidia]
+   )
+   )
+   pulseaudio? ( media-sound/pulseaudio )
+   python? ( ${PYTHON_DEPS} )
+   speex? ( media-libs/speexdsp )
+   ssl? ( net-libs/mbedtls )
+   truetype? (
+   media-libs/fontconfig
+   media-libs/freetype
+   )
+   v4l? ( media-libs/libv4l )
+   vlc? ( media-video/vlc:= )
+"
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_configure() {
+   local libdir=$(get_libdir)
+   local mycmakeargs=(
+   -DDISABLE_ALSA=$(usex !alsa)
+   -DDISABLE_FREETYPE=$(usex !truetype)
+   -DDISABLE_JACK=$(usex !jack)
+   -DDISABLE_LIBFDK=$(usex !fdk)
+   -DDISABLE_PULSEAUDIO=$(usex !pulseaudio)
+   -DDISABLE_SPEEXDSP=$(usex !speex)
+   -DDISABLE_V4L2=$(usex !v4l)
+   -DDISABLE_VLC=$(usex !vlc)
+   -DLIBOBS_PREFER_IMAGEMAGICK=$(usex imagemagick)
+   -DOBS_MULTIARCH_SUFFIX=${libdir#lib}
+   -DOBS_VERSION_OVERRIDE=${PV}
+   -DUNIX_STRUCTURE=1
+   -DWITH_RTMPS=$(usex ssl)
+   )
+
+   if use luajit || use python; then
+   mycmakeargs+=(
+   -DDISABLE_LUA=$(usex !luajit)
+   -DDISABLE_PYTHON=$(usex !python)
+   -DENABLE_SCRIPTING=yes
+   )
+   else
+   mycmakeargs+=( -DENABLE_SCRIPTING=no )
+   fi
+
+   cmake-utils_src_configure
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+
+   if ! use 

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

2019-11-03 Thread Andreas Sturmlechner
commit: 8f61805fc836037f40aed84213aacade81ef9891
Author: Jimi Huotari  gentoo  org>
AuthorDate: Fri Oct 11 09:50:05 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov  3 17:19:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f61805f

media-video/obs-studio: add USE="ssl vlc"

When enabled, 'ssl' will allow for secure connections to servers
supporting RTMPS via 'net-libs/mbedtls' (previously automagic).

When enabled, 'vlc' will allow for 'media-video/vlc' to be used as a
media source in OBS Studio (previously automagic).

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Jimi Huotari  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/12969
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-video/obs-studio/metadata.xml   |  3 +++
 media-video/obs-studio/obs-studio-.ebuild | 11 +++
 2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/media-video/obs-studio/metadata.xml 
b/media-video/obs-studio/metadata.xml
index 89c066c043b..cd2070e38ea 100644
--- a/media-video/obs-studio/metadata.xml
+++ b/media-video/obs-studio/metadata.xml
@@ -19,6 +19,9 @@
 Build support for scripting via Python 3.
 Enable noise suppression filter support via
   media-libs/speexdsp.
+Build support for TLS/SSL connections (RTMPS) via
+  net-libs/mbedtls.
+Build support for using media-video/vlc as a 
media source.
   
   
 obsproject/obs-studio

diff --git a/media-video/obs-studio/obs-studio-.ebuild 
b/media-video/obs-studio/obs-studio-.ebuild
index d86c6eab447..46578dd8dba 100644
--- a/media-video/obs-studio/obs-studio-.ebuild
+++ b/media-video/obs-studio/obs-studio-.ebuild
@@ -3,7 +3,8 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{3_5,3_6,3_7} )
+CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
+PYTHON_COMPAT=( python3_{5,6,7} )
 
 inherit cmake-utils python-single-r1 xdg-utils
 
@@ -21,7 +22,7 @@ HOMEPAGE="https://obsproject.com;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="+alsa fdk imagemagick jack luajit nvenc pulseaudio python speex truetype 
v4l"
+IUSE="+alsa fdk imagemagick jack luajit nvenc pulseaudio python speex +ssl 
truetype v4l vlc"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
 BDEPEND="
@@ -60,16 +61,16 @@ DEPEND="
pulseaudio? ( media-sound/pulseaudio )
python? ( ${PYTHON_DEPS} )
speex? ( media-libs/speexdsp )
+   ssl? ( net-libs/mbedtls )
truetype? (
media-libs/fontconfig
media-libs/freetype
)
v4l? ( media-libs/libv4l )
+   vlc? ( media-video/vlc:= )
 "
 RDEPEND="${DEPEND}"
 
-CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
-
 pkg_setup() {
use python && python-single-r1_pkg_setup
 }
@@ -84,9 +85,11 @@ src_configure() {
-DDISABLE_PULSEAUDIO=$(usex !pulseaudio)
-DDISABLE_SPEEXDSP=$(usex !speex)
-DDISABLE_V4L2=$(usex !v4l)
+   -DDISABLE_VLC=$(usex !vlc)
-DLIBOBS_PREFER_IMAGEMAGICK=$(usex imagemagick)
-DOBS_MULTIARCH_SUFFIX=${libdir#lib}
-DUNIX_STRUCTURE=1
+   -DWITH_RTMPS=$(usex ssl)
)
 
if use luajit || use python; then



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

2019-11-03 Thread Andreas Sturmlechner
commit: a66ffbbd04923f6bfb5fd2afe546b31c8adb53c3
Author: Jimi Huotari  gentoo  org>
AuthorDate: Fri Oct 11 09:53:49 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Nov  3 17:19:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a66ffbbd

media-video/obs-studio: remove 'dev-qt/qttest' dependency

This doesn't seem to be actually needed/used for anything here.

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Jimi Huotari  gentoo.org>
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-video/obs-studio/obs-studio-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/media-video/obs-studio/obs-studio-.ebuild 
b/media-video/obs-studio/obs-studio-.ebuild
index 46578dd8dba..1629603a1fa 100644
--- a/media-video/obs-studio/obs-studio-.ebuild
+++ b/media-video/obs-studio/obs-studio-.ebuild
@@ -39,7 +39,6 @@ DEPEND="
dev-qt/qtquickcontrols:5
dev-qt/qtsql:5
dev-qt/qtsvg:5
-   dev-qt/qttest:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
media-video/ffmpeg:=[x264]



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

2019-11-03 Thread Mikle Kolyada
commit: 50b356bb6861c6ab976323c83a27395b3c5e962e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Nov  3 17:17:04 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Nov  3 17:17:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50b356bb

sys-libs/pam: remove openpam blocker

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

 sys-libs/pam/pam-1.2.1-r2.ebuild | 1 -
 sys-libs/pam/pam-1.3.0-r2.ebuild | 1 -
 sys-libs/pam/pam-1.3.1-r1.ebuild | 1 -
 3 files changed, 3 deletions(-)

diff --git a/sys-libs/pam/pam-1.2.1-r2.ebuild b/sys-libs/pam/pam-1.2.1-r2.ebuild
index 5047cc5f851..2cb117abc88 100644
--- a/sys-libs/pam/pam-1.2.1-r2.ebuild
+++ b/sys-libs/pam/pam-1.2.1-r2.ebuild
@@ -34,7 +34,6 @@ PDEPEND="sys-auth/pambase"
 
 RDEPEND="${RDEPEND}
!

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

2019-11-03 Thread Mikle Kolyada
commit: 234b1f21e2ae2e7e71d07af0b1990dcb50c68f97
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Nov  3 17:11:50 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Nov  3 17:11:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=234b1f21

profiles: bsd packages cleanup

Signed-off-by: Mikle Kolyada  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index afe5565eddb..849c599864b 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -311,19 +311,6 @@ sys-apps/man
 # This can be removed in 2019-11-11
 =sys-kernel/gentoo-sources-5.3.6
 
-# Michał Górny  (2019-10-11)
-# FreeBSD-only packages.  The project has been discontinued,
-# and the core FreeBSD packages are already gone.
-# Removal in 14 days.  Bug #683284.
-dev-libs/libexecinfo
-net-analyzer/bsnmp
-net-firewall/pftop
-sys-apps/flock
-sys-auth/openpam
-sys-block/eject-bsd
-sys-fs/fuse4bsd
-sys-process/pidof-bsd
-
 # Michał Górny  (2019-10-10)
 # Upstream gone.  Last bumped in 2006.  EAPI 0.  net-misc/sipcalc seems
 # like a good replacement.



  1   2   3   >