[gentoo-commits] proj/sci:master commit in: sci-physics/qcl/files/, sci-physics/qcl/

2019-01-29 Thread Andrew Savchenko
commit: f7e784db2ef31b9df95670407c28cd6d740a597a
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Wed Jan 30 05:41:12 2019 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Wed Jan 30 05:41:12 2019 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=f7e784db

sci-physics/qcl: multiple improvements

- Update to EAPI 7
- Fix dependencies (RDEPEND were wrong)
- Install additional documentation
- Respect CFLAGS for qc lib as well
- Fix install paths so that qcl can find its lib

Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Andrew Savchenko  gentoo.org>

 sci-physics/qcl/files/qcl-0.6.4-Makefile.patch | 69 ++
 sci-physics/qcl/qcl-0.6.4-r2.ebuild| 55 
 2 files changed, 124 insertions(+)

diff --git a/sci-physics/qcl/files/qcl-0.6.4-Makefile.patch 
b/sci-physics/qcl/files/qcl-0.6.4-Makefile.patch
new file mode 100644
index 0..bbc3f0abd
--- /dev/null
+++ b/sci-physics/qcl/files/qcl-0.6.4-Makefile.patch
@@ -0,0 +1,69 @@
+diff --git a/Makefile b/Makefile
+index 2735f71..80f9b30 100644
+--- a/Makefile
 b/Makefile
+@@ -14,11 +14,11 @@ VERSION=0.6.4
+ 
+ # Directory for Standard .qcl files
+ 
+-QCLDIR = /usr/local/lib/qcl
++QCLDIR = /usr/lib/qcl
+ 
+ # Path for qcl binaries
+ 
+-QCLBIN = /usr/local/bin
++QCLBIN = /usr/bin
+ 
+ ARCH = `g++ -dumpmachine || echo bin`
+ 
+@@ -32,7 +32,7 @@ ARCH = `g++ -dumpmachine || echo bin`
+ 
+ #DEBUG = -g -pg -DQCL_DEBUG -DQC_DEBUG
+ #DEBUG = -g -DQCL_DEBUG -DQC_DEBUG
+-DEBUG = -O2 -g -DQCL_DEBUG -DQC_DEBUG
++DEBUG = -DQCL_DEBUG -DQC_DEBUG
+ #DEBUG = -O2
+ 
+ # Plotting support 
+@@ -81,8 +81,8 @@ QCLINC = lib
+ 
+ #CXX = g++
+ #CPP = $(CC) -E
+-CXXFLAGS = -c $(ARCHOPT) $(DEBUG) $(PLOPT) $(RLOPT) $(IRQOPT) $(ENCOPT) 
-I$(QCDIR) -DDEF_INCLUDE_PATH="\"$(QCLDIR)\""
+-LDFLAGS = $(ARCHOPT) -L$(QCDIR) $(DEBUG) $(PLLIB) -lm -lfl -lqc $(RLLIB) 
++CXXFLAGS += -c $(DEBUG) $(PLOPT) $(RLOPT) $(IRQOPT) $(ENCOPT) -I$(QCDIR) 
-DDEF_INCLUDE_PATH="\"$(QCLDIR)\""
++LIBS = -L$(QCDIR) $(PLLIB) -lm -lfl -lqc $(RLLIB)
+ 
+ FILESCC = $(wildcard *.cc)
+ FILESH = $(wildcard *.h)
+@@ -127,7 +127,7 @@ $(QCLIB):
+ build: qcl $(QCLINC)/default.qcl
+ 
+ qcl: $(OBJECTS) qcl.o $(QCLIB)
+-  $(CXX) $(OBJECTS) qcl.o $(LDFLAGS) -o qcl
++  $(CXX) $(LDFLAGS) $(OBJECTS) qcl.o $(LIBS) -o qcl
+ 
+ $(QCLINC)/default.qcl: extern.cc
+   grep "^//!" extern.cc | cut -c5- > $(QCLINC)/default.qcl
+diff --git a/qc/Makefile b/qc/Makefile
+index 191ffe5..79724a9 100644
+--- a/qc/Makefile
 b/qc/Makefile
+@@ -16,7 +16,7 @@
+ 
+ # Debugging options
+ 
+-DEBUG = -g -O2 -DQC_DEBUG
++#DEBUG = -g -O2 -DQC_DEBUG
+ #DEBUG = -g -pg -DQC_DEBUG
+ #DEBUG = -O2
+ 
+@@ -25,7 +25,7 @@ DEBUG = -g -O2 -DQC_DEBUG
+ 
+ #PRGOPT = -DQC_USE_RAND48
+ 
+-CXXFLAGS = $(ARCHOPT) -c -pedantic -Wall $(DEBUG) $(PRGOPT)
++CXXFLAGS += $(ARCHOPT) -c -pedantic -Wall $(DEBUG) $(PRGOPT)
+ 
+ LDFLAGS = $(ARCHOPT) -L. -lm -lqc
+ 

diff --git a/sci-physics/qcl/qcl-0.6.4-r2.ebuild 
b/sci-physics/qcl/qcl-0.6.4-r2.ebuild
new file mode 100644
index 0..b7eb2536b
--- /dev/null
+++ b/sci-physics/qcl/qcl-0.6.4-r2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Quantum Computation Language with an emulator of a quantum 
computer"
+HOMEPAGE="http://tph.tuwien.ac.at/~oemer/qcl.html";
+SRC_URI="
+   http://tph.tuwien.ac.at/~oemer/tgz/${P}.tgz
+   doc? (
+   http://tph.tuwien.ac.at/~oemer/doc/structquprog.pdf
+   http://tph.tuwien.ac.at/~oemer/doc/qcldoc.pdf
+   http://tph.tuwien.ac.at/~oemer/doc/quprog.pdf
+   https://dev.gentoo.org/~bircoph/distfiles/0211100.pdf -> 
ccquprog.pdf
+   )"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc plotutils readline"
+
+BDEPEND="
+   sys-devel/bison
+   sys-devel/flex"
+DEPEND="
+   plotutils? ( media-libs/plotutils[X,png] )
+   readline? (
+   sys-libs/ncurses:0=
+   sys-libs/readline:0=
+   )"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}"-0.6.3-gcc43.patch
+   "${FILESDIR}/${P}"-Makefile.patch
+)
+
+src_configure() {
+   # there is no configure, Makefile must be modified
+   if ! use plotutils; then
+   sed -i 's/^PL/#PL/' Makefile || die
+   fi
+   if ! use readline; then
+   sed -i 's/^RL/#RL/' Makefile || die
+   fi
+}
+
+src_install() {
+   emake \
+   QCLDIR="${D}/usr/lib/${PN}" \
+   QCLBIN="${D}/usr/bin" \
+   install
+   dodoc CHANGES README
+   use doc && dodoc "${DISTDIR}/"{ccquprog,structquprog,qcldoc,quprog}.pdf
+}



[gentoo-commits] proj/sci:master commit in: sci-physics/qcl/files/, sci-physics/qcl/

2019-01-29 Thread Andrew Savchenko
commit: 58115cd218e93008bfb73cef6ade2e503be4af60
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Wed Jan 30 05:44:11 2019 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Wed Jan 30 05:44:11 2019 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=58115cd2

sci-physics/qcl: remove old versions

Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Andrew Savchenko  gentoo.org>

 sci-physics/qcl/files/qcl-0.6.4-makefile.patch| 22 --
 sci-physics/qcl/files/qcl-0.6.4-makefile_v2.patch | 31 -
 sci-physics/qcl/qcl-0.6.4-r1.ebuild   | 53 ---
 sci-physics/qcl/qcl-0.6.4.ebuild  | 44 ---
 4 files changed, 150 deletions(-)

diff --git a/sci-physics/qcl/files/qcl-0.6.4-makefile.patch 
b/sci-physics/qcl/files/qcl-0.6.4-makefile.patch
deleted file mode 100644
index e73cee420..0
--- a/sci-physics/qcl/files/qcl-0.6.4-makefile.patch
+++ /dev/null
@@ -1,22 +0,0 @@
 Makefile
-+++ Makefile
-@@ -32,7 +32,7 @@
- 
- #DEBUG = -g -pg -DQCL_DEBUG -DQC_DEBUG
- #DEBUG = -g -DQCL_DEBUG -DQC_DEBUG
--DEBUG = -O2 -g -DQCL_DEBUG -DQC_DEBUG
-+DEBUG = -DQCL_DEBUG -DQC_DEBUG
- #DEBUG = -O2
- 
- # Plotting support 
-@@ -81,8 +81,8 @@
- 
- #CXX = g++
- #CPP = $(CC) -E
--CXXFLAGS = -c $(ARCHOPT) $(DEBUG) $(PLOPT) $(RLOPT) $(IRQOPT) $(ENCOPT) 
-I$(QCDIR) -DDEF_INCLUDE_PATH="\"$(QCLDIR)\""
--LDFLAGS = $(ARCHOPT) -L$(QCDIR) $(DEBUG) $(PLLIB) -lm -lfl -lqc $(RLLIB) 
-+CXXFLAGS += -c $(DEBUG) $(PLOPT) $(RLOPT) $(IRQOPT) $(ENCOPT) -I$(QCDIR) 
-DDEF_INCLUDE_PATH="\"$(QCLDIR)\""
-+LDFLAGS += -L$(QCDIR) $(PLLIB) -lm -lfl -lqc $(RLLIB) 
- 
- FILESCC = $(wildcard *.cc)
- FILESH = $(wildcard *.h)

diff --git a/sci-physics/qcl/files/qcl-0.6.4-makefile_v2.patch 
b/sci-physics/qcl/files/qcl-0.6.4-makefile_v2.patch
deleted file mode 100644
index 74b05c5f5..0
--- a/sci-physics/qcl/files/qcl-0.6.4-makefile_v2.patch
+++ /dev/null
@@ -1,31 +0,0 @@
 a/Makefile
-+++ b/Makefile
-@@ -32,7 +32,7 @@
- 
- #DEBUG = -g -pg -DQCL_DEBUG -DQC_DEBUG
- #DEBUG = -g -DQCL_DEBUG -DQC_DEBUG
--DEBUG = -O2 -g -DQCL_DEBUG -DQC_DEBUG
-+DEBUG = -DQCL_DEBUG -DQC_DEBUG
- #DEBUG = -O2
- 
- # Plotting support 
-@@ -81,8 +81,8 @@
- 
- #CXX = g++
- #CPP = $(CC) -E
--CXXFLAGS = -c $(ARCHOPT) $(DEBUG) $(PLOPT) $(RLOPT) $(IRQOPT) $(ENCOPT) 
-I$(QCDIR) -DDEF_INCLUDE_PATH="\"$(QCLDIR)\""
--LDFLAGS = $(ARCHOPT) -L$(QCDIR) $(DEBUG) $(PLLIB) -lm -lfl -lqc $(RLLIB) 
-+CXXFLAGS += -c $(DEBUG) $(PLOPT) $(RLOPT) $(IRQOPT) $(ENCOPT) -I$(QCDIR) 
-DDEF_INCLUDE_PATH="\"$(QCLDIR)\""
-+LIBS = -L$(QCDIR) $(PLLIB) -lm -lfl -lqc $(RLLIB) 
- 
- FILESCC = $(wildcard *.cc)
- FILESH = $(wildcard *.h)
-@@ -127,7 +127,7 @@
- build: qcl $(QCLINC)/default.qcl
- 
- qcl: $(OBJECTS) qcl.o $(QCLIB)
--  $(CXX) $(OBJECTS) qcl.o $(LDFLAGS) -o qcl
-+  $(CXX) $(LDFLAGS) $(OBJECTS) qcl.o $(LIBS) -o qcl
- 
- $(QCLINC)/default.qcl: extern.cc
-   grep "^//!" extern.cc | cut -c5- > $(QCLINC)/default.qcl

diff --git a/sci-physics/qcl/qcl-0.6.4-r1.ebuild 
b/sci-physics/qcl/qcl-0.6.4-r1.ebuild
deleted file mode 100644
index feb49f2a6..0
--- a/sci-physics/qcl/qcl-0.6.4-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Quantum Computation Language with an emulator of a quantum 
computer"
-HOMEPAGE="http://tph.tuwien.ac.at/~oemer/qcl.html";
-SRC_URI="
-   http://tph.tuwien.ac.at/~oemer/tgz/${P}.tgz
-   doc? (
-   http://tph.tuwien.ac.at/~oemer/doc/structquprog.pdf
-   http://tph.tuwien.ac.at/~oemer/doc/qcldoc.pdf
-   http://tph.tuwien.ac.at/~oemer/doc/quprog.pdf
-   )"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc plotutils readline"
-
-REPEND="
-   plotutils? ( media-libs/plotutils[X,png] )
-   readline? (
-   sys-libs/ncurses:0=
-   sys-libs/readline:0=
-   )"
-DEPEND="${DEPEND}
-   sys-devel/bison
-   sys-devel/flex"
-
-PATCHES=(
-   "${FILESDIR}/${PN}"-0.6.3-gcc43.patch
-   "${FILESDIR}/${P}"-makefile_v2.patch
-)
-
-src_configure() {
-   # there is no configure, Makefile must be modified
-   if ! use plotutils; then
-   sed -i 's/^PL/#PL/' Makefile || die
-   fi
-   if ! use readline; then
-   sed -i 's/^RL/#RL/' Makefile || die
-   fi
-}
-
-src_install() {
-   emake \
-   QCLDIR="${D}/usr/share/${PN}" \
-   QCLBIN="${D}/usr/bin" \
-   install
-   dodoc CHANGES README
-   use doc && dodoc "${DISTDIR}/"{structquprog,qcldoc,quprog}.pdf
-}

diff --git a/sci-physics/qcl/qcl-0.6.4.ebuild b/sci-physics/qcl/qcl-0.6.4.ebuild
deleted file mode 100644
index c3788af50..0
--- a/sci-physics/qcl/qcl-0.6.4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Pub

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

2019-01-29 Thread Hans de Graaff
commit: 1eeb5b3e99a10ac27fc14a4323351d47cd0fc285
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jan 29 07:05:09 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jan 30 05:10:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eeb5b3e

dev-ruby/shoulda-matchers: add 3.1.3

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

 dev-ruby/shoulda-matchers/Manifest |  1 +
 .../shoulda-matchers/shoulda-matchers-3.1.3.ebuild | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-ruby/shoulda-matchers/Manifest 
b/dev-ruby/shoulda-matchers/Manifest
index 31652a4cd55..d67e8d41bec 100644
--- a/dev-ruby/shoulda-matchers/Manifest
+++ b/dev-ruby/shoulda-matchers/Manifest
@@ -1,2 +1,3 @@
 DIST shoulda-matchers-2.8.0.gem 153600 BLAKE2B 
49ddfe686bbd80665cde74019a046564b6863bca1ae81517ef1ee8c9f91e3f5d58a5d25e7640b1a5e3cb9c99367f9bf5672f63b9632427eba91c40aa4d2bd2ef
 SHA512 
7b40220811a11cf57cfa38457eaab612ec9f6db5b660df21bd142b3df30d3691d3b7b3b4f931eed1e186c5afe4b576eee2c86f6f8f491d46955598f1441a9027
 DIST shoulda-matchers-3.1.2.gem 208384 BLAKE2B 
e9ba4efad3410f07c7b28649b9ff30de66b0d57a392052ea643ee584a97c290dda6261941bdb59146a3febefba81bbf4e5a0f28bedff80643e22f800730d94cc
 SHA512 
e24602701a0f6eaa7ed0249449401582c7dc34f186e548d0741c9e416d5c6b5bc5a9b028b677b3f2b04091c6e5373cc03c05c8e1abf9156ace15846be4064d51
+DIST shoulda-matchers-3.1.3.gem 208384 BLAKE2B 
0ce7cb91ec8a311ecd4872ca45b178686fedb126fd5a05d55cc8654f5a40d1ed7e0a1da2b2c47c34ce3e5ed13a302a1d309f4afa67bafb37d5ed8a724945e97f
 SHA512 
c61397d20724f3048172a8a20ef8abaeafdba3a1d5d4b923b1b11480b25c70820fd372eb2851c6eb307894bc0b7e1aae515e23a3581a83db1b65a2c778b22d67

diff --git a/dev-ruby/shoulda-matchers/shoulda-matchers-3.1.3.ebuild 
b/dev-ruby/shoulda-matchers/shoulda-matchers-3.1.3.ebuild
new file mode 100644
index 000..c814c20db93
--- /dev/null
+++ b/dev-ruby/shoulda-matchers/shoulda-matchers-3.1.3.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_TASK_DOC=""
+
+RUBY_FAKEGEM_RECIPE_TEST=""
+
+RUBY_FAKEGEM_EXTRAINSTALL="NEWS.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Making tests easy on the fingers and eyes"
+HOMEPAGE="https://github.com/thoughtbot/shoulda-matchers";
+
+LICENSE="MIT"
+SLOT="3"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/activesupport-4.0.0:*"



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

2019-01-29 Thread Matthias Maier
commit: 433eb52b43ac39557680721cca584f9b0b87cf46
Author: Matthias Maier  gentoo  org>
AuthorDate: Wed Jan 30 04:44:02 2019 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Wed Jan 30 04:44:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=433eb52b

dev-python/libvirt-python: version bump to 5.0.0

Closes: https://bugs.gentoo.org/676702
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Matthias Maier  gentoo.org>

 dev-python/libvirt-python/Manifest  | 1 +
 dev-python/libvirt-python/libvirt-python-4.10.0.ebuild  | 2 +-
 .../{libvirt-python-4.10.0.ebuild => libvirt-python-5.0.0.ebuild}   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-python/libvirt-python/Manifest 
b/dev-python/libvirt-python/Manifest
index a0799355aed..08a7080b426 100644
--- a/dev-python/libvirt-python/Manifest
+++ b/dev-python/libvirt-python/Manifest
@@ -1,3 +1,4 @@
 DIST libvirt-python-4.10.0.tar.gz 192707 BLAKE2B 
b128bdb4e33ce3ee826f30ef06cae080df4da01fdba04a65747ce6f6dbf6b1b4383b2dc010c3cdae9a33c2d9a816f4f5214d8f095aa719056af94f723860a70e
 SHA512 
30fac35ae04c18b340b5173c2a1ccb867147da3673a4b72ad612fb5f03b95ee9259459ef9e11cba4a101e7aef4b71d13e1b79a25eab39899a22c0e8261aba7ac
 DIST libvirt-python-4.5.0.tar.gz 190016 BLAKE2B 
ba3aa68b2de6179cfddaff54bf96fa876959d97e72245ccdad8f9f681641166f5827d5244ae4c18b7a7b90a3201b3a797d30c2436a6ab5fcdbcfd56462348ba4
 SHA512 
14572225c2f5233aa8cb7257cff94d38effc4d988aac36108ca510dcd442d8c5194d6b25bddb2603bb1e1bc4dcb284f103899ce81063dc6a7994d78beea355ac
 DIST libvirt-python-4.9.0.tar.gz 191922 BLAKE2B 
272f0827faa7083e4896b34cea81554505e38733313df556d608fbf0e2ab935088ec5d57e9678c7679e172ff99a619939abe8cbd828b49655de70daf11d20efe
 SHA512 
7d1345693c87f11be9dc751212820f4c4a519a467703f0ea2fcafd0e66d39941686cf7c84c2c68e8639889da1bfbc9176a72cf1059c87d76a49b2c74a7b05c0e
+DIST libvirt-python-5.0.0.tar.gz 192726 BLAKE2B 
1ab4d4430254a1288714db32d76baf4a78f733bd82d33cf9f6a40aadcfac9c1dd73db91d38326a68ad04b8454f4c6417a16f07f9ecdfe8ccabcb0eccc9d13060
 SHA512 
318ae32f4c59b6cd278c8d07566e5e5f34759167084d4c722687d3cbf19efecea3a0c2a4ee37f42e58aa3f42f07fdd50bd9dd0539002388a7f79b138ad434dff

diff --git a/dev-python/libvirt-python/libvirt-python-4.10.0.ebuild 
b/dev-python/libvirt-python/libvirt-python-4.10.0.ebuild
index 514949ce2b0..92f5219f4a0 100644
--- a/dev-python/libvirt-python/libvirt-python-4.10.0.ebuild
+++ b/dev-python/libvirt-python/libvirt-python-4.10.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7

diff --git a/dev-python/libvirt-python/libvirt-python-4.10.0.ebuild 
b/dev-python/libvirt-python/libvirt-python-5.0.0.ebuild
similarity index 96%
copy from dev-python/libvirt-python/libvirt-python-4.10.0.ebuild
copy to dev-python/libvirt-python/libvirt-python-5.0.0.ebuild
index 514949ce2b0..92f5219f4a0 100644
--- a/dev-python/libvirt-python/libvirt-python-4.10.0.ebuild
+++ b/dev-python/libvirt-python/libvirt-python-5.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7



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

2019-01-29 Thread Jeroen Roovers
commit: d127d41d01c9c968a0ed2886a39032c7d91e93e2
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jan 30 00:35:10 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jan 30 00:35:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d127d41d

net-libs/nodejs: Version 10.15.1

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-libs/nodejs/Manifest  |   1 +
 net-libs/nodejs/nodejs-10.15.1.ebuild | 205 ++
 2 files changed, 206 insertions(+)

diff --git a/net-libs/nodejs/Manifest b/net-libs/nodejs/Manifest
index fcd93ebc7ac..7909c8acc73 100644
--- a/net-libs/nodejs/Manifest
+++ b/net-libs/nodejs/Manifest
@@ -1,5 +1,6 @@
 DIST node-v0.12.18.tar.gz 19842591 BLAKE2B 
f94f4de6e2875267be194580c645087a262b90da99f10d651a22838c041da07056df81204bb04ce8da083a080062509dcca4d1e3ac2250d651ead8a4cc025028
 SHA512 
6866608a43eb213f3b715ea0fcc28983fd959ab679c567a1b464f62acd936506f2bce88ea48a60209d8ef8d98259f4b47cd3434893eb4ff82a132775edb37b7b
 DIST node-v10.15.0.tar.xz 20217588 BLAKE2B 
ef7f626bd3b13b11a1cbf21f5c6a2ce08567dddc2fb525c5f10e02f81750a648245c2eb88535d8aac1b055a13d12f9ead72d55c4ccf68062940da09d582344c3
 SHA512 
6c10ae4070cd8b89d4d31ee2137453fa582cef85c6f002c78d5029ceedddf5caeee8e28a4e75dfc632c3af3c8e2acec403ab17a927ba51fa31175d58b45cbf49
+DIST node-v10.15.1.tar.xz 20231024 BLAKE2B 
82fec4cf3902cc3b8eba595c969e18ffd2fb468e58eec026308aef2c3dde3c9b96c96997b2710e224c77c373ac72e5cc8dd4e68d937914e014d3f457c7d6afa4
 SHA512 
823a4703b388275aa86e7ede5c626a918764d6e83bdd9a0cb249ec1f960f3a3020306078d8a4113311303e4c3380d4090c928041ef64189a3cdf67153c7cac95
 DIST node-v11.7.0.tar.xz 21218124 BLAKE2B 
a7e69dc8d6ee2f42ea78ec9c4d623b56bfbc2e130fc6b7d33038ce79f03d7b92e78545fa26bb2dbd58c1c25677f0b224077822264fd9cec49e71f18517098563
 SHA512 
eec2d5e67d94314f1a09f3a1c3407d6b12e9decbdff99d41eb487c4ddc1929fc5661be0b6fbb180961ecb6094311630b19faa0af031d82ff8de7ae213ee35ab7
 DIST node-v11.8.0.tar.xz 21253080 BLAKE2B 
808df024b7dba628f03b7c6c2fe8c486bb036f02f80aa2184de0a8393afad17dcd19d98fd63f1ffc5f9c1dc4fb078f32d15217322d1608510f291eef456df35f
 SHA512 
7c33984014c2b95bde59affee88bc77caa2788dbdd7db87150acd58c56304932bf4b030994c91fc655f0f32202b8d1ed370c3d19d09569af50ffce91414d62ac
 DIST node-v4.9.1.tar.xz 13250164 BLAKE2B 
7a689b99bb4bf507f7f21dd2c096a5766d023a8174c0f468cab37365af1920b8700da04157e1a406917790524255ef32c243a74662fd50ef7d3567d189dac9cf
 SHA512 
690c9fdf608e5194069a10955bdd94ec87cb1c308f13bc4d2cae92fa01436ace10fadf58f2e51d477dde6c570b23edc1c71fafea79bfc9cab2903eb2fa5f87aa

diff --git a/net-libs/nodejs/nodejs-10.15.1.ebuild 
b/net-libs/nodejs/nodejs-10.15.1.ebuild
new file mode 100644
index 000..959fdfa0bf2
--- /dev/null
+++ b/net-libs/nodejs/nodejs-10.15.1.ebuild
@@ -0,0 +1,205 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="threads"
+
+inherit bash-completion-r1 eutils flag-o-matic pax-utils python-single-r1 
toolchain-funcs
+
+DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine"
+HOMEPAGE="https://nodejs.org/";
+SRC_URI="https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz";
+
+LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x64-macos"
+IUSE="cpu_flags_x86_sse2 debug doc icu inspector +npm +snapshot +ssl systemtap 
test"
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
+   inspector? ( icu ssl )
+   npm? ( ssl )
+"
+
+RDEPEND="
+   >=dev-libs/libuv-1.23.2:=
+   >=net-dns/c-ares-1.15.0
+   >=net-libs/http-parser-2.9.0:=
+   >=net-libs/nghttp2-1.34.0
+   sys-libs/zlib
+   icu? ( >=dev-libs/icu-62.1:= )
+   ssl? ( =dev-libs/openssl-1.1.0*:0= )
+"
+DEPEND="
+   ${RDEPEND}
+   ${PYTHON_DEPS}
+   systemtap? ( dev-util/systemtap )
+   test? ( net-misc/curl )
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-10.3.0-global-npm-config.patch
+)
+S="${WORKDIR}/node-v${PV}"
+
+pkg_pretend() {
+   (use x86 && ! use cpu_flags_x86_sse2) && \
+   die "Your CPU doesn't support the required SSE2 instruction."
+
+   ( [[ ${MERGE_TYPE} != "binary" ]] && ! test-flag-CXX -std=c++11 ) && \
+   die "Your compiler doesn't support C++11. Use GCC 4.8, Clang 
3.3 or newer."
+}
+
+src_prepare() {
+   tc-export CC CXX PKG_CONFIG
+   export V=1
+   export BUILDTYPE=Release
+
+   # fix compilation on Darwin
+   # https://code.google.com/p/gyp/issues/detail?id=260
+   sed -i -e "/append('-arch/d" tools/gyp/pylib/gyp/xcode_emulation.py || 
die
+
+   # make sure we use python2.* while using gyp
+   sed -i -e "s/python/${EPYTHON}/" deps/npm/node_modules/node-gyp/gyp/gyp 
|| die
+   sed -i -e "s/|| 'python2'/|| '${EPYTHON}'/" 
deps/npm/node_modules/node-gyp/lib/configure.js || die
+
+   # less verbose in

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

2019-01-29 Thread Matthew Thode
commit: eb0030c93e21a4ac41b937d52f0b1b807d2d7d94
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jan 30 00:08:42 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Jan 30 00:08:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb0030c9

sys-cluster/cinder: 12.0.5 bump

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

 sys-cluster/cinder/Manifest |   1 +
 sys-cluster/cinder/cinder-12.0.5.ebuild | 217 
 2 files changed, 218 insertions(+)

diff --git a/sys-cluster/cinder/Manifest b/sys-cluster/cinder/Manifest
index 22b364df82a..a48a58ad4b6 100644
--- a/sys-cluster/cinder/Manifest
+++ b/sys-cluster/cinder/Manifest
@@ -1,5 +1,6 @@
 DIST cinder-11.1.1.tar.gz 5808526 BLAKE2B 
1b773e45673c35faff1a327d73608949e088f3635adb6dd6c7e779e708dd8f2270b85086378d48042b86e60ad7ca94754d56c1d0193f1d715112a03cf3163c77
 SHA512 
10ecf0068c57077a24bb0445a0901e07e7ad211cd7fac67ed016b770b477e9ba0e9954de70f165aae69e079f6b2e9416d8292ec701db4c97b987c7dac8f69a43
 DIST cinder-12.0.4.tar.gz 5349921 BLAKE2B 
168beb53879656956a97a4e787aba200b119e80e3b787fa94534c7ca8a68fb641df47069e19759ef022103a3f306402711ec315bc61d6387b427c6f5672919fc
 SHA512 
0a139c25458020a869ab9395f42cd31b83cbfb65640a41ef0039aef48a92fd641a0084c5fd8fbdc35b6c8b6e9250e1d0a845816b92a882358acf4e2793be536c
+DIST cinder-12.0.5.tar.gz 5358388 BLAKE2B 
7ee078eb4cc4c4b16053453f1f3e5bd37c29766f80bedd1b3fe6e9d44387c8215d0fed1f79d92576254bf51b567227193a7175db7d06ef35d7f3fff5d82dd4da
 SHA512 
80788d2b10a4a0bf83e61db8e58f54dd8bbcd9fa06cd4025d37809f310bc7ed148ea9c180f4e6f02cf06f8b388384cbb9cb8a8f29a327acfe8188503550a7097
 DIST cinder-13.0.2.tar.gz 5463591 BLAKE2B 
d146e43bdd97bd15aeaf7c582c8cbe37080a7a1e8b5090c2727fb2dfbfc953121c0bb4c2adfce5f09d3e43e02093335dcce655dcc64abfa98d58b08327257950
 SHA512 
04ea9c0dafcc98858b587bf94e5afa20cfbfdd1aebd615ac62cfc7821a8dc6106b695071d68dc369bff014e877fc188216f3b05a9a08ea94a1b99712eca25c92
 DIST cinder.conf.sample-13.0.2 185527 BLAKE2B 
c53c017c5cacf2fb604840e14adf3b1db36bf8dd2c79d29f1c6b35da843640f97efcfd97d6f68a40a2f928ce864a3e221d7138d7cac977c0d544817e2826ebb2
 SHA512 
1dc850bebd66d90e2950795337a78ea8aea69ead0aeb3e5b7f97c7b12f33a3afc483f3bde2942a34539fbc048fa5b589b3c7d2df53314180f64094569bb81b15
 DIST cinder.conf.sample-2018.2. 185527 BLAKE2B 
c53c017c5cacf2fb604840e14adf3b1db36bf8dd2c79d29f1c6b35da843640f97efcfd97d6f68a40a2f928ce864a3e221d7138d7cac977c0d544817e2826ebb2
 SHA512 
1dc850bebd66d90e2950795337a78ea8aea69ead0aeb3e5b7f97c7b12f33a3afc483f3bde2942a34539fbc048fa5b589b3c7d2df53314180f64094569bb81b15

diff --git a/sys-cluster/cinder/cinder-12.0.5.ebuild 
b/sys-cluster/cinder/cinder-12.0.5.ebuild
new file mode 100644
index 000..7d5ccdd03cd
--- /dev/null
+++ b/sys-cluster/cinder/cinder-12.0.5.ebuild
@@ -0,0 +1,217 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1 eutils linux-info user
+
+DESCRIPTION="Cinder is the OpenStack Block storage service, a spin out of 
nova-volumes"
+HOMEPAGE="https://launchpad.net/cinder";
+
+if [[ ${PV} == * ]];then
+   inherit git-r3
+   
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/queens/cinder.conf.sample
 -> queens-cinder.conf.sample"
+   EGIT_REPO_URI="https://github.com/openstack/cinder.git";
+   EGIT_BRANCH="stable/queens"
+else
+   
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/queens/cinder.conf.sample
 -> queens-cinder.conf.sample
+   https://tarballs.openstack.org/${PN}/${P}.tar.gz";
+   KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="+api +scheduler +volume infiniband iscsi lvm mysql +memcached postgres 
rdma sqlite +tcp test +tgt"
+REQUIRED_USE="|| ( mysql postgres sqlite ) iscsi? ( tgt ) infiniband? ( rdma )"
+
+CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+   !~dev-python/pbr-2.1.0"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   ${CDEPEND}
+   app-admin/sudo"
+
+RDEPEND="
+   ${CDEPEND}
+   >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
+   !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}]
+   >=dev-python/decorator-3.4.0[${PYTHON_USEDEP}]
+   >=dev-python/defusedxml-0.5.0[${PYTHON_USEDEP}]
+   dev-python/enum34[$(python_gen_usedep 'python2_7')]
+   >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
+   !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}]
+   =dev-python/greenlet-0.4.1[${PYTHON_USEDEP}]
+   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-2.6.0[${PYTHON_USEDEP}]
+   =dev-python/keystoneauth-3.3.0[${PYTHON_USEDEP}]
+   >=dev-python/keystonemiddleware-4.17.0[${PYTHON_USEDEP}]
+   >=dev-python/lxml-3.4.1[${PYTHON_USEDEP}]
+   !~dev-python/lxml-3.7.0[${PYT

[gentoo-commits] repo/user/ssnb:master commit in: net-nds/apachedirectorystudio/

2019-01-29 Thread Samuel Bernardo
commit: 68c32561cc04fda5512b46dc38e089e69fce28ce
Author: Samuel Bernardo  gmail  com>
AuthorDate: Tue Jan 29 23:17:09 2019 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Tue Jan 29 23:17:09 2019 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=68c32561

correct source directory name

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

 net-nds/apachedirectorystudio/Manifest| 2 +-
 .../apachedirectorystudio-2.0.0.20180908-r1.ebuild| 8 
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-nds/apachedirectorystudio/Manifest 
b/net-nds/apachedirectorystudio/Manifest
index 030f4cb..619895c 100644
--- a/net-nds/apachedirectorystudio/Manifest
+++ b/net-nds/apachedirectorystudio/Manifest
@@ -1,4 +1,4 @@
 DIST ApacheDirectoryStudio-2.0.0.v20180908-M14-linux.gtk.x86.tar.gz 146593441 
BLAKE2B 
f72b595ee419a5141c1347e83592714cd5a0e8c23f0ca3cee1f80aeb1d62378241b7b8133723379f2e9d16fbb3367c2d680e59942845af45cf5fc06219938bea
 SHA512 
ea7eda032584a9ddd40a3b712eff5128a3263e0bb75c43cd70df3901516c1d563e510c2d649a4be2a3651e94ae2e3933ced11974c2bd0e5894685354a9562107
 DIST ApacheDirectoryStudio-2.0.0.v20180908-M14-linux.gtk.x86_64.tar.gz 
146704643 BLAKE2B 
192201af0525b52b00b0adafd149ea678978c07f59314801b58287f9b18e21027bc8857b70dd403573a0926ddeb7c447cbac5b3062bdf740807ea9edf60e5254
 SHA512 
47a00ea0bc646ea924ea3f55b6d48180bdd0d5c5ba41f70abf83e27f5244c4c82ab76cdeff44bc3dfd0bb802832f49bada3b58bcdaaacb62ea84f9beca7e2aad
-EBUILD apachedirectorystudio-2.0.0.20180908-r1.ebuild 1334 BLAKE2B 
8a45ccfe872c51cfd2da27df89d8615179dc2fab5237d1be48eaa52fddcc7d8531a7cf9c6194c53476461522a32ad09ba026be2d25c6533108b9d62d381d6554
 SHA512 
495f8067fc8a8524ce55e2d6d87cacc360a24231445c9c358ade85832b49676f0455577292887f42a4cdadf499c919d947b6ee1cdd0ee42fb6f9413ca32d2e9a
+EBUILD apachedirectorystudio-2.0.0.20180908-r1.ebuild 1316 BLAKE2B 
9b43ce3854f6738739c4857e1d7d462e28467c42a38721ad4aea56ad1d4a1a0450606194ec650ac68b4954bf26458be4d62590a17bd4e3bd84de5f9a2d7d1f31
 SHA512 
cff05c628fd3ed7cc773ee77234aa08aca3db3c5d928b85a62e6ad47bfa13202218f8ded12fedbb7936eb816dc40efb3b5564e0eb5a354a554e191289c47a5af
 EBUILD apachedirectorystudio-2.0.0.20180908.ebuild 1343 BLAKE2B 
1856c0f2ed2f9a26d721e0bd58688a96b51fa920b69c102e88644e2ce8957677e2396ef642b08eb2aa8fc34da62d5da2c9d2597e32935b235d72f06604e0
 SHA512 
15be6d8441e554731664dbd9084c3086cd5a17a1ee8fac19b2d18eac4f97aa185581c64c5aa34a69477e4457c8419ec9cd00c450f9a08657f21c8e2a7c00

diff --git 
a/net-nds/apachedirectorystudio/apachedirectorystudio-2.0.0.20180908-r1.ebuild 
b/net-nds/apachedirectorystudio/apachedirectorystudio-2.0.0.20180908-r1.ebuild
index 817061d..89adb07 100644
--- 
a/net-nds/apachedirectorystudio/apachedirectorystudio-2.0.0.20180908-r1.ebuild
+++ 
b/net-nds/apachedirectorystudio/apachedirectorystudio-2.0.0.20180908-r1.ebuild
@@ -31,21 +31,21 @@ RDEPEND=">=virtual/jre-1.8.0
 
 #MY_ARCH="x86?  ( x86 ) amd64? ( amd64 )"
 MY_ARCH="$ARCH"
-INSTALL_DIR="/opt"
+INSTALL_DIR="/opt/${MY_PN}"
 S="${WORKDIR}/${MY_PN}"
 
 src_install() {
 
insinto "${INSTALL_DIR}"

-   newicon 
"${MY_PN}/features/org.apache.directory.studio.schemaeditor.feature_${MY_PV}-M${MY_PKGM}/studio.png"
 "${MY_PN}.png"
+   newicon 
"features/org.apache.directory.studio.schemaeditor.feature_${MY_PV}-M${MY_PKGM}/studio.png"
 "${MY_PN}.png"
#newicon "${MY_PN}/icon.xpm" "${MY_PN}.xpm"

make_desktop_entry "${MY_PN}" "Apache Directory Studio" "${MY_PN}" 
"System"

doins -r *

-   fperms +x "${INSTALL_DIR}/${MY_PN}/${MY_PN}"
+   fperms +x "${INSTALL_DIR}/${MY_PN}"

-   dosym "${INSTALL_DIR}/${MY_PN}/${MY_PN}" "/usr/bin/${MY_PN}"
+   dosym "${INSTALL_DIR}/${MY_PN}" "/usr/bin/${MY_PN}"
 }



[gentoo-commits] repo/user/ssnb:master commit in: net-nds/apachedirectorystudio/

2019-01-29 Thread Samuel Bernardo
commit: 3a2d9cf2169154d49d2a2610e6ed7f8a28dc0c05
Author: Samuel Bernardo  gmail  com>
AuthorDate: Tue Jan 29 23:03:31 2019 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Tue Jan 29 23:03:31 2019 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=3a2d9cf2

corect myarch to portage defined arch variable

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

 net-nds/apachedirectorystudio/Manifest  | 2 +-
 .../apachedirectorystudio-2.0.0.20180908-r1.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-nds/apachedirectorystudio/Manifest 
b/net-nds/apachedirectorystudio/Manifest
index 4c0f979..030f4cb 100644
--- a/net-nds/apachedirectorystudio/Manifest
+++ b/net-nds/apachedirectorystudio/Manifest
@@ -1,4 +1,4 @@
 DIST ApacheDirectoryStudio-2.0.0.v20180908-M14-linux.gtk.x86.tar.gz 146593441 
BLAKE2B 
f72b595ee419a5141c1347e83592714cd5a0e8c23f0ca3cee1f80aeb1d62378241b7b8133723379f2e9d16fbb3367c2d680e59942845af45cf5fc06219938bea
 SHA512 
ea7eda032584a9ddd40a3b712eff5128a3263e0bb75c43cd70df3901516c1d563e510c2d649a4be2a3651e94ae2e3933ced11974c2bd0e5894685354a9562107
 DIST ApacheDirectoryStudio-2.0.0.v20180908-M14-linux.gtk.x86_64.tar.gz 
146704643 BLAKE2B 
192201af0525b52b00b0adafd149ea678978c07f59314801b58287f9b18e21027bc8857b70dd403573a0926ddeb7c447cbac5b3062bdf740807ea9edf60e5254
 SHA512 
47a00ea0bc646ea924ea3f55b6d48180bdd0d5c5ba41f70abf83e27f5244c4c82ab76cdeff44bc3dfd0bb802832f49bada3b58bcdaaacb62ea84f9beca7e2aad
-EBUILD apachedirectorystudio-2.0.0.20180908-r1.ebuild 1360 BLAKE2B 
7a6d63705a2a2a20382470d8a1e939531d41710777aaca09dc3a0e1c8a81edf82c672f99816e0c03c433a7e5677a04175dc0e197546402cc2ca77e027c5c3f1e
 SHA512 
01d96394f5879dcbf17b3f8797f3b9e593677eaf749df9f096b9e4a885f209727ea2fa15e1c47fa04849bd61cbd1884fe206b534470c843e6804d1ed01ab5139
+EBUILD apachedirectorystudio-2.0.0.20180908-r1.ebuild 1334 BLAKE2B 
8a45ccfe872c51cfd2da27df89d8615179dc2fab5237d1be48eaa52fddcc7d8531a7cf9c6194c53476461522a32ad09ba026be2d25c6533108b9d62d381d6554
 SHA512 
495f8067fc8a8524ce55e2d6d87cacc360a24231445c9c358ade85832b49676f0455577292887f42a4cdadf499c919d947b6ee1cdd0ee42fb6f9413ca32d2e9a
 EBUILD apachedirectorystudio-2.0.0.20180908.ebuild 1343 BLAKE2B 
1856c0f2ed2f9a26d721e0bd58688a96b51fa920b69c102e88644e2ce8957677e2396ef642b08eb2aa8fc34da62d5da2c9d2597e32935b235d72f06604e0
 SHA512 
15be6d8441e554731664dbd9084c3086cd5a17a1ee8fac19b2d18eac4f97aa185581c64c5aa34a69477e4457c8419ec9cd00c450f9a08657f21c8e2a7c00

diff --git 
a/net-nds/apachedirectorystudio/apachedirectorystudio-2.0.0.20180908-r1.ebuild 
b/net-nds/apachedirectorystudio/apachedirectorystudio-2.0.0.20180908-r1.ebuild
index c8aa4a9..817061d 100644
--- 
a/net-nds/apachedirectorystudio/apachedirectorystudio-2.0.0.20180908-r1.ebuild
+++ 
b/net-nds/apachedirectorystudio/apachedirectorystudio-2.0.0.20180908-r1.ebuild
@@ -32,7 +32,7 @@ RDEPEND=">=virtual/jre-1.8.0
 #MY_ARCH="x86?  ( x86 ) amd64? ( amd64 )"
 MY_ARCH="$ARCH"
 INSTALL_DIR="/opt"
-S="${WORKDIR}/${MY_PN}-linux-${MY_ARCH}-${MY_PV}"
+S="${WORKDIR}/${MY_PN}"
 
 src_install() {
 



[gentoo-commits] repo/gentoo:master commit in: app-office/moneydance/

2019-01-29 Thread Patrice Clement
commit: 641ed6a66b458b4c83517c01d8ce16ef1ac82eab
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sun Jan 27 16:57:40 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Jan 29 22:59:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=641ed6a6

app-office/moneydance: bump to version 2017.10.

This is the latest x86 release.
Future versions dropped x86 support.

Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/10918
Signed-off-by: Patrice Clement  gentoo.org>

 app-office/moneydance/Manifest  |  2 +
 app-office/moneydance/moneydance-2017.10.ebuild | 63 +
 2 files changed, 65 insertions(+)

diff --git a/app-office/moneydance/Manifest b/app-office/moneydance/Manifest
index 00c1b8726d4..96430802f6e 100644
--- a/app-office/moneydance/Manifest
+++ b/app-office/moneydance/Manifest
@@ -1,2 +1,4 @@
+DIST moneydance-2017.10-amd64.tar.gz 132116528 BLAKE2B 
f5ba44a89944657c6c1380226dc512729825b084783e6d70dd7b2b731411294c7333bae858b2be3d5321e5145230257b325dc2b72a22744a877673c1c934d854
 SHA512 
175ff470b5fb5c3851eae708cc641777d7bdf1ede40366ccf5a135d6c813c08d9ce32665a2307c3aefa63eeb2206ad0874cb989aa998415abb86184a2b114ce8
+DIST moneydance-2017.10-x86.tar.gz 134860964 BLAKE2B 
92181a6c6a81063377823b0fd9ed652036cf1f633c2cab57f19d1dbb18a2542361fc2bafab8852c11b941a24532f662351ea2d05bc928818db24a4cf3cae7112
 SHA512 
18d9d4ce7b0b65566ac81fea66ba34d66173559ca90ac166cc9b90631400845ae1c9d92ae781a618cacc57cd4f630f079736101d29b66d9c6cee7d32c7c15c22
 DIST moneydance-2017.8-amd64.tar.gz 132109962 BLAKE2B 
4984b6266eed96337ab284168db1a167121daa6b454a338f348d1d724587e6dfd6a52c25ff739ca0e09a9c0441b1b582e59a571f001e8b2ddc6c5e10917100cd
 SHA512 
53e46ee63ee89b86f3108045e9a16fdda637effb5edb719ccf7192632e6ebace607f40871ee54b5c5bde40821fdf2cbf89a5abd6eba0698618a8db8d848971c6
 DIST moneydance-2017.8-x86.tar.gz 134851425 BLAKE2B 
4c40f30798b66d01b5abacc5cfbfa584a107f351de8bd2eb8c291aea6d96c122a36feb5ed092ea0aec4a99be7e1507f79551a1c6a1cd79365b8dfc52892a57bc
 SHA512 
434fbd0c941a455c862963e572b7c1489fa19ccf30efb315af33eac3974acdad57292943d129433e6a59d3f233cd797b6697c0e82d9293ce0464d25ab8c32912

diff --git a/app-office/moneydance/moneydance-2017.10.ebuild 
b/app-office/moneydance/moneydance-2017.10.ebuild
new file mode 100644
index 000..bce4b6c2cfa
--- /dev/null
+++ b/app-office/moneydance/moneydance-2017.10.ebuild
@@ -0,0 +1,63 @@
+# Copyright 2018-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit desktop eapi7-ver gnome2-utils java-pkg-2
+
+MY_PN="Moneydance"
+MY_PV="$(ver_cut 1)"
+
+DESCRIPTION="A cross-platform personal finance application"
+HOMEPAGE="https://moneydance.com/";
+SRC_URI="
+   amd64? ( 
https://infinitekind.com/stabledl/${MY_PV}/${MY_PN}_linux_amd64.tar.gz -> 
${P}-amd64.tar.gz )
+   x86? ( 
https://infinitekind.com/stabledl/${MY_PV}/${MY_PN}_linux_x86.tar.gz -> 
${P}-x86.tar.gz )
+"
+
+LICENSE="Apache-1.0 Apache-2.0 BSD CPAL-1.0 CPL-1.0 CSL-2.0 LGPL-2 MIT TIK"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=virtual/jre-1.8"
+
+DEPEND="
+   >=virtual/jdk-1.8"
+
+S="${WORKDIR}/${MY_PN}"
+
+RESTRICT="bindist fetch mirror"
+
+pkg_nofetch() {
+   elog "Please download ${A} from"
+   elog "https://infinitekind.com/stabledl/${MY_PV}/${MY_PN}_linux_$(usex 
amd64 amd64 x86).tar.gz -> ${P}-$(usex amd64 amd64 x86).tar.gz"
+   elog "and place it in your DISTDIR directory."
+}
+
+src_prepare() {
+   default
+
+   # Modify .desktop file, to fix QA errors
+   sed -e 's/Application;//g' -e 's/.png//g' -i 
resources/moneydance.desktop || die
+}
+
+src_compile() {
+   :;
+}
+
+src_install() {
+   java-pkg_dojar jars/*.jar
+   java-pkg_dolauncher moneydance --main "Moneydance" --java_args "-client 
-Dawt.useSystemAAFontSettings=gasp -Dawt.useSystemAAFontSettings=on -Xmx1024m"
+
+   doicon resources/*.png
+   domenu resources/moneydance.desktop
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



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

2019-01-29 Thread Patrice Clement
commit: 8c82a65d70a5bdc7e993f91291e5df040f123b73
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sun Jan 27 17:06:19 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Jan 29 22:59:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c82a65d

www-apps/cgp: drop old version.

Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Signed-off-by: Patrice Clement  gentoo.org>

 www-apps/cgp/Manifest  |  1 -
 www-apps/cgp/cgp-1_p20180620-r1.ebuild | 54 --
 2 files changed, 55 deletions(-)

diff --git a/www-apps/cgp/Manifest b/www-apps/cgp/Manifest
index ce156d63f1e..8c002dc742f 100644
--- a/www-apps/cgp/Manifest
+++ b/www-apps/cgp/Manifest
@@ -1,2 +1 @@
-DIST cgp-1_p20180620.tar.gz 139549 BLAKE2B 
2cc1a416ae1158b5788615b05bf43039049af52eb5296e7fd8136c9895e8ee0a9887e84ad37c6598a4c4387982a2860fbdb7cf9cdff39cfe5bbee598b9ace88f
 SHA512 
acd09bb699af678347dacfc08fee60a86843874543851805f245952e538777d7ccd528c156f7a21b803503c7aac134013a4eb8200d5266cf35541b0dce5839e4
 DIST cgp-1_p20181209.tar.gz 139556 BLAKE2B 
0a79ff1974b0ae50db5582121c4fdcc2db0b89ef11ecb001dfa525dd753481f0a454e424d17f24b142fd116a9ea2eeb4ba1dade6f2ffadd63943e5c065323224
 SHA512 
fcbf81fca2bb14ed143ea414c2f11fe09f4594891507a1ad08482720b104ec62c9986ce25b127d45a7962a8b3db54293a6775dc2359bde41f19b5419606b51eb

diff --git a/www-apps/cgp/cgp-1_p20180620-r1.ebuild 
b/www-apps/cgp/cgp-1_p20180620-r1.ebuild
deleted file mode 100644
index 6fe5fc73bda..000
--- a/www-apps/cgp/cgp-1_p20180620-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit webapp
-
-MY_PN="${PN^^}"
-MY_PV="1920ca24a067ac157a6bd8f3c017f4c6244ae245"
-
-DESCRIPTION="A graphical web-based front-end for visualizing RRD collected by 
collectd"
-HOMEPAGE="https://github.com/pommi/CGP";
-SRC_URI="https://github.com/pommi/${MY_PN}/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="CC-BY-2.0 GPL-2+ GPL-3 MIT"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   dev-lang/php[json]
-   net-analyzer/rrdtool[graph]
-   virtual/httpd-php
-"
-
-need_httpd_cgi
-
-S="${WORKDIR}/${MY_PN}-${MY_PV}"
-
-DOCS=( "README.md" "doc/CHANGELOG" "doc/nginx.conf" )
-
-src_install() {
-   webapp_src_preinst
-
-   einstalldocs
-
-   # Since the docs are already installed, remove them from htdocs
-   # The file doc/CHANGELOG is needed, as CGP reads from there it's version
-   rm -r .gitignore doc/LICENSE doc/nginx.conf || die
-
-   insinto "${MY_HTDOCSDIR}"
-   doins -r .
-
-   webapp_src_install
-}
-
-pkg_postinst() {
-   webapp_pkg_postinst
-
-   einfo "The command shell_exec must not be disabled"
-   einfo "through the disable_functions php.ini directive."
-   einfo "It must allow execution of the rrdtool program."
-   einfo ""
-   einfo "An configuration file for www-servers/nginx"
-   einfo "has been installed as an example."
-}



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/stress-ng/, app-benchmarks/stress-ng/files/

2019-01-29 Thread Patrice Clement
commit: a459bc1e7564c6529c49b71c2570d0e290378294
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sun Jan 27 14:12:31 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Jan 29 23:00:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a459bc1e

app-benchmarks/stress-ng: bump to version 0.09.50.

Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/10911
Signed-off-by: Patrice Clement  gentoo.org>

 app-benchmarks/stress-ng/Manifest  |  1 +
 .../files/stress-ng-0.09.50-makefile.patch | 60 ++
 app-benchmarks/stress-ng/stress-ng-0.09.50.ebuild  | 35 +
 3 files changed, 96 insertions(+)

diff --git a/app-benchmarks/stress-ng/Manifest 
b/app-benchmarks/stress-ng/Manifest
index d4e01fb45db..e3e47304d0a 100644
--- a/app-benchmarks/stress-ng/Manifest
+++ b/app-benchmarks/stress-ng/Manifest
@@ -1 +1,2 @@
 DIST stress-ng-0.09.49.tar.xz 369304 BLAKE2B 
48b11df90563ec7d09e84e441039366bfca9788af5079ce9bc921370d78371638ff9a9fbaa7e623eefb343b5c19b55a5e4b9bb9688898733c0452b3e2b9549e4
 SHA512 
b4eb93dc2d015766da1361840e4880db83a9e9297d4272383abdfcaeb26dc8437c3dc0b007efa5c12585bfaacaa2ae255ed52c693f9e8f6595a7294db48bc68a
+DIST stress-ng-0.09.50.tar.xz 372592 BLAKE2B 
430e4e8feefb358d6e9445d2418356d306c978ae0e6521a8fa6f216cd2fd031569ce9359236080784682991d81a3d9aacc4cef54709fbed2d9a99d7154d9e6b0
 SHA512 
b52a2e52011d6fcc7c72ad12c6173c7e7e77028e6c90d2aef170235bfb5b9b0ffe7422b178e58d68c0239dc85cce59edb6a58b9edfea84aba2b24c995321d5d4

diff --git a/app-benchmarks/stress-ng/files/stress-ng-0.09.50-makefile.patch 
b/app-benchmarks/stress-ng/files/stress-ng-0.09.50-makefile.patch
new file mode 100644
index 000..791f599118b
--- /dev/null
+++ b/app-benchmarks/stress-ng/files/stress-ng-0.09.50-makefile.patch
@@ -0,0 +1,60 @@
+--- a/Makefile 2019-01-02 18:19:15.0 +0100
 b/Makefile 2019-01-27 15:09:56.0 +0100
+@@ -21,7 +21,7 @@
+ # Codename "portable pressure producer"
+ #
+ 
+-CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -O2 -std=gnu99 -g
++CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -std=gnu99
+ 
+ #
+ # Pedantic flags
+@@ -344,12 +344,10 @@
+ .o: stress-ng.h Makefile
+ 
+ .c.o: stress-ng.h Makefile $(SRC)
+-  @echo "CC $<"
+-  @$(CC) $(CFLAGS) -c -o $@ $<
++  $(CC) $(CFLAGS) -c -o $@ $<
+ 
+ stress-ng: $(OBJS)
+-  @echo "LD $@"
+-  @$(CC) $(CPPFLAGS) $(CFLAGS) $(OBJS) -lm $(LDFLAGS) -o $@
++  $(CC) $(CPPFLAGS) $(CFLAGS) $(OBJS) -lm $(LDFLAGS) -o $@
+   @sync
+ 
+ makeconfig:
+@@ -370,7 +368,7 @@
+   sed '$$ s/.$$//' >> apparmor-data.c
+   @echo "};" >> apparmor-data.c
+   @echo "const size_t g_apparmor_data_len = sizeof(g_apparmor_data);" >> 
apparmor-data.c
+-  @echo "CC $<"
++  echo "CC $<"
+   @$(CC) -c apparmor-data.c -o apparmor-data.o
+   @rm -rf apparmor-data.c apparmor-data.bin
+ 
+@@ -386,12 +384,12 @@
+ perf.o: perf.c perf-event.c
+   @$(CC) $(CFLAGS) -E perf-event.c | grep "PERF_COUNT" | sed 's/,/ /' | \
+   awk {'print "#define _SNG_" $$1 " (1)"'} > perf-event.h
+-  @echo CC $<
+-  @$(CC) $(CFLAGS) -c -o $@ $<
++  echo CC $<
++  $(CC) $(CFLAGS) -c -o $@ $<
+ 
+ stress-vecmath.o: stress-vecmath.c
+-  @echo CC $<
+-  @$(CC) $(CFLAGS) -fno-builtin -c -o $@ $<
++  echo CC $<
++  $(CC) $(CFLAGS) -fno-builtin -c -o $@ $<
+   @touch stress-ng.c
+ 
+ $(OBJS): stress-ng.h Makefile
+@@ -439,6 +437,6 @@
+   mkdir -p ${DESTDIR}${BINDIR}
+   cp stress-ng ${DESTDIR}${BINDIR}
+   mkdir -p ${DESTDIR}${MANDIR}
+-  cp stress-ng.1.gz ${DESTDIR}${MANDIR}
++  cp stress-ng.1 ${DESTDIR}${MANDIR}
+   mkdir -p ${DESTDIR}${JOBDIR}
+   cp -rp example-jobs/*.job ${DESTDIR}${JOBDIR}

diff --git a/app-benchmarks/stress-ng/stress-ng-0.09.50.ebuild 
b/app-benchmarks/stress-ng/stress-ng-0.09.50.ebuild
new file mode 100644
index 000..13f9d61038e
--- /dev/null
+++ b/app-benchmarks/stress-ng/stress-ng-0.09.50.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Stress test for a computer system with various selectable ways"
+HOMEPAGE="http://kernel.ubuntu.com/~cking/stress-ng/";
+SRC_URI="http://kernel.ubuntu.com/~cking/tarballs/${PN}/${P}.tar.xz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+   dev-libs/libaio
+   dev-libs/libbsd
+   dev-libs/libgcrypt:0=
+   net-misc/lksctp-tools
+   sys-apps/attr
+   sys-apps/keyutils
+   sys-libs/libapparmor
+   sys-libs/libcap
+   sys-libs/zlib:=
+"
+
+RDEPEND="${DEPEND}"
+
+DOCS=(
+   "README"
+   "README.Android"
+   "TODO"
+   "syscalls.txt"
+)
+
+PATCHES=( "${FILESDIR}/${P}-makefile.patch" )



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

2019-01-29 Thread Patrice Clement
commit: aef7c90bce140f0577c96e888545dccaba94fb86
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sun Jan 27 17:05:56 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Jan 29 22:59:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aef7c90b

www-apps/cgp: bump to version 1_p20181209.

This release adds support for PHP 7.3.

Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/10917
Signed-off-by: Patrice Clement  gentoo.org>

 www-apps/cgp/Manifest   |  1 +
 www-apps/cgp/cgp-1_p20181209.ebuild | 54 +
 2 files changed, 55 insertions(+)

diff --git a/www-apps/cgp/Manifest b/www-apps/cgp/Manifest
index cde99e2778b..ce156d63f1e 100644
--- a/www-apps/cgp/Manifest
+++ b/www-apps/cgp/Manifest
@@ -1 +1,2 @@
 DIST cgp-1_p20180620.tar.gz 139549 BLAKE2B 
2cc1a416ae1158b5788615b05bf43039049af52eb5296e7fd8136c9895e8ee0a9887e84ad37c6598a4c4387982a2860fbdb7cf9cdff39cfe5bbee598b9ace88f
 SHA512 
acd09bb699af678347dacfc08fee60a86843874543851805f245952e538777d7ccd528c156f7a21b803503c7aac134013a4eb8200d5266cf35541b0dce5839e4
+DIST cgp-1_p20181209.tar.gz 139556 BLAKE2B 
0a79ff1974b0ae50db5582121c4fdcc2db0b89ef11ecb001dfa525dd753481f0a454e424d17f24b142fd116a9ea2eeb4ba1dade6f2ffadd63943e5c065323224
 SHA512 
fcbf81fca2bb14ed143ea414c2f11fe09f4594891507a1ad08482720b104ec62c9986ce25b127d45a7962a8b3db54293a6775dc2359bde41f19b5419606b51eb

diff --git a/www-apps/cgp/cgp-1_p20181209.ebuild 
b/www-apps/cgp/cgp-1_p20181209.ebuild
new file mode 100644
index 000..60438618d2f
--- /dev/null
+++ b/www-apps/cgp/cgp-1_p20181209.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit webapp
+
+MY_PN="${PN^^}"
+MY_PV="72acfcbffd51da1e77a56517618da68252485ed6"
+
+DESCRIPTION="A graphical web-based front-end for visualizing RRD collected by 
collectd"
+HOMEPAGE="https://github.com/pommi/CGP";
+SRC_URI="https://github.com/pommi/${MY_PN}/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="CC-BY-2.0 GPL-2+ GPL-3 MIT"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-lang/php[json]
+   net-analyzer/rrdtool[graph]
+   virtual/httpd-php
+"
+
+need_httpd_cgi
+
+S="${WORKDIR}/${MY_PN}-${MY_PV}"
+
+DOCS=( "README.md" "doc/CHANGELOG" "doc/nginx.conf" )
+
+src_install() {
+   webapp_src_preinst
+
+   einstalldocs
+
+   # Since the docs are already installed, remove them from htdocs
+   # The file doc/CHANGELOG is needed, as CGP reads from there it's version
+   rm -r .gitignore doc/LICENSE doc/nginx.conf || die
+
+   insinto "${MY_HTDOCSDIR}"
+   doins -r .
+
+   webapp_src_install
+}
+
+pkg_postinst() {
+   webapp_pkg_postinst
+
+   einfo "The command shell_exec must not be disabled"
+   einfo "through the disable_functions php.ini directive."
+   einfo "It must allow execution of the rrdtool program."
+   einfo ""
+   einfo "An configuration file for www-servers/nginx"
+   einfo "has been installed as an example."
+}



[gentoo-commits] repo/gentoo:master commit in: app-office/moneydance/

2019-01-29 Thread Patrice Clement
commit: cb834fc8be99edd71d1a6ba81cda288f2e56f312
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sun Jan 27 16:59:22 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Jan 29 22:59:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb834fc8

app-office/moneydance: bump to version 2019.0.

This release needs Java 11 at minimum.

Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Signed-off-by: Patrice Clement  gentoo.org>

 app-office/moneydance/Manifest |  1 +
 app-office/moneydance/moneydance-2019.0.ebuild | 56 ++
 2 files changed, 57 insertions(+)

diff --git a/app-office/moneydance/Manifest b/app-office/moneydance/Manifest
index 96430802f6e..f3be23e0f75 100644
--- a/app-office/moneydance/Manifest
+++ b/app-office/moneydance/Manifest
@@ -2,3 +2,4 @@ DIST moneydance-2017.10-amd64.tar.gz 132116528 BLAKE2B 
f5ba44a89944657c6c1380226
 DIST moneydance-2017.10-x86.tar.gz 134860964 BLAKE2B 
92181a6c6a81063377823b0fd9ed652036cf1f633c2cab57f19d1dbb18a2542361fc2bafab8852c11b941a24532f662351ea2d05bc928818db24a4cf3cae7112
 SHA512 
18d9d4ce7b0b65566ac81fea66ba34d66173559ca90ac166cc9b90631400845ae1c9d92ae781a618cacc57cd4f630f079736101d29b66d9c6cee7d32c7c15c22
 DIST moneydance-2017.8-amd64.tar.gz 132109962 BLAKE2B 
4984b6266eed96337ab284168db1a167121daa6b454a338f348d1d724587e6dfd6a52c25ff739ca0e09a9c0441b1b582e59a571f001e8b2ddc6c5e10917100cd
 SHA512 
53e46ee63ee89b86f3108045e9a16fdda637effb5edb719ccf7192632e6ebace607f40871ee54b5c5bde40821fdf2cbf89a5abd6eba0698618a8db8d848971c6
 DIST moneydance-2017.8-x86.tar.gz 134851425 BLAKE2B 
4c40f30798b66d01b5abacc5cfbfa584a107f351de8bd2eb8c291aea6d96c122a36feb5ed092ea0aec4a99be7e1507f79551a1c6a1cd79365b8dfc52892a57bc
 SHA512 
434fbd0c941a455c862963e572b7c1489fa19ccf30efb315af33eac3974acdad57292943d129433e6a59d3f233cd797b6697c0e82d9293ce0464d25ab8c32912
+DIST moneydance-2019.0-amd64.tar.gz 132467602 BLAKE2B 
d58df88166f73c80b755863bd9ea18fdadf192ac9f0016313ab59c209c895ef8c1203d0b7627004521a9569343c3269bc1854e4e7925ec6e438148059d8adaf3
 SHA512 
2ee22626b0b3918c3ebd80f7ca4ce9c1ad39716fb837887ca84a970f2f3d64d7daff36eff31eaa22753e55e0dcfc49ccb2f10e5c8dfbf21e67e8627b17d9de59

diff --git a/app-office/moneydance/moneydance-2019.0.ebuild 
b/app-office/moneydance/moneydance-2019.0.ebuild
new file mode 100644
index 000..e205b32533b
--- /dev/null
+++ b/app-office/moneydance/moneydance-2019.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2018-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit desktop eapi7-ver gnome2-utils java-pkg-2
+
+MY_PN="Moneydance"
+MY_PV="$(ver_cut 1)"
+
+DESCRIPTION="A cross-platform personal finance application"
+HOMEPAGE="https://moneydance.com/";
+SRC_URI="https://infinitekind.com/stabledl/${MY_PV}/${MY_PN}_linux_amd64.tar.gz
 -> ${P}-amd64.tar.gz"
+
+LICENSE="Apache-1.0 Apache-2.0 BSD CPAL-1.0 CPL-1.0 CSL-2.0 LGPL-2 MIT TIK"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="|| (
+   >=dev-java/openjdk-bin-11.0
+   >=dev-java/openjdk-11.0
+   >=dev-java/oracle-jdk-bin-11.0
+   )
+"
+
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_PN}"
+
+RESTRICT="bindist fetch mirror"
+
+pkg_nofetch() {
+   elog "Please download ${A} from"
+   elog 
"https://infinitekind.com/stabledl/${MY_PV}/${MY_PN}_linux_amd64.tar.gz";
+   elog "and place it in your DISTDIR directory."
+}
+
+src_compile() {
+   :;
+}
+
+src_install() {
+   java-pkg_dojar lib/*.jar
+   java-pkg_dolauncher moneydance --main "Moneydance" --java_args "-client 
-Dawt.useSystemAAFontSettings=gasp -Dawt.useSystemAAFontSettings=on -Xmx1024m"
+
+   doicon resources/*.png
+   make_desktop_entry "moneydance" "Moneydance" moneydance Office
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



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

2019-01-29 Thread Patrice Clement
commit: d7938a739b152e336a9ec04bb4f420e64001dc73
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Jan 27 17:57:31 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Jan 29 22:59:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7938a73

app-vim/neocomplcache: clean up old.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-vim/neocomplcache/neocomplcache-7.1.ebuild | 14 --
 1 file changed, 14 deletions(-)

diff --git a/app-vim/neocomplcache/neocomplcache-7.1.ebuild 
b/app-vim/neocomplcache/neocomplcache-7.1.ebuild
deleted file mode 100644
index 2e6bd637060..000
--- a/app-vim/neocomplcache/neocomplcache-7.1.ebuild
+++ /dev/null
@@ -1,14 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: ultimate auto completion system"
-HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=2620";
-LICENSE="MIT"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"



[gentoo-commits] repo/gentoo:master commit in: app-office/moneydance/

2019-01-29 Thread Patrice Clement
commit: d06ef7a3a312ebcc538352c6659b89e4c7b7d7fa
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sun Jan 27 17:00:14 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Jan 29 22:59:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d06ef7a3

app-office/moneydance: drop old version.

Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Signed-off-by: Patrice Clement  gentoo.org>

 app-office/moneydance/Manifest |  2 -
 app-office/moneydance/moneydance-2017.8.ebuild | 62 --
 2 files changed, 64 deletions(-)

diff --git a/app-office/moneydance/Manifest b/app-office/moneydance/Manifest
index f3be23e0f75..89a5e0da89f 100644
--- a/app-office/moneydance/Manifest
+++ b/app-office/moneydance/Manifest
@@ -1,5 +1,3 @@
 DIST moneydance-2017.10-amd64.tar.gz 132116528 BLAKE2B 
f5ba44a89944657c6c1380226dc512729825b084783e6d70dd7b2b731411294c7333bae858b2be3d5321e5145230257b325dc2b72a22744a877673c1c934d854
 SHA512 
175ff470b5fb5c3851eae708cc641777d7bdf1ede40366ccf5a135d6c813c08d9ce32665a2307c3aefa63eeb2206ad0874cb989aa998415abb86184a2b114ce8
 DIST moneydance-2017.10-x86.tar.gz 134860964 BLAKE2B 
92181a6c6a81063377823b0fd9ed652036cf1f633c2cab57f19d1dbb18a2542361fc2bafab8852c11b941a24532f662351ea2d05bc928818db24a4cf3cae7112
 SHA512 
18d9d4ce7b0b65566ac81fea66ba34d66173559ca90ac166cc9b90631400845ae1c9d92ae781a618cacc57cd4f630f079736101d29b66d9c6cee7d32c7c15c22
-DIST moneydance-2017.8-amd64.tar.gz 132109962 BLAKE2B 
4984b6266eed96337ab284168db1a167121daa6b454a338f348d1d724587e6dfd6a52c25ff739ca0e09a9c0441b1b582e59a571f001e8b2ddc6c5e10917100cd
 SHA512 
53e46ee63ee89b86f3108045e9a16fdda637effb5edb719ccf7192632e6ebace607f40871ee54b5c5bde40821fdf2cbf89a5abd6eba0698618a8db8d848971c6
-DIST moneydance-2017.8-x86.tar.gz 134851425 BLAKE2B 
4c40f30798b66d01b5abacc5cfbfa584a107f351de8bd2eb8c291aea6d96c122a36feb5ed092ea0aec4a99be7e1507f79551a1c6a1cd79365b8dfc52892a57bc
 SHA512 
434fbd0c941a455c862963e572b7c1489fa19ccf30efb315af33eac3974acdad57292943d129433e6a59d3f233cd797b6697c0e82d9293ce0464d25ab8c32912
 DIST moneydance-2019.0-amd64.tar.gz 132467602 BLAKE2B 
d58df88166f73c80b755863bd9ea18fdadf192ac9f0016313ab59c209c895ef8c1203d0b7627004521a9569343c3269bc1854e4e7925ec6e438148059d8adaf3
 SHA512 
2ee22626b0b3918c3ebd80f7ca4ce9c1ad39716fb837887ca84a970f2f3d64d7daff36eff31eaa22753e55e0dcfc49ccb2f10e5c8dfbf21e67e8627b17d9de59

diff --git a/app-office/moneydance/moneydance-2017.8.ebuild 
b/app-office/moneydance/moneydance-2017.8.ebuild
deleted file mode 100644
index 801d4007af9..000
--- a/app-office/moneydance/moneydance-2017.8.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN="Moneydance"
-
-inherit desktop gnome2-utils java-pkg-2
-
-DESCRIPTION="A cross-platform personal finance application"
-HOMEPAGE="https://moneydance.com/";
-SRC_URI="
-   amd64? ( 
https://infinitekind.com/stabledl/current/${MY_PN}_linux_amd64.tar.gz -> 
${P}-amd64.tar.gz )
-   x86? ( 
https://infinitekind.com/stabledl/current/${MY_PN}_linux_x86.tar.gz -> 
${P}-x86.tar.gz )
-"
-
-LICENSE="Apache-1.0 Apache-2.0 BSD CPAL-1.0 CPL-1.0 CSL-2.0 LGPL-2 MIT TIK"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   >=virtual/jre-1.8"
-
-DEPEND="
-   >=virtual/jdk-1.8"
-
-S="${WORKDIR}/${MY_PN}"
-
-RESTRICT="bindist fetch mirror"
-
-pkg_nofetch() {
-   elog "Please download ${A} from"
-   elog 
"https://www.infinitekind.com/download-moneydance-personal-finance-software";
-   elog "and place it in your DISTDIR directory."
-}
-
-src_prepare() {
-   default
-
-   # Modify .desktop file, to fix QA errors
-   sed -e 's/Application;//g' -e 's/.png//g' -i 
resources/moneydance.desktop || die
-}
-
-src_compile() {
-   :;
-}
-
-src_install() {
-   java-pkg_dojar jars/*.jar
-   java-pkg_dolauncher moneydance --main "Moneydance" --java_args "-client 
-Dawt.useSystemAAFontSettings=gasp -Dawt.useSystemAAFontSettings=on -Xmx1024m"
-
-   doicon resources/*.png
-   domenu resources/moneydance.desktop
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



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

2019-01-29 Thread Patrice Clement
commit: 32622353cf3ad9f59309bed9672b17b4e5edf0db
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Jan 27 17:55:24 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Jan 29 22:59:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32622353

app-vim/neocomplcache: stable for amd64+x86.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-vim/neocomplcache/neocomplcache-7.1-r1.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/app-vim/neocomplcache/neocomplcache-7.1-r1.ebuild 
b/app-vim/neocomplcache/neocomplcache-7.1-r1.ebuild
index ea0fa5e9873..11ff0bc2496 100644
--- a/app-vim/neocomplcache/neocomplcache-7.1-r1.ebuild
+++ b/app-vim/neocomplcache/neocomplcache-7.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,12 +8,11 @@ inherit vim-plugin
 DESCRIPTION="vim plugin: ultimate auto completion system"
 HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=2620";
 LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 VIM_PLUGIN_HELPFILES="${PN}.txt"
 
 src_prepare() {
default
-
mv autoload/vital.vim "autoload/${PN}vital.vim" || die
 }



[gentoo-commits] proj/qt:master commit in: dev-qt/qtsql/, dev-qt/qtwebchannel/, dev-qt/linguist-tools/, dev-qt/pixeltool/, ...

2019-01-29 Thread Jimi Huotari
commit: c85571101047ca5a01d2775bf4e8b2c4418b3099
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue Jan 29 22:54:33 2019 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Tue Jan 29 22:54:48 2019 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=c8557110

dev-qt: add 5.13.

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Jimi Huotari  gentoo.org>

 dev-qt/assistant/assistant-5.13..ebuild|  55 +++
 dev-qt/designer/designer-5.13..ebuild  |  57 +++
 .../linguist-tools/linguist-tools-5.13..ebuild |  35 +
 dev-qt/linguist/linguist-5.13..ebuild  |  48 ++
 dev-qt/pixeltool/pixeltool-5.13..ebuild|  25 +++
 dev-qt/qdbus/qdbus-5.13..ebuild|  25 +++
 dev-qt/qdbusviewer/qdbusviewer-5.13..ebuild|  45 ++
 dev-qt/qdoc/qdoc-5.13..ebuild  |  37 +
 dev-qt/qt3d/qt3d-5.13..ebuild  |  32 
 dev-qt/qtbluetooth/qtbluetooth-5.13..ebuild|  33 
 dev-qt/qtcharts/qtcharts-5.13..ebuild  |  29 
 dev-qt/qtconcurrent/qtconcurrent-5.13..ebuild  |  23 +++
 dev-qt/qtcore/qtcore-5.13..ebuild  |  84 ++
 dev-qt/qtdatavis3d/qtdatavis3d-5.13..ebuild|  31 
 dev-qt/qtdbus/qtdbus-5.13..ebuild  |  43 ++
 .../qtdeclarative/qtdeclarative-5.13..ebuild   |  64 
 dev-qt/qtdiag/qtdiag-5.13..ebuild  |  36 +
 dev-qt/qtgamepad/qtgamepad-5.13..ebuild|  35 +
 .../qtgraphicaleffects-5.13..ebuild|  21 +++
 dev-qt/qtgui/qtgui-5.13..ebuild| 172 +
 dev-qt/qthelp/qthelp-5.13..ebuild  |  28 
 .../qtimageformats/qtimageformats-5.13..ebuild |  29 
 dev-qt/qtlocation/qtlocation-5.13..ebuild  |  44 ++
 dev-qt/qtmultimedia/qtmultimedia-5.13..ebuild  |  68 
 dev-qt/qtnetwork/qtnetwork-5.13..ebuild|  60 +++
 .../qtnetworkauth/qtnetworkauth-5.13..ebuild   |  20 +++
 dev-qt/qtopengl/qtopengl-5.13..ebuild  |  34 
 dev-qt/qtpaths/qtpaths-5.13..ebuild|  23 +++
 dev-qt/qtplugininfo/qtplugininfo-5.13..ebuild  |  23 +++
 .../qtpositioning/qtpositioning-5.13..ebuild   |  40 +
 .../qtprintsupport/qtprintsupport-5.13..ebuild |  42 +
 .../qtquickcontrols-5.13..ebuild   |  32 
 .../qtquickcontrols2-5.13..ebuild  |  30 
 dev-qt/qtscript/qtscript-5.13..ebuild  |  36 +
 dev-qt/qtscxml/qtscxml-5.13..ebuild|  19 +++
 dev-qt/qtsensors/qtsensors-5.13..ebuild|  28 
 dev-qt/qtserialbus/qtserialbus-5.13..ebuild|  20 +++
 dev-qt/qtserialport/qtserialport-5.13..ebuild  |  27 
 dev-qt/qtspeech/qtspeech-5.13..ebuild  |  22 +++
 dev-qt/qtsql/qtsql-5.13..ebuild|  55 +++
 dev-qt/qtsvg/qtsvg-5.13..ebuild|  23 +++
 dev-qt/qttest/qttest-5.13..ebuild  |  33 
 .../qttranslations/qttranslations-5.13..ebuild |  19 +++
 .../qtvirtualkeyboard-5.13..ebuild |  42 +
 dev-qt/qtwayland/qtwayland-5.13..ebuild|  43 ++
 dev-qt/qtwebchannel/qtwebchannel-5.13..ebuild  |  26 
 dev-qt/qtwebengine/qtwebengine-5.13..ebuild| 137 
 dev-qt/qtwebsockets/qtwebsockets-5.13..ebuild  |  27 
 dev-qt/qtwebview/qtwebview-5.13..ebuild|  21 +++
 dev-qt/qtwidgets/qtwidgets-5.13..ebuild|  56 +++
 dev-qt/qtx11extras/qtx11extras-5.13..ebuild|  21 +++
 dev-qt/qtxml/qtxml-5.13..ebuild|  29 
 .../qtxmlpatterns/qtxmlpatterns-5.13..ebuild   |  21 +++
 53 files changed, 2108 insertions(+)

diff --git a/dev-qt/assistant/assistant-5.13..ebuild 
b/dev-qt/assistant/assistant-5.13..ebuild
new file mode 100644
index ..6d109d6a
--- /dev/null
+++ b/dev-qt/assistant/assistant-5.13..ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+QT5_MODULE="qttools"
+inherit desktop gnome2-utils qt5-build
+
+DESCRIPTION="Tool for viewing on-line documentation in Qt help file format"
+
+if [[ ${QT5_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~sparc ~x86"
+fi
+
+IUSE="webkit"
+
+DEPEND="
+   ~dev-qt/qtcore-${PV}
+   ~dev-qt/qtgui-${PV}
+   ~dev-qt/qthelp-${PV}
+   ~dev-qt/qtnetwork-${PV}
+   ~dev-qt/qtprintsupport-${PV}
+   ~dev-qt/qtsql-${PV}[sqlite]
+   ~dev-qt/qtwidgets-${PV}
+   webkit? ( >=dev-qt/qtwebkit-5.9.1:5 )
+"
+RDEPEND="${DEPEND}"
+
+QT5_TARGET_SUBDIRS=(
+   src/assistant/assistant
+)
+
+src_prepare() {
+   qt_use_disable_mod webkit webkitwidgets \
+   src/assistant/assistant/assistant.pro
+
+   qt5-build_src_prepare
+}
+
+src_install() {
+ 

[gentoo-commits] repo/user/ssnb:master commit in: net-nds/apachedirectorystudio/

2019-01-29 Thread Samuel Bernardo
commit: 90ff81e53a712f25ec6a359f74938d04b0723c50
Author: Samuel Bernardo  gmail  com>
AuthorDate: Tue Jan 29 22:54:54 2019 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Tue Jan 29 22:54:54 2019 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=90ff81e5

corect myarch to portage defined arch variable

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

 net-nds/apachedirectorystudio/Manifest |  1 +
 .../apachedirectorystudio-2.0.0.20180908-r1.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/net-nds/apachedirectorystudio/Manifest 
b/net-nds/apachedirectorystudio/Manifest
index 0474a88..4c0f979 100644
--- a/net-nds/apachedirectorystudio/Manifest
+++ b/net-nds/apachedirectorystudio/Manifest
@@ -1,3 +1,4 @@
 DIST ApacheDirectoryStudio-2.0.0.v20180908-M14-linux.gtk.x86.tar.gz 146593441 
BLAKE2B 
f72b595ee419a5141c1347e83592714cd5a0e8c23f0ca3cee1f80aeb1d62378241b7b8133723379f2e9d16fbb3367c2d680e59942845af45cf5fc06219938bea
 SHA512 
ea7eda032584a9ddd40a3b712eff5128a3263e0bb75c43cd70df3901516c1d563e510c2d649a4be2a3651e94ae2e3933ced11974c2bd0e5894685354a9562107
 DIST ApacheDirectoryStudio-2.0.0.v20180908-M14-linux.gtk.x86_64.tar.gz 
146704643 BLAKE2B 
192201af0525b52b00b0adafd149ea678978c07f59314801b58287f9b18e21027bc8857b70dd403573a0926ddeb7c447cbac5b3062bdf740807ea9edf60e5254
 SHA512 
47a00ea0bc646ea924ea3f55b6d48180bdd0d5c5ba41f70abf83e27f5244c4c82ab76cdeff44bc3dfd0bb802832f49bada3b58bcdaaacb62ea84f9beca7e2aad
+EBUILD apachedirectorystudio-2.0.0.20180908-r1.ebuild 1360 BLAKE2B 
7a6d63705a2a2a20382470d8a1e939531d41710777aaca09dc3a0e1c8a81edf82c672f99816e0c03c433a7e5677a04175dc0e197546402cc2ca77e027c5c3f1e
 SHA512 
01d96394f5879dcbf17b3f8797f3b9e593677eaf749df9f096b9e4a885f209727ea2fa15e1c47fa04849bd61cbd1884fe206b534470c843e6804d1ed01ab5139
 EBUILD apachedirectorystudio-2.0.0.20180908.ebuild 1343 BLAKE2B 
1856c0f2ed2f9a26d721e0bd58688a96b51fa920b69c102e88644e2ce8957677e2396ef642b08eb2aa8fc34da62d5da2c9d2597e32935b235d72f06604e0
 SHA512 
15be6d8441e554731664dbd9084c3086cd5a17a1ee8fac19b2d18eac4f97aa185581c64c5aa34a69477e4457c8419ec9cd00c450f9a08657f21c8e2a7c00

diff --git 
a/net-nds/apachedirectorystudio/apachedirectorystudio-2.0.0.20180908-r1.ebuild 
b/net-nds/apachedirectorystudio/apachedirectorystudio-2.0.0.20180908-r1.ebuild
new file mode 100644
index 000..c8aa4a9
--- /dev/null
+++ 
b/net-nds/apachedirectorystudio/apachedirectorystudio-2.0.0.20180908-r1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="6"
+
+inherit eutils versionator
+
+MY_PV=$(replace_version_separator 3 '.v')
+MY_PN="ApacheDirectoryStudio"
+MY_PKGM=14
+
+
+DESCRIPTION="Apache Directory Studio is an universal LDAP directory tool."
+SRC_URI="amd64? (
+   
"http://www.us.apache.org/dist/directory/studio/${MY_PV}-M${MY_PKGM}/${MY_PN}-${MY_PV}-M${MY_PKGM}-linux.gtk.x86_64.tar.gz";
+   )
+   x86? (
+   
"http://www.us.apache.org/dist/directory/studio/${MY_PV}-M${MY_PKGM}/${MY_PN}-${MY_PV}-M${MY_PKGM}-linux.gtk.x86.tar.gz";
+   )"
+HOMEPAGE="http://directory.apache.org/studio/";
+
+KEYWORDS="~amd64 ~x86"
+SLOT="2"
+LICENSE="Apache-2.0"
+IUSE=""
+
+DEPEND="!net-nds/Apache-DS" # obsolete ebuild name
+RDEPEND=">=virtual/jre-1.8.0
+   x11-libs/gtk+:2"
+
+#MY_ARCH="x86?  ( x86 ) amd64? ( amd64 )"
+MY_ARCH="$ARCH"
+INSTALL_DIR="/opt"
+S="${WORKDIR}/${MY_PN}-linux-${MY_ARCH}-${MY_PV}"
+
+src_install() {
+
+   insinto "${INSTALL_DIR}"
+   
+   newicon 
"${MY_PN}/features/org.apache.directory.studio.schemaeditor.feature_${MY_PV}-M${MY_PKGM}/studio.png"
 "${MY_PN}.png"
+   #newicon "${MY_PN}/icon.xpm" "${MY_PN}.xpm"
+   
+   make_desktop_entry "${MY_PN}" "Apache Directory Studio" "${MY_PN}" 
"System"
+   
+   doins -r *
+   
+   fperms +x "${INSTALL_DIR}/${MY_PN}/${MY_PN}"
+   
+   dosym "${INSTALL_DIR}/${MY_PN}/${MY_PN}" "/usr/bin/${MY_PN}"
+}



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

2019-01-29 Thread Andreas Sturmlechner
commit: 48122fc748758dab6a42c33ca28bbb9e33997634
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jan 29 22:53:57 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jan 29 22:53:57 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=48122fc7

kde-apps/khelpcenter: Don't install to obsolete kde4 services dir

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

 kde-apps/khelpcenter/khelpcenter-18.12.49..ebuild | 5 +
 kde-apps/khelpcenter/khelpcenter-.ebuild  | 5 +
 2 files changed, 10 insertions(+)

diff --git a/kde-apps/khelpcenter/khelpcenter-18.12.49..ebuild 
b/kde-apps/khelpcenter/khelpcenter-18.12.49..ebuild
index b34949262c..cb2c63d3ab 100644
--- a/kde-apps/khelpcenter/khelpcenter-18.12.49..ebuild
+++ b/kde-apps/khelpcenter/khelpcenter-18.12.49..ebuild
@@ -41,3 +41,8 @@ DEPEND="
 RDEPEND="${DEPEND}
$(add_plasma_dep kde-cli-tools)
 "
+
+src_prepare() {
+   kde5_src_prepare
+   sed -e "/^install.*kde4\/services/s/^/#DONT/" -i CMakeLists.txt || die
+}

diff --git a/kde-apps/khelpcenter/khelpcenter-.ebuild 
b/kde-apps/khelpcenter/khelpcenter-.ebuild
index c77444529e..75c2be3c7c 100644
--- a/kde-apps/khelpcenter/khelpcenter-.ebuild
+++ b/kde-apps/khelpcenter/khelpcenter-.ebuild
@@ -41,3 +41,8 @@ DEPEND="
 RDEPEND="${DEPEND}
$(add_plasma_dep kde-cli-tools)
 "
+
+src_prepare() {
+   kde5_src_prepare
+   sed -e "/^install.*kde4\/services/s/^/#DONT/" -i CMakeLists.txt || die
+}



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

2019-01-29 Thread Manuel Rüger
commit: 20c601f9dd6ad123174bb49d793f6ba3da1c40ff
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Jan 29 22:41:28 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Jan 29 22:41:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20c601f9

net-misc/cni-plugins: Stabilize on amd64

Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Manuel Rüger  gentoo.org>

 net-misc/cni-plugins/cni-plugins-0.7.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/cni-plugins/cni-plugins-0.7.4.ebuild 
b/net-misc/cni-plugins/cni-plugins-0.7.4.ebuild
index 33c40be3cbf..0fbcda6f954 100644
--- a/net-misc/cni-plugins/cni-plugins-0.7.4.ebuild
+++ b/net-misc/cni-plugins/cni-plugins-0.7.4.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
 inherit golang-vcs-snapshot
 
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 DESCRIPTION="Standard networking plugins for container networking"
 EGO_PN="github.com/containernetworking/plugins"
 HOMEPAGE="https://github.com/containernetworking/plugins";



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

2019-01-29 Thread Jeroen Roovers
commit: f235e9ffd8f304d93344a1e38407c634237f9fae
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jan 29 22:14:47 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jan 29 22:21:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f235e9ff

www-client/opera-developer: Old

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Jeroen Roovers  gentoo.org>

 www-client/opera-developer/Manifest|   1 -
 .../opera-developer-59.0.3206.0.ebuild | 116 -
 2 files changed, 117 deletions(-)

diff --git a/www-client/opera-developer/Manifest 
b/www-client/opera-developer/Manifest
index 42f6ace4bbd..9b7b905705f 100644
--- a/www-client/opera-developer/Manifest
+++ b/www-client/opera-developer/Manifest
@@ -1,3 +1,2 @@
-DIST opera-developer_59.0.3206.0_amd64.deb 72786094 BLAKE2B 
4bbecd0a0e9569259c17d54f0f47a1c80589c22c562033dae5253fef8078434b49efd5dcd8c5dc9ea5dea6c1c677f342c266a4a3486a5ed402eefbc8c65a7650
 SHA512 
a04ca66095ebb2057f80ffb421284f677f566b87c0d29a709921497a546445fa5db6644e95dd7a82b6bf3703f9c134b30efd75550c32057229fdad26334e43c3
 DIST opera-developer_59.0.3209.0_amd64.deb 72788730 BLAKE2B 
2553bb432040963fdb92484aa4c38d7d0fe9146c297cc725b97ccf842d886cbbfa24603068fb36d19ea26a3a4a014040e5d7038750222b4f30579068f21baa7d
 SHA512 
2d46ce04aeee887cdf85bbda4f29a62cd3fdc33f44a0ceebc0a6349c83d71128b083e0c9c8047f1ea7ea124b894dc5f4842b3ad2b154d9cd2717c0d10025f6f2
 DIST opera-developer_59.0.3211.0_amd64.deb 72210034 BLAKE2B 
6623abc0d3cc3a48fb21634f34801bf17768bbb646f9ebd9fed8002660f106f3f45de7b827725f105d9870c0c6897a5928d4afce8cac0eb522d698f1220dee5c
 SHA512 
53deed08e954c743d4e7b1d70dea66bc1ca60bb6037bd9b0929e90ef5402477af40742863a237f96d2b9ccc73fa69bce08efce9ffbcae9aa1fc2f6b00ea79018

diff --git a/www-client/opera-developer/opera-developer-59.0.3206.0.ebuild 
b/www-client/opera-developer/opera-developer-59.0.3206.0.ebuild
deleted file mode 100644
index d6081fb2869..000
--- a/www-client/opera-developer/opera-developer-59.0.3206.0.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-CHROMIUM_LANGS="
-   be bg bn ca cs da de el en-GB es es-419 fi fil fr fr-CA hi hr hu id it
-   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
-   zh-CN zh-TW
-"
-inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="https://www.opera.com/";
-LICENSE="OPERA-2014"
-SLOT="0"
-SRC_URI_BASE="
-   https://download1.operacdn.com/pub/
-   https://download2.operacdn.com/pub/
-   https://download3.operacdn.com/pub/
-   https://download4.operacdn.com/pub/
-"
-SRC_URI="amd64? ("
-for uri in ${SRC_URI_BASE}; do
-SRC_URI+="
-   "${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb"
-"
-done
-SRC_URI+=")"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gconf:2
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/libnotify
-   x11-libs/pango[X]
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-OPERA_HOME="usr/$(get_libdir)/${PN}"
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   epatch_user
-
-   case ${ARCH} in
-   amd64)
-   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
-   rm -r usr/lib || die
-   ;;
-   x86)
-   mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || 
die
-   ;;
-   esac
-
-   mv usr/share/doc/${PN} usr/share/doc/${PF} || die
-   gunzip usr/share/doc/${PF}/changelog.gz || die
-
-   rm usr/bin/${PN} || die
-
-   pushd "${OPERA_HOME}/localization" > /dev/null || die
-   chromium_remove_language_paks
-   popd > /dev/null || die
-
-   sed -i \
-   -e 's|^TargetEnvironment|X-&|g' \
-   usr/share/applications/${PN}.desktop || die
-}
-
-src_install() {
-   mv * "${D}" || die
-   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
-   fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-   xdg_desktop_dat

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

2019-01-29 Thread Jeroen Roovers
commit: 45ffba37f636e2c25c6c14f95153c79b6188a295
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jan 29 22:05:39 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jan 29 22:21:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45ffba37

www-client/opera-developer: Version 59.0.3211.0

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Jeroen Roovers  gentoo.org>

 www-client/opera-developer/Manifest|   1 +
 .../opera-developer-59.0.3211.0.ebuild | 116 +
 2 files changed, 117 insertions(+)

diff --git a/www-client/opera-developer/Manifest 
b/www-client/opera-developer/Manifest
index 230887d9e08..42f6ace4bbd 100644
--- a/www-client/opera-developer/Manifest
+++ b/www-client/opera-developer/Manifest
@@ -1,2 +1,3 @@
 DIST opera-developer_59.0.3206.0_amd64.deb 72786094 BLAKE2B 
4bbecd0a0e9569259c17d54f0f47a1c80589c22c562033dae5253fef8078434b49efd5dcd8c5dc9ea5dea6c1c677f342c266a4a3486a5ed402eefbc8c65a7650
 SHA512 
a04ca66095ebb2057f80ffb421284f677f566b87c0d29a709921497a546445fa5db6644e95dd7a82b6bf3703f9c134b30efd75550c32057229fdad26334e43c3
 DIST opera-developer_59.0.3209.0_amd64.deb 72788730 BLAKE2B 
2553bb432040963fdb92484aa4c38d7d0fe9146c297cc725b97ccf842d886cbbfa24603068fb36d19ea26a3a4a014040e5d7038750222b4f30579068f21baa7d
 SHA512 
2d46ce04aeee887cdf85bbda4f29a62cd3fdc33f44a0ceebc0a6349c83d71128b083e0c9c8047f1ea7ea124b894dc5f4842b3ad2b154d9cd2717c0d10025f6f2
+DIST opera-developer_59.0.3211.0_amd64.deb 72210034 BLAKE2B 
6623abc0d3cc3a48fb21634f34801bf17768bbb646f9ebd9fed8002660f106f3f45de7b827725f105d9870c0c6897a5928d4afce8cac0eb522d698f1220dee5c
 SHA512 
53deed08e954c743d4e7b1d70dea66bc1ca60bb6037bd9b0929e90ef5402477af40742863a237f96d2b9ccc73fa69bce08efce9ffbcae9aa1fc2f6b00ea79018

diff --git a/www-client/opera-developer/opera-developer-59.0.3211.0.ebuild 
b/www-client/opera-developer/opera-developer-59.0.3211.0.ebuild
new file mode 100644
index 000..d6081fb2869
--- /dev/null
+++ b/www-client/opera-developer/opera-developer-59.0.3211.0.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CHROMIUM_LANGS="
+   be bg bn ca cs da de el en-GB es es-419 fi fil fr fr-CA hi hr hu id it
+   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
+   zh-CN zh-TW
+"
+inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
+
+DESCRIPTION="A fast and secure web browser"
+HOMEPAGE="https://www.opera.com/";
+LICENSE="OPERA-2014"
+SLOT="0"
+SRC_URI_BASE="
+   https://download1.operacdn.com/pub/
+   https://download2.operacdn.com/pub/
+   https://download3.operacdn.com/pub/
+   https://download4.operacdn.com/pub/
+"
+SRC_URI="amd64? ("
+for uri in ${SRC_URI_BASE}; do
+SRC_URI+="
+   "${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb"
+"
+done
+SRC_URI+=")"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   gnome-base/gconf:2
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/libnotify
+   x11-libs/pango[X]
+"
+
+QA_PREBUILT="*"
+S=${WORKDIR}
+OPERA_HOME="usr/$(get_libdir)/${PN}"
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+src_prepare() {
+   epatch_user
+
+   case ${ARCH} in
+   amd64)
+   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
+   rm -r usr/lib || die
+   ;;
+   x86)
+   mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || 
die
+   ;;
+   esac
+
+   mv usr/share/doc/${PN} usr/share/doc/${PF} || die
+   gunzip usr/share/doc/${PF}/changelog.gz || die
+
+   rm usr/bin/${PN} || die
+
+   pushd "${OPERA_HOME}/localization" > /dev/null || die
+   chromium_remove_language_paks
+   popd > /dev/null || die
+
+   sed -i \
+   -e 's|^TargetEnvironment|X-&|g' \
+   usr/share/applications/${PN}.desktop || die
+}
+
+src_install() {
+   mv * "${D}" || die
+   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
+   fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
+}
+
+pkg_preinst() {
+   gnome2_icon_savelist
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+   xd

[gentoo-commits] proj/kde:master commit in: kde-apps/akonadi/, kde-apps/akonadi/files/

2019-01-29 Thread Andreas Sturmlechner
commit: c0b9ffd1e40c1db3ad006507826b7cefcd38ecf9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jan 29 22:01:58 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jan 29 22:01:58 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=c0b9ffd1

kde-apps/akonadi: Rebase mysql56 patch onto 18.12.2

Upstream commit a57dd124b3d231ad64f95529f24a3ad07a3c6f63

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

 kde-apps/akonadi/akonadi-18.12.49..ebuild  |  2 +-
 kde-apps/akonadi/akonadi-.ebuild   |  2 +-
 .../files/akonadi-17.03.80-mysql56-crash.patch | 40 --
 ...h.patch => akonadi-18.12.2-mysql56-crash.patch} |  0
 4 files changed, 2 insertions(+), 42 deletions(-)

diff --git a/kde-apps/akonadi/akonadi-18.12.49..ebuild 
b/kde-apps/akonadi/akonadi-18.12.49..ebuild
index 2b61792555..d99ac65c40 100644
--- a/kde-apps/akonadi/akonadi-18.12.49..ebuild
+++ b/kde-apps/akonadi/akonadi-18.12.49..ebuild
@@ -63,7 +63,7 @@ RDEPEND="${COMMON_DEPEND}
 # some akonadi tests time out, that probably needs more work as it's ~700 tests
 RESTRICT+=" test"
 
-PATCHES=( "${FILESDIR}/${PN}-17.03.80-mysql56-crash.patch" )
+PATCHES=( "${FILESDIR}/${PN}-18.12.2-mysql56-crash.patch" )
 
 pkg_setup() {
# Set default storage backend in order: MySQL, PostgreSQL, SQLite

diff --git a/kde-apps/akonadi/akonadi-.ebuild 
b/kde-apps/akonadi/akonadi-.ebuild
index 169ec3761b..36490bdf17 100644
--- a/kde-apps/akonadi/akonadi-.ebuild
+++ b/kde-apps/akonadi/akonadi-.ebuild
@@ -63,7 +63,7 @@ RDEPEND="${COMMON_DEPEND}
 # some akonadi tests time out, that probably needs more work as it's ~700 tests
 RESTRICT+=" test"
 
-PATCHES=( "${FILESDIR}/${PN}-19.03.80-mysql56-crash.patch" )
+PATCHES=( "${FILESDIR}/${PN}-18.12.2-mysql56-crash.patch" )
 
 pkg_setup() {
# Set default storage backend in order: MySQL, PostgreSQL, SQLite

diff --git a/kde-apps/akonadi/files/akonadi-17.03.80-mysql56-crash.patch 
b/kde-apps/akonadi/files/akonadi-17.03.80-mysql56-crash.patch
deleted file mode 100644
index 0b5e381b15..00
--- a/kde-apps/akonadi/files/akonadi-17.03.80-mysql56-crash.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-Gentoo-bug: 530012
-
-diff --git a/src/server/storage/dbconfigmysql.cpp 
b/src/server/storage/dbconfigmysql.cpp
-index 50421714d..dfae09c20 100644
 a/src/server/storage/dbconfigmysql.cpp
-+++ b/src/server/storage/dbconfigmysql.cpp
-@@ -81,6 +81,7 @@ bool DbConfigMysql::init(QSettings &settings)
-  << QStringLiteral("/usr/local/sbin")
-  << 
QStringLiteral("/usr/local/libexec")
-  << QStringLiteral("/usr/libexec")
-+ << 
QStringLiteral("/usr/share/mysql/scripts")
-  << 
QStringLiteral("/opt/mysql/libexec")
-  << 
QStringLiteral("/opt/local/lib/mysql5/bin")
-  << QStringLiteral("/opt/mysql/sbin");
-@@ -511,7 +512,7 @@ bool DbConfigMysql::initializeMariaDBDatabase(const 
QString &confFile, const QSt
- return 0 == execute(mMysqlInstallDbPath, {
- QStringLiteral("--defaults-file=%1").arg(confFile),
- QStringLiteral("--force"),
--QStringLiteral("--basedir=%1").arg(baseDir),
-+QStringLiteral("--basedir=/usr"),
- QStringLiteral("--datadir=%1/").arg(dataDir)
- });
- }
-@@ -525,6 +526,7 @@ bool DbConfigMysql::initializeMySQL5_7_6Database(const 
QString &confFile, const
- return 0 == execute(mMysqldPath, {
- QStringLiteral("--defaults-file=%1").arg(confFile),
- QStringLiteral("--initialize"),
-+QStringLiteral("--basedir=/usr"),
- QStringLiteral("--datadir=%1/").arg(dataDir)
- });
- }
-@@ -539,7 +541,7 @@ bool DbConfigMysql::initializeMySQLDatabase(const QString 
&confFile, const QStri
- // Don't use --force, it has been removed in MySQL 5.7.5
- return 0 == execute(mMysqlInstallDbPath, {
- QStringLiteral("--defaults-file=%1").arg(confFile),
--QStringLiteral("--basedir=%1").arg(baseDir),
-+QStringLiteral("--basedir=/usr"),
- QStringLiteral("--datadir=%1/").arg(dataDir)
- });
- }

diff --git a/kde-apps/akonadi/files/akonadi-19.03.80-mysql56-crash.patch 
b/kde-apps/akonadi/files/akonadi-18.12.2-mysql56-crash.patch
similarity index 100%
rename from kde-apps/akonadi/files/akonadi-19.03.80-mysql56-crash.patch
rename to kde-apps/akonadi/files/akonadi-18.12.2-mysql56-crash.patch



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

2019-01-29 Thread Sergei Trofimovich
commit: d21856c6b7ba9348121de36979d22d94fb0bfc16
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Jan 29 21:55:33 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jan 29 21:56:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d21856c6

dev-libs/elfutils: fix parsing of partial core, bug #676794

Reported-by: Demetris Nakos
Bug: https://bugs.gentoo.org/676794
Bug: https://sourceware.org/PR24103
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich  gentoo.org>

 ...utils-0.175.ebuild => elfutils-0.173-r1.ebuild} | 10 ---
 ...utils-0.175.ebuild => elfutils-0.175-r1.ebuild} |  7 +++--
 .../files/elfutils-0.173-partial-core.patch| 34 ++
 3 files changed, 45 insertions(+), 6 deletions(-)

diff --git a/dev-libs/elfutils/elfutils-0.175.ebuild 
b/dev-libs/elfutils/elfutils-0.173-r1.ebuild
similarity index 92%
copy from dev-libs/elfutils/elfutils-0.175.ebuild
copy to dev-libs/elfutils/elfutils-0.173-r1.ebuild
index 39a57eb90c1..0b41180c4eb 100644
--- a/dev-libs/elfutils/elfutils-0.175.ebuild
+++ b/dev-libs/elfutils/elfutils-0.173-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=6
 
 inherit flag-o-matic multilib-minimal
 
@@ -23,7 +23,10 @@ DEPEND="${RDEPEND}
>=sys-devel/flex-2.5.4a
sys-devel/m4"
 
-PATCHES=("${FILESDIR}"/${PN}-0.118-PaX-support.patch)
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.118-PaX-support.patch
+   "${FILESDIR}"/${PN}-0.173-partial-core.patch
+)
 
 src_prepare() {
default
@@ -31,7 +34,6 @@ src_prepare() {
if ! use static-libs; then
sed -i -e '/^lib_LIBRARIES/s:=.*:=:' -e '/^%.os/s:%.o$::' 
lib{asm,dw,elf}/Makefile.in || die
fi
-   # https://sourceware.org/PR23914
sed -i 's:-Werror::' */Makefile.in || die
 }
 

diff --git a/dev-libs/elfutils/elfutils-0.175.ebuild 
b/dev-libs/elfutils/elfutils-0.175-r1.ebuild
similarity index 92%
rename from dev-libs/elfutils/elfutils-0.175.ebuild
rename to dev-libs/elfutils/elfutils-0.175-r1.ebuild
index 39a57eb90c1..ad1c1988b46 100644
--- a/dev-libs/elfutils/elfutils-0.175.ebuild
+++ b/dev-libs/elfutils/elfutils-0.175-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -23,7 +23,10 @@ DEPEND="${RDEPEND}
>=sys-devel/flex-2.5.4a
sys-devel/m4"
 
-PATCHES=("${FILESDIR}"/${PN}-0.118-PaX-support.patch)
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.118-PaX-support.patch
+   "${FILESDIR}"/${PN}-0.173-partial-core.patch
+)
 
 src_prepare() {
default

diff --git a/dev-libs/elfutils/files/elfutils-0.173-partial-core.patch 
b/dev-libs/elfutils/files/elfutils-0.173-partial-core.patch
new file mode 100644
index 000..41ef14d6683
--- /dev/null
+++ b/dev-libs/elfutils/files/elfutils-0.173-partial-core.patch
@@ -0,0 +1,34 @@
+https://sourceware.org/PR24103
+https://bugs.gentoo.org/676794
+
+From da5c5336a1eaf519de246f7d9f0f5585e1d4ac59 Mon Sep 17 00:00:00 2001
+From: Mark Wielaard 
+Date: Sun, 20 Jan 2019 23:05:56 +0100
+Subject: [PATCH] libdwfl: Sanity check partial core file dyn data read.
+
+When reading the dyn data from the core file check if we got everything,
+or just part of the data.
+
+https://sourceware.org/bugzilla/show_bug.cgi?id=24103
+
+Signed-off-by: Mark Wielaard 
+---
+ libdwfl/dwfl_segment_report_module.c | 6 ++
+
+--- a/libdwfl/dwfl_segment_report_module.c
 b/libdwfl/dwfl_segment_report_module.c
+@@ -783,6 +783,12 @@ dwfl_segment_report_module (Dwfl *dwfl, int ndx, const 
char *name,
+   if (dyn_filesz != 0 && dyn_filesz % dyn_entsize == 0
+   && ! read_portion (&dyn_data, &dyn_data_size, dyn_vaddr, dyn_filesz))
+ {
++  /* dyn_data_size will be zero if we got everything from the initial
++ buffer, otherwise it will be the size of the new buffer that
++ could be read.  */
++  if (dyn_data_size != 0)
++  dyn_filesz = dyn_data_size;
++
+   void *dyns = malloc (dyn_filesz);
+   Elf32_Dyn (*d32)[dyn_filesz / sizeof (Elf32_Dyn)] = dyns;
+   Elf64_Dyn (*d64)[dyn_filesz / sizeof (Elf64_Dyn)] = dyns;
+-- 
+2.20.1



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

2019-01-29 Thread Sergei Trofimovich
commit: 1c8250dbfe994024de4d688efd11b4b7bffb9b61
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Jan 29 21:56:03 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jan 29 21:56:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c8250db

dev-libs/elfutils: drop old

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-libs/elfutils/Manifest  |  1 -
 dev-libs/elfutils/elfutils-0.172.ebuild | 66 -
 2 files changed, 67 deletions(-)

diff --git a/dev-libs/elfutils/Manifest b/dev-libs/elfutils/Manifest
index 9b133c08197..95dbb61dd1c 100644
--- a/dev-libs/elfutils/Manifest
+++ b/dev-libs/elfutils/Manifest
@@ -1,4 +1,3 @@
 DIST elfutils-0.170.tar.bz2 8358001 BLAKE2B 
03ea3ba7d3feaac43065312c475f4a3cd9083a6c56c9982fa00c0ed02b28440f6a37bbeca4be18db13749647ea1c8a6f00dae7efcb1c70235110e60ad7d56d06
 SHA512 
aca0b5e271138eaf86e36505ffb101181207b151e833e6cd7c18986ac50678542a5ecd2250f8dd6923ca497142f197c8b08fd225e4130b16b6203c24013d6d28
-DIST elfutils-0.172.tar.bz2 8601066 BLAKE2B 
7d4cb9944bfc258ba46312e8a4dde491f9d8fb4fa27837f6df0993107256f76e79ce02ea5872475a70ff9ebe9093e39bddf1c807be2af4bf0f6f5429f446a1ce
 SHA512 
b2f491e976ef3067fe33ad22b3ef1952c47557571747899e94aee601bfeb95e8e1a91daad80a7950bee7feb42192769663db32eb65734ea5ffbc0b87cdad76b2
 DIST elfutils-0.173.tar.bz2 8684782 BLAKE2B 
c5905bb864059bdfb2699a0681a0ec576b6b8da444b0641e8184f58735084588910930bcca14583db6be75b24a0e374413911ded5ba2ca893798404fbe7374eb
 SHA512 
7f38e4ce2098b685f15030bf01f0a66a74aa32fbfcead0304c1d0e0a929b348a72f99e685cd4605465f4337393382112f64b8847e6c2f7cc1a57a4fd03d03eb3
 DIST elfutils-0.175.tar.bz2 8786600 BLAKE2B 
d6d4ade37741da788c6c2eec9688c6f8ac9707e0b17e0518398972dab3cf77a70cc82346c2e37b41f0ea414b9a1e925a7567567fcf43d504d75c92971ab25f5d
 SHA512 
2c3168a34bbc8f22425faa263fc24ec50df39258a4f9ace4e6cd88e9764c435fee70c1a82db8273dbab70a75e5216a200bebf05af1d3ea77e444e35d71a4ed84

diff --git a/dev-libs/elfutils/elfutils-0.172.ebuild 
b/dev-libs/elfutils/elfutils-0.172.ebuild
deleted file mode 100644
index 06de183c001..000
--- a/dev-libs/elfutils/elfutils-0.172.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit flag-o-matic multilib-minimal
-
-DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement 
for libelf)"
-HOMEPAGE="http://elfutils.org/";
-SRC_URI="https://sourceware.org/elfutils/ftp/${PV}/${P}.tar.bz2";
-
-LICENSE="|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ )"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="bzip2 lzma nls static-libs test +threads +utils"
-
-RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
-   bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] )
-   lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] )
-   !dev-libs/libelf"
-DEPEND="${RDEPEND}
-   nls? ( sys-devel/gettext )
-   >=sys-devel/flex-2.5.4a
-   sys-devel/m4"
-
-PATCHES=("${FILESDIR}"/${PN}-0.118-PaX-support.patch)
-
-src_prepare() {
-   default
-
-   if ! use static-libs; then
-   sed -i -e '/^lib_LIBRARIES/s:=.*:=:' -e '/^%.os/s:%.o$::' 
lib{asm,dw,elf}/Makefile.in || die
-   fi
-   sed -i 's:-Werror::' */Makefile.in || die
-}
-
-src_configure() {
-   use test && append-flags -g #407135
-   multilib-minimal_src_configure
-}
-
-multilib_src_configure() {
-   ECONF_SOURCE="${S}" econf \
-   $(use_enable nls) \
-   $(use_enable threads thread-safety) \
-   --program-prefix="eu-" \
-   --with-zlib \
-   $(use_with bzip2 bzlib) \
-   $(use_with lzma)
-}
-
-multilib_src_test() {
-   env 
LD_LIBRARY_PATH="${BUILD_DIR}/libelf:${BUILD_DIR}/libebl:${BUILD_DIR}/libdw:${BUILD_DIR}/libasm"
 \
-   LC_ALL="C" \
-   emake check VERBOSE=1
-}
-
-multilib_src_install_all() {
-   einstalldocs
-   dodoc NOTES
-   # These build quick, and are needed for most tests, so don't
-   # disable their building when the USE flag is disabled.
-   if ! use utils; then
-   rm -rf "${ED}"/usr/bin || die
-   fi
-}



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

2019-01-29 Thread Thomas Deutschmann
commit: 470d110d2c3c77a403e24188ada9aa2918b50653
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jan 29 21:46:11 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jan 29 21:50:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=470d110d

mail-client/thunderbird: bump to v60.5.0

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

 mail-client/thunderbird/Manifest  |  55 +++
 mail-client/thunderbird/thunderbird-60.5.0.ebuild | 561 ++
 2 files changed, 616 insertions(+)

diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest
index 8099f235159..cb7c76755cc 100644
--- a/mail-client/thunderbird/Manifest
+++ b/mail-client/thunderbird/Manifest
@@ -1,5 +1,6 @@
 DIST firefox-52.5-patches-02.tar.xz 15084 BLAKE2B 
538dd61dbb7b290add4782b323a62f9ab4dbc57326a9a085710d207752118c504eb030a8741c1eed2e281c8d18e5453210b1905d71439250caa588137bbc37d0
 SHA512 
b80f9acaf49226cd5c2864714826c5b0e7e918e94c31ec81521b90c47edbb88ea85faa34fc22791efefbcd3867ddc413c563de58ca0f8ce21e10a3858899efce
 DIST firefox-60.0-patches-04.tar.xz 120496 BLAKE2B 
4b4fd58a91d8fd9603c3a7bdb669f275f7cbd7b9add7c790a2e326f46a540e77a390e9da3f85e81feee8e5354cb25c93e140fb2f721cdcd0fe197b7c24ea0091
 SHA512 
d8aaa1fafe22dcef8cba609ba6e2d322c18b46f4d3b91897696651958108f887510a068295b55bb21d84b660bbe7574a6533a57d8e26f96d2877139864dba828
+DIST firefox-60.5-patches-01.tar.xz 13332 BLAKE2B 
53308d415369c6814504697ed9692023e636c42b58053867fd14e8edd94baa2777ed9f33e147f796d6fcd5f30c1d2258f9fd3247392e37a921a53f41a6903e92
 SHA512 
de24544c5aa8ade35e4e3e0fac10399f8eb44ea4bb9063b85bbcf2db12280d23ccc5fd29032f33f3723c0a0c3c2381429e2c19bd631e90615908b4f68f745a21
 DIST gdata-provider-3.3.tar.xz 85628 BLAKE2B 
2ccde620b181a2d8678f50d7107373886f3b2e7d1d1e8861c4e42602cedb02108d28e0bf5e5cd9e31474356b70cb99baa7870e20436bc72e25cd8a8fc1353d14
 SHA512 
ae0c0e6fd42d6e7088256ca8a4be5b0bac84b2f331b51afdc982354caef60b6ba631d4f76bfba7523000b49235c8f8c63704d90acf24b34b14696b709be9342b
 DIST gdata-provider-4.4.1.tar.xz 78728 BLAKE2B 
bfe04d714334c38c932d2186ffd859583176ef455b283534c5f8f9e1ab7dc13bdfb8c15db6007de482ab015afc2b8524aad725380bec75ee5f59ea81d6307ba9
 SHA512 
6c9b5ac41a1064bd1799d2a2f633c3064b27f1294ac3c8908cdef6c1d2eea7b602f2f7bf240b71f507fe9ad286588f030e12f49a41b3bed7bbcc99f3021369f9
 DIST lightning-5.4.9.tar.xz 1891752 BLAKE2B 
90b777814db2962ff669430cea5a29ba1612a842fbb0edaca597539e6e2d728a9d90114ec6196fe0d4758a4738a15bc0c985a345e1062cb125617eb84ecf79e1
 SHA512 
8e54865d50118154c3918d5dec5dade4fb026c24bc697ad2e360db9741509cbdbb71ba9477508a9b209be6c8a8190fb0b5e03d2e8fedcc2cae18f5c9e5a3a496
@@ -116,3 +117,57 @@ DIST thunderbird-60.4.0-vi.xpi 638420 BLAKE2B 
3b081a405cbbef4b7401628052e6a8cd35
 DIST thunderbird-60.4.0-zh-CN.xpi 622465 BLAKE2B 
a67a0e99d35a1eae51f2eee63cdc813c37dbc7987c96f6bfa836f27680fdb9539410377387993d958a59e9cb691f95920d0a6d485b0f321ded6167d6c4e751c9
 SHA512 
25d996d302a32eb837345626a848d83c4a7c59f2d0a21b08c6a67e34e71b51d975553c7845f4f9a1a344d9a958045ed06349a55d86536aad9621d0b5662a23bb
 DIST thunderbird-60.4.0-zh-TW.xpi 626189 BLAKE2B 
51a6efb083d9f8cc8d0caf98ecab691cbfafefa1b091d66ea05f63b473b4f58986c653dedb5cfbc19836375a3907a95dd2dbaac7c06f266d7a7195a96086b22c
 SHA512 
6c78a9c4f336e8ae322690ed06179195c2d230faaa0e7406c23008402e9c6a6df414ac103563d82cbecbdbbadbfc91e6694d0966206c54c4767a24a4cf4a8849
 DIST thunderbird-60.4.0.source.tar.xz 284938284 BLAKE2B 
aedfb71f0c2a34384777098748fb2bd3bc2b15571c46f366be9b91154630b37bdd86fbf3d4a9fc3d79aea7092abc4187392864968d8caf594d346599058d7b0a
 SHA512 
084becec870ad1449196110ecd2d2cc397c32d9d5a682f3cf45a170b7bdf5c2197299a72034965e838af62534df870de5a46d49fd0d05a9c4c7fdf5e408e471d
+DIST thunderbird-60.5.0-ar.xpi 627179 BLAKE2B 
7f6b8cffd759c9b4520ce0d53844320dfb57ef05b0ef65957e681e700d20fcfbe64efed607efc2fb3144485d5637a29b1044dab6c56b5136f385d9e038dfc8b2
 SHA512 
60ea5813e8c4d9701e1359552cb3de969374902316d1c4f132fd0f7a4671b199245d02f08b25cf87315ca6b78f978838f6f20843dee31731a501dbe56b89467f
+DIST thunderbird-60.5.0-ast.xpi 559643 BLAKE2B 
026891e05f09f8444bb67689f5d39727645cc809f052166f0bd61d29c4bd1170cb3b8fa23544316997a912d494041afc2d17d2169102fc6c623167e605607d43
 SHA512 
4db0e0d348783532740be9d88634766b3baa4ddd571525ef143fcee9d350468af81e2e1bded6d25e9b2640151450061402a660b3a0abaf6de68e0584edafc66f
+DIST thunderbird-60.5.0-be.xpi 659079 BLAKE2B 
7d4f6ca2b4bdc8e8df419c9bea19b470ab9d360095fbb332173dd63540aa4482db751d33f34147a433d64a3f867e9a7713b70cba2518c4b437b7394db7bf05d3
 SHA512 
b3a5fcabd83c8a1cfa51d0d1ae6f711bd57ca33726d896d4b10a59f70f3372c2fe6706bc4e78d1671507157024adedd6580c664162a696ade2552f8cfade4ddb
+DIST thunderbird-60.5.0-bg.xpi 669318 BLAKE2B 
e4b166de167c1005381b0d111d1f039dfd5d011438c0e4ae9e0a123e447d236f5fde76746c92448d436d064889418ec8ee39d4cc9547e7c4583bed184d098037
 SHA512 
4e7120e02210db51d530e779a872f7a1358db6556006f3372b79d84bf2d276f98cb08

[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird-bin/

2019-01-29 Thread Thomas Deutschmann
commit: d6b49bb1a4a850b5c2e272b6fa609e19d19c8f03
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jan 29 21:50:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jan 29 21:50:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6b49bb1

mail-client/thunderbird-bin: bump to v60.5.0

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

 mail-client/thunderbird-bin/Manifest   |  55 ++
 .../thunderbird-bin/thunderbird-bin-60.5.0.ebuild  | 187 +
 2 files changed, 242 insertions(+)

diff --git a/mail-client/thunderbird-bin/Manifest 
b/mail-client/thunderbird-bin/Manifest
index aa0269aaf58..969361cbeaf 100644
--- a/mail-client/thunderbird-bin/Manifest
+++ b/mail-client/thunderbird-bin/Manifest
@@ -109,7 +109,62 @@ DIST thunderbird-60.4.0-uk.xpi 684154 BLAKE2B 
11c6dc427422ef2b13e47cdd1265bd8c9d
 DIST thunderbird-60.4.0-vi.xpi 638420 BLAKE2B 
3b081a405cbbef4b7401628052e6a8cd35307f5bc2fea44190dd0775aaf5ab0e8895aaade89c395e6b497e86d1d1718517b7afed8fefed7ce98f32f07dc5a786
 SHA512 
e4a12334e86fb3a6930716d306d1f7535ead42b93fcde31b226746fb04239cbb88fba81b06d1756583975628d2478629d68e977ef6c355ca3f3e0d8a6d341d23
 DIST thunderbird-60.4.0-zh-CN.xpi 622465 BLAKE2B 
a67a0e99d35a1eae51f2eee63cdc813c37dbc7987c96f6bfa836f27680fdb9539410377387993d958a59e9cb691f95920d0a6d485b0f321ded6167d6c4e751c9
 SHA512 
25d996d302a32eb837345626a848d83c4a7c59f2d0a21b08c6a67e34e71b51d975553c7845f4f9a1a344d9a958045ed06349a55d86536aad9621d0b5662a23bb
 DIST thunderbird-60.4.0-zh-TW.xpi 626189 BLAKE2B 
51a6efb083d9f8cc8d0caf98ecab691cbfafefa1b091d66ea05f63b473b4f58986c653dedb5cfbc19836375a3907a95dd2dbaac7c06f266d7a7195a96086b22c
 SHA512 
6c78a9c4f336e8ae322690ed06179195c2d230faaa0e7406c23008402e9c6a6df414ac103563d82cbecbdbbadbfc91e6694d0966206c54c4767a24a4cf4a8849
+DIST thunderbird-60.5.0-ar.xpi 627179 BLAKE2B 
7f6b8cffd759c9b4520ce0d53844320dfb57ef05b0ef65957e681e700d20fcfbe64efed607efc2fb3144485d5637a29b1044dab6c56b5136f385d9e038dfc8b2
 SHA512 
60ea5813e8c4d9701e1359552cb3de969374902316d1c4f132fd0f7a4671b199245d02f08b25cf87315ca6b78f978838f6f20843dee31731a501dbe56b89467f
+DIST thunderbird-60.5.0-ast.xpi 559643 BLAKE2B 
026891e05f09f8444bb67689f5d39727645cc809f052166f0bd61d29c4bd1170cb3b8fa23544316997a912d494041afc2d17d2169102fc6c623167e605607d43
 SHA512 
4db0e0d348783532740be9d88634766b3baa4ddd571525ef143fcee9d350468af81e2e1bded6d25e9b2640151450061402a660b3a0abaf6de68e0584edafc66f
+DIST thunderbird-60.5.0-be.xpi 659079 BLAKE2B 
7d4f6ca2b4bdc8e8df419c9bea19b470ab9d360095fbb332173dd63540aa4482db751d33f34147a433d64a3f867e9a7713b70cba2518c4b437b7394db7bf05d3
 SHA512 
b3a5fcabd83c8a1cfa51d0d1ae6f711bd57ca33726d896d4b10a59f70f3372c2fe6706bc4e78d1671507157024adedd6580c664162a696ade2552f8cfade4ddb
+DIST thunderbird-60.5.0-bg.xpi 669318 BLAKE2B 
e4b166de167c1005381b0d111d1f039dfd5d011438c0e4ae9e0a123e447d236f5fde76746c92448d436d064889418ec8ee39d4cc9547e7c4583bed184d098037
 SHA512 
4e7120e02210db51d530e779a872f7a1358db6556006f3372b79d84bf2d276f98cb084b43b9ab2c87093ea69bc1d833113792fe4058b87b9b1ede46d87db34bf
+DIST thunderbird-60.5.0-br.xpi 580371 BLAKE2B 
e1a01e7ff5a20a7806fc9b75386b9808d60bd8c2ec64701e3d2c261cd3e0ac6fe8f63e89f86d004d3029996da3d73718fa1042e4814d852ef79555a4f121e45b
 SHA512 
252e7f17c4b115127ba642dde02c09946516c799a96ed1830960deddf216c5ba51f961735273d12077e90df324eb732e23532d5749ac47ef923ced830e2a275a
+DIST thunderbird-60.5.0-ca.xpi 591971 BLAKE2B 
c4b20b7b80eaeed0bb4afb9d42fd2f2b79477348a99fd651ba7974e9cc1476267693f50aa1cff48a7fa912fbcf554a501a4f6380ddad046c2d84726749bd4d8a
 SHA512 
28ee3307ae33ab4ce6d0b71378a8bdbf2a5070f43b7271a40e532e255ec3c71a6556a403ca4c498c2d886cedccf4046c27442fc1e5001177fdee299b5cd03226
+DIST thunderbird-60.5.0-cs.xpi 611203 BLAKE2B 
fb13c8d8954ab8086efe2aa3ef702fe6accdc5f9b2bb06735553f5d2ad10cd04e39bae8381d66e89936ecd35ff698292719b1ece3f0ba07a1173d65410a9bec9
 SHA512 
662383c0bfd13c440079a2462f9a8621e80d4fbceb488e9c18d13569ae10c4dfc4a6f0b6eccfd6dce20c9b22cf10bb5ab70e8b6eb763002d7fba2a03f93a69fd
+DIST thunderbird-60.5.0-cy.xpi 586038 BLAKE2B 
9aefdcd8434931c8adddcd62324d62a9deca1d220a67d9a2c53bcce6a8ab0f0a111c69e33dfbaa99a307ac4d903584acff3bd02116be35ef5de1f4ac644c046e
 SHA512 
e0031700cd628425aec0e8b5eaec2dbfd1e00a8b16681a611a21962e7c45812c8d33c1899118c32f4b704e56a62cfac44eae3685dac7d85594b80d873340f6da
+DIST thunderbird-60.5.0-da.xpi 570807 BLAKE2B 
48c5eb1f770ac8a85e36f1bfdbd254a0e86330484cdf5d6ea1facc9aed5d9884683b4c999f73ca640a1970fcce54583f78ba61f4257459f3adcd48e5f1792c86
 SHA512 
2024090a092139e17b36ff7a7411d76ba28c8e1532f0a3b432008810a29db8f4845cfbafbea095abc50aaa2a4ade32122635a8bdfff62c7ff40029266b3395be
+DIST thunderbird-60.5.0-de.xpi 582575 BLAKE2B 
01bf92a1162ee647616b37e2e608372147dd77e7dd462278511b49f91c38f294101e11d2bc1a109ad382fff962e73d320a18d337bbcb170fca40d1da095c2670
 SHA512 
5c5a8f1391b01068ad51f27746639fe9f0a9c53713f2b6b0c55e559b5d822cbf80ce8e7bf180ead73

[gentoo-commits] proj/gcc-patches:master commit in: 8.2.0/gentoo/

2019-01-29 Thread Sergei Trofimovich
commit: 1dfeaca5c52a5a266c7045622362a7c1da0eefc0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Jan 29 20:23:04 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jan 29 20:23:04 2019 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=1dfeaca5

8.2.0: backport ipa/devirt bad code generation, bug #676672

Reported-by: Thomas Deutschmann
Bug: https://bugs.gentoo.org/676672
Signed-off-by: Sergei Trofimovich  gentoo.org>

 8.2.0/gentoo/116_all_ipa-pgo-PR88561-fix.patch | 115 +
 8.2.0/gentoo/README.history|   3 +
 2 files changed, 118 insertions(+)

diff --git a/8.2.0/gentoo/116_all_ipa-pgo-PR88561-fix.patch 
b/8.2.0/gentoo/116_all_ipa-pgo-PR88561-fix.patch
new file mode 100644
index 000..5cc4cc0
--- /dev/null
+++ b/8.2.0/gentoo/116_all_ipa-pgo-PR88561-fix.patch
@@ -0,0 +1,115 @@
+https://gcc.gnu.org/PR88561
+https://bugs.gentoo.org/676672
+
+From 497651ff19a85affaf1273b827db6920384af77d Mon Sep 17 00:00:00 2001
+From: marxin 
+Date: Thu, 27 Dec 2018 12:33:00 +
+Subject: [PATCH] Backport r267338
+
+2018-12-27  Martin Liska  
+
+   Backport from mainline
+   2018-12-15  Jan Hubicka  
+
+   PR ipa/88561
+   * ipa-polymorphic-call.c
+   (ipa_polymorphic_call_context::ipa_polymorphic_call_context): Handle
+   arguments of thunks correctly.
+   (ipa_polymorphic_call_context::get_dynamic_context): Be ready for
+   NULL instance pinter.
+   * lto-cgraph.c (lto_output_node): Always stream thunk info.
+
+git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-8-branch@267433 
138bc75d-0d04-0410-961f-82ee72b054a4
+---
+ gcc/ipa-polymorphic-call.c  |  32 +-
+ gcc/lto-cgraph.c|   8 +-
+
+--- a/gcc/ipa-polymorphic-call.c
 b/gcc/ipa-polymorphic-call.c
+@@ -995,9 +995,22 @@ 
ipa_polymorphic_call_context::ipa_polymorphic_call_context (tree fndecl,
+   {
+ outer_type
+= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (base_pointer)));
++cgraph_node *node = cgraph_node::get (current_function_decl);
+ gcc_assert (TREE_CODE (outer_type) == RECORD_TYPE
+ || TREE_CODE (outer_type) == UNION_TYPE);
+ 
++/* Handle the case we inlined into a thunk.  In this case
++   thunk has THIS pointer of type bar, but it really receives
++   address to its base type foo which sits in bar at
++   0-thunk.fixed_offset.  It starts with code that adds
++   think.fixed_offset to the pointer to compensate for this.
++
++   Because we walked all the way to the begining of thunk, we now
++   see pointer &bar-thunk.fixed_offset and need to compensate
++   for it.  */
++if (node->thunk.fixed_offset)
++  offset -= node->thunk.fixed_offset * BITS_PER_UNIT;
++
+ /* Dynamic casting has possibly upcasted the type
+in the hiearchy.  In this case outer type is less
+informative than inner type and we should forget
+@@ -1005,7 +1018,11 @@ 
ipa_polymorphic_call_context::ipa_polymorphic_call_context (tree fndecl,
+ if ((otr_type
+  && !contains_type_p (outer_type, offset,
+   otr_type))
+-|| !contains_polymorphic_type_p (outer_type))
++|| !contains_polymorphic_type_p (outer_type)
++/* If we compile thunk with virtual offset, the THIS pointer
++   is adjusted by unknown value.  We can't thus use outer info
++   at all.  */
++|| node->thunk.virtual_offset_p)
+   {
+ outer_type = NULL;
+ if (instance)
+@@ -1030,7 +1047,15 @@ 
ipa_polymorphic_call_context::ipa_polymorphic_call_context (tree fndecl,
+ maybe_in_construction = false;
+   }
+ if (instance)
+-  *instance = base_pointer;
++  {
++/* If method is expanded thunk, we need to apply thunk offset
++   to instance pointer.  */
++if (node->thunk.virtual_offset_p
++|| node->thunk.fixed_offset)
++  *instance = NULL;
++else
++  *instance = base_pointer;
++  }
+ return;
+   }
+   /* Non-PODs passed by value are really passed by invisible
+@@ -1547,6 +1572,9 @@ ipa_polymorphic_call_context::get_dynamic_type (tree 
instance,
+   HOST_WIDE_INT instance_offset = offset;
+   tree instance_outer_type = outer_type;
+ 
++  if (!instance)
++return false;
++
+   if (otr_type)
+ otr_type = TYPE_MAIN_VARIANT (otr_type);
+ 
+--- a/gcc/lto-cgraph.c
 b/gcc/lto-cgraph.c
+@@ -546,7 +546,11 @@ lto_output_node (struct lto_simple_output_block *ob, 
struct cgraph_node *node,
+   streamer_write_bitpack (&bp);
+   streamer_write_data_stream (ob->main_stream, section, strlen (section) + 1);
+ 
+-  if (node->thunk.thunk_p)
++  /* Stream thunk info always because we use it in
++ 

[gentoo-commits] repo/gentoo:master commit in: profiles/, gnome-extra/gtkhtml/files/, gnome-extra/gtkhtml/

2019-01-29 Thread Dennis Lamm
commit: 6db1cfeb695624be1aea007bc691c7252f74a95b
Author: Dennis Lamm  gentoo  org>
AuthorDate: Tue Jan 29 20:16:16 2019 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Tue Jan 29 20:18:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6db1cfeb

gnome-extra/gtkhtml: added revision with enchant-2 compatibility

Signed-off-by: Dennis Lamm  gentoo.org>

 gnome-extra/gtkhtml/files/enchant-2.patch| 35 +++
 gnome-extra/gtkhtml/gtkhtml-4.10.0-r1.ebuild | 52 
 profiles/package.mask|  4 +++
 3 files changed, 91 insertions(+)

diff --git a/gnome-extra/gtkhtml/files/enchant-2.patch 
b/gnome-extra/gtkhtml/files/enchant-2.patch
new file mode 100644
index 000..c1afe677c66
--- /dev/null
+++ b/gnome-extra/gtkhtml/files/enchant-2.patch
@@ -0,0 +1,35 @@
+diff --git a/components/editor/gtkhtml-spell-checker.c 
b/components/editor/gtkhtml-spell-checker.c
+index 0927f57..89e9873 100644
+--- a/components/editor/gtkhtml-spell-checker.c
 b/components/editor/gtkhtml-spell-checker.c
+@@ -375,7 +375,7 @@ gtkhtml_spell_checker_add_word (GtkhtmlSpellChecker 
*checker,
+   if ((dict = spell_checker_request_dict (checker)) == NULL)
+   return;
+ 
+-  enchant_dict_add_to_pwl (dict, word, length);
++  enchant_dict_add (dict, word, length);
+   g_signal_emit (G_OBJECT (checker), signals[ADDED], 0, word, length);
+ }
+ 
+diff --git a/configure.ac b/configure.ac
+index e4946aa..e5771e3 100644
+--- a/configure.ac
 b/configure.ac
+@@ -10,7 +10,7 @@ PACKAGE=gtkhtml
+ 
+ dnl Required Package Versions
+ m4_define([gtk_minimum_version], [3.2.0])
+-m4_define([enchant_minimum_version], [1.1.7])
++m4_define([enchant_minimum_version], [2.0.0])
+ m4_define([cairo_minimum_version], [1.10.0])
+ 
+ GTKHTML_API_VERSION=4.0
+@@ -140,7 +140,7 @@ AC_SUBST(GAIL_MODULES)
+ dnl **
+ dnl GTKHTML modules
+ dnl **
+-GTKHTML_MODULES="gtk+-3.0 >= gtk_minimum_version enchant >= 
enchant_minimum_version gsettings-desktop-schemas iso-codes cairo >= 
cairo_minimum_version"
++GTKHTML_MODULES="gtk+-3.0 >= gtk_minimum_version enchant-2 >= 
enchant_minimum_version gsettings-desktop-schemas iso-codes cairo >= 
cairo_minimum_version"
+ PKG_CHECK_MODULES(GTKHTML, $GTKHTML_MODULES)
+ AC_SUBST(GTKHTML_CFLAGS)
+ AC_SUBST(GTKHTML_LIBS)

diff --git a/gnome-extra/gtkhtml/gtkhtml-4.10.0-r1.ebuild 
b/gnome-extra/gtkhtml/gtkhtml-4.10.0-r1.ebuild
new file mode 100644
index 000..50c27673527
--- /dev/null
+++ b/gnome-extra/gtkhtml/gtkhtml-4.10.0-r1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit autotools gnome2
+
+DESCRIPTION="Lightweight HTML rendering/printing/editing engine"
+HOMEPAGE="https://git.gnome.org/browse/gtkhtml";
+
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="4.0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
+IUSE=""
+
+# orbit is referenced in configure, but is not used anywhere else
+RDEPEND="
+   >=x11-libs/gtk+-3.2:3
+   >=x11-libs/cairo-1.10:=
+   x11-libs/pango
+   >=app-text/enchant-2.0.0
+   gnome-base/gsettings-desktop-schemas
+   >=app-text/iso-codes-0.49
+   >=net-libs/libsoup-2.26.0:2.4
+"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto
+   sys-devel/gettext
+   dev-util/glib-utils
+   >=dev-util/intltool-0.40.0
+   virtual/pkgconfig
+"
+
+PATCHES=(
+"${FILESDIR}"/enchant-2.patch
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   gnome2_src_configure --disable-static
+}
+
+src_install() {
+   gnome2_src_install
+
+   # Don't collide with 3.14 slot
+   mv "${ED}"/usr/bin/gtkhtml-editor-test{,-${SLOT}} || die
+}

diff --git a/profiles/package.mask b/profiles/package.mask
index e63e00e2ece..556e390f4e1 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Dennis Lamm  (29 Jan 2019)
+# Depends on >=app-text/enchant-2.0.0 which is masked
+=gnome-extra/gtkhtml-4.10.0-r1
+
 # Dennis Lamm  (28 Jan 2019)
 # Depends on >=app-text/enchant-2.0.0 which is masked
 >=app-text/gtkspell-3.0.10



[gentoo-commits] repo/user/superposition:master commit in: dev-ml/obus/

2019-01-29 Thread Philip Miess
commit: 35a33884a9fb6cffcfc2f09b4c97193788de2916
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Jan 29 20:18:09 2019 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Jan 29 20:18:09 2019 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=35a33884

no it doesnt, maybe it needs findlib

Signed-off-by: Philip Miess  yahoo.com>

 dev-ml/obus/Manifest  | 2 +-
 dev-ml/obus/obus-1.1.8.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ml/obus/Manifest b/dev-ml/obus/Manifest
index 65378d0..88931b2 100644
--- a/dev-ml/obus/Manifest
+++ b/dev-ml/obus/Manifest
@@ -1,5 +1,5 @@
 DIST obus-1.1.8.tar.gz 169409 BLAKE2B 
9dad35a4a5cc7a22ced1c03d43f754fa5efc26a0bcf152012814cfedffc8eda41feebff5602353430c3830c43243d3b1df211377642355d0fc2102d15d7218cd
 SHA512 
2ec07ec5681a0faa2e6e5da66ffa53664bf6fe725303ad3097302256ff8a6a8114fb7ff7916cc7c41123d4304493edff926931856b61044273a1027220205e82
 DIST obus-1.1.tar.gz 402352 BLAKE2B 
577372b59d5ed2d752af1143c04f92e66e142172a4bdc0d08647b998352eafb3df66681287eb5dcf4854c62b1cc815d2c72052aad819aea386753baba5176d77
 SHA512 
be7e4e02ae2c6c3df3a69cdde2de7a02dd22e078cc5e997a2c4497bfaa2461c765edccbe995beb23b8671a7b3ffdbc1d05522073cd66550ff4295f73804afd14
-EBUILD obus-1.1.8.ebuild 837 BLAKE2B 
85f04f1f0975dc329beeb8ca704c7031d95708ca5d449ae089d0d7ada875fdc490312bdbb580cc207be7f3002accafcd41b7466859033d34309bc35adc704e40
 SHA512 
4c77a369a0c4bb0e82fb598ecc6a679ab823d37183df5db97a2451457ce2f1c89e521e337f370b33fc8662f2fa0df79ce419d5efd71ec49e86e6ad9668c4f90b
+EBUILD obus-1.1.8.ebuild 840 BLAKE2B 
16728531cf9b76f3ffca4bf99ba59ffadf32cfbba30c7556ed1566cbb9037b5e915575a7e003e4e6fea1c19beacb1c8dd00e63250be28c996252dfaa4fc0186b
 SHA512 
bce9a900bc94ca2d3ab4d5c1d002856f6ddd6e51df5ca4b1b2a5c682d51fa40cf45d12f64ff4ec9041b7bdf2bcb1bc44499d089e26f1b218e0845ac83e81e210
 EBUILD obus-1.1.ebuild 719 BLAKE2B 
d220dcab1c2a4d19bf267ebfea0ca60f164a1478268bad261be0a6eee03705850779a8b8c3ac976dc94aa942a9983fcf74be71b16d6f6c26c1bbc5d3284ef97f
 SHA512 
06ae52d8738f37136662203d62f12ccc271e9eb7eb30e46a3a0dae68895e04a82df36befa4991ac50f8afb2aa188d6615ef3dca7f9983d0902a792fe3a7da310
 MISC metadata.xml 285 BLAKE2B 
7665ca7b22bf0c8b2e486a5633130588ea83952d863912d0e8299707ed6d26dd66e40e1faa53173eb24079d4607cb783c9e0f6dce8f298607e5baf1ec5f1e587
 SHA512 
a8207edb781bc25e9bdc7f074ae3164ea9037077c6f6e0284474d033d57ceb188c3e1e9a77a0bbc9c7cac538a75ba23c42993340bd6555b0a71085d43c3f905d

diff --git a/dev-ml/obus/obus-1.1.8.ebuild b/dev-ml/obus/obus-1.1.8.ebuild
index d34854e..c21151c 100644
--- a/dev-ml/obus/obus-1.1.8.ebuild
+++ b/dev-ml/obus/obus-1.1.8.ebuild
@@ -19,14 +19,14 @@ RESTRICT="test"
 COMMEN_DEPEND="
 >=dev-lang/ocaml-4.02.3[ocamlopt?]
 >=dev-ml/lwt-2.7[camlp4]
-dev-ml/camlp4
 dev-ml/lwt_react[ocamlopt?]
 dev-ml/react
 dev-ml/type-conv[ocamlopt?]
 dev-ml/xmlm"
 DEPEND="${COMMEN_DEPEND}
dev-ml/ocamlbuild[ocamlopt?]
-   dev-ml/oasis[ocamlopt?]"
+   dev-ml/oasis[ocamlopt?]
+   dev-ml/findlib"
 RDEPEND="${COMMEN_DEPEND}"
 
 src_configure() {



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

2019-01-29 Thread Sergei Trofimovich
commit: 619639ae58228cb6f8de5c206a47025e98d9bf83
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jan 29 17:06:24 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jan 29 19:41:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=619639ae

dev-libs/expat: stable 2.2.6 for sparc, bug #676302

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-libs/expat/expat-2.2.6.ebuild 
b/dev-libs/expat/expat-2.2.6.ebuild
index b71f41a375f..04eac1c90df 100644
--- a/dev-libs/expat/expat-2.2.6.ebuild
+++ b/dev-libs/expat/expat-2.2.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/libexpat/libexpat/releases/download/R_${PV//\./_}/ex
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="elibc_FreeBSD examples static-libs unicode"
 DEPEND="unicode? ( ${AUTOTOOLS_DEPEND} )"
 RDEPEND=""



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

2019-01-29 Thread Sergei Trofimovich
commit: 9debbc5b6a6502eb66bc98286944dcb83cc20a68
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jan 29 17:07:28 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jan 29 19:41:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9debbc5b

media-libs/taglib: stable 1.11.1_p20181028 for sparc, bug #676614

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/taglib/taglib-1.11.1_p20181028.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/taglib/taglib-1.11.1_p20181028.ebuild 
b/media-libs/taglib/taglib-1.11.1_p20181028.ebuild
index 0b424ee..7f03fd3b8c4 100644
--- a/media-libs/taglib/taglib-1.11.1_p20181028.ebuild
+++ b/media-libs/taglib/taglib-1.11.1_p20181028.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ HOMEPAGE="https://taglib.github.io/";
 SRC_URI="https://github.com/${PN}/${PN}/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="LGPL-2.1 MPL-1.1"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
 SLOT="0"
 IUSE="debug examples test"
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-visualization-shadertoy/

2019-01-29 Thread Craig Andrews
commit: be441d3e0e1540fbf398ec0107e65a360231306c
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Jan 29 19:28:27 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Jan 29 19:28:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be441d3e

media-plugins/kodi-visualization-shadertoy: 1.1.9 version bump

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>

 .../kodi-visualization-shadertoy/Manifest  |  1 +
 .../kodi-visualization-shadertoy-1.1.9.ebuild  | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/media-plugins/kodi-visualization-shadertoy/Manifest 
b/media-plugins/kodi-visualization-shadertoy/Manifest
index 24a021e2e1a..1271487e22d 100644
--- a/media-plugins/kodi-visualization-shadertoy/Manifest
+++ b/media-plugins/kodi-visualization-shadertoy/Manifest
@@ -1,2 +1,3 @@
 DIST kodi-visualization-shadertoy-1.1.5.tar.gz 11826868 BLAKE2B 
a18512c811e1412d63d4cfcd97804eaf90047603de592ed21fe2b1c24b77a21a3f9e859d86ab23f8f59ba3eacfa40f3028f5848c8b6d6f7e8acde19c1522e640
 SHA512 
557cc9567707ab53c63537f760b552c4129f45a4c99346acf9d00f8fea5249af1a8af9ea6fc8587e7ab6e24c8a686356e5bacf0a2cb34dcc8b38059c36127e43
 DIST kodi-visualization-shadertoy-1.1.8.tar.gz 11825753 BLAKE2B 
1ab30e261d9e48806d7b6629b5aac687831f735b05d1cc48d6bacf146fe2f3e2d75758c490c474838e9d861f2bc1776d0fc9cee00d6dca9d5e87ec874dbd02fd
 SHA512 
5cee18db177c0cc61bc46a4d457b559bd1a023d3ff51261eee8d4c4828df77571beda12dd726f30554bd16c7ad67e12d836c5a211a3d55321d92551eb337ddc6
+DIST kodi-visualization-shadertoy-1.1.9.tar.gz 11825717 BLAKE2B 
683b89be6b02574bec6db39446d1adb03ed09ed0da4be03245e8012980de8f1ff5d10fba22e40f74f022263c853fd076f3079feb6d82b34901975682cf8ecbdb
 SHA512 
f829505525f46cb54ac205a52561dbf99f776350c0c34487438663d1c42dcd734f8c2e543c23550b4be61bab00d7f09beb63824935cd68de14328aaca44a5b95

diff --git 
a/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.9.ebuild
 
b/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.9.ebuild
new file mode 100644
index 000..e87d1676598
--- /dev/null
+++ 
b/media-plugins/kodi-visualization-shadertoy/kodi-visualization-shadertoy-1.1.9.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils kodi-addon
+
+DESCRIPTION="Shadertoy visualizer for Kodi"
+HOMEPAGE="https://github.com/xbmc/visualization.shadertoy";
+SRC_URI=""
+
+case ${PV} in
+)
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/xbmc/visualization.shadertoy.git";
+   inherit git-r3
+   ;;
+*)
+   CODENAME="Leia"
+   KEYWORDS="~amd64 ~x86"
+   
SRC_URI="https://github.com/xbmc/visualization.shadertoy/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/visualization.shadertoy-${PV}-${CODENAME}"
+   ;;
+esac
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   =dev-libs/libplatform-2*
+   =media-tv/kodi-18*
+   virtual/opengl
+   "
+
+RDEPEND="
+   ${DEPEND}
+   "



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

2019-01-29 Thread Virgil Dupras
commit: 228a83a88e45c8e218442c1ef21afd2098ec63cf
Author: Virgil Dupras  gentoo  org>
AuthorDate: Tue Jan 29 19:18:29 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Tue Jan 29 19:18:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=228a83a8

dev-python/pytest: add constraint on pluggy dep

Closes: https://bugs.gentoo.org/676854
Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/pytest/pytest-3.4.2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/pytest/pytest-3.4.2.ebuild 
b/dev-python/pytest/pytest-3.4.2.ebuild
index 7dd28944694..a4e1ac2ddb0 100644
--- a/dev-python/pytest/pytest-3.4.2.ebuild
+++ b/dev-python/pytest/pytest-3.4.2.ebuild
@@ -21,6 +21,7 @@ PY_VER="1.5.0"
 COMMON_DEPEND="
>=dev-python/attrs-17.2.0[${PYTHON_USEDEP}]
>=dev-python/pluggy-0.5[${PYTHON_USEDEP}]
+   =dev-python/py-${PY_VER}[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/six-1.10.0[${PYTHON_USEDEP}]



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

2019-01-29 Thread Matt Turner
commit: e498b441c8dd703ec831ddd321c7658b11cca4ce
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Jan 29 17:53:48 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Jan 29 17:54:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e498b441

x11-drivers/xf86-video-nouveau: Version bump to 1.0.16

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

 x11-drivers/xf86-video-nouveau/Manifest|  1 +
 .../xf86-video-nouveau-1.0.16.ebuild   | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/x11-drivers/xf86-video-nouveau/Manifest 
b/x11-drivers/xf86-video-nouveau/Manifest
index ac1d17557c3..e7a7068d981 100644
--- a/x11-drivers/xf86-video-nouveau/Manifest
+++ b/x11-drivers/xf86-video-nouveau/Manifest
@@ -1 +1,2 @@
 DIST xf86-video-nouveau-1.0.15.tar.bz2 584998 BLAKE2B 
474eb27d00351fff9b24438c317e2f18810fde76d866ace047beda6c6cc58276e9f6ce25b4690c1de321dbdcd2dd238dc6f473a273cd3b54123d2f8383d5e586
 SHA512 
69a8f8e7920d893f17d14fd9f05e35de246d980a243f3b3b00c05deae7f6bd97e0f51e6ddfa322b4d0815233fe5f656d4e55f54461249f3f24c3bc025a682285
+DIST xf86-video-nouveau-1.0.16.tar.bz2 629404 BLAKE2B 
519ae2ddc6f895648274e10fc3b5052896734e40251dcaf35a948be051711c14054573a08192ccf15002f3a8d1e6079c982c32cf8c58e2a288c0f146155020e8
 SHA512 
41b7839c37372660968ab7da2bc3d9feef3cab4e994d05d4ba6e59071f0d1b1f8d7dcdbcb15a42a375a556d28dc067f9ffe45d73c1d121ad307d199107ade3e0

diff --git a/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-1.0.16.ebuild 
b/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-1.0.16.ebuild
new file mode 100644
index 000..199676766bf
--- /dev/null
+++ b/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-1.0.16.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+XORG_DRI="always"
+inherit xorg-2
+
+if [[ ${PV} == * ]]; then
+   
EGIT_REPO_URI="https://anongit.freedesktop.org/git/nouveau/xf86-video-nouveau.git";
+   SRC_URI=""
+fi
+
+DESCRIPTION="Accelerated Open Source driver for nVidia cards"
+HOMEPAGE="https://nouveau.freedesktop.org/wiki/";
+
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+RDEPEND=">=x11-libs/libdrm-2.4.60[video_cards_nouveau]
+   >=x11-libs/libpciaccess-0.10
+   virtual/libudev:="
+DEPEND="${RDEPEND}"



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

2019-01-29 Thread Georgy Yakovlev
commit: c3ed2b3c9825c2a16cf2515b079aac75a86eb9ab
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Jan 29 17:50:53 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Jan 29 17:51:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3ed2b3c

dev-python/reflink: correct dep on pytest-runner

Closes: https://bugs.gentoo.org/676848
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-python/reflink/files/0.2.1-correct-test-deps.patch | 17 +
 dev-python/reflink/reflink-0.2.1.ebuild|  2 ++
 2 files changed, 19 insertions(+)

diff --git a/dev-python/reflink/files/0.2.1-correct-test-deps.patch 
b/dev-python/reflink/files/0.2.1-correct-test-deps.patch
new file mode 100644
index 000..78b1ef8fd94
--- /dev/null
+++ b/dev-python/reflink/files/0.2.1-correct-test-deps.patch
@@ -0,0 +1,17 @@
+diff --git a/setup.py b/setup.py
+index 234c92b..3ef3237 100644
+--- a/setup.py
 b/setup.py
+@@ -20,11 +20,11 @@ requirements = [
+ 
+ setup_requirements = [
+ 'cffi',
+-'pytest-runner',
+ ]
+ 
+ test_requirements = [
+ 'pytest',
++'pytest-runner',
+ ]
+ 
+ if sys.platform not in ['linux', 'linux2', 'win32', 'darwin']:

diff --git a/dev-python/reflink/reflink-0.2.1.ebuild 
b/dev-python/reflink/reflink-0.2.1.ebuild
index 8c8c593ccf5..59c051cb194 100644
--- a/dev-python/reflink/reflink-0.2.1.ebuild
+++ b/dev-python/reflink/reflink-0.2.1.ebuild
@@ -30,6 +30,8 @@ DEPEND="${RDEPEND}"
 # goes places, like writing to /dev or creating btrfs volumes
 RESTRICT="test"
 
+PATCHES=( "${FILESDIR}/${PV}-correct-test-deps.patch" )
+
 python_compile_all() {
use doc && emake -C docs html
 }



[gentoo-commits] proj/releng:master commit in: releases/weekly/specs/s390/s390x/netboot/portage/, ...

2019-01-29 Thread Ben Kohler
commit: 7bd7dd0235d9d7e6b95c02f69b5d47cb8900d9f6
Author: Ben Kohler  gentoo  org>
AuthorDate: Tue Jan 29 16:50:56 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Tue Jan 29 17:29:09 2019 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=7bd7dd02

s390x/netboot: fix package.use entry for genkernel/util-linux

Signed-off-by: Ben Kohler  gentoo.org>

 .../weekly/specs/s390/s390x/netboot/portage/{ => package.use}/genkernel   | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/releases/weekly/specs/s390/s390x/netboot/portage/genkernel 
b/releases/weekly/specs/s390/s390x/netboot/portage/package.use/genkernel
similarity index 100%
rename from releases/weekly/specs/s390/s390x/netboot/portage/genkernel
rename to releases/weekly/specs/s390/s390x/netboot/portage/package.use/genkernel



[gentoo-commits] proj/kde:master commit in: kde-frameworks/kdoctools/files/, kde-frameworks/kdoctools/

2019-01-29 Thread Andreas Sturmlechner
commit: 41f803a7f62ba178bff82b78e4455e271587a243
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jan 28 22:25:48 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jan 28 22:41:16 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=41f803a7

kde-frameworks/kdoctools: Add /usr/share/help dir to list of doc dirs

This is fed to kio_help from kde-frameworks/kio to populate
kde-apps/khelpcenter runtime content.

Bug: https://bugs.gentoo.org/667138
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../kdoctools-5.54.0-gentoo-docbundledir.patch | 26 ++
 kde-frameworks/kdoctools/kdoctools-.ebuild |  2 ++
 2 files changed, 28 insertions(+)

diff --git 
a/kde-frameworks/kdoctools/files/kdoctools-5.54.0-gentoo-docbundledir.patch 
b/kde-frameworks/kdoctools/files/kdoctools-5.54.0-gentoo-docbundledir.patch
new file mode 100644
index 00..cb6c35f19f
--- /dev/null
+++ b/kde-frameworks/kdoctools/files/kdoctools-5.54.0-gentoo-docbundledir.patch
@@ -0,0 +1,26 @@
+From 79f31819b95fcb0bd3d30630f769706923d41609 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Mon, 28 Jan 2019 22:50:56 +0100
+Subject: [PATCH] xslt.cpp: Add /usr/share/help dir to list of paths containing
+ documentation
+
+---
+ src/xslt.cpp | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/src/xslt.cpp b/src/xslt.cpp
+index 1000e33..a0fbe4c 100644
+--- a/src/xslt.cpp
 b/src/xslt.cpp
+@@ -494,5 +494,7 @@ QStringList getKDocToolsCatalogs()
+ QStringList KDocTools::documentationDirs()
+ {
+ /* List of paths containing documentation */
+-return QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, 
QStringLiteral("doc/HTML"), QStandardPaths::LocateDirectory);
++QStringList docDirs = 
QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, 
QStringLiteral("help"), QStandardPaths::LocateDirectory);
++
docDirs.append(QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, 
QStringLiteral("doc/HTML"), QStandardPaths::LocateDirectory));
++return docDirs;
+ }
+-- 
+2.20.1
+

diff --git a/kde-frameworks/kdoctools/kdoctools-.ebuild 
b/kde-frameworks/kdoctools/kdoctools-.ebuild
index 619b8603f2..fda9897211 100644
--- a/kde-frameworks/kdoctools/kdoctools-.ebuild
+++ b/kde-frameworks/kdoctools/kdoctools-.ebuild
@@ -26,6 +26,8 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
+PATCHES=( "${FILESDIR}/${PN}-5.54.0-gentoo-docbundledir.patch" )
+
 src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package nls KF5I18n)



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

2019-01-29 Thread Andreas Sturmlechner
commit: 290bbd89e17c723ca268f36ed01d2256c372a015
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jan 28 19:29:12 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jan 28 22:34:42 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=290bbd89

kde5.eclass: Relocate KDE_INSTALL_DOCBUNDLEDIR to /usr/share/help

These are handbook files installed by hundreds of packages to a
central location, to be accessed by KDE Helpcenter application,
with compressed index cache files.

This leads to the following QA issues on every package w/ USE handbook:
* The ebuild is installing to one or more unexpected paths
* One or more compressed files were found in docompress-ed directories

We'll use the EAPI-7 transition to move the location from previously
/usr/share/doc/HTML to /usr/share/help [1]. Transition for khelpcenter
will be seemless as kde-frameworks/kdoctools can be easily patched to
accept both locations, until eventually /usr/share/doc/HTML is empty.

As a side-effect, we will be able to drop the workaround for disabling
auto compression of files beneath /usr/share/doc together with EAPI-6.

[1] See also: https://www.freedesktop.org/wiki/Specifications/help-system/
It is also the path upstream intends to migrate to in the future.

Bug: https://bugs.gentoo.org/667138
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 eclass/kde5.eclass | 14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index d6c790fe52..b25679a76c 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -636,6 +636,8 @@ kde5_src_configure() {
# install mkspecs in the same directory as qt stuff
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
)
+   # move handbook outside of doc dir for at least two QA 
warnings, bug 667138
+   [[ ${EAPI} != 6 ]] && cmakeargs+=( 
-DKDE_INSTALL_DOCBUNDLEDIR="${EPREFIX}/usr/share/help" )
fi
 
# allow the ebuild to override what we set here
@@ -705,11 +707,13 @@ kde5_src_install() {
docompress -x /usr/share/doc/qt-${pv}
fi
 
-   # We don't want /usr/share/doc/HTML to be compressed,
-   # because then khelpcenter can't find the docs
-   #todo: clean up trailing slash check when EAPI <7 is removed
-   if [[ -d ${ED%/}/usr/share/doc/HTML ]]; then
-   docompress -x /usr/share/doc/HTML
+   if [[ ${EAPI} = 6 ]]; then
+   # We don't want /usr/share/doc/HTML to be compressed,
+   # because then khelpcenter can't find the docs
+   #todo: clean up trailing slash check when EAPI <7 is removed
+   if [[ -d ${ED%/}/usr/share/doc/HTML ]]; then
+   docompress -x /usr/share/doc/HTML
+   fi
fi
 }
 



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

2019-01-29 Thread Mikle Kolyada
commit: 2d482527931eac0ffafbb082b1fba48b94d6e55b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 17:11:46 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 17:11:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d482527

net-analyzer/nagios-plugins: amd64 stable wrt bug #676042

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

 net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild 
b/net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild
index b67ad27f692..df82bfc3f84 100644
--- a/net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild
+++ b/net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://nagios-plugins.org/download/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ppc ppc64 sparc x86"
 IUSE="ipv6 ldap libressl mysql nagios-dns nagios-ping nagios-game postgres 
radius samba selinux snmp ssh +ssl"
 
 # Most of the plugins use automagic dependencies, i.e. the plugin will



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

2019-01-29 Thread Mikle Kolyada
commit: 1c2b14b7d0e407eb8c6b910af4ca986ef61c4f82
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 17:09:39 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 17:09:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2b14b7

sci-libs/gdal: amd64 stable wrt bug #675660

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

 sci-libs/gdal/gdal-2.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/gdal/gdal-2.3.1.ebuild b/sci-libs/gdal/gdal-2.3.1.ebuild
index 4129f18c2e1..89243a3e82f 100644
--- a/sci-libs/gdal/gdal-2.3.1.ebuild
+++ b/sci-libs/gdal/gdal-2.3.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://download.osgeo.org/${PN}/${PV}/${P}.tar.gz";
 
 SLOT="0/2.3"
 LICENSE="BSD Info-ZIP MIT"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos"
 IUSE="armadillo +aux_xml curl debug doc fits geos gif gml hdf5 java jpeg 
jpeg2k lzma mdb mysql netcdf odbc ogdi opencl oracle pdf perl png postgres 
python spatialite sqlite threads webp xls zstd"
 
 COMMON_DEPEND="



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2019-01-29 Thread Michael Haubenwallner
commit: 9e84e77e779219d209a2474a7f04bfcd81212e6a
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jan 28 20:22:42 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Tue Jan 29 14:42:57 2019 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=9e84e77e

bootstrap-prefix.sh: selectively use stacked-prefix

Use stacked prefix only up to before merging sys-apps/portage itself
with dependencies, even for RAP now.
Closes: https://bugs.gentoo.org/676096

Signed-off-by: Michael Haubenwallner  gentoo.org>

 scripts/bootstrap-prefix.sh | 55 +++--
 1 file changed, 38 insertions(+), 17 deletions(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index d74a35372d..f5be868d77 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -1736,12 +1736,22 @@ bootstrap_stage3() {
# PORTAGE_OVERRIDE_EPREFIX as BROOT is needed.
PREROOTPATH="${ROOT}"$(echo 
/{,tmp/}{usr/,}{,lib/llvm/{10,9,8,7,6,5}/}{s,}bin | sed "s, ,:${ROOT},g") \
EPREFIX="${ROOT}" PORTAGE_TMPDIR="${PORTAGE_TMPDIR}" \
-   PORTAGE_OVERRIDE_EPREFIX="$(rapx "${ROOT}" "${ROOT}"/tmp)" \
-   FEATURES="${FEATURES} force-prefix $(rapx "" stacked-prefix)" \
+   FEATURES="${FEATURES} force-prefix" \
EMERGE_LOG_DIR="${ROOT}"/var/log \
do_emerge_pkgs "$@"
}
 
+   with_stack_emerge_pkgs() {
+   FEATURES="${FEATURES} stacked-prefix" \
+   PORTAGE_OVERRIDE_EPREFIX="${ROOT}/tmp" \
+   emerge_pkgs "$@"
+   }
+
+   without_stack_emerge_pkgs() {
+   PORTAGE_OVERRIDE_EPREFIX="${ROOT}" \
+   emerge_pkgs "$@"
+   }
+
# Some packages fail to properly depend on sys-apps/texinfo.
# We don't really need that package, so we fake it instead,
# explicitly emerging it later on will overwrite the fakes.
@@ -1751,13 +1761,6 @@ bootstrap_stage3() {
fi
 
if is-rap ; then
-   # Bug 655414. Copy portage global config from stage2
-   # to stage3.
-   if [[ ! -d "${ROOT}"/usr/share/portage ]]; then
-   mkdir -p "${ROOT}"/usr/share
-   cp -a "${ROOT}"{/tmp,}/usr/share/portage
-   fi
-
# We need ${ROOT}/usr/bin/perl to merge glibc.
if [[ ! -x "${ROOT}"/usr/bin/perl ]]; then
# trick "perl -V:apiversion" check of glibc-2.19.
@@ -1779,7 +1782,7 @@ bootstrap_stage3() {
)
 
BOOTSTRAP_RAP=yes \
-   emerge_pkgs --nodeps "${pkgs[@]}" || return 1
+   with_stack_emerge_pkgs --nodeps "${pkgs[@]}" || return 1
grep -q 'apiversion=' "${ROOT}"/usr/bin/perl && rm 
"${ROOT}"/usr/bin/perl
 
pkgs=(
@@ -1791,7 +1794,7 @@ bootstrap_stage3() {
RAP_DLINKER=$(echo "${ROOT}"/$(get_libdir)/ld*.so.[0-9])
export LDFLAGS="-L${ROOT}/usr/$(get_libdir) 
-Wl,--dynamic-linker=${RAP_DLINKER}"
BOOTSTRAP_RAP=yes \
-   emerge_pkgs --nodeps "${pkgs[@]}" || return 1
+   with_stack_emerge_pkgs --nodeps "${pkgs[@]}" || return 1
 
# remove stage2 ld so that stage3 ld is used by stage2 gcc.
[[ -f ${ROOT}/tmp/usr/${CHOST}/bin/ld ]] && mv 
${ROOT}/tmp/usr/${CHOST}/bin/ld{,.stage2}
@@ -1809,7 +1812,7 @@ bootstrap_stage3() {
${linker}
)
 
-   emerge_pkgs --nodeps "${pkgs[@]}" || return 1
+   with_stack_emerge_pkgs --nodeps "${pkgs[@]}" || return 1
fi
 
# On some hosts, gcc gets confused now when it uses the new linker,
@@ -1843,9 +1846,12 @@ bootstrap_stage3() {
EXTRA_ECONF="--disable-compiler-version-checks $(rapx --disable-lto)" \
MYCMAKEARGS="-DCMAKE_USE_SYSTEM_LIBRARY_LIBUV=OFF" \
PYTHON_COMPAT_OVERRIDE=python2.7 \
-   emerge_pkgs --nodeps ${compiler} || return 1
+   with_stack_emerge_pkgs --nodeps ${compiler} || return 1
# undo libgcc_s.so path of stage2
 
+   # now we have the compiler right there
+   unset CXX CPPFLAGS LDFLAGS
+
# On Darwin we have llvm-3.5 at this point, which provides nm.
# However for some reason this nm doesn't quite get it on newer
# platforms at least, resulting in bugs like #598336.  To cater for
@@ -1864,7 +1870,10 @@ bootstrap_stage3() {
export PREROOTPATH="${ROOT}/usr/bin:${ROOT}/bin"
 
# get a sane bash, overwriting tmp symlinks
-   emerge_pkgs "" "app-shells/bash" || return 1
+   with_stack_emerge_pkgs "" "app-shells/bash" || return 1
+
+   # now we have a shell right there
+   unset CONFIG_SHELL
 
# Build portage and dependencies.
pkgs=(
@@ -1884,7 +1893,7 @@ bootstrap_stage3() {
# OSX, confusin

[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2019-01-29 Thread Michael Haubenwallner
commit: b109ca82c51df4073dbb37ff239f6097504582ef
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jan 28 17:28:23 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jan 28 17:34:57 2019 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=b109ca82

bootstrap-prefix.sh: provide fake makeinfo early

Provide fake makeinfo scripts early enough to avoid MAKEINFO variable.
Closes: https://bugs.gentoo.org/673808

Signed-off-by: Michael Haubenwallner  gentoo.org>

 scripts/bootstrap-prefix.sh | 55 -
 1 file changed, 29 insertions(+), 26 deletions(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 39e508de56..d74a35372d 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -1539,7 +1539,30 @@ bootstrap_stage2() {
# GCC sometimes decides that it needs to run makeinfo to update some
# info pages from .texi files.  Obviously we don't care at this
# stage and rather have it continue instead of abort the build
-   export MAKEINFO="echo makeinfo GNU texinfo 4.13"
+   if [[ ! -x "${ROOT}"/tmp/usr/bin/makeinfo ]]
+   then
+   cat > "${ROOT}"/tmp/usr/bin/makeinfo <<-EOF
+   #!${ROOT}/bin/bash
+   ### bootstrap-prefix.sh will act on this line ###
+   echo "makeinfo GNU texinfo 4.13"
+   f=
+   while (( \$# > 0 )); do
+   a=\$1
+   shift
+   case \$a in
+   --output=) continue ;;
+   --output=*) f=\${a#--output=} ;;
+   -o) f=\$1; shift;;
+   esac
+   done
+   [[ -z \$f ]] || [[ -e \$f ]] || touch "\$f"
+   EOF
+   cat > "${ROOT}"/tmp/usr/bin/install-info <<-EOF
+   #!${ROOT}/bin/bash
+   :
+   EOF
+   chmod +x "${ROOT}"/tmp/usr/bin/{makeinfo,install-info}
+   fi
 
# on Solaris 64-bits, (at least up to 10) libgcc_s resides in a
# non-standard location, and the compiler doesn't seem to record
@@ -1719,32 +1742,12 @@ bootstrap_stage3() {
do_emerge_pkgs "$@"
}
 
-   # GCC sometimes decides that it needs to run makeinfo to update some
-   # info pages from .texi files.  Obviously we don't care at this
-   # stage and rather have it continue instead of aborting the build
+   # Some packages fail to properly depend on sys-apps/texinfo.
+   # We don't really need that package, so we fake it instead,
+   # explicitly emerging it later on will overwrite the fakes.
if [[ ! -x "${ROOT}"/usr/bin/makeinfo ]]
then
-   cat > "${ROOT}"/usr/bin/makeinfo <<-EOF
-   #!${ROOT}/bin/bash
-   ### bootstrap-prefix.sh will act on this line ###
-   echo "makeinfo GNU texinfo 4.13"
-   f=
-   while (( \$# > 0 )); do
-   a=\$1
-   shift
-   case \$a in
-   --output=) continue ;;
-   --output=*) f=\${a#--output=} ;;
-   -o) f=\$1; shift;;
-   esac
-   done
-   [[ -z \$f ]] || [[ -e \$f ]] || touch "\$f"
-   EOF
-   cat > "${ROOT}"/usr/bin/install-info <<-EOF
-   #!${ROOT}/bin/bash
-   :
-   EOF
-   chmod +x "${ROOT}"/usr/bin/{makeinfo,install-info}
+   cp -p "${ROOT}"/tmp/usr/bin/{makeinfo,install-info} 
"${ROOT}"/usr/bin
fi
 
if is-rap ; then
@@ -1900,7 +1903,7 @@ bootstrap_stage3() {
emerge_pkgs "" "${pkgs[@]}" || return 1
 
# Switch to the proper portage.
-   unset CONFIG_SHELL MAKEINFO CXX CPPFLAGS LDFLAGS
+   unset CONFIG_SHELL CXX CPPFLAGS LDFLAGS
hash -r
 
# Update the portage tree.



[gentoo-commits] repo/gentoo:master commit in: dev-java/icedtea-bin/

2019-01-29 Thread Mikle Kolyada
commit: bc6547db38763033be9ae2632b18693c71db7770
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 15:48:37 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 15:49:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc6547db

dev-java/icedtea-bin: amd64 stable wrt bug #676152

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

 dev-java/icedtea-bin/icedtea-bin-3.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/icedtea-bin/icedtea-bin-3.10.0.ebuild 
b/dev-java/icedtea-bin/icedtea-bin-3.10.0.ebuild
index 1bb0379b165..a214c68cb50 100644
--- a/dev-java/icedtea-bin/icedtea-bin-3.10.0.ebuild
+++ b/dev-java/icedtea-bin/icedtea-bin-3.10.0.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 # Don't block arm. See bug #600134.
 #MULTILIB_COMPAT=( abi_ppc_64 abi_x86_{32,64} )
-KEYWORDS="-* ~amd64 ~arm ~arm64 ppc64 ~x86"
+KEYWORDS="-* amd64 ~arm ~arm64 ppc64 ~x86"
 
 inherit java-vm-2 multilib-build toolchain-funcs
 



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

2019-01-29 Thread Alice Ferrazzi
commit: 03916dccaefbd00f1e06299bfd56f87b0d2d5ec1
Author: Kyle Elbert  gmail  com>
AuthorDate: Sat Jan 26 23:32:54 2019 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Jan 29 14:58:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03916dcc

dev-util/idea-community: Update License

Per https://www.jetbrains.com/idea/download/#section=linux and the bundled
License.txt idea-community is under Apache-2.0, while the bundled License.txt
with the JRE is GPL-2

Bug: https://bugs.gentoo.org/652040
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Kyle Elbert  gmail.com>
Signed-off-by: Alice Ferrazzi  gentoo.org>

 ...4588.61.ebuild => idea-community-2017.2.2.172.3757.52-r1.ebuild} | 6 +++---
 ...3757.52.ebuild => idea-community-2018.3.1.183.4588.61-r1.ebuild} | 6 +++---
 dev-util/idea-community/idea-community-2018.3.3.183.5153.38.ebuild  | 4 ++--
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev-util/idea-community/idea-community-2018.3.1.183.4588.61.ebuild 
b/dev-util/idea-community/idea-community-2017.2.2.172.3757.52-r1.ebuild
similarity index 93%
rename from dev-util/idea-community/idea-community-2018.3.1.183.4588.61.ebuild
rename to dev-util/idea-community/idea-community-2017.2.2.172.3757.52-r1.ebuild
index cc1ffa36d7a..c3da3d3edc2 100644
--- a/dev-util/idea-community/idea-community-2018.3.1.183.4588.61.ebuild
+++ b/dev-util/idea-community/idea-community-2017.2.2.172.3757.52-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -24,8 +24,8 @@ fi
 DESCRIPTION="A complete toolset for web, mobile and enterprise development"
 HOMEPAGE="https://www.jetbrains.com/idea";
 
-LICENSE="IDEA
-   || ( IDEA_Academic IDEA_Classroom IDEA_OpenSource IDEA_Personal )"
+LICENSE="Apache-2.0
+   custom-jdk? ( GPL-2 )"
 IUSE="-custom-jdk"
 
 DEPEND="!dev-util/${PN}:14

diff --git a/dev-util/idea-community/idea-community-2017.2.2.172.3757.52.ebuild 
b/dev-util/idea-community/idea-community-2018.3.1.183.4588.61-r1.ebuild
similarity index 93%
rename from dev-util/idea-community/idea-community-2017.2.2.172.3757.52.ebuild
rename to dev-util/idea-community/idea-community-2018.3.1.183.4588.61-r1.ebuild
index a4f2eb0c798..c3da3d3edc2 100644
--- a/dev-util/idea-community/idea-community-2017.2.2.172.3757.52.ebuild
+++ b/dev-util/idea-community/idea-community-2018.3.1.183.4588.61-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -24,8 +24,8 @@ fi
 DESCRIPTION="A complete toolset for web, mobile and enterprise development"
 HOMEPAGE="https://www.jetbrains.com/idea";
 
-LICENSE="IDEA
-   || ( IDEA_Academic IDEA_Classroom IDEA_OpenSource IDEA_Personal )"
+LICENSE="Apache-2.0
+   custom-jdk? ( GPL-2 )"
 IUSE="-custom-jdk"
 
 DEPEND="!dev-util/${PN}:14

diff --git a/dev-util/idea-community/idea-community-2018.3.3.183.5153.38.ebuild 
b/dev-util/idea-community/idea-community-2018.3.3.183.5153.38.ebuild
index 87e485f6d7f..3811dacddc7 100644
--- a/dev-util/idea-community/idea-community-2018.3.3.183.5153.38.ebuild
+++ b/dev-util/idea-community/idea-community-2018.3.3.183.5153.38.ebuild
@@ -24,8 +24,8 @@ fi
 DESCRIPTION="A complete toolset for web, mobile and enterprise development"
 HOMEPAGE="https://www.jetbrains.com/idea";
 
-LICENSE="IDEA
-   || ( IDEA_Academic IDEA_Classroom IDEA_OpenSource IDEA_Personal )"
+LICENSE="Apache-2.0
+   custom-jdk? ( GPL-2 )"
 IUSE="-custom-jdk"
 DEPEND="!dev-util/${PN}:14
!dev-util/${PN}:15"



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

2019-01-29 Thread Alice Ferrazzi
commit: a3ab71a1e428f4a05eb7ce9c26cebcd3c447bd60
Author: Kyle Elbert  gmail  com>
AuthorDate: Sun Jan 27 02:30:09 2019 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Jan 29 14:58:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3ab71a1

dev-util/idea-community: fix custom-jdk useflag in previous versions

Because of the switch to a 64 bit jdk at some point prior to even 2017.2.2 (the
oldest version in the tree), the directory naming changed and so even without
the custom-jdk useflag the jdk was being installed, and with the custom-jdk
useflag the jdk's binaries were not correctly being marked executable

Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Kyle Elbert  gmail.com>
Signed-off-by: Alice Ferrazzi  gentoo.org>

 .../idea-community/idea-community-2017.2.2.172.3757.52-r1.ebuild  | 8 
 .../idea-community/idea-community-2018.3.1.183.4588.61-r1.ebuild  | 8 
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/dev-util/idea-community/idea-community-2017.2.2.172.3757.52-r1.ebuild 
b/dev-util/idea-community/idea-community-2017.2.2.172.3757.52-r1.ebuild
index c3da3d3edc2..bfb9c749e70 100644
--- a/dev-util/idea-community/idea-community-2017.2.2.172.3757.52-r1.ebuild
+++ b/dev-util/idea-community/idea-community-2017.2.2.172.3757.52-r1.ebuild
@@ -41,8 +41,8 @@ src_prepare() {
rm bin/fsnotifier-arm || die
fi
if ! use custom-jdk; then
-   if [[ -d jre ]]; then
-   rm -r jre || die
+   if [[ -d jre64 ]]; then
+   rm -r jre64 || die
fi
fi
 }
@@ -55,8 +55,8 @@ src_install() {
fperms 755 "${dir}"/bin/{idea.sh,fsnotifier{,64}}
 
if use custom-jdk; then
-   if [[ -d jre ]]; then
-   fperms 755 
"${dir}"/jre/jre/bin/{java,jjs,keytool,orbd,pack200,policytool,rmid,rmiregistry,servertool,tnameserv,unpack200}
+   if [[ -d jre64 ]]; then
+   fperms 755 
"${dir}"/jre64/bin/{java,jjs,keytool,orbd,pack200,policytool,rmid,rmiregistry,servertool,tnameserv,unpack200}
fi
fi
 

diff --git 
a/dev-util/idea-community/idea-community-2018.3.1.183.4588.61-r1.ebuild 
b/dev-util/idea-community/idea-community-2018.3.1.183.4588.61-r1.ebuild
index c3da3d3edc2..bfb9c749e70 100644
--- a/dev-util/idea-community/idea-community-2018.3.1.183.4588.61-r1.ebuild
+++ b/dev-util/idea-community/idea-community-2018.3.1.183.4588.61-r1.ebuild
@@ -41,8 +41,8 @@ src_prepare() {
rm bin/fsnotifier-arm || die
fi
if ! use custom-jdk; then
-   if [[ -d jre ]]; then
-   rm -r jre || die
+   if [[ -d jre64 ]]; then
+   rm -r jre64 || die
fi
fi
 }
@@ -55,8 +55,8 @@ src_install() {
fperms 755 "${dir}"/bin/{idea.sh,fsnotifier{,64}}
 
if use custom-jdk; then
-   if [[ -d jre ]]; then
-   fperms 755 
"${dir}"/jre/jre/bin/{java,jjs,keytool,orbd,pack200,policytool,rmid,rmiregistry,servertool,tnameserv,unpack200}
+   if [[ -d jre64 ]]; then
+   fperms 755 
"${dir}"/jre64/bin/{java,jjs,keytool,orbd,pack200,policytool,rmid,rmiregistry,servertool,tnameserv,unpack200}
fi
fi
 



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

2019-01-29 Thread Alice Ferrazzi
commit: c5bf94fbe98e793c838615d1ddf93da395e6
Author: Kyle Elbert  gmail  com>
AuthorDate: Sat Jan 26 06:36:52 2019 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Jan 29 14:58:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5bf94fb

dev-util/idea-community: version bump to 2018.3.3 and EAPI 7 port

Bug: https://bugs.gentoo.org/674404
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Kyle Elbert  gmail.com>
Signed-off-by: Alice Ferrazzi  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/10905
Signed-off-by: Alice Ferrazzi  gentoo.org>

 dev-util/idea-community/Manifest   |  1 +
 .../idea-community-2018.3.3.183.5153.38.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-util/idea-community/Manifest b/dev-util/idea-community/Manifest
index 6f56feeb532..bf696dbde77 100644
--- a/dev-util/idea-community/Manifest
+++ b/dev-util/idea-community/Manifest
@@ -1,2 +1,3 @@
 DIST ideaIC-172.3757.52.tar.gz 442963100 BLAKE2B 
e44f924e279a5b8f2bddbe65cffa24306920fa0f5b85e23b823b1e51fd49e2de2c8953a010b66ea325c4b70ae60268639293b67cd6116f4315ded5e5f6130da1
 SHA512 
a0178c5ef10aeab527bb8064840c53fff97bf9be468a4e5248b83dba96c5114878f5ff1e20436a67ee488580affa3fb3a2ea627407ed57b87949f64fc1a215d2
 DIST ideaIC-183.4588.61.tar.gz 541751086 BLAKE2B 
51a5a4dae10d8fd00a0c239f87af3d53b86ffa50f7f9c4f1554265b349d866d60a8994a96f184cc9993fafe12de3dbfa77e3931626436a5f3d3854710b52fb9e
 SHA512 
3e5956353fc0fabbe91b3a946e83b0b3229766a366fdf782c4c017acd7de5a86b3e0cc870a17abe2bdb8b090cb5c58b6c170555f60ba5e6a9a8198073545be87
+DIST ideaIC-183.5153.38.tar.gz 541754349 BLAKE2B 
541054736db09c8f0106d5588b224d3033ec21a1e2b566fbc95300fafd39acae5c7f6755082bdb189c5619ed5375ea9fc3e777440d30523a84f864be29e5ad85
 SHA512 
0bb213da8bffda7d63fa29905d01ee36c3839249dd6e2a58b3941e4317a01bd9315e8bf639f088657938c8197eb2f05fc34fb3e0c49f8c243043cb03f8443f0f

diff --git a/dev-util/idea-community/idea-community-2018.3.3.183.5153.38.ebuild 
b/dev-util/idea-community/idea-community-2018.3.3.183.5153.38.ebuild
new file mode 100644
index 000..87e485f6d7f
--- /dev/null
+++ b/dev-util/idea-community/idea-community-2018.3.3.183.5153.38.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit eutils desktop
+
+SLOT="0"
+PV_STRING="$(ver_cut 4-6)"
+MY_PV="$(ver_cut 1-3)"
+MY_PN="idea"
+
+# distinguish settings for official stable releases and EAP-version releases
+if [[ "$(ver_cut 7)"x = "prex" ]]
+then
+   # upstream EAP
+   KEYWORDS=""
+   
SRC_URI="https://download.jetbrains.com/idea/${MY_PN}IC-${PV_STRING}.tar.gz";
+else
+   # upstream stable
+   KEYWORDS="~amd64 ~x86"
+   SRC_URI="https://download.jetbrains.com/idea/${MY_PN}IC-${MY_PV}.tar.gz 
-> ${MY_PN}IC-${PV_STRING}.tar.gz"
+fi
+
+DESCRIPTION="A complete toolset for web, mobile and enterprise development"
+HOMEPAGE="https://www.jetbrains.com/idea";
+
+LICENSE="IDEA
+   || ( IDEA_Academic IDEA_Classroom IDEA_OpenSource IDEA_Personal )"
+IUSE="-custom-jdk"
+DEPEND="!dev-util/${PN}:14
+   !dev-util/${PN}:15"
+RDEPEND="${DEPEND}
+   >=virtual/jdk-1.7:*"
+S="${WORKDIR}/${MY_PN}-IC-${PV_STRING}"
+
+QA_PREBUILT="opt/${PN}-${MY_PV}/*"
+
+src_prepare() {
+   if ! use arm; then
+   rm bin/fsnotifier-arm || die
+   fi
+   if ! use custom-jdk; then
+   if [[ -d jre64 ]]; then
+   rm -r jre64 || die
+   fi
+   fi
+   eapply_user
+}
+
+src_install() {
+   local dir="/opt/${PN}-${MY_PV}"
+
+   insinto "${dir}"
+   doins -r *
+   fperms 755 
"${dir}"/bin/{format.sh,idea.sh,inspect.sh,printenv.py,restart.py,fsnotifier{,64}}
+
+   if use custom-jdk; then
+   if [[ -d jre64 ]]; then
+   fperms 755 
"${dir}"/jre64//bin/{java,jjs,keytool,orbd,pack200,policytool,rmid,rmiregistry,servertool,tnameserv,unpack200}
+   fi
+   fi
+
+   make_wrapper "${PN}" "${dir}/bin/${MY_PN}.sh"
+   newicon "bin/${MY_PN}.png" "${PN}.png"
+   make_desktop_entry "${PN}" "IntelliJ Idea Community" "${PN}" 
"Development;IDE;"
+
+   # recommended by: 
https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit
+   mkdir -p "${D}/etc/sysctl.d/" || die
+   echo "fs.inotify.max_user_watches = 524288" > 
"${D}/etc/sysctl.d/30-idea-inotify-watches.conf" || die
+}



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

2019-01-29 Thread Manuel Rüger
commit: 469f3a48f8dc6b0e70dc8ac6cf020f65a75ce4a3
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Jan 28 13:57:05 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Jan 29 14:45:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=469f3a48

app-emulation/reg: Remove old

Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Manuel Rüger  gentoo.org>

 app-emulation/reg/Manifest|  1 -
 app-emulation/reg/reg-0.16.0_p20180102.ebuild | 53 ---
 2 files changed, 54 deletions(-)

diff --git a/app-emulation/reg/Manifest b/app-emulation/reg/Manifest
index bede042bda5..08606dde49d 100644
--- a/app-emulation/reg/Manifest
+++ b/app-emulation/reg/Manifest
@@ -1,4 +1,3 @@
 DIST github.com-go-yaml-yaml-a3f3340b5840cee44f372bddb5880fcbc419b46a.tar.gz 
60814 BLAKE2B 
a77b7d72e2937af71a0734c21bee7a1d7770157c27f1ddfa164c66fd5461f86a2ef46e002087092ef011caae572838bcc9537a8290cd54dfafb7f54423e47c48
 SHA512 
184a0e658a4eac3b867533cd0e494bd84db94fbe10e8df0d0b755c7ffc95bc99e2f84c0157183ca74cdc79289a85dcf7f1dea8a4c89a253565baf473b3627eae
 DIST reg-0.16.0.tar.gz 2991496 BLAKE2B 
e94a53c79ff062013e091d4c558870ef5c25af181cba201a44fa38b9dfe8816d6f3fd581f4e9a3dafe5b3753a3755c31f8b2f4a347da134a969fc93ac296897c
 SHA512 
1e4d936e406998ffaa176e7834b28970b594f88a339fd8447bef2f944efa9b51c1d35bf71b384b3ed1b3e84be08db6d7fd487f4a3c65aa2de0308d6128cf0070
-DIST reg-0.16.0_p20180102.tar.gz 2994965 BLAKE2B 
c7cb8a0eaa1599a5464b7a98c3df0b146dbbfea884260b7c8cbf5393a9384c8875e38ea4e45c5f888c65b9bb8c326cf9934d9b3c32a4809fe8e3b23239e8f2a8
 SHA512 
90e92c15b7ca4f2a5f943cb80096af0eba50acd7691963609c25f15a6795f886843776180754ab7d28477f1fc3a4b8d916bc9ac99b768368471b31564d14769c
 DIST reg-0.16.0_p20190102.tar.gz 2994965 BLAKE2B 
c7cb8a0eaa1599a5464b7a98c3df0b146dbbfea884260b7c8cbf5393a9384c8875e38ea4e45c5f888c65b9bb8c326cf9934d9b3c32a4809fe8e3b23239e8f2a8
 SHA512 
90e92c15b7ca4f2a5f943cb80096af0eba50acd7691963609c25f15a6795f886843776180754ab7d28477f1fc3a4b8d916bc9ac99b768368471b31564d14769c

diff --git a/app-emulation/reg/reg-0.16.0_p20180102.ebuild 
b/app-emulation/reg/reg-0.16.0_p20180102.ebuild
deleted file mode 100644
index 3d7a774209c..000
--- a/app-emulation/reg/reg-0.16.0_p20180102.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGO_VENDOR=( "gopkg.in/yaml.v2 a3f3340b5840cee44f372bddb5880fcbc419b46a 
github.com/go-yaml/yaml" )
-
-inherit golang-build golang-vcs-snapshot user
-
-EGO_PN="github.com/genuinetools/reg"
-GIT_COMMIT="d959057b30da67d5f162790f9d5b5160686901fd"
-ARCHIVE_URI="https://${EGO_PN}/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz
-   ${EGO_VENDOR_URI}"
-KEYWORDS="~amd64"
-
-DESCRIPTION="Docker registry v2 command line client"
-HOMEPAGE="https://github.com/genuinetools/reg";
-SRC_URI="${ARCHIVE_URI}"
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-RESTRICT="test"
-
-pkg_setup() {
-   enewgroup reg
-   enewuser reg -1 -1 /var/lib/reg reg
-}
-
-src_prepare() {
-   pushd src/${EGO_PN} || die
-   eapply "${FILESDIR}"/reg-0.16.0-config.patch
-   default
-   popd || die
-}
-
-src_compile() {
-   pushd src/${EGO_PN} || die
-   GOPATH="${S}" go build -v -ldflags "-X 
${EGO_PN}/version.GITCOMMIT=${GIT_COMMIT} -X ${EGO_PN}/version.VERSION=${PV}" 
-o "${S}"/bin/reg . || die
-   popd || die
-}
-
-src_install() {
-   dobin bin/*
-   dodoc src/${EGO_PN}/README.md
-   insinto /var/lib/${PN}
-   doins -r src/${EGO_PN}/server/*
-   newinitd "${FILESDIR}"/reg.initd reg
-   newconfd "${FILESDIR}"/reg.confd reg
-
-   keepdir /var/log/reg
-   fowners -R reg:reg /var/log/reg /var/lib/reg/static
-}



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

2019-01-29 Thread Manuel Rüger
commit: 3f93f76d3fbf7afd1c044d5355d07f93552434e0
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Jan 28 13:56:45 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Jan 29 14:45:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f93f76d

app-emulation/reg: Fix snapshot name

Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Manuel Rüger  gentoo.org>

 app-emulation/reg/Manifest|  1 +
 app-emulation/reg/reg-0.16.0_p20190102.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/app-emulation/reg/Manifest b/app-emulation/reg/Manifest
index 8f1e56ab016..bede042bda5 100644
--- a/app-emulation/reg/Manifest
+++ b/app-emulation/reg/Manifest
@@ -1,3 +1,4 @@
 DIST github.com-go-yaml-yaml-a3f3340b5840cee44f372bddb5880fcbc419b46a.tar.gz 
60814 BLAKE2B 
a77b7d72e2937af71a0734c21bee7a1d7770157c27f1ddfa164c66fd5461f86a2ef46e002087092ef011caae572838bcc9537a8290cd54dfafb7f54423e47c48
 SHA512 
184a0e658a4eac3b867533cd0e494bd84db94fbe10e8df0d0b755c7ffc95bc99e2f84c0157183ca74cdc79289a85dcf7f1dea8a4c89a253565baf473b3627eae
 DIST reg-0.16.0.tar.gz 2991496 BLAKE2B 
e94a53c79ff062013e091d4c558870ef5c25af181cba201a44fa38b9dfe8816d6f3fd581f4e9a3dafe5b3753a3755c31f8b2f4a347da134a969fc93ac296897c
 SHA512 
1e4d936e406998ffaa176e7834b28970b594f88a339fd8447bef2f944efa9b51c1d35bf71b384b3ed1b3e84be08db6d7fd487f4a3c65aa2de0308d6128cf0070
 DIST reg-0.16.0_p20180102.tar.gz 2994965 BLAKE2B 
c7cb8a0eaa1599a5464b7a98c3df0b146dbbfea884260b7c8cbf5393a9384c8875e38ea4e45c5f888c65b9bb8c326cf9934d9b3c32a4809fe8e3b23239e8f2a8
 SHA512 
90e92c15b7ca4f2a5f943cb80096af0eba50acd7691963609c25f15a6795f886843776180754ab7d28477f1fc3a4b8d916bc9ac99b768368471b31564d14769c
+DIST reg-0.16.0_p20190102.tar.gz 2994965 BLAKE2B 
c7cb8a0eaa1599a5464b7a98c3df0b146dbbfea884260b7c8cbf5393a9384c8875e38ea4e45c5f888c65b9bb8c326cf9934d9b3c32a4809fe8e3b23239e8f2a8
 SHA512 
90e92c15b7ca4f2a5f943cb80096af0eba50acd7691963609c25f15a6795f886843776180754ab7d28477f1fc3a4b8d916bc9ac99b768368471b31564d14769c

diff --git a/app-emulation/reg/reg-0.16.0_p20190102.ebuild 
b/app-emulation/reg/reg-0.16.0_p20190102.ebuild
new file mode 100644
index 000..3d7a774209c
--- /dev/null
+++ b/app-emulation/reg/reg-0.16.0_p20190102.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGO_VENDOR=( "gopkg.in/yaml.v2 a3f3340b5840cee44f372bddb5880fcbc419b46a 
github.com/go-yaml/yaml" )
+
+inherit golang-build golang-vcs-snapshot user
+
+EGO_PN="github.com/genuinetools/reg"
+GIT_COMMIT="d959057b30da67d5f162790f9d5b5160686901fd"
+ARCHIVE_URI="https://${EGO_PN}/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz
+   ${EGO_VENDOR_URI}"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Docker registry v2 command line client"
+HOMEPAGE="https://github.com/genuinetools/reg";
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+RESTRICT="test"
+
+pkg_setup() {
+   enewgroup reg
+   enewuser reg -1 -1 /var/lib/reg reg
+}
+
+src_prepare() {
+   pushd src/${EGO_PN} || die
+   eapply "${FILESDIR}"/reg-0.16.0-config.patch
+   default
+   popd || die
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   GOPATH="${S}" go build -v -ldflags "-X 
${EGO_PN}/version.GITCOMMIT=${GIT_COMMIT} -X ${EGO_PN}/version.VERSION=${PV}" 
-o "${S}"/bin/reg . || die
+   popd || die
+}
+
+src_install() {
+   dobin bin/*
+   dodoc src/${EGO_PN}/README.md
+   insinto /var/lib/${PN}
+   doins -r src/${EGO_PN}/server/*
+   newinitd "${FILESDIR}"/reg.initd reg
+   newconfd "${FILESDIR}"/reg.confd reg
+
+   keepdir /var/log/reg
+   fowners -R reg:reg /var/log/reg /var/lib/reg/static
+}



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

2019-01-29 Thread Thomas Deutschmann
commit: 88db0e28303b6a493ffba615abf21598ecbf61f8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jan 29 14:33:48 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jan 29 14:37:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88db0e28

www-client/firefox: require >=media-libs/libvpx-1.7.0

Closes: https://bugs.gentoo.org/676762
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 www-client/firefox/firefox-65.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/firefox/firefox-65.0.ebuild 
b/www-client/firefox/firefox-65.0.ebuild
index 1c1ee2349fd..157df868264 100644
--- a/www-client/firefox/firefox-65.0.ebuild
+++ b/www-client/firefox/firefox-65.0.ebuild
@@ -88,7 +88,7 @@ CDEPEND="
system-icu? ( >=dev-libs/icu-60.2:= )
system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 )
system-libevent? ( >=dev-libs/libevent-2.0:0= )
-   system-libvpx? ( >=media-libs/libvpx-1.5.0:0=[postproc] )
+   system-libvpx? ( >=media-libs/libvpx-1.7.0:0=[postproc] )
system-sqlite? ( >=dev-db/sqlite-3.25.3:3[secure-delete,debug=] )
system-webp? ( >=media-libs/libwebp-1.0.1:0= )
wifi? ( kernel_linux? ( >=sys-apps/dbus-0.60



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

2019-01-29 Thread Thomas Deutschmann
commit: 94754a8f0ecb98ec7779ec608d60bcb728d613ac
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jan 29 14:37:23 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jan 29 14:37:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94754a8f

dev-util/cbindgen: bump to v0.7.1

Closes: https://github.com/gentoo/gentoo/pull/10889
Closes: https://bugs.gentoo.org/676034
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-util/cbindgen/Manifest  |  2 ++
 dev-util/cbindgen/cbindgen-0.7.1.ebuild | 54 +
 2 files changed, 56 insertions(+)

diff --git a/dev-util/cbindgen/Manifest b/dev-util/cbindgen/Manifest
index c47945419fe..fd8db77b54d 100644
--- a/dev-util/cbindgen/Manifest
+++ b/dev-util/cbindgen/Manifest
@@ -3,6 +3,7 @@ DIST atty-0.2.10.crate 5962 BLAKE2B 
36a2fe57eb500124f20464a7d67f86bc6270c2143f82
 DIST bitflags-1.0.3.crate 13838 BLAKE2B 
d053495250ce43970d4dbca6ec7dd541e5f5ca6597f35b8ac7cae3230e80f95d8f056f3ea030c12dd02228b51184c8020f8d2ab5ee4da4dad88a97638ea3db41
 SHA512 
c1410967948a0c44c434bcf952c586166cea656f98532980156bce5eb68ea2966ad7457abd2e45e7444d346f47950aad9d6b4d6779486cddfbda70dee5716bd8
 DIST cbindgen-0.6.6.crate 82574 BLAKE2B 
ec3d2d03ea677acf89046d148447ea1108f4d0189878e9ffe4ceab273ea377cd489df27d9d6c589641dc614d0c8982fb19d2452d4ae88609adaa9a6aebf70baa
 SHA512 
d51d17765d705424dead65e4240c52fe93da731d5ac1cc76fe79e2eb68a42c26a7de58b08149cccd6806ee5bb189df8c15c3a532a5f857a65c2fd69c656d7137
 DIST cbindgen-0.6.7.crate 84579 BLAKE2B 
6307bc70346acd1340393c07460198666b7133d3cc21c0d02712a017458e3a228ff6dc6f3cfda8d560e5cc8eb6d9a15e52309099dc7deb151bf157ed6856ef6f
 SHA512 
1a2a3f2055b0527b878b78834e6c802a171ed5f3494ff4819622f8244821d9a1b23d34d0c9370bee10a9f334cdbdfac43cb513f61bd49d57614f66825cd78030
+DIST cbindgen-0.7.1.crate 90623 BLAKE2B 
4fa7e82ee15b89a7de678eedb6ff95c3ca36376aefc8496a6b728eddce075a2aff9076867adfc0b6104a3317fc1e205fa4399b773211944261f8495265eba574
 SHA512 
ee9856e07ea55c03f4a715497167a4714e3d1297c1f52da2fef507b44d93f258ca2eda8004befb3915a9cfd783b44e6768706de5efa3cac6f7a778bf8ccb4e76
 DIST cfg-if-0.1.3.crate 7115 BLAKE2B 
748cb334312efe8a1410a0dda75db94ea2e6a6915a6293cec35cdfc72f9491a6fde32691c53cbac20f705760725dcc766107a15a4bee41481beb724ea8588a6c
 SHA512 
88537e4b53f5553fdee16c4949de0bb0fdf12576b9a1d197fc7edd00d41c47972d481227bb6311bec774099cde27195fe319f28f4385a4091f06849dceabd34d
 DIST clap-2.31.2.crate 194051 BLAKE2B 
67ff210e200d387008fb5ddbb4b0a7961f568886a4df57b12b8aa1dd4c87b0408d11d9797980f3dadfbc9aa30bdf71586474a3d905d0d45eee13165692505bb8
 SHA512 
f43c3e2736a7fcd5c59ba4c80bcdb28fe436b85fe33ef74a53b76b7aab009d9315d2be007a52c1abdee2f754b118ab8132640e6e6954fd60017a17d0cc086127
 DIST cloudabi-0.0.3.crate 22156 BLAKE2B 
e12054fd474754031f8f5038d5e2829e1586db974d38230cfd8774db591a58dfdcaea9fb61fc0b35366889d348b2c73ceaabbb462f1abeeffeaab167013c986f
 SHA512 
691ed793e9b35ba382f03897f4c0efc31a528394862a27b814ba8993ad30bbe0ebc9808484baf580e8b69d9c13ad1612776a1efd0f6981545b420139ff83592c
@@ -27,6 +28,7 @@ DIST serde_json-1.0.19.crate 65039 BLAKE2B 
86264040f32b0c94c1d43e55248612ec56b42
 DIST strsim-0.7.0.crate 8435 BLAKE2B 
6869075bc3949fbdec1b74548b816560d1bf3759ba4c3e972a84f885e6732edd25596d75a4b6f6b85d93821f559757d096cb5f0b0eb04dabd8bb974d214f3188
 SHA512 
3f92df0f444129b16fbb15c533b7bc1d6f18970b487b57345f74747fb7f41e3dc0cb61255712e94d419a5777b8f6a9cdf1a716718698c479eb98dfb6464d1983
 DIST syn-0.13.11.crate 134240 BLAKE2B 
6661d1ea3cb20a3bd4650b95324a201fbe143d31733eb8910ce126b0983043fb569d2250875996588831a6112fe45976d4a103e9ee6e373a1374644ac33fd420
 SHA512 
e14192e7bdc91d5bffbfc1e7091a46c340b4f5a9a6336b9cc12c78c328f9feaa432b4261346431fac1b5a11f93e122f1e902f1fae0927f9df6b5294e0abc3fa5
 DIST syn-0.14.1.crate 133459 BLAKE2B 
303abdde61afa57594db2b8882c86237f64b15582ea38e681a9b9234b0ab18bed183862178bec132d5ceef5d40a63d37a2fd872f16a509d7f6043b3eb27ef8a3
 SHA512 
408c785e6c6f7f63134a22c383f54ed8ab45d0521e1ddaba9204b21d1e0e56242e153377bd3ff67467816d581c91ecf663cbb814b1d6549a961e01f20b331482
+DIST syn-0.15.23.crate 145369 BLAKE2B 
f66939982ee09090f2baf1cc4522615e6975d4350c7c65b3b0a3568cd3b3aef04231f6c23b818333107af784780366cafe7d726f03f346ed227c1db6cca522c1
 SHA512 
d447ec08199d36e289ea303ee8e871e13e002a4d67c396187ef56eb16b69cf21d64becd24fd8d2f7a1c826685f7b6df747903e7eb8cc5c334ee0528998597128
 DIST tempfile-3.0.3.crate 20806 BLAKE2B 
0eaabedcb1f68dddafa72a454f82e6b1de6f8cceb8af3cb52f459e8775e3df1ada5b51120ecd9f52bb6f6da3fc3e698da339bc7e39d12497fa9f7efc418b018e
 SHA512 
2bcc90ba3eed8a830b33de169419e222c16f9e0209734cdcf919422fdb504b29fc75f30dff7243bf19eb81cca12c80c94b80a622be8bac7b847242a58595873a
 DIST termion-1.5.1.crate 20659 BLAKE2B 
5b4291c2c26a074c16eac2e7bcb40467380181bac69c941e5c958059dc239cbbfd74872d9bd3da65245d010f9fc39804c43dc96f4caab2499b021cf35977a6b0
 SHA512 
1d1536f08600c7c1f414b4579a1a6e7eff91f4c105504125118d3cadf71c7886a

[gentoo-commits] repo/gentoo:master commit in: gnome-base/gsettings-desktop-schemas/

2019-01-29 Thread Mikle Kolyada
commit: 164e8b135439d8febca45933f01f81931da6a15b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:46:43 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:46:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=164e8b13

gnome-base/gsettings-desktop-schemas: mark s390 stable

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

 .../gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild 
b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild
index 06acddbb33f..360de4ab49b 100644
--- 
a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild
+++ 
b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ 
HOMEPAGE="https://git.gnome.org/browse/gsettings-desktop-schemas";
 LICENSE="LGPL-2.1+"
 SLOT="0"
 IUSE="+introspection"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris 
~x86-solaris"
 
 RDEPEND="
>=dev-libs/glib-2.31:2



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

2019-01-29 Thread Mikle Kolyada
commit: 5fd519f3f8afb334e37e8c6cc43c0baaa88f8d2f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:46:02 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:46:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fd519f3

net-libs/rest: mark s390 stable

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

 net-libs/rest/rest-0.8.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/rest/rest-0.8.1.ebuild b/net-libs/rest/rest-0.8.1.ebuild
index ebfd6ac2bc2..831f75ec61d 100644
--- a/net-libs/rest/rest-0.8.1.ebuild
+++ b/net-libs/rest/rest-0.8.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -12,7 +12,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Librest";
 LICENSE="LGPL-2.1"
 SLOT="0.7"
 IUSE="+introspection test"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ~ppc64 s390 sparc x86"
 
 # Coverage testing should not be enabled
 RDEPEND="



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

2019-01-29 Thread Mikle Kolyada
commit: 287137b7ccf7bf51440983a672c12ad9a1ebad8c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:45:20 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:45:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=287137b7

app-vim/gtk-syntax: mark s390 stable

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

 app-vim/gtk-syntax/gtk-syntax-20130716.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-vim/gtk-syntax/gtk-syntax-20130716.ebuild 
b/app-vim/gtk-syntax/gtk-syntax-20130716.ebuild
index 6b9d88d9d65..16c851a4f71 100644
--- a/app-vim/gtk-syntax/gtk-syntax-20130716.ebuild
+++ b/app-vim/gtk-syntax/gtk-syntax-20130716.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -8,4 +8,4 @@ inherit vim-plugin
 DESCRIPTION="vim plugin: Syntax highlighting for GLib, Gtk+, Xlib, Gimp, 
Gnome, and more"
 HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=1000";
 LICENSE="vim"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos 
~x86-solaris"



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

2019-01-29 Thread Mikle Kolyada
commit: af43a8b80c12c10dd1ad5f2194b1902475e84eb6
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:42:19 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:42:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af43a8b8

media-libs/libgphoto2: Add ~s390 keyword

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

 media-libs/libgphoto2/libgphoto2-2.5.16.ebuild | 2 +-
 media-libs/libgphoto2/libgphoto2-2.5.20.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/libgphoto2/libgphoto2-2.5.16.ebuild 
b/media-libs/libgphoto2/libgphoto2-2.5.16.ebuild
index 2575e4781e8..cee28f15d64 100644
--- a/media-libs/libgphoto2/libgphoto2-2.5.16.ebuild
+++ b/media-libs/libgphoto2/libgphoto2-2.5.16.ebuild
@@ -17,7 +17,7 @@ LICENSE="GPL-2"
 # FIXME: should we also bump for libgphoto2_port.so soname version?
 SLOT="0/6" # libgphoto2.so soname version
 
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~s390 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc examples exif gd jpeg nls serial"
 
 # By default, drivers for all supported cameras will be compiled.

diff --git a/media-libs/libgphoto2/libgphoto2-2.5.20.ebuild 
b/media-libs/libgphoto2/libgphoto2-2.5.20.ebuild
index 02cbf96621a..244269d6588 100644
--- a/media-libs/libgphoto2/libgphoto2-2.5.20.ebuild
+++ b/media-libs/libgphoto2/libgphoto2-2.5.20.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # TODO
@@ -17,7 +17,7 @@ LICENSE="GPL-2"
 # FIXME: should we also bump for libgphoto2_port.so soname version?
 SLOT="0/6" # libgphoto2.so soname version
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc examples exif gd jpeg nls serial"
 
 # By default, drivers for all supported cameras will be compiled.



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

2019-01-29 Thread Mikle Kolyada
commit: 0f2b12ffb5f74f5a0048f78138f10f1717418f98
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:38:16 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:38:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f2b12ff

dev-ruby/racc: Add ~s390 keyword

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

 dev-ruby/racc/racc-1.4.14.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/racc/racc-1.4.14.ebuild b/dev-ruby/racc/racc-1.4.14.ebuild
index 9f0572e84bc..984d30c78e3 100644
--- a/dev-ruby/racc/racc-1.4.14.ebuild
+++ b/dev-ruby/racc/racc-1.4.14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/tenderlove/racc";
 LICENSE="LGPL-2.1"
 SLOT="0"
 
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 ruby_add_bdepend "dev-ruby/rake



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

2019-01-29 Thread Mikle Kolyada
commit: a300b9e269f772d0cce6823f0f99d345b24129d2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:41:18 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:41:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a300b9e2

net-libs/courier-authlib: mark s390 stable

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

 net-libs/courier-authlib/courier-authlib-0.66.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/courier-authlib/courier-authlib-0.66.4.ebuild 
b/net-libs/courier-authlib/courier-authlib-0.66.4.ebuild
index c01c45e0819..d4ce92e9f4c 100644
--- a/net-libs/courier-authlib/courier-authlib-0.66.4.ebuild
+++ b/net-libs/courier-authlib/courier-authlib-0.66.4.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 inherit eutils flag-o-matic multilib user
 
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~x86-fbsd"
 
 DESCRIPTION="Courier authentication library"
 SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"



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

2019-01-29 Thread Mikle Kolyada
commit: 3c4364bce9ca7e964459e1c688cab2ebbd01302a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:39:20 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:39:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c4364bc

dev-ruby/minitest: mark s390 stable

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

 dev-ruby/minitest/minitest-4.7.5-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/minitest/minitest-4.7.5-r2.ebuild 
b/dev-ruby/minitest/minitest-4.7.5-r2.ebuild
index 7e172ef5b7a..62c84667d45 100644
--- a/dev-ruby/minitest/minitest-4.7.5-r2.ebuild
+++ b/dev-ruby/minitest/minitest-4.7.5-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/seattlerb/minitest";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 each_ruby_prepare() {



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

2019-01-29 Thread Mikle Kolyada
commit: 530e9e4b20281c37f8b04bdf540b6156df95c580
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:43:11 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:43:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=530e9e4b

media-libs/ftgl: mark s390 stable

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

 media-libs/ftgl/ftgl-2.1.3_rc5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild 
b/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild
index 068c13cabe6..4081b052c58 100644
--- a/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild
+++ b/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="static-libs"
 
 DEPEND=">=media-libs/freetype-2.0.9



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

2019-01-29 Thread Mikle Kolyada
commit: 36458dc14aa4c9d5c2c63331640c89a74eb68ca5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:39:58 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:39:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36458dc1

dev-python/pydot: mark s390 stable

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

 dev-python/pydot/pydot-1.0.28-r2.ebuild | 4 ++--
 dev-python/pydot/pydot-1.2.3.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/pydot/pydot-1.0.28-r2.ebuild 
b/dev-python/pydot/pydot-1.0.28-r2.ebuild
index da31180ccee..acc255d3ba7 100644
--- a/dev-python/pydot/pydot-1.0.28-r2.ebuild
+++ b/dev-python/pydot/pydot-1.0.28-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris"
 IUSE=""
 
 RDEPEND="

diff --git a/dev-python/pydot/pydot-1.2.3.ebuild 
b/dev-python/pydot/pydot-1.2.3.ebuild
index d830cd77711..054706ccbec 100644
--- a/dev-python/pydot/pydot-1.2.3.ebuild
+++ b/dev-python/pydot/pydot-1.2.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/erocarrera/pydot/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris"
 IUSE="test"
 
 RDEPEND="



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

2019-01-29 Thread Mikle Kolyada
commit: 61f05f31768d239aad0d7e336414a0abdf6699dd
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:37:01 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:37:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61f05f31

dev-python/wsgiproxy2: Add ~s390 keyword

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

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

diff --git a/dev-python/wsgiproxy2/wsgiproxy2-0.4.2.ebuild 
b/dev-python/wsgiproxy2/wsgiproxy2-0.4.2.ebuild
index 45b23004420..e4786525631 100644
--- a/dev-python/wsgiproxy2/wsgiproxy2-0.4.2.ebuild
+++ b/dev-python/wsgiproxy2/wsgiproxy2-0.4.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.zip"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc64 s390 ~sh sparc x86"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



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

2019-01-29 Thread Mikle Kolyada
commit: 9afd636c66fd367099e5cc4f6bb8c1cfcfb6d4c8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:33:59 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:33:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9afd636c

dev-python/priority: mark s390 stable

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

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

diff --git a/dev-python/priority/priority-1.3.0.ebuild 
b/dev-python/priority/priority-1.3.0.ebuild
index a02d979143f..35871ea5889 100644
--- a/dev-python/priority/priority-1.3.0.ebuild
+++ b/dev-python/priority/priority-1.3.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND=""



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

2019-01-29 Thread Mikle Kolyada
commit: 7331b3f3e7046680ae72296a9b687905115a6557
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:32:37 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:32:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7331b3f3

dev-python/namespace-sphinxcontrib: mark s390 stable

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

 dev-python/namespace-sphinxcontrib/namespace-sphinxcontrib-1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/dev-python/namespace-sphinxcontrib/namespace-sphinxcontrib-1.0.ebuild 
b/dev-python/namespace-sphinxcontrib/namespace-sphinxcontrib-1.0.ebuild
index 4b3f31512b2..cf2a578c87d 100644
--- a/dev-python/namespace-sphinxcontrib/namespace-sphinxcontrib-1.0.ebuild
+++ b/dev-python/namespace-sphinxcontrib/namespace-sphinxcontrib-1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI=""
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



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

2019-01-29 Thread Mikle Kolyada
commit: 6986b25af826d2ca07a215d1d635099a1bf90375
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:33:26 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:33:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6986b25a

dev-python/service_identity: mark s390 stable

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

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

diff --git a/dev-python/service_identity/service_identity-16.0.0.ebuild 
b/dev-python/service_identity/service_identity-16.0.0.ebuild
index 6c936c387ec..30948849850 100644
--- a/dev-python/service_identity/service_identity-16.0.0.ebuild
+++ b/dev-python/service_identity/service_identity-16.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE=" MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ppc ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ppc ppc64 s390 ~sh sparc x86"
 IUSE="doc test"
 
 RDEPEND="



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

2019-01-29 Thread Mikle Kolyada
commit: 9e6c696d47f1af168fbc88c075f80c7b91b6dc51
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:34:46 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:34:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e6c696d

dev-python/hyperlink: Add ~s390 keyword

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

 dev-python/hyperlink/hyperlink-17.1.1.ebuild | 4 ++--
 dev-python/hyperlink/hyperlink-17.3.1.ebuild | 4 ++--
 dev-python/hyperlink/hyperlink-18.0.0.ebuild | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-python/hyperlink/hyperlink-17.1.1.ebuild 
b/dev-python/hyperlink/hyperlink-17.1.1.ebuild
index ac6dfded277..0714550b07b 100644
--- a/dev-python/hyperlink/hyperlink-17.1.1.ebuild
+++ b/dev-python/hyperlink/hyperlink-17.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
 IUSE="test"
 
 RDEPEND=""

diff --git a/dev-python/hyperlink/hyperlink-17.3.1.ebuild 
b/dev-python/hyperlink/hyperlink-17.3.1.ebuild
index 4ee662544c7..257c10f2466 100644
--- a/dev-python/hyperlink/hyperlink-17.3.1.ebuild
+++ b/dev-python/hyperlink/hyperlink-17.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND=""

diff --git a/dev-python/hyperlink/hyperlink-18.0.0.ebuild 
b/dev-python/hyperlink/hyperlink-18.0.0.ebuild
index 2d159e486d4..91efd49bbde 100644
--- a/dev-python/hyperlink/hyperlink-18.0.0.ebuild
+++ b/dev-python/hyperlink/hyperlink-18.0.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-Text-Balanced/

2019-01-29 Thread Mikle Kolyada
commit: 8239359d477defc50d5f05dc125a134db2787848
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:20:13 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:31:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8239359d

virtual/perl-Text-Balanced: mark s390 stable

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

 virtual/perl-Text-Balanced/perl-Text-Balanced-2.30.0-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/virtual/perl-Text-Balanced/perl-Text-Balanced-2.30.0-r4.ebuild 
b/virtual/perl-Text-Balanced/perl-Text-Balanced-2.30.0-r4.ebuild
index 8ec11ac9d43..da51c43a733 100644
--- a/virtual/perl-Text-Balanced/perl-Text-Balanced-2.30.0-r4.ebuild
+++ b/virtual/perl-Text-Balanced/perl-Text-Balanced-2.30.0-r4.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
 DESCRIPTION="Virtual for ${PN#perl-}"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 RDEPEND="
|| ( =dev-lang/perl-5.28* =dev-lang/perl-5.26* =dev-lang/perl-5.24* 
~perl-core/${PN#perl-}-${PV} )



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

2019-01-29 Thread Mikle Kolyada
commit: 870684a529cde1ab8c285d459c545b65e90c36fd
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:29:37 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:31:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=870684a5

dev-python/snowballstemmer: mark s390 stable

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

 dev-python/snowballstemmer/snowballstemmer-1.2.0.ebuild | 4 ++--
 dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/snowballstemmer/snowballstemmer-1.2.0.ebuild 
b/dev-python/snowballstemmer/snowballstemmer-1.2.0.ebuild
index cb20dc1189d..fa9c9194790 100644
--- a/dev-python/snowballstemmer/snowballstemmer-1.2.0.ebuild
+++ b/dev-python/snowballstemmer/snowballstemmer-1.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,5 +13,5 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86"
 IUSE=""

diff --git a/dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild 
b/dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild
index cb4f6dbe217..e9db925805a 100644
--- a/dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild
+++ b/dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,5 +13,5 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x64-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~x64-solaris"
 IUSE=""



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

2019-01-29 Thread Mikle Kolyada
commit: e690e33ebeacbbf57f0facb54b5688b0d835bebb
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:25:30 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:31:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e690e33e

dev-python/hpack: mark s390 stable

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

 dev-python/hpack/hpack-2.3.0-r1.ebuild | 4 ++--
 dev-python/hpack/hpack-3.0.0.ebuild| 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/hpack/hpack-2.3.0-r1.ebuild 
b/dev-python/hpack/hpack-2.3.0-r1.ebuild
index 5c5ebb06161..43a4c23db3f 100644
--- a/dev-python/hpack/hpack-2.3.0-r1.ebuild
+++ b/dev-python/hpack/hpack-2.3.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 sparc x86"
 IUSE="test"
 
 RDEPEND=""

diff --git a/dev-python/hpack/hpack-3.0.0.ebuild 
b/dev-python/hpack/hpack-3.0.0.ebuild
index 812dcbc6354..bd7d4665050 100644
--- a/dev-python/hpack/hpack-3.0.0.ebuild
+++ b/dev-python/hpack/hpack-3.0.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/python-hyper/${PN}/archive/v${PV}.tar.gz -> ${P}.tar
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd"
 IUSE="test"
 
 RDEPEND=""



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

2019-01-29 Thread Mikle Kolyada
commit: d71adf50d1122f32a444d3bfcd92c5f802f66f05
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:21:34 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:31:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d71adf50

dev-perl/Unicode-UTF8: mark s390 stable

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

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index 2bf1d21961d..7cf55ac59e0 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2019-01-29 Thread Mikle Kolyada
commit: 2450e848f4e1e6c94f1b510bad1cb1418b412145
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:22:21 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:31:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2450e848

dev-perl/Test-FailWarnings: mark s390 stable

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

 dev-perl/Test-FailWarnings/Test-FailWarnings-0.8.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-FailWarnings/Test-FailWarnings-0.8.0-r1.ebuild 
b/dev-perl/Test-FailWarnings/Test-FailWarnings-0.8.0-r1.ebuild
index 3f19b12b0ac..63d2bfab361 100644
--- a/dev-perl/Test-FailWarnings/Test-FailWarnings-0.8.0-r1.ebuild
+++ b/dev-perl/Test-FailWarnings/Test-FailWarnings-0.8.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Add test failures if warnings are caught"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 LICENSE="Apache-2.0"
 



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

2019-01-29 Thread Mikle Kolyada
commit: 99a549a1874710e6a665302d9175afd8f1c5cd53
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:28:59 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:31:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99a549a1

dev-python/contextlib2: mark s390 stable

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

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

diff --git a/dev-python/contextlib2/contextlib2-0.5.5.ebuild 
b/dev-python/contextlib2/contextlib2-0.5.5.ebuild
index 97a9d05fdf5..2c8ca48d975 100644
--- a/dev-python/contextlib2/contextlib2-0.5.5.ebuild
+++ b/dev-python/contextlib2/contextlib2-0.5.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="PSF-2.4"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-fbsd"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: virtual/python-greenlet/

2019-01-29 Thread Mikle Kolyada
commit: b30272f6d67fe283d4be762f468dd87fe71ac841
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:24:02 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:31:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b30272f6

virtual/python-greenlet: mark s390 stable

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

 virtual/python-greenlet/python-greenlet-1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/virtual/python-greenlet/python-greenlet-1.0.ebuild 
b/virtual/python-greenlet/python-greenlet-1.0.ebuild
index 39a08da8d1b..23624f84ee6 100644
--- a/virtual/python-greenlet/python-greenlet-1.0.ebuild
+++ b/virtual/python-greenlet/python-greenlet-1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ inherit python-r1
 
 DESCRIPTION="A virtual for Python greenlet module"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 -hppa ~mips ppc ppc64 x86"
+KEYWORDS="amd64 arm arm64 -hppa ~mips ppc ppc64 s390 x86"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 RDEPEND="${PYTHON_DEPS}



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

2019-01-29 Thread Mikle Kolyada
commit: c5b57ddf52225cc4a73a761f8d6f64398bf5f9e5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:21:05 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:31:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5b57ddf

dev-perl/Test-MockRandom: mark s390 stable

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

 dev-perl/Test-MockRandom/Test-MockRandom-1.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-MockRandom/Test-MockRandom-1.10.0.ebuild 
b/dev-perl/Test-MockRandom/Test-MockRandom-1.10.0.ebuild
index 02dfb1033cb..45c0bbeb78a 100644
--- a/dev-perl/Test-MockRandom/Test-MockRandom-1.10.0.ebuild
+++ b/dev-perl/Test-MockRandom/Test-MockRandom-1.10.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Replaces random number generation with 
non-random number generation
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test minimal examples"
 
 RDEPEND="



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

2019-01-29 Thread Mikle Kolyada
commit: 22ce7109d15e88dc34f4c4a4dedd1c29827fbfa2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:28:15 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:31:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22ce7109

dev-python/u-msgpack: mark s390 stable

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

 dev-python/u-msgpack/u-msgpack-2.4.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/u-msgpack/u-msgpack-2.4.1.ebuild 
b/dev-python/u-msgpack/u-msgpack-2.4.1.ebuild
index 251384bb6a2..5d18c5a0670 100644
--- a/dev-python/u-msgpack/u-msgpack-2.4.1.ebuild
+++ b/dev-python/u-msgpack/u-msgpack-2.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND=""



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

2019-01-29 Thread Mikle Kolyada
commit: 4b833ecc6ba0ea8b63d76ba92c8f8fe6ebc95515
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:30:16 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:31:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b833ecc

app-text/dvipng: mark s390 stable

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

 app-text/dvipng/dvipng-1.15-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/dvipng/dvipng-1.15-r1.ebuild 
b/app-text/dvipng/dvipng-1.15-r1.ebuild
index 4f7f255a1b5..ce06c6f999c 100644
--- a/app-text/dvipng/dvipng-1.15-r1.ebuild
+++ b/app-text/dvipng/dvipng-1.15-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-3+ Texinfo-manual"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
 IUSE="truetype test"
 
 RDEPEND="



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

2019-01-29 Thread Mikle Kolyada
commit: 498f66acdbc1b9a3c6919a68480a53106c0f547d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:26:11 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:31:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=498f66ac

dev-python/attrs: mark s390 stable

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

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

diff --git a/dev-python/attrs/attrs-18.2.0.ebuild 
b/dev-python/attrs/attrs-18.2.0.ebuild
index 35aef82ff0b..efb8bab27c3 100644
--- a/dev-python/attrs/attrs-18.2.0.ebuild
+++ b/dev-python/attrs/attrs-18.2.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 s390 
~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2019-01-29 Thread Michał Górny
commit: fbcbb20e2c90c9b2d68327986ef6a85c8837cf71
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jan 29 13:15:34 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jan 29 13:15:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbcbb20e

dev-libs/libgit2: Bump to 0.27.8 (bugfix)

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

 dev-libs/libgit2/Manifest  |  1 +
 dev-libs/libgit2/libgit2-0.27.8.ebuild | 82 ++
 2 files changed, 83 insertions(+)

diff --git a/dev-libs/libgit2/Manifest b/dev-libs/libgit2/Manifest
index 4711943e3e0..c7dfcc2ddda 100644
--- a/dev-libs/libgit2/Manifest
+++ b/dev-libs/libgit2/Manifest
@@ -1,2 +1,3 @@
 DIST libgit2-0.26.8.tar.gz 4742478 BLAKE2B 
31326987961ed42740f6c0ddce6a80c278175899a62cabd65ce9eef60854553e6a91fd9947ca23945104d4e1b46f9ab0bb1a1a793d8dd87bed792528e5c32839
 SHA512 
efb9229b2882ac36910d75778d7431bec40f3529f2ad2dd6a950d5580ceb0d4dd798242a422ea6cbb880f515df4dfbb7055a65dd5a8106696d3d458851fca56e
 DIST libgit2-0.27.7.tar.gz 4782856 BLAKE2B 
c844eca24b5053b3391ace6ebeea047bbba4fd429786e08144151109bfbd22f5c1b2609a176816a5d7eff63f1fe91122f88d89d3613dc4c770051cf095ae5ac3
 SHA512 
de2e266939bd40bc580603539e1156906b97299523336ddc6a66c3bec26729495bef2daa2d240b83b7e011e93852381e95a4407132b0440a5aa1e1b7642c0011
+DIST libgit2-0.27.8.tar.gz 4783928 BLAKE2B 
0f0f79a43de3e869d593dafc1b506ee0894143d2daedf2fe56683ad8f2edfd7d87bab784354b9fb1796fa8e08a36b9de88af65c7621a90d537cb585c89118197
 SHA512 
53ab69a0687afd315029fdbe0ce8192b7e88f7f1ff6bc9c4875718e638cecd64755a9942ad605e6c388c58c6b892b351d54c5405de8e0d5ba90406055a25ffaa

diff --git a/dev-libs/libgit2/libgit2-0.27.8.ebuild 
b/dev-libs/libgit2/libgit2-0.27.8.ebuild
new file mode 100644
index 000..3815701da06
--- /dev/null
+++ b/dev-libs/libgit2/libgit2-0.27.8.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5,6,7}} )
+inherit cmake-utils python-any-r1
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://github.com/${PN}/${PN}.git";
+   inherit git-r3
+else
+   SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~ppc-macos"
+fi
+
+DESCRIPTION="A linkable library for Git"
+HOMEPAGE="https://libgit2.github.com/";
+
+LICENSE="GPL-2-with-linking-exception"
+SLOT="0/27"
+IUSE="+curl examples gssapi libressl +ssh test +threads trace"
+
+RDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   sys-libs/zlib
+   net-libs/http-parser:=
+   curl? (
+   !libressl? ( net-misc/curl:=[curl_ssl_openssl(-)] )
+   libressl? ( net-misc/curl:=[curl_ssl_libressl(-)] )
+   )
+   gssapi? ( virtual/krb5 )
+   ssh? ( net-libs/libssh2 )
+"
+DEPEND="${RDEPEND}
+   ${PYTHON_DEPS}
+   virtual/pkgconfig
+"
+
+DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md )
+
+PATCHES=(
+   # skip OOM tests on 32-bit systems
+   # https://bugs.gentoo.org/669892
+   # 
https://github.com/libgit2/libgit2/commit/415a8ae9c9b6ac18f0524b6af8e58408b426457d
+   "${FILESDIR}"/libgit2-0.26.8-disable-oom-tests-on-32bit.patch
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)"
+   -DBUILD_CLAR=$(usex test)
+   -DENABLE_TRACE=$(usex trace)
+   -DUSE_GSSAPI=$(usex gssapi)
+   -DUSE_SSH=$(usex ssh)
+   -DTHREADSAFE=$(usex threads)
+   -DCURL=$(usex curl)
+   )
+   cmake-utils_src_configure
+}
+
+src_test() {
+   if [[ ${EUID} -eq 0 ]] ; then
+   # repo::iterator::fs_preserves_error fails if run as root
+   # since root can still access dirs with  perms
+   ewarn "Skipping tests: non-root privileges are required for all 
tests to pass"
+   else
+   local TEST_VERBOSE=1
+   cmake-utils_src_test -R offline
+   fi
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   if use examples ; then
+   find examples -name '.gitignore' -delete || die
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+}



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

2019-01-29 Thread Bernard Cafarelli
commit: 314daf2f1ee5933326ebe0dde344d10e11501d1d
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jan 29 13:02:08 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jan 29 13:02:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=314daf2f

net-misc/rdesktop: restore libressl fix

It was lost in the 1.8.4 bump

Closes: https://bugs.gentoo.org/664202
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 .../rdesktop/files/rdesktop-1.8.4-libressl.patch   | 16 +
 net-misc/rdesktop/rdesktop-1.8.4-r1.ebuild | 70 ++
 2 files changed, 86 insertions(+)

diff --git a/net-misc/rdesktop/files/rdesktop-1.8.4-libressl.patch 
b/net-misc/rdesktop/files/rdesktop-1.8.4-libressl.patch
new file mode 100644
index 000..b56cbfc3053
--- /dev/null
+++ b/net-misc/rdesktop/files/rdesktop-1.8.4-libressl.patch
@@ -0,0 +1,16 @@
+diff --git a/ssl.c b/ssl.c
+index 07d7aa5..45df34f 100644
+--- a/ssl.c
 b/ssl.c
+@@ -225,7 +225,7 @@ rdssl_rkey_get_exp_mod(RDSSL_RKEY * rkey, uint8 * 
exponent, uint32 max_exp_len,
+   BIGNUM *e = NULL;
+   BIGNUM *n = NULL;
+ 
+-#if OPENSSL_VERSION_NUMBER < 0x1010L
++#if (OPENSSL_VERSION_NUMBER < 0x1010L  || 
defined(LIBRESSL_VERSION_NUMBER))
+   e = rkey->e;
+   n = rkey->n;
+ #else
+-- 
+2.20.1
+

diff --git a/net-misc/rdesktop/rdesktop-1.8.4-r1.ebuild 
b/net-misc/rdesktop/rdesktop-1.8.4-r1.ebuild
new file mode 100644
index 000..d0abef7c4ac
--- /dev/null
+++ b/net-misc/rdesktop/rdesktop-1.8.4-r1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools eutils
+
+MY_PV=${PV/_/-}
+
+DESCRIPTION="A Remote Desktop Protocol Client"
+HOMEPAGE="http://www.rdesktop.org/";
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="alsa ao debug ipv6 kerberos libressl libsamplerate oss pcsc-lite xrandr"
+
+S=${WORKDIR}/${PN}-${MY_PV}
+
+RDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:= )
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXau
+   x11-libs/libXdmcp
+   alsa? ( media-libs/alsa-lib )
+   ao? ( >=media-libs/libao-0.8.6 )
+   kerberos? ( net-libs/libgssglue )
+   libsamplerate? ( media-libs/libsamplerate )
+   pcsc-lite? ( >=sys-apps/pcsc-lite-1.6.6 )
+   xrandr? ( x11-libs/libXrandr )"
+DEPEND="${RDEPEND}
+   x11-libs/libXt"
+BDEPEND=virtual/pkgconfig
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.6.0-sound_configure.patch
+   "${FILESDIR}"/${PN}-1.8.3-no_strip.patch
+   "${FILESDIR}"/${PN}-1.8.3-xrandr_configure.patch
+   "${FILESDIR}"/${P}-libressl.patch
+)
+
+DOCS=( doc/HACKING doc/TODO doc/keymapping.txt )
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   if use ao; then
+   sound_conf=$(use_with ao sound libao)
+   else if use alsa; then
+   sound_conf=$(use_with alsa sound alsa)
+   else
+   sound_conf=$(use_with oss sound oss)
+   fi
+   fi
+
+   econf \
+   --with-openssl="${EPREFIX}"/usr \
+   $(use_with debug) \
+   $(use_with ipv6) \
+   $(use_with libsamplerate) \
+   $(use_with xrandr) \
+   $(use_enable kerberos credssp) \
+   $(use_enable pcsc-lite smartcard) \
+   ${sound_conf}
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Term-ReadLine-Gnu/

2019-01-29 Thread Mikle Kolyada
commit: d166fd6a3dc281c6ff7b73c44171fe40d0813cdb
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 12:26:12 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 12:26:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d166fd6a

dev-perl/Term-ReadLine-Gnu: mark s390 stable

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

 dev-perl/Term-ReadLine-Gnu/Term-ReadLine-Gnu-1.310.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Term-ReadLine-Gnu/Term-ReadLine-Gnu-1.310.0.ebuild 
b/dev-perl/Term-ReadLine-Gnu/Term-ReadLine-Gnu-1.310.0.ebuild
index d74bb128bd1..79e27905f9c 100644
--- a/dev-perl/Term-ReadLine-Gnu/Term-ReadLine-Gnu-1.310.0.ebuild
+++ b/dev-perl/Term-ReadLine-Gnu/Term-ReadLine-Gnu-1.310.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="GNU Readline XS library wrapper"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc s390 sparc x86"
 IUSE=""
 
 RDEPEND=">=sys-libs/readline-6.2:0="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-Stat-Bits/

2019-01-29 Thread Mikle Kolyada
commit: 67e5a528d88cae747100391ab3bf673d696e75d4
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 12:24:50 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 12:24:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67e5a528

dev-perl/File-Stat-Bits: mark s390 stable

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

 dev-perl/File-Stat-Bits/File-Stat-Bits-1.10.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/File-Stat-Bits/File-Stat-Bits-1.10.0-r1.ebuild 
b/dev-perl/File-Stat-Bits/File-Stat-Bits-1.10.0-r1.ebuild
index 19e2e77afc2..c47610a8b9d 100644
--- a/dev-perl/File-Stat-Bits/File-Stat-Bits-1.10.0-r1.ebuild
+++ b/dev-perl/File-Stat-Bits/File-Stat-Bits-1.10.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ DESCRIPTION="File stat bit mask constants"
 
 LICENSE="|| ( GPL-2 GPL-3 )" # GPL-2+
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 s390 x86"
 IUSE=""
 
 SRC_TEST="do"



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

2019-01-29 Thread Mikle Kolyada
commit: e252a83abc91fe82032068e89afa1eb801824443
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 12:22:23 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 12:22:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e252a83a

dev-perl/Term-ScreenColor: mark s390 stable

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

 dev-perl/Term-ScreenColor/Term-ScreenColor-1.200.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Term-ScreenColor/Term-ScreenColor-1.200.0-r1.ebuild 
b/dev-perl/Term-ScreenColor/Term-ScreenColor-1.200.0-r1.ebuild
index 4d1c3298444..22b61d25e91 100644
--- a/dev-perl/Term-ScreenColor/Term-ScreenColor-1.200.0-r1.ebuild
+++ b/dev-perl/Term-ScreenColor/Term-ScreenColor-1.200.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ DESCRIPTION="A Term::Screen based screen positioning and 
coloring module"
 
 LICENSE="|| ( Artistic GPL-2 )"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 s390 x86"
 IUSE=""
 
 RDEPEND=">=dev-perl/Term-Screen-1.30.0"



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

2019-01-29 Thread Mikle Kolyada
commit: b68303225e904c9909ceb565d6dd7ba61970e6d9
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 12:23:08 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 12:23:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6830322

dev-perl/Term-Screen: mark s390 stable

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

 dev-perl/Term-Screen/Term-Screen-1.50.0.ebuild | 4 ++--
 dev-perl/Term-Screen/Term-Screen-1.60.0.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-perl/Term-Screen/Term-Screen-1.50.0.ebuild 
b/dev-perl/Term-Screen/Term-Screen-1.50.0.ebuild
index 16b2be4ae72..42bc671e9c5 100644
--- a/dev-perl/Term-Screen/Term-Screen-1.50.0.ebuild
+++ b/dev-perl/Term-Screen/Term-Screen-1.50.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="A simple Term::Cap based screen positioning module"
 
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 s390 x86"
 IUSE="test"
 
 DEPEND="virtual/perl-ExtUtils-MakeMaker

diff --git a/dev-perl/Term-Screen/Term-Screen-1.60.0.ebuild 
b/dev-perl/Term-Screen/Term-Screen-1.60.0.ebuild
index 5b9a818481a..5082eba9629 100644
--- a/dev-perl/Term-Screen/Term-Screen-1.60.0.ebuild
+++ b/dev-perl/Term-Screen/Term-Screen-1.60.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="A simple Term::Cap based screen positioning module"
 
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 s390 x86"
 IUSE="test"
 
 DEPEND="virtual/perl-ExtUtils-MakeMaker



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

2019-01-29 Thread Mikle Kolyada
commit: 8de971f954026425154f74bac6c22b2575e8fadd
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 12:20:48 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 12:20:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8de971f9

app-misc/pfm: mark s390 stable

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

 app-misc/pfm/pfm-2.12.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/pfm/pfm-2.12.3.ebuild b/app-misc/pfm/pfm-2.12.3.ebuild
index 6932426c8f5..0d060d619cc 100644
--- a/app-misc/pfm/pfm-2.12.3.ebuild
+++ b/app-misc/pfm/pfm-2.12.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/p-f-m/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 s390 x86"
 
 RDEPEND=">=dev-lang/perl-5.8
>=dev-perl/File-Stat-Bits-1.10.0



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

2019-01-29 Thread Mikle Kolyada
commit: db901c7190539a316f49d794b0486e84527f9932
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 12:11:43 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 12:11:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db901c71

dev-libs/json-c: mark s390 stable

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

 dev-libs/json-c/json-c-0.12.ebuild  | 4 ++--
 dev-libs/json-c/json-c-0.13.1-r1.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-libs/json-c/json-c-0.12.ebuild 
b/dev-libs/json-c/json-c-0.12.ebuild
index c973e9c31b5..9074dc52349 100644
--- a/dev-libs/json-c/json-c-0.12.ebuild
+++ b/dev-libs/json-c/json-c-0.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ 
SRC_URI="https://s3.amazonaws.com/json-c_releases/releases/${P}.tar.gz";
 
 LICENSE="MIT"
 SLOT="0/2"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc static-libs"
 
 RDEPEND=""

diff --git a/dev-libs/json-c/json-c-0.13.1-r1.ebuild 
b/dev-libs/json-c/json-c-0.13.1-r1.ebuild
index bb30f3f25f2..45055013a93 100644
--- a/dev-libs/json-c/json-c-0.13.1-r1.ebuild
+++ b/dev-libs/json-c/json-c-0.13.1-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://s3.amazonaws.com/json-c_releases/releases/${P}.tar.gz";
 
 LICENSE="MIT"
 SLOT="0/4"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc static-libs"
 
 src_prepare() {



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

2019-01-29 Thread Mikle Kolyada
commit: 4711c5117f77131b8b44ddda30d1bb59998158b2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 12:14:33 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 12:14:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4711c511

dev-libs/vala-common: mark s390 stable

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

 dev-libs/vala-common/vala-common-0.36.15.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/vala-common/vala-common-0.36.15.ebuild 
b/dev-libs/vala-common/vala-common-0.36.15.ebuild
index 05db3a15338..8b0eff8060d 100644
--- a/dev-libs/vala-common/vala-common-0.36.15.ebuild
+++ b/dev-libs/vala-common/vala-common-0.36.15.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala";
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
 IUSE=""
 
 # Previously ${PN} was part of dev-lang/vala



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

2019-01-29 Thread Mikle Kolyada
commit: 7d8406e7cfcdb0cc298ec870c826c4153a638883
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 12:13:39 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 12:13:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d8406e7

dev-lang/vala: mark s390 stable

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

 dev-lang/vala/vala-0.34.16.ebuild | 2 +-
 dev-lang/vala/vala-0.36.15.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-lang/vala/vala-0.34.16.ebuild 
b/dev-lang/vala/vala-0.34.16.ebuild
index b5b32d7e52e..757c1fc6a7a 100644
--- a/dev-lang/vala/vala-0.34.16.ebuild
+++ b/dev-lang/vala/vala-0.34.16.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala";
 
 LICENSE="LGPL-2.1"
 SLOT="0.34"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="test"
 
 RDEPEND="

diff --git a/dev-lang/vala/vala-0.36.15.ebuild 
b/dev-lang/vala/vala-0.36.15.ebuild
index 9351ae8793c..71b8c0cb72a 100644
--- a/dev-lang/vala/vala-0.36.15.ebuild
+++ b/dev-lang/vala/vala-0.36.15.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala";
 
 LICENSE="LGPL-2.1"
 SLOT="0.36"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="test"
 
 RDEPEND="



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

2019-01-29 Thread Mikle Kolyada
commit: 8504fbe3e6397406f63d99307b432ca1d1824ec0
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 12:12:49 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 12:12:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8504fbe3

dev-lang/vala: mark s390 stable

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

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

diff --git a/dev-lang/vala/vala-0.32.1.ebuild b/dev-lang/vala/vala-0.32.1.ebuild
index 88fb7d696c0..81a91168cd0 100644
--- a/dev-lang/vala/vala-0.32.1.ebuild
+++ b/dev-lang/vala/vala-0.32.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala";
 
 LICENSE="LGPL-2.1"
 SLOT="0.32"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="test"
 
 RDEPEND="



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

2019-01-29 Thread Mikle Kolyada
commit: 45cfdf53225dfa7e313f35d427a4cd84695d3e84
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 12:10:20 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 12:10:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45cfdf53

app-arch/rpm: mark s390 stable

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

 app-arch/rpm/rpm-4.14.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-arch/rpm/rpm-4.14.1.ebuild b/app-arch/rpm/rpm-4.14.1.ebuild
index c3bc58da7ed..05513ac2d37 100644
--- a/app-arch/rpm/rpm-4.14.1.ebuild
+++ b/app-arch/rpm/rpm-4.14.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ SRC_URI="http://ftp.rpm.org/releases/rpm-$(ver_cut 
1-2).x/${P}.tar.bz2"
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux"
 
 # Tests are broken. See bug 657500
 RESTRICT="test"



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

2019-01-29 Thread Mikle Kolyada
commit: 59dc60a5d6a5a0793a001eb3824e5f09bd3d21b8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 12:08:16 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 12:08:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59dc60a5

net-print/cups-filters: mark s390 stable

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

 net-print/cups-filters/cups-filters-1.20.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-print/cups-filters/cups-filters-1.20.4.ebuild 
b/net-print/cups-filters/cups-filters-1.20.4.ebuild
index 77b90c6efca..42d6fce17e8 100644
--- a/net-print/cups-filters/cups-filters-1.20.4.ebuild
+++ b/net-print/cups-filters/cups-filters-1.20.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ if [[ "${PV}" == "" ]] ; then
EBZR_REPO_URI="http://bzr.linuxfoundation.org/openprinting/cups-filters";
 else
SRC_URI="http://www.openprinting.org/download/${PN}/${P}.tar.xz";
-   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-fbsd ~m68k-mint"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc 
x86 ~amd64-fbsd ~m68k-mint"
 fi
 DESCRIPTION="Cups filters"
 HOMEPAGE="https://wiki.linuxfoundation.org/openprinting/cups-filters";



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

2019-01-29 Thread Mikle Kolyada
commit: 02f9f8329dcb2da0873a7048bb9eac1592cfd7bd
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 12:03:17 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 12:03:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02f9f832

app-admin/syslog-ng: Add ~s390 keyword wrt bug #669654

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

 app-admin/syslog-ng/syslog-ng-3.17.2.ebuild | 2 +-
 app-admin/syslog-ng/syslog-ng-3.18.1.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-admin/syslog-ng/syslog-ng-3.17.2.ebuild 
b/app-admin/syslog-ng/syslog-ng-3.17.2.ebuild
index 61895ed44e5..198def34425 100644
--- a/app-admin/syslog-ng/syslog-ng-3.17.2.ebuild
+++ b/app-admin/syslog-ng/syslog-ng-3.17.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/balabit/syslog-ng/releases/download/${P}/${P}.tar.gz
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 ~s390 sparc x86"
 IUSE="amqp caps dbi geoip geoip2 http ipv6 json libressl mongodb pacct python 
redis smtp spoof-source systemd tcpd"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 # unit tests require https://github.com/Snaipe/Criterion with additional deps

diff --git a/app-admin/syslog-ng/syslog-ng-3.18.1.ebuild 
b/app-admin/syslog-ng/syslog-ng-3.18.1.ebuild
index d684bfa986a..5b32e80cc1a 100644
--- a/app-admin/syslog-ng/syslog-ng-3.18.1.ebuild
+++ b/app-admin/syslog-ng/syslog-ng-3.18.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/balabit/syslog-ng/releases/download/${P}/${P}.tar.gz
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
 IUSE="amqp caps dbi geoip geoip2 http ipv6 json libressl mongodb pacct python 
redis smtp spoof-source systemd tcpd"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 # unit tests require https://github.com/Snaipe/Criterion with additional deps



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

2019-01-29 Thread Mikle Kolyada
commit: f6b1e98dafd989b7d8e297cfa52a42946b83468a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 12:03:32 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 12:03:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6b1e98d

dev-libs/ivykis: Add ~s390 keyword wrt bug #669654

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

 dev-libs/ivykis/ivykis-0.42.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild 
b/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild
index 7682426f6e8..3739f58125d 100644
--- a/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild
+++ b/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/buytenh/ivykis/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 ~s390 sparc x86"
 IUSE="static-libs"
 
 PATCHES=(



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

2019-01-29 Thread Mikle Kolyada
commit: ef5593157bd1149333c5ef34902a84a78e6e227f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 11:59:19 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 11:59:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef559315

dev-db/postgresql: s390 stable wrt bug #675572

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

 dev-db/postgresql/postgresql-11.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/postgresql/postgresql-11.1.ebuild 
b/dev-db/postgresql/postgresql-11.1.ebuild
index 975cc54129a..2f651a703f8 100644
--- a/dev-db/postgresql/postgresql-11.1.ebuild
+++ b/dev-db/postgresql/postgresql-11.1.ebuild
@@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru 
sk sl sv tr zh_CN
 inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 SLOT=$(get_major_version)
 



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

2019-01-29 Thread Mikle Kolyada
commit: 6ee1c8f5f6266f236afafa7821acd75de891b353
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 11:57:50 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 11:57:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ee1c8f5

dev-tcltk/tcllib: s390 stable wrt bug #672714

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

 dev-tcltk/tcllib/tcllib-1.19.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-tcltk/tcllib/tcllib-1.19.ebuild 
b/dev-tcltk/tcllib/tcllib-1.19.ebuild
index eff1e236c47..c2701e93c48 100644
--- a/dev-tcltk/tcllib/tcllib-1.19.ebuild
+++ b/dev-tcltk/tcllib/tcllib-1.19.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.xz"
 LICENSE="BSD"
 SLOT="0"
 IUSE="examples"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~s390 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc s390 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 
 RDEPEND="
dev-lang/tcl:0=



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

2019-01-29 Thread Mikle Kolyada
commit: a11d45fc1abfab47ad79252aa74deaa2421a0515
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 11:55:51 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 11:55:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a11d45fc

dev-libs/libunistring: s390 stable wrt bug #674644

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

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

diff --git a/dev-libs/libunistring/libunistring-0.9.10.ebuild 
b/dev-libs/libunistring/libunistring-0.9.10.ebuild
index 4f166c0ae80..0ee94231712 100644
--- a/dev-libs/libunistring/libunistring-0.9.10.ebuild
+++ b/dev-libs/libunistring/libunistring-0.9.10.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-3 GPL-3"
 SLOT="0/2"
-KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs"
 
 PATCHES=(



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

2019-01-29 Thread Mikle Kolyada
commit: 410a7f1a83603f81b66a523a6d656640fd3b75ae
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 11:53:33 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 11:53:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=410a7f1a

media-libs/openjpeg: s390 stable wrt bug #659828

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

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

diff --git a/media-libs/openjpeg/openjpeg-2.3.0-r1.ebuild 
b/media-libs/openjpeg/openjpeg-2.3.0-r1.ebuild
index f292e53179e..cb02969ce24 100644
--- a/media-libs/openjpeg/openjpeg-2.3.0-r1.ebuild
+++ b/media-libs/openjpeg/openjpeg-2.3.0-r1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/uclouvain/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="2/7" # based on SONAME
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs test"
 
 RDEPEND="



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

2019-01-29 Thread Mikle Kolyada
commit: ebb842ab2e49d8cf85e9bea577d619aeb8b65f7c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 11:53:43 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 11:53:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebb842ab

app-text/poppler: s390 stable wrt bug #659828

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

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

diff --git a/app-text/poppler/poppler-0.68.0.ebuild 
b/app-text/poppler/poppler-0.68.0.ebuild
index 2c3f948431b..16588ae074d 100644
--- a/app-text/poppler/poppler-0.68.0.ebuild
+++ b/app-text/poppler/poppler-0.68.0.ebuild
@@ -11,7 +11,7 @@ if [[ "${PV}" == "" ]] ; then
SLOT="0/"
 else
SRC_URI="https://poppler.freedesktop.org/${P}.tar.xz";
-   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
SLOT="0/79"   # CHECK THIS WHEN BUMPING!!! SUBSLOT IS libpoppler.so 
SOVERSION
 fi
 



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

2019-01-29 Thread Mikle Kolyada
commit: 6fff33d4b7c79ce952c58a76dc6f9d3c4f640806
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 11:51:50 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 11:51:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fff33d4

net-analyzer/traceroute: s390 stable wrt bug #659454

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

 net-analyzer/traceroute/traceroute-2.1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/traceroute/traceroute-2.1.0.ebuild 
b/net-analyzer/traceroute/traceroute-2.1.0.ebuild
index 4378e4df664..6500eda2ebf 100644
--- a/net-analyzer/traceroute/traceroute-2.1.0.ebuild
+++ b/net-analyzer/traceroute/traceroute-2.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/traceroute/${P}.tar.gz"
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-linux ~x86-linux"
 IUSE="static"
 
 RDEPEND="!

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

2019-01-29 Thread Mikle Kolyada
commit: 789bf841af77e8567aa0483ebd46ad694a46c730
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 11:48:44 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 11:48:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=789bf841

app-portage/portage-utils: s390 stable wrt bug #675960

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

 app-portage/portage-utils/portage-utils-0.74.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/portage-utils/portage-utils-0.74.ebuild 
b/app-portage/portage-utils/portage-utils-0.74.ebuild
index cb0eabec9f4..46297923840 100644
--- a/app-portage/portage-utils/portage-utils-0.74.ebuild
+++ b/app-portage/portage-utils/portage-utils-0.74.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 RDEPEND="dev-libs/iniparser:0"



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

2019-01-29 Thread Mikle Kolyada
commit: ce6f29eed4eda3bd58200953424f87cdc151ec5b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 11:46:53 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 11:46:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce6f29ee

dev-util/strace: s390 stable wrt bug #673824

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

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

diff --git a/dev-util/strace/strace-4.25.ebuild 
b/dev-util/strace/strace-4.25.ebuild
index e2ead1dc7a5..d40c35f902d 100644
--- a/dev-util/strace/strace-4.25.ebuild
+++ b/dev-util/strace/strace-4.25.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3 autotools
 else

SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 
~sh sparc x86 ~amd64-linux ~x86-linux"
 fi
 
 DESCRIPTION="A useful diagnostic, instructional, and debugging tool"



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

2019-01-29 Thread Mikle Kolyada
commit: c275d266b303878c58707f3a45c7efbe3eaee734
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 11:45:12 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 11:45:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c275d266

sys-devel/autogen: s390 stable wrt bug #676082

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

 sys-devel/autogen/autogen-5.18.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autogen/autogen-5.18.16.ebuild 
b/sys-devel/autogen/autogen-5.18.16.ebuild
index fac3fc1f236..153b4b5cab4 100644
--- a/sys-devel/autogen/autogen-5.18.16.ebuild
+++ b/sys-devel/autogen/autogen-5.18.16.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/rel${PV}/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
 IUSE="libopts static-libs"
 
 RDEPEND=">=dev-scheme/guile-2.0:=



  1   2   >