[gentoo-commits] repo/gentoo:master commit in: net-dns/pdns/

2019-06-24 Thread Sven Wegener
commit: 87c8b81c6cab52a60c4cbc7c0e24bdb1ee54dacc
Author: Sven Wegener  gentoo  org>
AuthorDate: Tue Jun 25 05:51:39 2019 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Tue Jun 25 05:52:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87c8b81c

net-dns/pdns: Cleanup

Bug: https://bugs.gentoo.org/688428
Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Sven Wegener  gentoo.org>

 net-dns/pdns/Manifest  |   2 -
 net-dns/pdns/pdns-4.1.8.ebuild | 157 -
 net-dns/pdns/pdns-4.1.9.ebuild | 157 -
 3 files changed, 316 deletions(-)

diff --git a/net-dns/pdns/Manifest b/net-dns/pdns/Manifest
index 59cb0d9fd40..bb90165f208 100644
--- a/net-dns/pdns/Manifest
+++ b/net-dns/pdns/Manifest
@@ -1,4 +1,2 @@
 DIST pdns-4.1.10.tar.bz2 1117663 BLAKE2B 
9c1b8c608862b42019c6b753af950f940455538b439824e10d28a79a4f04fe926decf86f286d79c850f39e0df345d646ba774e5557cce1d44f6c120d8b2892a3
 SHA512 
59a7a52468f6daae8de01bb2b08d812906ef58047026369895341cfff253a5b9ba29d6a6b43a822f1632641eec34fa1afa6fbb5b0ba5e72ecce8e61787892136
-DIST pdns-4.1.8.tar.bz2 1116996 BLAKE2B 
df32e1e239f65a37570b1f3f6b7fd2384ea9ea4d60ecf6dc520441e7f004c9e17c1cb35358e1cd9b5080c85b6366354ae4b3e5eaeda20af18c6e411bb119bbc1
 SHA512 
1113745cdaa8fba591c176721893fb478e976861beee0cb6c0240e5afa6b68c9afae286579036b2ed77fffe76ca1e6f103cda915f8b7b875bcdc1253931ad935
-DIST pdns-4.1.9.tar.bz2 1117241 BLAKE2B 
899cf7e3be2ddbc1d78b321f807306f5ffd17dfe272442738bfd88869bb052d6b44aed34b0f4345e194f8916659a43a3634e258e9b47ad954ab3b49e12cad2d0
 SHA512 
d415f5f7cb13c6fcb31ee13184201e986850e533c580b657183592552d04631bc3334696cbf8fbb549869a559aebd4a6cbd742a7e7dfbaf6997232116e356f56
 DIST pdns-4.2.0-rc2.tar.bz2 1245187 BLAKE2B 
30ee03752dafa02f5618ba26def1cb8d49b0f7f004b54fcb8d7640b0d60897ac9a9b13e918ab3aaee1d679af772aacd0591e9c9cd3bf6b1af79305e06cac1cdb
 SHA512 
695589980fc35e73fc0e72f57034e2cfefd7b046100dc6f8740ac94dd50ee068453c72aa2ee5626e6cccfca1eeb5e3f036b844039db52d5c45f070d291002122

diff --git a/net-dns/pdns/pdns-4.1.8.ebuild b/net-dns/pdns/pdns-4.1.8.ebuild
deleted file mode 100644
index ad05ab44820..000
--- a/net-dns/pdns/pdns-4.1.8.ebuild
+++ /dev/null
@@ -1,157 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit multilib user
-
-DESCRIPTION="The PowerDNS Daemon"
-HOMEPAGE="https://www.powerdns.com/;
-SRC_URI="https://downloads.powerdns.com/releases/${P/_/-}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-# other possible flags:
-# db2: we lack the dep
-# oracle: dito (need Oracle Client Libraries)
-# xdb: (almost) dead, surely not supported
-
-IUSE="botan debug doc geoip ldap libressl lua luajit mydns mysql opendbx 
postgres protobuf remote sodium sqlite systemd tools tinydns test"
-
-REQUIRED_USE="mydns? ( mysql )"
-
-RDEPEND="
-   libressl? ( dev-libs/libressl:= )
-   !libressl? ( dev-libs/openssl:= )
-   >=dev-libs/boost-1.35:=
-   botan? ( dev-libs/botan:2= )
-   lua? (
-   !luajit? ( dev-lang/lua:= )
-   luajit? ( dev-lang/luajit:= )
-   )
-   mysql? ( dev-db/mysql-connector-c )
-   postgres? ( dev-db/postgresql:= )
-   ldap? ( >=net-nds/openldap-2.0.27-r4 app-crypt/mit-krb5 )
-   sqlite? ( dev-db/sqlite:3 )
-   opendbx? ( dev-db/opendbx )
-   geoip? ( >=dev-cpp/yaml-cpp-0.5.1:= dev-libs/geoip )
-   sodium? ( dev-libs/libsodium:= )
-   tinydns? ( >=dev-db/tinycdb-0.77 )
-   protobuf? ( dev-libs/protobuf )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig
-   doc? ( app-doc/doxygen )"
-
-S="${WORKDIR}"/${P/_/-}
-
-src_configure() {
-   local dynmodules="pipe bind" # the default backends, always enabled
-
-   #use db2 && dynmodules+=" db2"
-   use ldap && dynmodules+=" ldap"
-   use lua && dynmodules+=" lua"
-   use mydns && dynmodules+=" mydns"
-   use mysql && dynmodules+=" gmysql"
-   use opendbx && dynmodules+=" opendbx"
-   #use oracle && dynmodules+=" goracle oracle"
-   use postgres && dynmodules+=" gpgsql"
-   use remote && dynmodules+=" remote"
-   use sqlite && dynmodules+=" gsqlite3"
-   use tinydns && dynmodules+=" tinydns"
-   use geoip && dynmodules+=" geoip"
-   #use xdb && dynmodules+=" xdb"
-
-   econf \
-   --disable-static \
-   --sysconfdir=/etc/powerdns \
-   --libdir=/usr/$(get_libdir)/powerdns \
-   --with-modules= \
-   --with-dynmodules="${dynmodules}" \
-   --with-mysql-lib=/usr/$(get_libdir) \
-   $(use_enable botan) \
-   $(use_enable debug verbose-logging) \
-   $(use_enable test unit-tests) \
-   $(use_enable tools) \
-   $(use_enable systemd) \
-   $(use_enable sodium libsodium) \
-   $(usex lua 

[gentoo-commits] repo/gentoo:master commit in: mail-mta/postfix/

2019-06-24 Thread Eray Aslan
commit: 03fe27aa90878e6b176876eca9d40edd50fc4177
Author: Eray Aslan  gentoo  org>
AuthorDate: Tue Jun 25 05:22:12 2019 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Tue Jun 25 05:22:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03fe27aa

mail-mta/postfix: bump to postfix-3.5_pre20190621

Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Eray Aslan  gentoo.org>

 mail-mta/postfix/Manifest   | 2 +-
 .../{postfix-3.5_pre20190518.ebuild => postfix-3.5_pre20190621.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-mta/postfix/Manifest b/mail-mta/postfix/Manifest
index c13673f4712..4aff448e16f 100644
--- a/mail-mta/postfix/Manifest
+++ b/mail-mta/postfix/Manifest
@@ -3,5 +3,5 @@ DIST postfix-3.2.4.tar.gz 4390376 BLAKE2B 
132a6b467f9156d716a92cc7beae0f9a7c47e6
 DIST postfix-3.3.1.tar.gz 4420912 BLAKE2B 
065fd04cdfa343a6c50a629e8da47fad71465df790ca88adcad4efc7ab273330c39998c6bf503587b8bcba3d87bb98b1be6413e49449e2241258a99217473c11
 SHA512 
2307f50f8b7dab1db46ebe4ae30bc5682a25b9c49ae5ae65aa95b4620bb5450dd5929977c0f34b9e73a92ca6af36fd8e24167732420a1a2d89167c7a3b197276
 DIST postfix-3.3.4.tar.gz 4429964 BLAKE2B 
58812a75e7f8e2e89dce3dd8cb8b779c4b90995ce9d1885cec0fc475c8dc267741ea6c7af6e82fc80e3f71244964df9a5fe776c3b09e5e0cad1f59424dfab6b3
 SHA512 
fccc524167ea3b85f4fe0fc4ad8312f6d684c1900e7c5c355d4522513f74b588bbfcfd28074a8b69ce038982fcaa359abf585a296df4046184c7da6d0405d0ee
 DIST postfix-3.4.5.tar.gz 4581301 BLAKE2B 
9de66cab6eea610fc83e4629980b3e201b4e3f9185729cb84933aa940b64b7818d0439c5145ea0b635666db92c970e1974f4f439cd3b733c58e1fe5794c046fa
 SHA512 
af59d960b40799f7667935bef8fafb93ae6dcb70abaa77a15cf498571f37fa0429f411f9f08b1b6bfa588d3f572260d14d6d5409f0cd1e82b1c59928b2124c94
-DIST postfix-3.5-20190518.tar.gz 4607314 BLAKE2B 
873a9ce66d151dc627c25e9f4a5bafb6d28d19d823a6f6a2b6937c283ced1b7d0e407c407a64c440473c659cd7c5128e913d28a9fdb2736b5a409d33a4f9cefc
 SHA512 
2ecbfe9514ab25ddbb3a9abeb3c1c8b9c7984ac0c8052617838789040907f07ad8a8f2523909a9bd7cefb8e1ddaba1e090a762671a589fce8de1214371427972
+DIST postfix-3.5-20190621.tar.gz 4605569 BLAKE2B 
098b42056c5dd8f48add9eb0e396cb0fe082a5a5c4916e34e555b5191a1b7a58e479e543f5fa9f6041af60b0e3c34902c424b194a113185824b951b2790f8677
 SHA512 
28d4cdad2e97aa467242250599ba416933f49a3e70648bdb37467d23d414f97593f834afd4eec4e5e582bf5cf5726b566691695e46bdfacc3abcfb9c250f743e
 DIST postfix-vda-v13-2.10.0.patch 55701 BLAKE2B 
d8df041bb4ae7457cd066e71b6ae9470840d42edc9990a550ae51356cd62bfb08516250249030da26d1ef475619f0ebd609570d84ce57f8cdc347a2824b29536
 SHA512 
0b4b53a8cd28abf56eee3b2ed63ca1814251b60816e6ca1143249d25fd6ef7f905bec3134125ac6e851af685db8aae878012113693261529ae2ddbcf1bd93e62

diff --git a/mail-mta/postfix/postfix-3.5_pre20190518.ebuild 
b/mail-mta/postfix/postfix-3.5_pre20190621.ebuild
similarity index 100%
rename from mail-mta/postfix/postfix-3.5_pre20190518.ebuild
rename to mail-mta/postfix/postfix-3.5_pre20190621.ebuild



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

2019-06-24 Thread Matthew Thode
commit: 093107e09f3aa831a77739ba0172825a0bdb53a6
Author: Matthew Thode  gentoo  org>
AuthorDate: Tue Jun 25 03:14:20 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Tue Jun 25 03:14:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=093107e0

app-admin/puppetserver: fix install of 6.4.0

file name changed... mri-gem-list-no-dependencies.txt

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

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

diff --git a/app-admin/puppetserver/puppetserver-6.4.0.ebuild 
b/app-admin/puppetserver/puppetserver-6.4.0.ebuild
index 04fc3966a1c..e064d2554eb 100644
--- a/app-admin/puppetserver/puppetserver-6.4.0.ebuild
+++ b/app-admin/puppetserver/puppetserver-6.4.0.ebuild
@@ -107,7 +107,7 @@ src_install() {
fperms -R 700 /var/log/puppetlabs/puppetserver
insinto /opt/puppetlabs/server/data
doins ext/build-scripts/jruby-gem-list.txt
-   doins ext/build-scripts/mri-gem-list.txt
+   doins ext/build-scripts/mri-gem-list-no-dependencies.txt
insopts -m 0644
insinto /usr/lib/tmpfiles.d
newins ext/puppetserver.tmpfiles.conf puppetserver.conf



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

2019-06-24 Thread Zac Medico
commit: 3a68129569fd05787d7492a27b3a59799d4301d9
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jun 25 01:56:44 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 25 01:57:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a681295

dev-python/aws-xray-sdk-python: add Manifest

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

 dev-python/aws-xray-sdk-python/Manifest | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/aws-xray-sdk-python/Manifest 
b/dev-python/aws-xray-sdk-python/Manifest
new file mode 100644
index 000..f891c6b42fe
--- /dev/null
+++ b/dev-python/aws-xray-sdk-python/Manifest
@@ -0,0 +1 @@
+DIST aws-xray-sdk-2.4.2.tar.gz 66737 BLAKE2B 
5f062299ad28ee12d4f90bbdcb03d691fb9a5888054eae4759b9a0e916f720e71a9b9e01fd4d11106499395c5c1aa1ec90ec4874301a34657cd04b00cb5450e3
 SHA512 
3d12e96a54a2fc65bd6b6772b1e9cc72c09620d9a8b900780afb6c4051b88f0ada1e2da2e31bf93c37a881514e2ae79692a287a63b44845e0e2b8cb33109f81f



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

2019-06-24 Thread Zac Medico
commit: eaaa480af5bb37b1087d9397e7cf8fb962f0c538
Author: Zac Medico  sony  com>
AuthorDate: Wed Jun 19 02:00:28 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 25 01:33:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaaa480a

dev-python/python-jose: New package

Bug: https://bugs.gentoo.org/688034
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Zac Medico  gentoo.org>

 dev-python/python-jose/Manifest |  1 +
 dev-python/python-jose/metadata.xml | 13 +
 dev-python/python-jose/python-jose-3.0.1.ebuild | 35 +
 3 files changed, 49 insertions(+)

diff --git a/dev-python/python-jose/Manifest b/dev-python/python-jose/Manifest
new file mode 100644
index 000..0906e01b6a5
--- /dev/null
+++ b/dev-python/python-jose/Manifest
@@ -0,0 +1 @@
+DIST python-jose-3.0.1.tar.gz 86726 BLAKE2B 
82ad3cd1139b367d179e965aaf0e33f3592883da6b21ecb3a91e9fe98ff05dbe358e56156a3d34366ffc0d7bfa9efbcdef67c41307d803ac16144a0c0ac3570b
 SHA512 
a39c3aa9acc6bcc0030e4435e499581043a820c54aa1a4b67ae478cf95f96f28755b03fa4453e484932a64865a61613a1ff4afe30249216e8f392638485693d7

diff --git a/dev-python/python-jose/metadata.xml 
b/dev-python/python-jose/metadata.xml
new file mode 100644
index 000..78d20636d80
--- /dev/null
+++ b/dev-python/python-jose/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zmed...@gentoo.org
+   Zac Medico
+   
+   
+   mpdavis/python-jose
+   python-jose
+   https://github.com/mpdavis/python-jose/issues
+   
+

diff --git a/dev-python/python-jose/python-jose-3.0.1.ebuild 
b/dev-python/python-jose/python-jose-3.0.1.ebuild
new file mode 100644
index 000..e304330420f
--- /dev/null
+++ b/dev-python/python-jose/python-jose-3.0.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="A JavaScript Object Signing and Encryption (JOSE) implementation 
in Python"
+HOMEPAGE="https://github.com/mpdavis/python-jose 
https://pypi.org/project/python-jose/;
+# pypi tarball lacks unit tests
+#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="https://github.com/mpdavis/python-jose/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+RESTRICT="!test? ( test )"
+RDEPEND="dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/ecdsa[${PYTHON_USEDEP}]
+   dev-python/pyasn1[${PYTHON_USEDEP}]
+   >=dev-python/pycryptodome-3.3.1[${PYTHON_USEDEP}]
+   dev-python/rsa[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-cov[${PYTHON_USEDEP}]
+   )"
+
+python_test() {
+   esetup.py test || die "tests failed with ${EPYTHON}"
+}



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

2019-06-24 Thread Zac Medico
commit: 10675bad1e15ea657fec092dedff7a02ae109a41
Author: Zac Medico  sony  com>
AuthorDate: Wed Jun 19 02:30:47 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 25 01:33:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10675bad

dev-python/aws-xray-sdk-python: New package

Bug: https://bugs.gentoo.org/688034
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Zac Medico  gentoo.org>

 .../aws-xray-sdk-python-2.4.2.ebuild   | 31 ++
 dev-python/aws-xray-sdk-python/metadata.xml| 13 +
 2 files changed, 44 insertions(+)

diff --git a/dev-python/aws-xray-sdk-python/aws-xray-sdk-python-2.4.2.ebuild 
b/dev-python/aws-xray-sdk-python/aws-xray-sdk-python-2.4.2.ebuild
new file mode 100644
index 000..8247d997b00
--- /dev/null
+++ b/dev-python/aws-xray-sdk-python/aws-xray-sdk-python-2.4.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+inherit distutils-r1
+
+MY_PN=${PN%-python}
+MY_P=${MY_PN}-${PV}
+DESCRIPTION="AWS X-Ray SDK for Python"
+HOMEPAGE="https://github.com/aws/aws-xray-sdk-python 
https://pypi.org/project/aws-xray-sdk/;
+SRC_URI="mirror://pypi/${P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+RDEPEND=">=dev-python/botocore-1.12.122[${PYTHON_USEDEP}]
+   dev-python/future[${PYTHON_USEDEP}]
+   dev-python/jsonpickle[${PYTHON_USEDEP}]
+   dev-python/wrapt[${PYTHON_USEDEP}]
+   virtual/python-enum34[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+RESTRICT="test"
+S=${WORKDIR}/${MY_P}
+
+python_test() {
+   esetup.py test || die "tests failed with ${EPYTHON}"
+}

diff --git a/dev-python/aws-xray-sdk-python/metadata.xml 
b/dev-python/aws-xray-sdk-python/metadata.xml
new file mode 100644
index 000..80f5a6bc406
--- /dev/null
+++ b/dev-python/aws-xray-sdk-python/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zmed...@gentoo.org
+   Zac Medico
+   
+   
+   aws/aws-xray-sdk-python
+   aws-xray-sdk
+   
https://github.com/aws/aws-xray-sdk-python/issues
+   
+



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

2019-06-24 Thread Zac Medico
commit: 92ba502a5a7af071acffa095f1469f8e1f828728
Author: Zac Medico  sony  com>
AuthorDate: Sat Jun 22 02:18:00 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 25 01:34:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92ba502a

dev-python/moto: Bump to version 1.3.8

Bug: https://bugs.gentoo.org/688034
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Zac Medico  gentoo.org>

 dev-python/moto/Manifest  |  1 +
 dev-python/moto/moto-1.3.8.ebuild | 70 +++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/moto/Manifest b/dev-python/moto/Manifest
index de5f905db66..d5e90c894b6 100644
--- a/dev-python/moto/Manifest
+++ b/dev-python/moto/Manifest
@@ -1,2 +1,3 @@
 DIST moto-0.4.30.tar.gz 614008 BLAKE2B 
2868ab25414e488299cb521ce814239698466d69e806245fd86ceb9d5835d08fa530f2da0a5a16f595a88b3c0e421cc264f361bc68d31841726896826240fbab
 SHA512 
ece27979911f46adbb0aec9aa3755b13c09ced00b24ea136ab9c8a8a992550e9c38dac15d8b0c71822953f070761083253ee5fb5cbe44a4b108d140ab4407699
 DIST moto-1.0.1.tar.gz 731617 BLAKE2B 
6f20c07c0635a8c10f8f70530aeaac5ed7c2136d4fc87ff57774a95f4d2e1ea8cf1100b9f0871b29138cec9059de5746a9c01104d856f8248edbb648cc4a78e0
 SHA512 
3171ea3e8f9d267960a7b82caf7e42b86fceba5a80e96d35b849e4e72b7fc6aed94090161219a520f9c1b4050f7de12e0f6c0d560ab1f90ca43fc0387b62d377
+DIST moto-1.3.8.tar.gz 1571716 BLAKE2B 
8e79808d8488bcf8c15e8b5a55e93392ceb5f642f1f52c0af441cecb7adfe23a718f6d283e473e5dab82ddd21bcbed36ecb52b444cbd933405d13c8818e4f74d
 SHA512 
901556249a2a28885b7f77e9f2c209b06391efcea66b78ce3c16edec14bcd03b251c37ef5d800d8f7a35180d59ce7568a68bcebf18e25b092eb5de801db6c587

diff --git a/dev-python/moto/moto-1.3.8.ebuild 
b/dev-python/moto/moto-1.3.8.ebuild
new file mode 100644
index 000..3849836febe
--- /dev/null
+++ b/dev-python/moto/moto-1.3.8.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Mock library for boto"
+HOMEPAGE="https://github.com/spulec/moto;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-python/aws-xray-sdk-python[${PYTHON_USEDEP}]
+   dev-python/backports-tempfile[${PYTHON_USEDEP}]
+   dev-python/cfn-python-lint[${PYTHON_USEDEP}]
+   dev-python/cookies[${PYTHON_USEDEP}]
+   dev-python/dicttoxml[${PYTHON_USEDEP}]
+   >=dev-python/docker-py-2.5.1[${PYTHON_USEDEP}]
+   >=dev-python/jinja-2.8[${PYTHON_USEDEP}]
+   dev-python/jsondiff[${PYTHON_USEDEP}]
+   >=dev-python/boto-2.36.0[${PYTHON_USEDEP}]
+   >=dev-python/boto3-1.6.16[${PYTHON_USEDEP}]
+   >=dev-python/botocore-1.12.13[${PYTHON_USEDEP}]
+   dev-python/flask[${PYTHON_USEDEP}]
+   dev-python/pretty-yaml[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/python-jose[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/xmltodict[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/werkzeug[${PYTHON_USEDEP}]
+"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( ${RDEPEND}
+   dev-python/freezegun[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/responses[${PYTHON_USEDEP}]
+   >=dev-python/sure-1.4.11[${PYTHON_USEDEP}]
+ )
+"
+
+python_prepare_all() {
+   # Disable tests that fail with network-sandbox.
+   sed -e 's|^\(def \)\(test_context_manager()\)|\1_\2|' \
+   -e 's|^\(def \)\(test_decorator_start_and_stop()\)|\1_\2|' \
+   -i tests/test_core/test_decorator_calls.py || die
+
+   # Disable tests that fail with userpriv.
+   sed -e 's|^\(def \)\(test_invoke_function_from_sns()\)|\1_\2|' \
+   -e 's|^\(def 
\)\(test_invoke_requestresponse_function()\)|\1_\2|' \
+   -i tests/test_awslambda/test_lambda.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   PYTHONPATH=${BUILDDIR}/lib \
+   nosetests -sv ./tests || die
+}



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

2019-06-24 Thread Zac Medico
commit: 6a74863a18d198c21f898be378379ca8675e5e96
Author: Zac Medico  sony  com>
AuthorDate: Wed Jun 19 03:32:15 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 25 01:33:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a74863a

dev-python/jsondiff: New package

Bug: https://bugs.gentoo.org/688034
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Zac Medico  gentoo.org>

 dev-python/jsondiff/Manifest  |  1 +
 dev-python/jsondiff/jsondiff-1.1.2.ebuild | 33 +++
 dev-python/jsondiff/metadata.xml  | 13 
 3 files changed, 47 insertions(+)

diff --git a/dev-python/jsondiff/Manifest b/dev-python/jsondiff/Manifest
new file mode 100644
index 000..ec5b32ac77e
--- /dev/null
+++ b/dev-python/jsondiff/Manifest
@@ -0,0 +1 @@
+DIST jsondiff-1.1.2.tar.gz 7803 BLAKE2B 
cbfcfdb2c6c3bb721b4db43aca1d66649257db2cd9feb9655015e621fcd90c72af087696b9553a10ac89cdaf5f23d8748463e1a13bdb19207e34e12e66629544
 SHA512 
ca96bb80a6f7a34c8c5bcde74856dc1c4935b3e2979330ecfc33432aff83968e671b2aaf310c77f2c7d431be1ae6e20a960879700ba3c903a09a48b23d4c0288

diff --git a/dev-python/jsondiff/jsondiff-1.1.2.ebuild 
b/dev-python/jsondiff/jsondiff-1.1.2.ebuild
new file mode 100644
index 000..4f246f93099
--- /dev/null
+++ b/dev-python/jsondiff/jsondiff-1.1.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Diff JSON and JSON-like structures in Python"
+HOMEPAGE="https://github.com/xlwings/jsondiff 
https://pypi.org/project/jsondiff/;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+# tests require nose_random
+RESTRICT="test"
+
+python_prepare_all() {
+   # Avoid file collision with jsonpatch's jsondiff cli.
+   sed -e "/'jsondiff=jsondiff.cli:main'/d" -i setup.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   esetup.py test || die "tests failed with ${EPYTHON}"
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+}

diff --git a/dev-python/jsondiff/metadata.xml b/dev-python/jsondiff/metadata.xml
new file mode 100644
index 000..ff1d5858ae3
--- /dev/null
+++ b/dev-python/jsondiff/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zmed...@gentoo.org
+   Zac Medico
+   
+   
+   xlwings/jsondiff
+   jsondiff
+   https://github.com/xlwings/jsondiff/issues
+   
+



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

2019-06-24 Thread Zac Medico
commit: bef7733d08db44fd5c953b6b530a0884009c0e97
Author: Zac Medico  sony  com>
AuthorDate: Tue Jun 18 02:01:49 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 25 01:33:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bef7733d

dev-python/backports-tempfile: New package

Bug: https://bugs.gentoo.org/688034
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Zac Medico  gentoo.org>

 dev-python/backports-tempfile/Manifest |  1 +
 .../backports-tempfile-1.0.ebuild  | 43 ++
 dev-python/backports-tempfile/metadata.xml | 13 +++
 3 files changed, 57 insertions(+)

diff --git a/dev-python/backports-tempfile/Manifest 
b/dev-python/backports-tempfile/Manifest
new file mode 100644
index 000..2e3778ca3bd
--- /dev/null
+++ b/dev-python/backports-tempfile/Manifest
@@ -0,0 +1 @@
+DIST backports.tempfile-1.0.tar.gz 10262 BLAKE2B 
9436c8a3eb7fa6da17dad4466ab030f62b93a19103e519efcbe79e35cf0687ca2960666a9337cdc2929aeeed3790a7ee0441377755b1f1e2a8192b07ed7f049a
 SHA512 
1f3cf634e289704e96bd8483289415aae896d95a16f5ac9b226ba879497675d76148399770966bd2ef14a02d3c8848516a9b39cc400819023b06254b5b0500dc

diff --git a/dev-python/backports-tempfile/backports-tempfile-1.0.ebuild 
b/dev-python/backports-tempfile/backports-tempfile-1.0.ebuild
new file mode 100644
index 000..632139290b1
--- /dev/null
+++ b/dev-python/backports-tempfile/backports-tempfile-1.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+inherit distutils-r1
+
+MY_PN=${PN/-/.}
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Backport of new features in Python's tempfile module"
+HOMEPAGE="https://github.com/PiDelport/backports.tempfile 
https://pypi.org/project/backports.tempfile/;
+SRC_URI="mirror://pypi/${P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="PSF-2.3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+RDEPEND="dev-python/backports[${PYTHON_USEDEP}]
+   dev-python/backports-weakref[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+# Tests require backports.test.support
+RESTRICT="test"
+S="${WORKDIR}/${MY_P}"
+
+python_prepare_all() {
+   sed -e "s|'setuptools_scm'||" \
+   -i setup.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   PYTHONPATH="${BUILD_DIR}/lib" \
+   "${PYTHON:-python}" tests/test_tempfile.py || die "tests failed 
with ${EPYTHON}"
+}
+
+python_install() {
+   # avoid a collision with dev-python/backports
+   rm "${BUILD_DIR}"/lib/backports/__init__.py || die
+   distutils-r1_python_install --skip-build
+}

diff --git a/dev-python/backports-tempfile/metadata.xml 
b/dev-python/backports-tempfile/metadata.xml
new file mode 100644
index 000..ab950267ea6
--- /dev/null
+++ b/dev-python/backports-tempfile/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zmed...@gentoo.org
+   Zac Medico
+   
+   
+   PiDelport/backports.tempfile
+   backports.tempfile
+   
https://github.com/PiDelport/backports.tempfile/issues
+   
+



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

2019-06-24 Thread Zac Medico
commit: 9de94d52449fe8875332acf1ac1e79841926c5b7
Author: Zac Medico  sony  com>
AuthorDate: Tue Jun 18 20:54:38 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 25 01:33:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9de94d52

dev-python/cfn-python-lint: New package

Bug: https://bugs.gentoo.org/688034
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Zac Medico  gentoo.org>

 dev-python/cfn-python-lint/Manifest|  1 +
 .../cfn-python-lint/cfn-python-lint-0.21.6.ebuild  | 31 ++
 dev-python/cfn-python-lint/metadata.xml| 13 +
 3 files changed, 45 insertions(+)

diff --git a/dev-python/cfn-python-lint/Manifest 
b/dev-python/cfn-python-lint/Manifest
new file mode 100644
index 000..9e6559bedb9
--- /dev/null
+++ b/dev-python/cfn-python-lint/Manifest
@@ -0,0 +1 @@
+DIST cfn-lint-0.21.6.tar.gz 2149548 BLAKE2B 
36bb80d8b656eddc0e0a00e4728e46ff05f12ff93d70295a045602f09d570880bf087f25165ed21641e80f096b93e3cf4c9cf97b6498b330dc53beaba67aa492
 SHA512 
c263e6e5ccd03ff5b843e9d4ebd74844f1b4053fa766f5300e4cc66745c42e82771e6af73cf950c81bb66f09b4afd5d438bdcf8489a3b9d61d562a7145d04297

diff --git a/dev-python/cfn-python-lint/cfn-python-lint-0.21.6.ebuild 
b/dev-python/cfn-python-lint/cfn-python-lint-0.21.6.ebuild
new file mode 100644
index 000..6c7860dfb01
--- /dev/null
+++ b/dev-python/cfn-python-lint/cfn-python-lint-0.21.6.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+inherit distutils-r1
+
+MY_PN=cfn-lint
+MY_P=${MY_PN}-${PV}
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="https://pypi.org/project/cfn-lint/ 
https://github.com/aws-cloudformation/cfn-python-lint;
+SRC_URI="mirror://pypi/${P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-2.6[${PYTHON_USEDEP}]
+   >=dev-python/aws-sam-translator-1.10.0[${PYTHON_USEDEP}]
+   >=dev-python/pathlib2-2.3.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.15.0[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/six-1.11[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+S=${WORKDIR}/${MY_P}

diff --git a/dev-python/cfn-python-lint/metadata.xml 
b/dev-python/cfn-python-lint/metadata.xml
new file mode 100644
index 000..8b111978657
--- /dev/null
+++ b/dev-python/cfn-python-lint/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zmed...@gentoo.org
+   Zac Medico
+   
+   
+   aws-cloudformation/cfn-python-lint
+   cfn-lint
+   
https://github.com/aws-cloudformation/cfn-python-lint/issues
+   
+



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

2019-06-24 Thread Zac Medico
commit: 7c959c87d63c88595c7027c8a41252fca13ff659
Author: Zac Medico  sony  com>
AuthorDate: Tue Jun 18 20:14:50 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 25 01:33:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c959c87

dev-python/backports-weakref: New package

Bug: https://bugs.gentoo.org/688034
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Zac Medico  gentoo.org>

 dev-python/backports-weakref/Manifest  |  1 +
 .../backports-weakref-1.0_p1.ebuild| 42 ++
 dev-python/backports-weakref/metadata.xml  | 13 +++
 3 files changed, 56 insertions(+)

diff --git a/dev-python/backports-weakref/Manifest 
b/dev-python/backports-weakref/Manifest
new file mode 100644
index 000..6b5303d586c
--- /dev/null
+++ b/dev-python/backports-weakref/Manifest
@@ -0,0 +1 @@
+DIST backports.weakref-1.0.post1.tar.gz 10574 BLAKE2B 
a53a64dc22d8d1ac93a157bef4a858156f620593ae3d9e69b99762298e9aed73a04fd0557d98f53eed8816e746869718bc028aeda619330ce7c031f8b6f346b1
 SHA512 
27fb7ffd3313e62ca5ac220efe5ce0a9ae2ba8a589c80d3c5cf98741e913da7f713e1ecf2af848510383f574fa3bc3b7b3c21e6696f0a252fb517fe836c07cc7

diff --git a/dev-python/backports-weakref/backports-weakref-1.0_p1.ebuild 
b/dev-python/backports-weakref/backports-weakref-1.0_p1.ebuild
new file mode 100644
index 000..027168047ea
--- /dev/null
+++ b/dev-python/backports-weakref/backports-weakref-1.0_p1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+inherit distutils-r1
+
+MY_PN=${PN/-/.}
+MY_P=${MY_PN}-${PV/_p/.post}
+
+DESCRIPTION="Backport of new features in Python's weakref module"
+HOMEPAGE="https://github.com/PiDelport/backports.weakref 
https://pypi.org/project/backports.weakref/;
+SRC_URI="mirror://pypi/${P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="PSF-2.3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+RDEPEND="dev-python/backports[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+# Tests require backports.test.support
+RESTRICT="test"
+S="${WORKDIR}/${MY_P}"
+
+python_prepare_all() {
+   sed -e "s|'setuptools_scm'||" \
+   -i setup.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   PYTHONPATH="${BUILD_DIR}/lib" \
+   "${PYTHON:-python}" tests/test_weakref.py || die "tests failed 
with ${EPYTHON}"
+}
+
+python_install() {
+   # avoid a collision with dev-python/backports
+   rm "${BUILD_DIR}"/lib/backports/__init__.py || die
+   distutils-r1_python_install --skip-build
+}

diff --git a/dev-python/backports-weakref/metadata.xml 
b/dev-python/backports-weakref/metadata.xml
new file mode 100644
index 000..5cdefd31d13
--- /dev/null
+++ b/dev-python/backports-weakref/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zmed...@gentoo.org
+   Zac Medico
+   
+   
+   PiDelport/backports.weakref
+   backports.weakref
+   
https://github.com/PiDelport/backports.weakref/issues
+   
+



[gentoo-commits] repo/gentoo:master commit in: dev-python/aws-sam-translator/

2019-06-24 Thread Zac Medico
commit: 96a88c91fb4a92931628fe5f1201717e851aef84
Author: Zac Medico  sony  com>
AuthorDate: Sat Jun 22 01:19:08 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 25 01:33:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96a88c91

dev-python/aws-sam-translator: New package

Bug: https://bugs.gentoo.org/688034
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.67, Repoman-2.3.15
Signed-off-by: Zac Medico  gentoo.org>

 dev-python/aws-sam-translator/Manifest |  1 +
 .../aws-sam-translator-1.11.0.ebuild   | 28 ++
 dev-python/aws-sam-translator/metadata.xml | 13 ++
 3 files changed, 42 insertions(+)

diff --git a/dev-python/aws-sam-translator/Manifest 
b/dev-python/aws-sam-translator/Manifest
new file mode 100644
index 000..eb46b6cecbd
--- /dev/null
+++ b/dev-python/aws-sam-translator/Manifest
@@ -0,0 +1 @@
+DIST aws-sam-translator-1.11.0.tar.gz 96492 BLAKE2B 
4025492501d17699b64041a94704d0ec491ffb02a4b7e48c2647101be4d504b6a8c08a9a043c2d964a51d1ef7b40e4fd1d993f9d3b38b5b75460a7d0117b9f49
 SHA512 
e008248ef3401ffe58590c6d68667f67e5963e416656daea545c8d938ab8cb5d8b1c9c7f5aea2d53cedfd74b1fb8677e99a93a8a78235198b18c14df957d0c74

diff --git a/dev-python/aws-sam-translator/aws-sam-translator-1.11.0.ebuild 
b/dev-python/aws-sam-translator/aws-sam-translator-1.11.0.ebuild
new file mode 100644
index 000..43c8b5ac961
--- /dev/null
+++ b/dev-python/aws-sam-translator/aws-sam-translator-1.11.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="A library that transform SAM templates into AWS CloudFormation 
templates"
+HOMEPAGE="https://github.com/awslabs/serverless-application-model 
https://pypi.org/project/aws-sam-translator/;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+RDEPEND="virtual/python-enum34[${PYTHON_USEDEP}]
+   >=dev-python/boto3-1.5[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-2.6[${PYTHON_USEDEP}]
+   >=dev-python/six-1.11[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+RESTRICT="test"
+
+python_test() {
+   PYTHONPATH=${BUILD_DIR}/lib \
+   esetup.py test || die "tests failed with ${EPYTHON}"
+}

diff --git a/dev-python/aws-sam-translator/metadata.xml 
b/dev-python/aws-sam-translator/metadata.xml
new file mode 100644
index 000..de0ced977a9
--- /dev/null
+++ b/dev-python/aws-sam-translator/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zmed...@gentoo.org
+   Zac Medico
+   
+   
+   awslabs/serverless-application-model
+   aws-sam-translator
+   
https://github.com/awslabs/serverless-application-model/issues
+   
+



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

2019-06-24 Thread Sergei Trofimovich
commit: 8cbf525b72d5a2b6deed6d65498029875ec4082a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun 24 22:09:59 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 24 22:10:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cbf525b

dev-lang/elixir: bump up to 1.9.0

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

 dev-lang/elixir/Manifest|  1 +
 dev-lang/elixir/elixir-1.9.0.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/dev-lang/elixir/Manifest b/dev-lang/elixir/Manifest
index 6c9c2b326a6..6b51993eb59 100644
--- a/dev-lang/elixir/Manifest
+++ b/dev-lang/elixir/Manifest
@@ -2,3 +2,4 @@ DIST elixir-1.4.5.tar.gz 1829098 BLAKE2B 
bc8e2beafe53c3af507215d913558e295370ed8
 DIST elixir-1.6.6.tar.gz 2078742 BLAKE2B 
4a793ac55db97c1d604d5f0012758d039f4a26eff5866a2ad2b90010f8477a8f62cc8f01a391f93133c927c5da5494b6d10b76f087a4af1206da977b0ec14a17
 SHA512 
62010100274b99423bb6a660e34ef53a702250a09371ef4b49ec03a3afe8761611b3734aea31763afa361560eb74c6d23e022d4d9bc4453c1bdef36bb37f9b4d
 DIST elixir-1.8.1.tar.gz 2177865 BLAKE2B 
2f078849eb7ebd8a5b1ac3e894e6340146a0e72c462a251be529d404128478a4e4c913653e85797a3ced035de38ae4de93b84f65df9b6174206e41e00da9e3dd
 SHA512 
114970707505cbf89f8fa55d5c54989dded7feb39cb3674e88f64e19f1a0680086ae49c856fb76fb7eaf0142fa0a0b81b1d5b9570825e05f083a9c580b0ca017
 DIST elixir-1.8.2.tar.gz 2178731 BLAKE2B 
d96d86f2919556f1f60656e61b0cca121abf9a9de2b31d7d3a17d24f11211107dd9e92ac502cbc9e165aad360ad9a8a20948fa9be73f6cae7ab00eb7dd07fb83
 SHA512 
0b30fec1cdc85884c1076e10c6e594b1855a325ae8c070bb3bd9af11998b21b273d7185b59954183b1fd525a2852a61be9c2eec54d9adb8ec1fdeb0200714857
+DIST elixir-1.9.0.tar.gz 2247212 BLAKE2B 
b448e6440a991a22674d5afb047279088bc271972f6bc4d75a2bd95ddd1ef493b34c55dac9d378b569181459a0b374e96cbbdce30541691f74470dbe5563de89
 SHA512 
3ecdbb2565cdaf51d6119b5dba42b4b180484aea96e9fe1f85febfb7c3f185b869aab94a22b5052dd84073be1a50ecb97d76dd1bc87f7fdc38a12cff65d2caf6

diff --git a/dev-lang/elixir/elixir-1.9.0.ebuild 
b/dev-lang/elixir/elixir-1.9.0.ebuild
new file mode 100644
index 000..e82dfcd159d
--- /dev/null
+++ b/dev-lang/elixir/elixir-1.9.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Elixir programming language"
+HOMEPAGE="https://elixir-lang.org;
+SRC_URI="https://github.com/elixir-lang/elixir/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0 ErlPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND=">=dev-lang/erlang-18[ssl]"
+# 'mix' tool collides with sci-biology/phylip, bug #537514
+RDEPEND="${DEPEND}
+   !!sci-biology/phylip
+"
+
+src_compile() {
+   emake Q=""
+}
+
+src_install() {
+   emake DESTDIR="${D}" LIBDIR="$(get_libdir)" PREFIX="${EPREFIX}/usr" 
install
+   dodoc README.md CHANGELOG.md CODE_OF_CONDUCT.md
+}



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

2019-06-24 Thread Sergei Trofimovich
commit: 62a0d9dbaa784f94331d3274c52c2c446b79ced8
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun 24 21:59:27 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 24 22:10:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62a0d9db

dev-util/radare2: bump up to 3.6.0

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

 dev-util/radare2/Manifest |  1 +
 dev-util/radare2/radare2-3.6.0.ebuild | 56 +++
 2 files changed, 57 insertions(+)

diff --git a/dev-util/radare2/Manifest b/dev-util/radare2/Manifest
index 1170aab8afe..74a78d04d00 100644
--- a/dev-util/radare2/Manifest
+++ b/dev-util/radare2/Manifest
@@ -1 +1,2 @@
 DIST radare2-3.5.1.tar.gz 7083677 BLAKE2B 
3d84e79d4e20e031b6cfdbabcf80922f977328bf7da8c2871924f9520ff87252d4df18a1239793c70f4b800bb7d5c4aef923e63c93aa15d86ae685ddda205da2
 SHA512 
24c2a45ed539830dcb8dc1585c27e45515c70989132f500527db0ca6795027eaa82ea54d1cd7fc73ddc49641a73148be963ade1648e92b5336d2e86335e2497a
+DIST radare2-3.6.0.tar.gz 7339427 BLAKE2B 
60ecd110ac4cafa38dd10f49321e984e98f189398f15196614fb096970cc2f24981ffbbd161fdd55621b65c45a8fb9f843f273bf245ac0ea2b4493981ab0477d
 SHA512 
15c02b744892934bd0b4beeb146d8a0289244405214b62892d7e307cd42f6706aca16c1e02b6b2beb5b6869c5c5920cc291ffec8a690b5338c6973a5e1d7900e

diff --git a/dev-util/radare2/radare2-3.6.0.ebuild 
b/dev-util/radare2/radare2-3.6.0.ebuild
new file mode 100644
index 000..0b3f4cfb432
--- /dev/null
+++ b/dev-util/radare2/radare2-3.6.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit bash-completion-r1 eutils
+
+DESCRIPTION="unix-like reverse engineering framework and commandline tools"
+HOMEPAGE="http://www.radare.org;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/radare/radare2;
+else
+   SRC_URI="https://github.com/radare/radare2/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="ssl libressl"
+
+RDEPEND="
+   dev-libs/capstone:0=
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+   econf \
+   --without-libuv \
+   --with-syscapstone \
+   $(use_with ssl openssl)
+}
+
+src_install() {
+   default
+
+   insinto /usr/share/zsh/site-functions
+   doins doc/zsh/_*
+
+   newbashcomp doc/bash_autocompletion.sh "${PN}"
+   bashcomp_alias "${PN}" rafind2 r2 rabin2 rasm2 radiff2
+
+   # a workaround for unstable $(INSTALL) call, bug #574866
+   local d
+   for d in doc/*; do
+   if [[ -d $d ]]; then
+   rm -rfv "$d" || die "failed to delete '$d'"
+   fi
+   done
+}



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

2019-06-24 Thread Yixun Lan
commit: 7a9372a9cfa6651bec4a9c726be98c722efcd7d6
Author: Yixun Lan  gentoo  org>
AuthorDate: Mon Jun 24 09:31:30 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Mon Jun 24 22:06:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a9372a9

net-libs/libcork: add arm/arm64 keyword

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Yixun Lan  gentoo.org>

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

diff --git a/net-libs/libcork/libcork-0.15.0.ebuild 
b/net-libs/libcork/libcork-0.15.0.ebuild
index f31843ee66b..0db7956e7c1 100644
--- a/net-libs/libcork/libcork-0.15.0.ebuild
+++ b/net-libs/libcork/libcork-0.15.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 @@ 
SRC_URI="https://github.com/dcreager/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE=""
 
 RDEPEND="dev-libs/check"



[gentoo-commits] repo/gentoo:master commit in: net-proxy/shadowsocks-libev/

2019-06-24 Thread Yixun Lan
commit: 7099d83cf175d1dfa1a20e23ec3d6d84e1b40928
Author: Yixun Lan  gentoo  org>
AuthorDate: Mon Jun 24 09:34:21 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Mon Jun 24 22:06:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7099d83c

net-proxy/shadowsocks-libev: add arm/arm64 keyword

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Yixun Lan  gentoo.org>

 net-proxy/shadowsocks-libev/shadowsocks-libev-3.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/shadowsocks-libev/shadowsocks-libev-3.3.0.ebuild 
b/net-proxy/shadowsocks-libev/shadowsocks-libev-3.3.0.ebuild
index 65c0bfdfa56..b6510c91d68 100644
--- a/net-proxy/shadowsocks-libev/shadowsocks-libev-3.3.0.ebuild
+++ b/net-proxy/shadowsocks-libev/shadowsocks-libev-3.3.0.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/shadowsocks/${PN}/archive/${MY_PV}.tar.gz -> ${P}.ta
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE="debug doc"
 
 RDEPEND="net-libs/mbedtls:=



[gentoo-commits] repo/gentoo:master commit in: net-proxy/shadowsocks-libev/

2019-06-24 Thread Yixun Lan
commit: 322dd2d825e1213db62cd5583a6aad0199a1f846
Author: Yixun Lan  gentoo  org>
AuthorDate: Mon Jun 24 09:28:40 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Mon Jun 24 22:06:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=322dd2d8

net-proxy/shadowsocks-libev: drop old 3.2.4

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Yixun Lan  gentoo.org>

 net-proxy/shadowsocks-libev/Manifest   |  1 -
 .../shadowsocks-libev-3.2.4.ebuild | 83 --
 2 files changed, 84 deletions(-)

diff --git a/net-proxy/shadowsocks-libev/Manifest 
b/net-proxy/shadowsocks-libev/Manifest
index 560e73e6326..1ac63c33701 100644
--- a/net-proxy/shadowsocks-libev/Manifest
+++ b/net-proxy/shadowsocks-libev/Manifest
@@ -1,3 +1,2 @@
-DIST shadowsocks-libev-3.2.4.tar.gz 277679 BLAKE2B 
32d4d48c22951894e9aa64cd6d34f7586c61ab5ae994b263b272c07a05a019f9c493909f50f3ec027af29681885a65f51afe97dc959c508f107a5010974c8e11
 SHA512 
f8bd19d4f3f70cedd0f34a6a16975c3694ef36e85b278d4a7bb10520a43d71c83f81ceebcf20530cdd04b5000a8c742e0789fdbefa70fef6b5d1dc799ce34528
 DIST shadowsocks-libev-3.2.5.tar.gz 278138 BLAKE2B 
874471f134371d274ce274c096286dfe8a755e5423624df80df70321f017d9344516fd38f82df43033870588664dc626595157ab6c5022c9953bd9ce59dee2b8
 SHA512 
b4ca9f7c303c85a5bba9bf5d7a093c6dfde7a147d0335b449d4ee213cd3b9004c5220a099dcc78464a35c55f9cfe280d817daf934e2fda100f5e784f70091c0b
 DIST shadowsocks-libev-3.3.0.tar.gz 278818 BLAKE2B 
e2f00082d6fe697560dc282f31ed98368390e750a7be33fd3230f4d4635b4aa8a8ace3bd82da8000defee468ae167c2b4fa1e836e79580deeeff3a53dc7b793c
 SHA512 
7c93bddef07af9e79a7c6757a89f301000a6137e0951ee622c66c2e8d3aa70e157cfdf7798a718074f956f7c22dde0af1073781cf0b36d7e185dfd45a87f354b

diff --git a/net-proxy/shadowsocks-libev/shadowsocks-libev-3.2.4.ebuild 
b/net-proxy/shadowsocks-libev/shadowsocks-libev-3.2.4.ebuild
deleted file mode 100644
index 03fc22b936a..000
--- a/net-proxy/shadowsocks-libev/shadowsocks-libev-3.2.4.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PV="v${PV}"
-inherit autotools eutils systemd
-
-DESCRIPTION="A lightweight secured SOCKS5 proxy for embedded devices and low 
end boxes"
-HOMEPAGE="https://github.com/shadowsocks/shadowsocks-libev;
-
-#repack with git submodule populated: libbloom, libcork, libipset
-#SRC_URI="https://dev.gentoo.org/~dlan/distfiles/${P}.tar.xz;
-
-SRC_URI="https://github.com/shadowsocks/${PN}/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug doc"
-
-RDEPEND="net-libs/mbedtls:=
-   net-libs/libbloom
-   net-libs/libcork
-   net-libs/libcorkipset
-   >=dev-libs/libsodium-1.0.8:=
-   dev-libs/libev
-   net-dns/c-ares
-   dev-libs/libpcre
-   "
-DEPEND="${RDEPEND}
-   sys-kernel/linux-headers
-   doc? (
-   app-text/asciidoc
-   app-text/xmlto
-   )
-   "
-
-src_prepare() {
-   sed -i 's|AC_CONFIG_FILES(\[libbloom/Makefile libcork/Makefile 
libipset/Makefile\])||' \
-   configure.ac || die
-   default
-   eautoreconf
-}
-
-src_configure() {
-   local myconf="
-   $(use_enable debug assert)
-   --enable-system-shared-lib
-   "
-   use doc || myconf+="--disable-documentation"
-   econf ${myconf}
-}
-
-src_install() {
-   default
-   prune_libtool_files --all
-
-   dodir "/etc/${PN}"
-   insinto "/etc/${PN}"
-   newins "${FILESDIR}/shadowsocks.json" shadowsocks.json
-
-   newinitd "${FILESDIR}/shadowsocks.initd" shadowsocks
-   dosym shadowsocks /etc/init.d/shadowsocks.server
-   dosym shadowsocks /etc/init.d/shadowsocks.client
-   dosym shadowsocks /etc/init.d/shadowsocks.redir
-   dosym shadowsocks /etc/init.d/shadowsocks.tunnel
-
-   dodoc -r acl
-
-   systemd_newunit "${FILESDIR}/${PN}-local_at.service" 
"${PN}-local@.service"
-   systemd_newunit "${FILESDIR}/${PN}-server_at.service" 
"${PN}-server@.service"
-   systemd_newunit "${FILESDIR}/${PN}-redir_at.service" 
"${PN}-redir@.service"
-   systemd_newunit "${FILESDIR}/${PN}-tunnel_at.service" 
"${PN}-tunnel@.service"
-}
-
-pkg_setup() {
-   elog "You need to choose the mode"
-   elog "  server: rc-update add shadowsocks.server default"
-   elog "  client: rc-update add shadowsocks.client default"
-   elog "  redir:  rc-update add shadowsocks.redir default"
-   elog "  tunnel: rc-update add shadowsocks.tunnel default"
-}



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

2019-06-24 Thread Yixun Lan
commit: 524774cd35d576a59296fe78e71df8c923a31cdc
Author: Yixun Lan  gentoo  org>
AuthorDate: Mon Jun 24 09:33:07 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Mon Jun 24 22:06:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=524774cd

net-libs/libcorkipset: add arm/arm64 keyword

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Yixun Lan  gentoo.org>

 net-libs/libcorkipset/libcorkipset-1.1.1.20150311_p8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libcorkipset/libcorkipset-1.1.1.20150311_p8.ebuild 
b/net-libs/libcorkipset/libcorkipset-1.1.1.20150311_p8.ebuild
index fd8b1f85536..93acbfa1f31 100644
--- a/net-libs/libcorkipset/libcorkipset-1.1.1.20150311_p8.ebuild
+++ b/net-libs/libcorkipset/libcorkipset-1.1.1.20150311_p8.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="https://github.com/rogers0/${PN}/archive/debian/${MY_PV}.tar.gz -> ${P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE=""
 
 DEPEND="net-libs/libcork"



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

2019-06-24 Thread Yixun Lan
commit: 11ea896847c83d163ef822e7ef28ec65ebb5e2e3
Author: Yixun Lan  gentoo  org>
AuthorDate: Mon Jun 24 09:32:25 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Mon Jun 24 22:06:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11ea8968

net-libs/libbloom: add arm/arm64 keyword

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Yixun Lan  gentoo.org>

 net-libs/libbloom/libbloom-1.5-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libbloom/libbloom-1.5-r1.ebuild 
b/net-libs/libbloom/libbloom-1.5-r1.ebuild
index 7e255245ef9..54311fad4a4 100644
--- a/net-libs/libbloom/libbloom-1.5-r1.ebuild
+++ b/net-libs/libbloom/libbloom-1.5-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="https://github.com/jvirkki/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE=""
 
 DEPEND=""



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

2019-06-24 Thread Thomas Deutschmann
commit: a138f84bfe16375f1984b5f14a1c8823e59dee01
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jun 24 22:02:15 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jun 24 22:02:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a138f84b

mail-client/thunderbird: amd64 & x86 stable

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

 mail-client/thunderbird/thunderbird-60.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/thunderbird/thunderbird-60.7.2.ebuild 
b/mail-client/thunderbird/thunderbird-60.7.2.ebuild
index 74332102d40..4629cdc73f8 100644
--- a/mail-client/thunderbird/thunderbird-60.7.2.ebuild
+++ b/mail-client/thunderbird/thunderbird-60.7.2.ebuild
@@ -39,7 +39,7 @@ inherit check-reqs flag-o-matic toolchain-funcs gnome2-utils 
llvm mozcoreconf-v6
 DESCRIPTION="Thunderbird Mail Client"
 HOMEPAGE="https://www.mozilla.org/thunderbird;
 
-KEYWORDS="~amd64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
 IUSE="bindist clang dbus debug hardened jack lightning neon pulseaudio



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

2019-06-24 Thread Thomas Deutschmann
commit: 81245a6b036cb4a39dbb6df0ae79d518f5a357d1
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jun 24 22:02:58 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jun 24 22:02:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81245a6b

mail-client/thunderbird: security cleanup

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

 mail-client/thunderbird/Manifest  | 163 --
 mail-client/thunderbird/thunderbird-60.6.1.ebuild | 602 --
 mail-client/thunderbird/thunderbird-60.7.0.ebuild | 602 --
 mail-client/thunderbird/thunderbird-60.7.1.ebuild | 602 --
 4 files changed, 1969 deletions(-)

diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest
index 5982ed3390d..97516985b1a 100644
--- a/mail-client/thunderbird/Manifest
+++ b/mail-client/thunderbird/Manifest
@@ -1,5 +1,4 @@
 DIST firefox-52.5-patches-02.tar.xz 15084 BLAKE2B 
538dd61dbb7b290add4782b323a62f9ab4dbc57326a9a085710d207752118c504eb030a8741c1eed2e281c8d18e5453210b1905d71439250caa588137bbc37d0
 SHA512 
b80f9acaf49226cd5c2864714826c5b0e7e918e94c31ec81521b90c47edbb88ea85faa34fc22791efefbcd3867ddc413c563de58ca0f8ce21e10a3858899efce
-DIST firefox-60.6-patches-06.tar.xz 36868 BLAKE2B 
c6be625593b7b7f4f71407c1b7e6c86dc60155a90a36817065dc0aabea8885649a7c8f59f41626485487687f9b27dfb32c0905df77c9185cb12e984e2dfbc463
 SHA512 
c30a4ac2d01828452221ada9f0d39d08fe3834ead2633b509816dc6ab2b65f48998ba164a00b29751d51b9ab67e27638f572c4db7b1381fc921456ab840efcfe
 DIST firefox-60.6-patches-07.tar.xz 37404 BLAKE2B 
5516ff768bee0253131381fdba3e08785ab31bb29e44ad7f7e2956fb7624fafc9bf22f892ddbd0617e5e7d18500686a9975a60ea77d23a2853f35936cd142030
 SHA512 
3c4160e632155b0a239e22d0c1b1c701545b0f6d0915f9bdcf3b8431cee1abf650191ffafc5c3224a61279c8b1b52a80444c811a3914e16127411991c963292b
 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
@@ -63,168 +62,6 @@ DIST thunderbird-52.9.1-zh-CN.xpi 593611 BLAKE2B 
441b5332a08daca64282a8d4233c7d9
 DIST thunderbird-52.9.1-zh-TW.xpi 595728 BLAKE2B 
8e2f6bdb65418ae837cef54f042eb8aa8ae32e952cece4e3a5a8cd13a4ac99a56495b7cca900d7ecd10d82ab77ed334a8e27eba8d49aca066bd2bb7d7182deb4
 SHA512 
24f48563439450751066d49f609ac4df9d7e31d7cea36ce8f2ad8f38b04fc4d1be99d50463700c4ea2963948b0ec1c1b5323cada6a3b1480f1debe52d50c4f1e
 DIST thunderbird-52.9.1.source.tar.xz 230475264 BLAKE2B 
ec2763d21bf88779867f4478dfc544b5afbe1062ce51f09c1ecc423c3289f0cd91ae79bc87d726ae77d885290843631f36800fff18d802cd4a998966e7793b74
 SHA512 
0de80a5036b1e8a5a8549c546b4693cb285ee4d10f546f4b4aceed9e1d6c64b9dbafce7bacaaf057112130036f7b41fb2e0fa3343412140e6ac926dd94c27d23
 DIST thunderbird-60.0-patches-0.tar.xz 10292 BLAKE2B 
a81ac6708389baff21aac1511c1fc372324cac8bb3ee0f3b5d2a0690b6e22ef658b41c887b99168b43c4ea4bb0947d3e48ad9b7e80db558db22c976df868
 SHA512 
1dae465676b2ff4faae08ebf69e6bac46552bc0331659bf5f444c45b026e4c8d2fc46cd3758e3bd121716aa85d5dcc56de6483919f7f0077b9d9720574dbd1aa
-DIST thunderbird-60.6.1-ar.xpi 627180 BLAKE2B 
56df555c0681214450a28d1eb126a1e0ebad308049c2f64480dbf20f39b5e62ea5600ecf81052a2c13396044ce77c6d27ad0c1fb6453c329968ccfb505de16a9
 SHA512 
76a92d776fa1efd6db1a312ad6ca016ca1cd2b70eb62ed3e309417ee02a2fb78112295d58a0d1e092cf1b36440339643a3c290dd1098c6087d08fa39515157b3
-DIST thunderbird-60.6.1-ast.xpi 559642 BLAKE2B 
77892bbbe45a04c60e62a01ca98f47aac139f282a5ac06eea62d2ce518ac6cbc8d6c3765d16f929c8792b5731feeb82491eba0ef6d0116442f1e569c0d51
 SHA512 
66130b52317bce1b92ca6d1922d56c062196bdd5e158239640e1d040830b557f13e86b1286f6ebf569a8de5491ab37b4e8d7af7c5965b2a7e5b14509235e
-DIST thunderbird-60.6.1-be.xpi 659080 BLAKE2B 
bde346f25b24c2253c7c4ef034dc8ffa1d3b742254db95a0baf9dc2a00fdd27a22f9dd7e6d32ff288ac87e6302193f7e7e1aff0e76dcff0b64ef6b9acd6093f0
 SHA512 
95a8afbf179697f819704668951907709033bb10d7212e7b6741910b39960a7c9800e70f343022185d716ef689c1c43e10718d5245c64db4cb5fb128a3b641df
-DIST thunderbird-60.6.1-bg.xpi 669318 BLAKE2B 
59f3a7930b829cbb8bf4f681ca25dc364b4291717e535700573f708749b9e7fdfe7279366038f42e4c5352406261d4ce5453c84f48f213512b6c345a657308b2
 SHA512 
7c64c7b1363c6001d854cbdec400c28d775bc8fba500e7c743eb254604d5babacee3fa1c3bd49e48a523d73a5343c07d1b7f25c4d2580f07c5f899e88eec0aee
-DIST thunderbird-60.6.1-br.xpi 580371 BLAKE2B 

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

2019-06-24 Thread Thomas Deutschmann
commit: 2193e147a34d269adc8b70d46cd77f83836aaea7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jun 24 21:55:48 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jun 24 21:57:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2193e147

dev-libs/librdkafka: bump to v1.1.0

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

 dev-libs/librdkafka/Manifest   |  1 +
 ...librdkafka-1.1.0-remove-automagic-on-zstd.patch | 29 
 dev-libs/librdkafka/librdkafka-1.1.0.ebuild| 78 ++
 3 files changed, 108 insertions(+)

diff --git a/dev-libs/librdkafka/Manifest b/dev-libs/librdkafka/Manifest
index 17d47e8af2b..d367b203cfd 100644
--- a/dev-libs/librdkafka/Manifest
+++ b/dev-libs/librdkafka/Manifest
@@ -2,3 +2,4 @@ DIST librdkafka-0.11.5.tar.gz 1984510 BLAKE2B 
55a27482275726233b5c9b39dfac1b9f34
 DIST librdkafka-0.11.6.tar.gz 1994337 BLAKE2B 
7b61e6ba02c5ed58c20e604d6765f6a57ff63ab0c61f2a4c64eff55bfb6c854ef089ac9eea9acc6d44b6abdb6d1425ff23e9d4e6037c733bc5719d6b69c74ae0
 SHA512 
9657dc53220bbff3eb44941cff2f50ab7f71a82f7486d64ea14f67eabd4abe8c67f225a752cc1f0339439a1cc512e99ade6536d087857979cd198c0102015718
 DIST librdkafka-1.0.0.tar.gz 2465603 BLAKE2B 
7006dc421ae5c2c991853f4ede9d99e7dd308b49372a7c2c859ecc0e6ee7aa3b6cda9af7a71a5813610630b564bd65c6cf18ecaefd1a1880545838d7758aea88
 SHA512 
15ac1e4c9042debf8d4df602ccdc5eccae3a37b305be24d724fcaffc3d1d0aafa708fc8e29d6af51f51ed6c7daf74b3041b8b9b0444e6702cd73479c8078859a
 DIST librdkafka-1.0.1.tar.gz 2466259 BLAKE2B 
a391d57b21711853ce7df338070512f715f3a49ead2b4f7eb1fe5500699c1891821e6bbd4b87d3debea6852eb85094aba161cb3ca95aee3c592a38be4933ecff
 SHA512 
094599e974236814c03e688eaa5e39d817cca110ff691501826268c45653fcd6b21b60e741140a1f7ffccd49902247f08fcec82475be2e9f85feaa4340b32d4c
+DIST librdkafka-1.1.0.tar.gz 2511445 BLAKE2B 
00c20361058d537d045da6961afc45e40e0ac641918df9eb457937dc3ca566639b81d8aa10cc6ed2f57988eded180f3d2eaea72ca4b910a652b93b54b9388253
 SHA512 
35561399b07278a09a51245c5503c86eb0cc8971692b4e65a332144bfb71e2e86d4ceaf1804534b6a416bcace74cef493b6465c20b32c14de97f45f2854359c6

diff --git 
a/dev-libs/librdkafka/files/librdkafka-1.1.0-remove-automagic-on-zstd.patch 
b/dev-libs/librdkafka/files/librdkafka-1.1.0-remove-automagic-on-zstd.patch
new file mode 100644
index 000..792bb453570
--- /dev/null
+++ b/dev-libs/librdkafka/files/librdkafka-1.1.0-remove-automagic-on-zstd.patch
@@ -0,0 +1,29 @@
+commit 828e10cb9331fc5bd48fb1d6fdb8e08cd5fb27ea
+Author: Thomas Deutschmann 
+AuthorDate: Mon Apr 29 18:57:10 2019 +0200
+Commit: Thomas Deutschmann 
+CommitDate: Mon Jun 24 23:52:25 2019 +0200
+
+configure: Add option to disable automagic dependency on zstd
+
+This commit will add an option which will allow you to explicit disable
+zstd usage.
+
+diff --git a/mklove/modules/configure.libzstd 
b/mklove/modules/configure.libzstd
+index d9599d82..cb82c128 100644
+--- a/mklove/modules/configure.libzstd
 b/mklove/modules/configure.libzstd
+@@ -9,8 +9,12 @@
+ #   mkl_check libzstd []
+ #
+ 
++mkl_toggle_option "Feature" ENABLE_ZSTD "--enable-zstd" "Enable support for 
ZSTD compression" "y"
++
+ function manual_checks {
+-local action=$1
++local action=${1:-disable}
++
++[[ $ENABLE_ZSTD == y ]] || return 0
+ 
+ mkl_meta_set "libzstd" "brew" "zstd"
+ mkl_meta_set "libzstd" "apk" "zstd-dev zstd-static"

diff --git a/dev-libs/librdkafka/librdkafka-1.1.0.ebuild 
b/dev-libs/librdkafka/librdkafka-1.1.0.ebuild
new file mode 100644
index 000..d47d633d548
--- /dev/null
+++ b/dev-libs/librdkafka/librdkafka-1.1.0.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit toolchain-funcs
+
+DESCRIPTION="Apache Kafka C/C++ client library"
+HOMEPAGE="https://github.com/edenhill/librdkafka;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://github.com/edenhill/${PN}.git;
+
+   inherit git-r3
+else
+   SRC_URI="https://github.com/edenhill/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~x86"
+fi
+
+LICENSE="BSD-2"
+
+# subslot = soname version
+SLOT="0/1"
+
+IUSE="lz4 sasl ssl static-libs zstd"
+
+LIB_DEPEND="
+   lz4? ( app-arch/lz4:=[static-libs(+)] )
+   sasl? ( dev-libs/cyrus-sasl:=[static-libs(+)] )
+   ssl? ( dev-libs/openssl:0=[static-libs(+)] )
+   zstd? ( app-arch/zstd:=[static-libs(+)] )
+   sys-libs/zlib:=[static-libs(+)]
+"
+
+RDEPEND="!static-libs? ( ${LIB_DEPEND//\[static-libs(+)]} )"
+
+DEPEND="
+   ${RDEPEND}
+   virtual/pkgconfig
+   static-libs? ( ${LIB_DEPEND} )
+"
+
+PATCHES=( "${FILESDIR}"/${PN}-1.1.0-remove-automagic-on-zstd.patch )
+
+src_configure() {
+   tc-export CC CXX LD NM OBJDUMP PKG_CONFIG STRIP
+
+   local myeconf=(
+   --no-cache
+ 

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

2019-06-24 Thread Thomas Deutschmann
commit: e266057d334bd515585434b13b36aae1e1ea4548
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jun 24 21:26:45 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jun 24 21:57:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e266057d

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

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

 mail-client/thunderbird-bin/Manifest   |  55 ++
 .../thunderbird-bin/thunderbird-bin-60.7.2.ebuild  | 189 +
 2 files changed, 244 insertions(+)

diff --git a/mail-client/thunderbird-bin/Manifest 
b/mail-client/thunderbird-bin/Manifest
index 2a5a0b39fcc..1dba73fb249 100644
--- a/mail-client/thunderbird-bin/Manifest
+++ b/mail-client/thunderbird-bin/Manifest
@@ -109,7 +109,62 @@ DIST thunderbird-60.7.1-uk.xpi 684154 BLAKE2B 
defe2fffc04641b286fedf059ee7b2f165
 DIST thunderbird-60.7.1-vi.xpi 637187 BLAKE2B 
c9183fb705e62e405984645ffd993cc3a6eb100045cb0f489faf0ac63fea53a09d97f23f5c9fd7e777f6b7b6bb63e40f8fcf826e13f40d58a07b27916376d5a5
 SHA512 
16d0edb61b98b380abeef70991571097fc04c88aa08b10c24c6643abc4b46cee0a9682eb1744f1235b44f5ac1d9c206c28dabc6404cdd6d4f7a60d5e108fba8f
 DIST thunderbird-60.7.1-zh-CN.xpi 626282 BLAKE2B 
1d16d7c29ff7ff6dab198de86fd9d54777b7f03da3b242ce29cc1e0f3b0957be3e22de3d6b78943626efe103976f48e1991ede92a01d241d880477b0222e489b
 SHA512 
521772f2b37cc8be6a684193a210ffc7769d20344e33931e97dd6ff276032b4f4bfeff34e12216f3a3d8941d7ec7101d06eb03a9ec1d40d11ddcaa3f08acfd64
 DIST thunderbird-60.7.1-zh-TW.xpi 626188 BLAKE2B 
e1ff2e68dd08c964861c3f3449ab3e1a3b5e98a5636d354c1954f29a99621d389cebd859440ef758f60d61d9b985133b4652fbf1cc8f8206bbf417e774a3eda2
 SHA512 
3b91a1fb2d7ae4066ecfdbc69f321d74dced15328b4c3e8b5a3581692184d26205f6c82ec416795cb9aeb09564ab1264d043fe484cda3572ca1e4d2e00171b12
+DIST thunderbird-60.7.2-ar.xpi 627180 BLAKE2B 
98e07743f498639cf2d1f1891c93d1810c1949b2e386d1efb838b453096ca669b7082108c2ee531ad09a03e4ac92a536cf7ba04b7e1033ee437e71d1a86e7108
 SHA512 
4aca808cb725aa700ff4be091aaff1d6bf02bd446b67bd318e9d24e5b77ec44e2050a39d34ae9355ec8c267ccff3a8a9550115b13b6fc61f014137ecdf65cc2b
+DIST thunderbird-60.7.2-ast.xpi 559643 BLAKE2B 
50affd682e07a51c9c9839d98ae2bfa13963a64739cf4666c0d720985aa4c74f8cb620bdc6473878a9251bebfe2550d87a7ab5925047d0641584fd078af42736
 SHA512 
8f0ceeec768b03d44d44013700103e1c1f072fd16b78218390bd6f37bb30d87124588dcc72df057eeb6412e47db16e01e194ef406b0294bbc5f245fc2cc3eb10
+DIST thunderbird-60.7.2-be.xpi 659079 BLAKE2B 
874df5e34023d088a48dca5d050c0e3939cee6d0073146a110f8646454f48896f02e79e89e493a4dd30061f4a6b3aace57baabc16f55af4a89c234836c1ba3e7
 SHA512 
10f6d7ae046654911a7f0992b806b92da9cbe995da7d3f5a3fbefe29aa8b865ee8c842c8fc909290a1e2f8135842b1138d6fa1203708e919d07e43f248e4185a
+DIST thunderbird-60.7.2-bg.xpi 669318 BLAKE2B 
630bba5d7c2f79f8c7ac3adc8c8119af198fc84013372c1aaf2a2b1e7e10775ec2bd7e01ca809d997a79a88ada3a0b38b3ef7ff70d2f3f8973eb23b909686d5f
 SHA512 
8325403d4284baf2d4c5dd1c322bacff932050190d7701a075964512503cec9d1fa325b9fce7968954e4bdf5feb3d094c8757d5c5dcdc63546a47e9eb8bae89f
+DIST thunderbird-60.7.2-br.xpi 580371 BLAKE2B 
ab2b5f58e1916cfe4040d9aefd9abb0594b13705d701485668bb2187b7cda6155d24fa564af845f4d336e180457e110560ee42127a68f011393fd27bc6f94b58
 SHA512 
f38f68eba5292aeda34a9f76190eb860d5d6e3c13fa6f7130b15564df922a5afb451263d26f5095b206942daad3608f9061fd48bba8d3c0328eaff25c448fe98
+DIST thunderbird-60.7.2-ca.xpi 591972 BLAKE2B 
329d24d7544d833b5d0abd6727b3c0a7973eb0cddab5382a24aef18348b6647587b4b758775345a539e3a795905b24c6101f56eaf837b2c601f68d626748a231
 SHA512 
a16b6ed229c23c64f25d7cffd5cc6807ecf9d78cac3e0fcb0cbf63c820ca2b312b97a8b1218359d1583ce36969a08d4513a47bea98bc4b1e15a6f2287ef5
+DIST thunderbird-60.7.2-cs.xpi 611203 BLAKE2B 
4849c9d661ba4331d6dfbb27c46905fadb2a2131f9be03c5eb5fb4ce4a55f890b3c87c63fa1fa14aa91ca12e3335abd7727d5a599fce6b29dd246ff39fd6e24e
 SHA512 
e9d77ae328482e17ab022104565c799ade9dfcb80d22037b3e443fa6794cc82fb6f13db5af25e02f449af6b08e734e6148311a14a1b0ef6b4598bb5306b67d2b
+DIST thunderbird-60.7.2-cy.xpi 586038 BLAKE2B 
5527b106836a41733a1be1bc29e81a2becae276130234a79e11f5ddd5bdf7a4dc110edd55de9acf249226274e05afc8252eb3db0e0078725aaa9c8804a6df3d0
 SHA512 
d937738db0da179384461b0b0ec31302a19152ef3579adfe6c76c13c87617a7eda82eebc4a917b11082b13e8ba16ea58cf4f20f42cd80f52d5ebcca9c1cab625
+DIST thunderbird-60.7.2-da.xpi 570807 BLAKE2B 
e5e4417ac3e22e50b855c96dcd88f5e0bc276b04adc77c1f1a5908aeffe1c8e1b92b206daf7b0941c3959819b1a3d38b8f7f38e2793e32a0212855bb9308b196
 SHA512 
a6b3e24f490b9b8b6bd90d94c3bbde35502b0e18fd6949fc844b64ce42c89def0eb1bb52541a2811233b3ddc1695735ca78d761a8eb99adeba5b1c6010504327
+DIST thunderbird-60.7.2-de.xpi 582575 BLAKE2B 
3d1a8a94fbcff0e7b9a7be0556ba0354fd303a24243ad7bcabced646b179c22ed98e9970f44261b58905f5df3bfe641711bdd81623dc8b40514447e903d7f994
 SHA512 

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

2019-06-24 Thread Thomas Deutschmann
commit: ce16a2e3281209f4680f508c6ef46d57c1feb5b3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jun 24 21:40:12 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jun 24 21:57:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce16a2e3

media-gfx/imagemagick: bump to v6.9.10-50 & v7.0.8-50

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

 media-gfx/imagemagick/Manifest |   2 +
 media-gfx/imagemagick/imagemagick-6.9.10.50.ebuild | 248 
 media-gfx/imagemagick/imagemagick-7.0.8.50.ebuild  | 256 +
 3 files changed, 506 insertions(+)

diff --git a/media-gfx/imagemagick/Manifest b/media-gfx/imagemagick/Manifest
index 863c3d0ec05..5718768dca3 100644
--- a/media-gfx/imagemagick/Manifest
+++ b/media-gfx/imagemagick/Manifest
@@ -1,2 +1,4 @@
 DIST ImageMagick-6.9.10-49.tar.xz 8940128 BLAKE2B 
e8653b10e251354b8a48f1e1b613d6dba8d077e38f71ac04b68062ce86da3e078a6dbcfd47fbda9a90301d3d231606f75eb1f714516788c65055304aaf90d1e9
 SHA512 
c25f4814e02d9d11fae863683a676b995f59967ed556bca766ec107dfee3ee573999acd291fbac13d5cc828f782a223e7389939d786678b23859f39db2eaba9a
+DIST ImageMagick-6.9.10-50.tar.xz 8941584 BLAKE2B 
dcbbe4b0c25c281168088dd5b62a9d882088b9b57fc4127c6d233b049011ae3ede43e2629734fbd1ae2b21cd13f64690e6f6a3ea81a1e08736fbc1a29a5bccf9
 SHA512 
f288eb8ce40aafb3d099ae5ec10403902934d02440256ed2012f0b13456b237c3a903f92764b02378c27005fd65ad1251ff1663fce825890721fa93b18ad515d
 DIST ImageMagick-7.0.8-49.tar.xz 9452340 BLAKE2B 
1e1b662e16287cc505ce40b1031836406159e9574efaaead3e8789300798469075d35bff01fb6a994efc42764ef3e509a9c0fec0c5cd7e3abeb09a201f689ca8
 SHA512 
8dd4a45f4d95d949bcd797f44d1602a3767386ee7d73888fb8a1ee6d4d8be7c4881a88262e7261a253da6f4b3c8ac9442d5eacb44e267e2d25e11bda10b12526
+DIST ImageMagick-7.0.8-50.tar.xz 9453076 BLAKE2B 
a137fb353d32ce6914b5033ea4c02bc81cb1eb82c1dbb6d449f20e19b23ec1eeef628e27c497cb9eb5e7a23f9d4f9f2152e3c6e64dfb5c6f793358c174286e27
 SHA512 
78cee7463610b256b899cc9474924cefe2dc36ab238025c54688563c3e1aa4b86ebc739f22fb349ab8914b7ac0dc6c5073cca168b9cfc371fb4bbd7e3f51cfbc

diff --git a/media-gfx/imagemagick/imagemagick-6.9.10.50.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.10.50.ebuild
new file mode 100644
index 000..b09291336cc
--- /dev/null
+++ b/media-gfx/imagemagick/imagemagick-6.9.10.50.ebuild
@@ -0,0 +1,248 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit eapi7-ver eutils flag-o-matic libtool perl-functions toolchain-funcs 
multilib
+
+MY_PV="$(ver_rs 3 '-')"
+MY_P="ImageMagick-${MY_PV}"
+
+DESCRIPTION="A collection of tools and libraries for many image formats"
+HOMEPAGE="https://www.imagemagick.org/;
+SRC_URI="mirror://${PN}/${MY_P}.tar.xz"
+
+LICENSE="imagemagick"
+SLOT="0/${PV}"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri heif jbig 
jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 
q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
+
+RESTRICT="perl? ( userpriv )"
+
+RDEPEND="
+   dev-libs/libltdl:0
+   bzip2? ( app-arch/bzip2 )
+   corefonts? ( media-fonts/corefonts )
+   djvu? ( app-text/djvu )
+   fftw? ( sci-libs/fftw:3.0 )
+   fontconfig? ( media-libs/fontconfig )
+   fpx? ( >=media-libs/libfpx-1.3.0-r1 )
+   graphviz? ( media-gfx/graphviz )
+   heif? ( media-libs/libheif:= )
+   jbig? ( >=media-libs/jbigkit-2:= )
+   jpeg? ( virtual/jpeg:0 )
+   jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 )
+   lcms? ( media-libs/lcms:2= )
+   lqr? ( media-libs/liblqr )
+   opencl? ( virtual/opencl )
+   openexr? ( media-libs/openexr:0= )
+   pango? ( x11-libs/pango )
+   perl? ( >=dev-lang/perl-5.8.8:0= )
+   png? ( media-libs/libpng:0= )
+   postscript? ( app-text/ghostscript-gpl )
+   raw? ( media-libs/libraw:= )
+   svg? ( gnome-base/librsvg )
+   tiff? ( media-libs/tiff:0= )
+   truetype? (
+   media-fonts/urw-fonts
+   >=media-libs/freetype-2
+   )
+   webp? ( media-libs/libwebp:0= )
+   wmf? ( media-libs/libwmf )
+   X? (
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libXext
+   x11-libs/libXt
+   )
+   xml? ( dev-libs/libxml2:= )
+   lzma? ( app-arch/xz-utils )
+   zlib? ( sys-libs/zlib:= )"
+DEPEND="${RDEPEND}
+   !media-gfx/graphicsmagick[imagemagick]
+   virtual/pkgconfig
+   X? ( x11-base/xorg-proto )"
+
+REQUIRED_USE="corefonts? ( truetype )
+   test? ( corefonts )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   

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

2019-06-24 Thread Thomas Deutschmann
commit: f3230c9a41324f89ea6e08bdc1fef6448b8f9548
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jun 24 21:25:40 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jun 24 21:57:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3230c9a

mail-client/thunderbird: bump to v60.7.2

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

 mail-client/thunderbird/Manifest  |  54 ++
 mail-client/thunderbird/thunderbird-60.7.2.ebuild | 602 ++
 2 files changed, 656 insertions(+)

diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest
index 1ed547089af..5982ed3390d 100644
--- a/mail-client/thunderbird/Manifest
+++ b/mail-client/thunderbird/Manifest
@@ -225,3 +225,57 @@ DIST thunderbird-60.7.1-vi.xpi 637187 BLAKE2B 
c9183fb705e62e405984645ffd993cc3a6
 DIST thunderbird-60.7.1-zh-CN.xpi 626282 BLAKE2B 
1d16d7c29ff7ff6dab198de86fd9d54777b7f03da3b242ce29cc1e0f3b0957be3e22de3d6b78943626efe103976f48e1991ede92a01d241d880477b0222e489b
 SHA512 
521772f2b37cc8be6a684193a210ffc7769d20344e33931e97dd6ff276032b4f4bfeff34e12216f3a3d8941d7ec7101d06eb03a9ec1d40d11ddcaa3f08acfd64
 DIST thunderbird-60.7.1-zh-TW.xpi 626188 BLAKE2B 
e1ff2e68dd08c964861c3f3449ab3e1a3b5e98a5636d354c1954f29a99621d389cebd859440ef758f60d61d9b985133b4652fbf1cc8f8206bbf417e774a3eda2
 SHA512 
3b91a1fb2d7ae4066ecfdbc69f321d74dced15328b4c3e8b5a3581692184d26205f6c82ec416795cb9aeb09564ab1264d043fe484cda3572ca1e4d2e00171b12
 DIST thunderbird-60.7.1.source.tar.xz 284760060 BLAKE2B 
c390fae0b671bc9719d0630a24053bf98f3956e6b11514d793330ce63e0eea40c9f6cae8d22b4609f60279a1ecebd3d9708983c64aa0cd3b70b5380de064a828
 SHA512 
181d4aec12bb7bb910e24b0cfbc6e909df7bc8b14833ae76add54f9f0aca9cb88b0f9d53d5c3cfd81f8a4f297b0ac8ba8025b1e7977382ca777b50afd78a
+DIST thunderbird-60.7.2-ar.xpi 627180 BLAKE2B 
98e07743f498639cf2d1f1891c93d1810c1949b2e386d1efb838b453096ca669b7082108c2ee531ad09a03e4ac92a536cf7ba04b7e1033ee437e71d1a86e7108
 SHA512 
4aca808cb725aa700ff4be091aaff1d6bf02bd446b67bd318e9d24e5b77ec44e2050a39d34ae9355ec8c267ccff3a8a9550115b13b6fc61f014137ecdf65cc2b
+DIST thunderbird-60.7.2-ast.xpi 559643 BLAKE2B 
50affd682e07a51c9c9839d98ae2bfa13963a64739cf4666c0d720985aa4c74f8cb620bdc6473878a9251bebfe2550d87a7ab5925047d0641584fd078af42736
 SHA512 
8f0ceeec768b03d44d44013700103e1c1f072fd16b78218390bd6f37bb30d87124588dcc72df057eeb6412e47db16e01e194ef406b0294bbc5f245fc2cc3eb10
+DIST thunderbird-60.7.2-be.xpi 659079 BLAKE2B 
874df5e34023d088a48dca5d050c0e3939cee6d0073146a110f8646454f48896f02e79e89e493a4dd30061f4a6b3aace57baabc16f55af4a89c234836c1ba3e7
 SHA512 
10f6d7ae046654911a7f0992b806b92da9cbe995da7d3f5a3fbefe29aa8b865ee8c842c8fc909290a1e2f8135842b1138d6fa1203708e919d07e43f248e4185a
+DIST thunderbird-60.7.2-bg.xpi 669318 BLAKE2B 
630bba5d7c2f79f8c7ac3adc8c8119af198fc84013372c1aaf2a2b1e7e10775ec2bd7e01ca809d997a79a88ada3a0b38b3ef7ff70d2f3f8973eb23b909686d5f
 SHA512 
8325403d4284baf2d4c5dd1c322bacff932050190d7701a075964512503cec9d1fa325b9fce7968954e4bdf5feb3d094c8757d5c5dcdc63546a47e9eb8bae89f
+DIST thunderbird-60.7.2-br.xpi 580371 BLAKE2B 
ab2b5f58e1916cfe4040d9aefd9abb0594b13705d701485668bb2187b7cda6155d24fa564af845f4d336e180457e110560ee42127a68f011393fd27bc6f94b58
 SHA512 
f38f68eba5292aeda34a9f76190eb860d5d6e3c13fa6f7130b15564df922a5afb451263d26f5095b206942daad3608f9061fd48bba8d3c0328eaff25c448fe98
+DIST thunderbird-60.7.2-ca.xpi 591972 BLAKE2B 
329d24d7544d833b5d0abd6727b3c0a7973eb0cddab5382a24aef18348b6647587b4b758775345a539e3a795905b24c6101f56eaf837b2c601f68d626748a231
 SHA512 
a16b6ed229c23c64f25d7cffd5cc6807ecf9d78cac3e0fcb0cbf63c820ca2b312b97a8b1218359d1583ce36969a08d4513a47bea98bc4b1e15a6f2287ef5
+DIST thunderbird-60.7.2-cs.xpi 611203 BLAKE2B 
4849c9d661ba4331d6dfbb27c46905fadb2a2131f9be03c5eb5fb4ce4a55f890b3c87c63fa1fa14aa91ca12e3335abd7727d5a599fce6b29dd246ff39fd6e24e
 SHA512 
e9d77ae328482e17ab022104565c799ade9dfcb80d22037b3e443fa6794cc82fb6f13db5af25e02f449af6b08e734e6148311a14a1b0ef6b4598bb5306b67d2b
+DIST thunderbird-60.7.2-cy.xpi 586038 BLAKE2B 
5527b106836a41733a1be1bc29e81a2becae276130234a79e11f5ddd5bdf7a4dc110edd55de9acf249226274e05afc8252eb3db0e0078725aaa9c8804a6df3d0
 SHA512 
d937738db0da179384461b0b0ec31302a19152ef3579adfe6c76c13c87617a7eda82eebc4a917b11082b13e8ba16ea58cf4f20f42cd80f52d5ebcca9c1cab625
+DIST thunderbird-60.7.2-da.xpi 570807 BLAKE2B 
e5e4417ac3e22e50b855c96dcd88f5e0bc276b04adc77c1f1a5908aeffe1c8e1b92b206daf7b0941c3959819b1a3d38b8f7f38e2793e32a0212855bb9308b196
 SHA512 
a6b3e24f490b9b8b6bd90d94c3bbde35502b0e18fd6949fc844b64ce42c89def0eb1bb52541a2811233b3ddc1695735ca78d761a8eb99adeba5b1c6010504327
+DIST thunderbird-60.7.2-de.xpi 582575 BLAKE2B 
3d1a8a94fbcff0e7b9a7be0556ba0354fd303a24243ad7bcabced646b179c22ed98e9970f44261b58905f5df3bfe641711bdd81623dc8b40514447e903d7f994
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: sys-firmware/intel-microcode/

2019-06-24 Thread Thomas Deutschmann
commit: 10029729826cd75a0351e9ec65f2ed2644d777fb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jun 24 21:35:32 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jun 24 21:57:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10029729

sys-firmware/intel-microcode: bump

- Updated microcodes:

  sig 0x000206d6, pf_mask 0x6d, 2018-05-08, rev 0x061d -> 2019-05-21, rev 0x061f
  sig 0x000206d7, pf_mask 0x6d, 2019-05-07, rev 0x0717 -> 2019-05-21, rev 0x0718
  sig 0x000906ec, pf_mask 0x22, 2019-02-14, rev 0x00ae -> 2019-05-17, rev 0x00be
  sig 0x000906ed, pf_mask 0x22, 2019-05-13, rev 0x00bc -> 2019-05-17, rev 0x00be

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

 sys-firmware/intel-microcode/Manifest  |   2 +
 .../intel-microcode-20190618_p20190623.ebuild  | 248 +
 2 files changed, 250 insertions(+)

diff --git a/sys-firmware/intel-microcode/Manifest 
b/sys-firmware/intel-microcode/Manifest
index 936c1376590..c7bcfe5fdc7 100644
--- a/sys-firmware/intel-microcode/Manifest
+++ b/sys-firmware/intel-microcode/Manifest
@@ -1,2 +1,4 @@
 DIST intel-microcode-collection-20190608.tar.xz 5084728 BLAKE2B 
e6e011c8b2867a04edc75cba2229f5b2759905bd380bede55a8c3f2d28fd81035c401ea8fbdf2363fc1f953fbe233ea41a9a83403a24ce8c6131c29ec3e9a984
 SHA512 
cc884282c36fa6239b766de8fcf1e3137a6621076b270b6fceb880ecb2eca9c14d306e744d6110facbbeb08b14973dfc4742ab9d36ca7a11abc6772ea0b5793f
+DIST intel-microcode-collection-20190623.tar.xz 5085652 BLAKE2B 
717e60682060db9e9eb602b2bfb2ed9e1e192c8388a9defcff48b086b0040cb17723f6de55da8a7776f270acbc1a2c0ea6c89f094404689174fc46fb830d
 SHA512 
bac96d527255594861eafa82d01d065ea02190677ef9d9a74a37914175df455a8d9b722d49ec537d5cec2edf73925210f44f57bac8bf64ae19c04ff09a9173fc
 DIST microcode-20190514.tar.gz 2447290 BLAKE2B 
c137342d6a4e662f1fe746e69c97f02a49c75645def0a74edde9e99eae29b2cea70206b2666e4f38c8439cc661adcdda6b60a352b11791c5bc9913cb19864a41
 SHA512 
fd5e82708d4a7f08630a2c51a182814cc4c0fbd88fe473e871b9784c03cb87e804a9ed4c2f3e041696aabfdd60996f2d50a175bea90f1644f6f3205a37215017
+DIST microcode-20190618.tar.gz 2446418 BLAKE2B 
f5e4846c7d6d4251c8a53e7a238ce0be9530827d16a015b91beec9d2ba2186d6632d370342b4b7a898f32d294b3c8c12522d07ea40c13ebc75d40b8b83eb1da3
 SHA512 
f7717f476465705e14ea26b516cf7b1d04e29842da0924d7da5582346ad5dd5dfd8755041bdca8f3afa7fe64f138e91354498d87006fe4487701242858c24c17

diff --git 
a/sys-firmware/intel-microcode/intel-microcode-20190618_p20190623.ebuild 
b/sys-firmware/intel-microcode/intel-microcode-20190618_p20190623.ebuild
new file mode 100644
index 000..c3838387251
--- /dev/null
+++ b/sys-firmware/intel-microcode/intel-microcode-20190618_p20190623.ebuild
@@ -0,0 +1,248 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit linux-info toolchain-funcs mount-boot
+
+# Find updates by searching and clicking the first link (hopefully it's the 
one):
+# 
https://www.intel.com/content/www/us/en/search.html?keyword=Processor+Microcode+Data+File
+
+COLLECTION_SNAPSHOT="${PV##*_p}"
+INTEL_SNAPSHOT="${PV/_p*}"
+#NUM="28087"
+#https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=${NUM}
+#https://downloadmirror.intel.com/${NUM}/eng/microcode-${INTEL_SNAPSHOT}.tgz
+DESCRIPTION="Intel IA32/IA64 microcode update data"
+HOMEPAGE="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files 
http://inertiawar.com/microcode/;
+SRC_URI="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/microcode-${INTEL_SNAPSHOT}.tar.gz
+   
https://dev.gentoo.org/~whissi/dist/intel-microcode/intel-microcode-collection-${COLLECTION_SNAPSHOT}.tar.xz;
+
+LICENSE="intel-ucode"
+SLOT="0"
+KEYWORDS="-* amd64 x86"
+IUSE="hostonly initramfs +split-ucode vanilla"
+REQUIRED_USE="|| ( initramfs split-ucode )"
+
+DEPEND="sys-apps/iucode_tool"
+
+# !/dev/null; then
+   # new tarball format from GitHub
+   mv * ../ || die "Failed to move 
Intel-Linux-Processor-Microcode-Data*"
+   cd .. || die
+   rm -r Intel-Linux-Processor-Microcode-Data* || die
+   fi
+
+   # Prevent "invalid file format" errors from iucode_tool
+   rm -f "${S}"/intel-ucod*/list || die
+}
+
+src_install() {
+   # This will take ALL of the upstream microcode sources:
+   # - microcode.dat
+   # - intel-ucode/
+   # In some cases, they have not contained the same content (eg the 
directory has newer stuff).
+   MICROCODE_SRC=(
+   "${S}"/intel-ucode/
+   "${S}"/intel-ucode-with-caveats/
+   )
+
+   # Allow users who are scared about microcode updates not included in 
Intel's official
+   # microcode tarball to opt-out and comply with Intel marketing
+   if ! use vanilla; then
+   MICROCODE_SRC+=( 

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

2019-06-24 Thread Thomas Deutschmann
commit: cc11c7ddfc5b87e930766ae5d2150e308cd21f14
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jun 24 21:27:20 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jun 24 21:57:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc11c7dd

mail-client/thunderbird-bin: security cleanup

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

 mail-client/thunderbird-bin/Manifest   |  55 --
 .../thunderbird-bin/thunderbird-bin-60.7.1.ebuild  | 189 -
 2 files changed, 244 deletions(-)

diff --git a/mail-client/thunderbird-bin/Manifest 
b/mail-client/thunderbird-bin/Manifest
index 1dba73fb249..1430966eb90 100644
--- a/mail-client/thunderbird-bin/Manifest
+++ b/mail-client/thunderbird-bin/Manifest
@@ -56,59 +56,6 @@ DIST thunderbird-52.9.1-uk.xpi 652854 BLAKE2B 
bc5557a1df83f9b8ca0671fb7c76fe3a11
 DIST thunderbird-52.9.1-vi.xpi 637163 BLAKE2B 
95c18bab7d30dea4a8b2241290175c77a2b47e3b02346b734e728adadfa4656e4197ceb3328de4c5a12a076dcc7b4b412b0a32e3cdef41d65e471b2601f2
 SHA512 
dec44726008af723e44146abb89754f9fd0684e3cce0f0db07c05d8a100a8a862e5f7ad028c0f7d3594965ec35251e7c357ac212fb78570463bd8c18174658c9
 DIST thunderbird-52.9.1-zh-CN.xpi 593611 BLAKE2B 
441b5332a08daca64282a8d4233c7d9dc2008c80c1ebeaf4d125d5c804755509b9b67dda3423cc9b9a9af3d29b386bb621b231e426bdd89879e2e620f2106dea
 SHA512 
db0c8a338df861a43563c70fd73768a5db730ce39e7a8400de44ccada3edac1f7e3736edee5cff439df76ff17f2b4838701e95fa739f5aa04463539516a86f0b
 DIST thunderbird-52.9.1-zh-TW.xpi 595728 BLAKE2B 
8e2f6bdb65418ae837cef54f042eb8aa8ae32e952cece4e3a5a8cd13a4ac99a56495b7cca900d7ecd10d82ab77ed334a8e27eba8d49aca066bd2bb7d7182deb4
 SHA512 
24f48563439450751066d49f609ac4df9d7e31d7cea36ce8f2ad8f38b04fc4d1be99d50463700c4ea2963948b0ec1c1b5323cada6a3b1480f1debe52d50c4f1e
-DIST thunderbird-60.7.1-ar.xpi 627181 BLAKE2B 
6258b86390fac648a6fa7eca46c4d12c0dcc4de5f35a6be138aff0b336cba59d9b96a930bdf953b0c4d803d6e0aa4e68d2e79e3ca1cf084a2af1446d29f0b29b
 SHA512 
92803d3afbc90733612cc92ff3081a909a6eb761d76ba72f9663c43e0bbb0ccc3b59c5a11278dc9174d839db7182beeef2674617119f1ac9d01ad8e85b753dc5
-DIST thunderbird-60.7.1-ast.xpi 559642 BLAKE2B 
fa03f8cccfeeab7c9c7c9d57701b52b2eb1066db8f2ca0a77da6d5c29fb4b9b6439ad185696f6164209ca157939f68b8782a12f20f656f38857f10ff36b0
 SHA512 
efd41e5ded3b7613271f19ad77c0d6122667d499327aa0fe79c590657239647761497c562f13ba2ca4fc931317510846514b491ff86260331cb9e30ac488a03f
-DIST thunderbird-60.7.1-be.xpi 659079 BLAKE2B 
db6888a97a8a2aaeffa50d336413f1cd4e5f65b55e05e0f37614ae9abc311be5547f8b9a5bdada2620ee85547e992fbff68889d81184fce22e692b379f610c44
 SHA512 
aeb87cd19cd8502ce71742142cc9ccdb2afc8241c164cec74ce64f2881b0fc1d50b6b2eabd91c15d8f31f779186ccb0c42a802a3a10c5b375a2d5d5dab109064
-DIST thunderbird-60.7.1-bg.xpi 669318 BLAKE2B 
e28bbdb9b01150f7c9ed06740964c4711faf93060764fb1639989f0cc75c60f963c457eef457dfa98e2575710f667d80f224dc2512d8b1a921a513e9946d
 SHA512 
bb6db33a7fec0a9ad7381aad865e9877056d102a5839bf051cb91292d449c09793455277141530e7a5cae72b4d64293f6379f5dfd96e38b0d3121ab8aba35b76
-DIST thunderbird-60.7.1-br.xpi 580371 BLAKE2B 
78a58df4c32e1fdcc0210a57b1dace485347e2ecaf80cafc863b788a352af19a89e1e3f20d5ac267d3578d32f519fa0b3cc792db11c92f31d61f2bde089e41b6
 SHA512 
61eab689c897fd5476438378ac9150470049c449feb6207c5710de697bdb54b185c7dc9f4bb0f899499bb6ae8526b6b79674d6a79f965c4cbbfb253672925447
-DIST thunderbird-60.7.1-ca.xpi 591971 BLAKE2B 
1bf9fb869c01285f80127e2dc6793a7f41a42b04974024b525ba58097a134f41f3b263642abc4a52ee86bf5c6e4c4e64223edd0a4e601b307e7485a18463250a
 SHA512 
d83aaf6ffc7f661893282e92470136909b2aab86cc1e575249d1591609cbf81f5b83f56270ae06a4c9bcefb808e8fb75e734f86519a593850e666cb70ad21a3c
-DIST thunderbird-60.7.1-cs.xpi 611202 BLAKE2B 
5dda4b474e4ab2cbb5e89cc9e3fe99457f4db1576fcd6ed233e1a977a7ba44c4c5aabc77844d70ea4f02967b02f92640dd9940baebb9b15a871b530749453c5b
 SHA512 
8a1d376a54b537b1bcb15f6d51f6444dd81997f7c9223cf33fbafc5d27935947e223f1a5649fc1cc2a1a3b2365be1c51f8a58fdad1fc21ed933b971989d8f1f3
-DIST thunderbird-60.7.1-cy.xpi 586038 BLAKE2B 
37b31f5aff47df0356c0a80822b1ea658a9e83f0aa5c0696624c68938e16697053826a89d7c6d6e888717b107d496e82af5f430748b3a9430532952ccac46907
 SHA512 
28a10b69a5bc213e712fa4611f0605a1df6141a292faf2c1d191e46112b07facdec6218847c26a8ed2a8f4707c4986031ba96c1817a460326431c3d09aa7bac9
-DIST thunderbird-60.7.1-da.xpi 570807 BLAKE2B 
dea35bb4c52b9cad44d72ea5f8cefa9adbf5a037d112c478a431a1335eff894e4d35881d382aabe8a1cb862107dc2451fac226b5e53d1d238a8a94ee1c4cccf4
 SHA512 
df12c017462e198a30773fc42e9ae00aeae150b3e6760cc496aa8acb52db4f3c0ece2a7db2731fc944130e52db34928c74ee118dd01a67f5bdd8336147816962
-DIST thunderbird-60.7.1-de.xpi 582574 BLAKE2B 
1dfbf130b2de15190b473d6df590b5e95c529c2f267d73129b68b4a7a7da00c8a308159eb512908d349119938542dd0cd88611fff39586927afc8161f67bb8a5
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: sys-firmware/intel-microcode/

2019-06-24 Thread Thomas Deutschmann
commit: 0edaa16ab33740de771464f780d467a4f4b9dda4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jun 24 21:37:27 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jun 24 21:57:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0edaa16a

sys-firmware/intel-microcode: drop old

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

 sys-firmware/intel-microcode/Manifest  |   2 -
 .../intel-microcode-20190514_p20190608.ebuild  | 248 -
 2 files changed, 250 deletions(-)

diff --git a/sys-firmware/intel-microcode/Manifest 
b/sys-firmware/intel-microcode/Manifest
index c7bcfe5fdc7..839daca1aa7 100644
--- a/sys-firmware/intel-microcode/Manifest
+++ b/sys-firmware/intel-microcode/Manifest
@@ -1,4 +1,2 @@
-DIST intel-microcode-collection-20190608.tar.xz 5084728 BLAKE2B 
e6e011c8b2867a04edc75cba2229f5b2759905bd380bede55a8c3f2d28fd81035c401ea8fbdf2363fc1f953fbe233ea41a9a83403a24ce8c6131c29ec3e9a984
 SHA512 
cc884282c36fa6239b766de8fcf1e3137a6621076b270b6fceb880ecb2eca9c14d306e744d6110facbbeb08b14973dfc4742ab9d36ca7a11abc6772ea0b5793f
 DIST intel-microcode-collection-20190623.tar.xz 5085652 BLAKE2B 
717e60682060db9e9eb602b2bfb2ed9e1e192c8388a9defcff48b086b0040cb17723f6de55da8a7776f270acbc1a2c0ea6c89f094404689174fc46fb830d
 SHA512 
bac96d527255594861eafa82d01d065ea02190677ef9d9a74a37914175df455a8d9b722d49ec537d5cec2edf73925210f44f57bac8bf64ae19c04ff09a9173fc
-DIST microcode-20190514.tar.gz 2447290 BLAKE2B 
c137342d6a4e662f1fe746e69c97f02a49c75645def0a74edde9e99eae29b2cea70206b2666e4f38c8439cc661adcdda6b60a352b11791c5bc9913cb19864a41
 SHA512 
fd5e82708d4a7f08630a2c51a182814cc4c0fbd88fe473e871b9784c03cb87e804a9ed4c2f3e041696aabfdd60996f2d50a175bea90f1644f6f3205a37215017
 DIST microcode-20190618.tar.gz 2446418 BLAKE2B 
f5e4846c7d6d4251c8a53e7a238ce0be9530827d16a015b91beec9d2ba2186d6632d370342b4b7a898f32d294b3c8c12522d07ea40c13ebc75d40b8b83eb1da3
 SHA512 
f7717f476465705e14ea26b516cf7b1d04e29842da0924d7da5582346ad5dd5dfd8755041bdca8f3afa7fe64f138e91354498d87006fe4487701242858c24c17

diff --git 
a/sys-firmware/intel-microcode/intel-microcode-20190514_p20190608.ebuild 
b/sys-firmware/intel-microcode/intel-microcode-20190514_p20190608.ebuild
deleted file mode 100644
index c3838387251..000
--- a/sys-firmware/intel-microcode/intel-microcode-20190514_p20190608.ebuild
+++ /dev/null
@@ -1,248 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit linux-info toolchain-funcs mount-boot
-
-# Find updates by searching and clicking the first link (hopefully it's the 
one):
-# 
https://www.intel.com/content/www/us/en/search.html?keyword=Processor+Microcode+Data+File
-
-COLLECTION_SNAPSHOT="${PV##*_p}"
-INTEL_SNAPSHOT="${PV/_p*}"
-#NUM="28087"
-#https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=${NUM}
-#https://downloadmirror.intel.com/${NUM}/eng/microcode-${INTEL_SNAPSHOT}.tgz
-DESCRIPTION="Intel IA32/IA64 microcode update data"
-HOMEPAGE="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files 
http://inertiawar.com/microcode/;
-SRC_URI="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/microcode-${INTEL_SNAPSHOT}.tar.gz
-   
https://dev.gentoo.org/~whissi/dist/intel-microcode/intel-microcode-collection-${COLLECTION_SNAPSHOT}.tar.xz;
-
-LICENSE="intel-ucode"
-SLOT="0"
-KEYWORDS="-* amd64 x86"
-IUSE="hostonly initramfs +split-ucode vanilla"
-REQUIRED_USE="|| ( initramfs split-ucode )"
-
-DEPEND="sys-apps/iucode_tool"
-
-# !/dev/null; then
-   # new tarball format from GitHub
-   mv * ../ || die "Failed to move 
Intel-Linux-Processor-Microcode-Data*"
-   cd .. || die
-   rm -r Intel-Linux-Processor-Microcode-Data* || die
-   fi
-
-   # Prevent "invalid file format" errors from iucode_tool
-   rm -f "${S}"/intel-ucod*/list || die
-}
-
-src_install() {
-   # This will take ALL of the upstream microcode sources:
-   # - microcode.dat
-   # - intel-ucode/
-   # In some cases, they have not contained the same content (eg the 
directory has newer stuff).
-   MICROCODE_SRC=(
-   "${S}"/intel-ucode/
-   "${S}"/intel-ucode-with-caveats/
-   )
-
-   # Allow users who are scared about microcode updates not included in 
Intel's official
-   # microcode tarball to opt-out and comply with Intel marketing
-   if ! use vanilla; then
-   MICROCODE_SRC+=( 
"${S}"/intel-microcode-collection-${COLLECTION_SNAPSHOT} )
-   fi
-
-   # These will carry into pkg_preinst via env saving.
-   : ${MICROCODE_BLACKLIST=${MICROCODE_BLACKLIST_DEFAULT}}
-   : ${MICROCODE_SIGNATURES=${MICROCODE_SIGNATUES_DEFAULT}}
-
-   opts=(
-   ${MICROCODE_BLACKLIST}
-   ${MICROCODE_SIGNATURES}
-   # be strict about 

[gentoo-commits] repo/gentoo:master commit in: sys-block/f3/

2019-06-24 Thread Thomas Deutschmann
commit: 06cbfc12282f3b5ed73639e772e8e766073eee23
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jun 24 21:42:39 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jun 24 21:57:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06cbfc12

sys-block/f3: bump to v7.2

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

 sys-block/f3/Manifest  |  1 +
 sys-block/f3/f3-7.2.ebuild | 66 ++
 2 files changed, 67 insertions(+)

diff --git a/sys-block/f3/Manifest b/sys-block/f3/Manifest
index 43a76e35303..a8535e7de58 100644
--- a/sys-block/f3/Manifest
+++ b/sys-block/f3/Manifest
@@ -1,2 +1,3 @@
 DIST f3-7.0.tar.gz 67492 BLAKE2B 
6b6882958ca831a26cd815635a563dd1bac9c93103fd6e9a2a4040b6ea3725395be96d0cbef9d7e01441402edf63a63110be41f5db559eb5fa85ac82a101751d
 SHA512 
217348c3911995143e2d1f777ff6038ffd541f6868d58da9ca0a702610377f26eac7aafcd993d9b410b4d5a6d27d2c4fa8020b665beee7c2f760dc293a63c41f
 DIST f3-7.1.tar.gz 67934 BLAKE2B 
7d5e12d8af7abda6136dfa19127554b6e5c45fdec7f0cef10d792d77cd2cfae035a572cdf2f22faf54c61852b1660e70270a326bb4408ed64725114f1f9aff4f
 SHA512 
d696bb96ebaefab13c50a4479be01c206365d8dcf7d3c3b1d906b68705b654fffabdbeee49ea208047383c117bcac2a85c2c5fb129cace82f8addc16f22d7514
+DIST f3-7.2.tar.gz 68471 BLAKE2B 
fa2e98ee0bdbad117c44bcc866d8ee5ef1572469d0b3cc48734de0fdb47653946774cc85429157f00d2a977662f593885074822bf1e069aa84ceafafa64726bf
 SHA512 
4e41fca8b02dbd6bfaae01237a47573916aefe47f5aafc864618d708568e32ec122390c03af24d89caaf03de692fa374e87747b07a8546eaf8cafd57887a61ac

diff --git a/sys-block/f3/f3-7.2.ebuild b/sys-block/f3/f3-7.2.ebuild
new file mode 100644
index 000..6f012d090ba
--- /dev/null
+++ b/sys-block/f3/f3-7.2.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Utilities to detect broken or counterfeit flash storage"
+HOMEPAGE="http://oss.digirati.com.br/f3/ https://github.com/AltraMayor/f3;
+
+PATCHES=(
+)
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://github.com/AltraMayor/${PN}.git;
+
+   PATCHES=()
+
+   inherit git-r3
+else
+   SRC_URI="https://github.com/AltraMayor/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+IUSE="extra"
+
+DEPEND="extra? (
+   sys-block/parted
+   virtual/udev
+   )"
+
+RDEPEND=""
+
+DOCS=( changelog README.rst )
+
+src_prepare() {
+   default
+
+   sed -i \
+   -e 's:-ggdb::' \
+   -e 's:^PREFIX =:PREFIX ?=:' \
+   Makefile || die
+
+   tc-export CC
+}
+
+src_compile() {
+   default
+
+   if use extra; then
+   emake V=1 extra
+   fi
+}
+
+src_install() {
+   emake PREFIX="${ED%/}/usr" install
+
+   if use extra; then
+   emake PREFIX="${ED%/}/usr" install-extra
+   fi
+
+   einstalldocs
+}



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

2019-06-24 Thread James Le Cuirot
commit: fbbdcf08e6868b86304672bc9986a5cfc71d70c2
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Jun 24 21:54:24 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 24 21:54:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbbdcf08

www-apps/phpBB: Make doc link relative to dodge possible Portage bug

Closes: https://bugs.gentoo.org/678138
Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: James Le Cuirot  gentoo.org>

 www-apps/phpBB/phpBB-3.2.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/phpBB/phpBB-3.2.7.ebuild 
b/www-apps/phpBB/phpBB-3.2.7.ebuild
index c44df8c4c35..95dfe1c2276 100644
--- a/www-apps/phpBB/phpBB-3.2.7.ebuild
+++ b/www-apps/phpBB/phpBB-3.2.7.ebuild
@@ -33,7 +33,7 @@ src_install() {
webapp_src_install
 
# phpBB needs docs together with the other files.
-   dosym "${MY_HTDOCSDIR}"/docs /usr/share/doc/${PF}
+   dosym ../webapps/${PN}/${SLOT}/htdocs/docs /usr/share/doc/${PF}
 }
 
 pkg_postinst() {



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

2019-06-24 Thread James Le Cuirot
commit: 87065954b8372c4ce06d42d09cc7b7311a42e8b2
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Jun 24 21:29:31 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 24 21:29:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87065954

www-apps/phpBB: Drop old and vulnerable 3.1.10

Bug: https://bugs.gentoo.org/678512
Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: James Le Cuirot  gentoo.org>

 www-apps/phpBB/Manifest   |  1 -
 www-apps/phpBB/phpBB-3.1.10-r1.ebuild | 42 ---
 2 files changed, 43 deletions(-)

diff --git a/www-apps/phpBB/Manifest b/www-apps/phpBB/Manifest
index 06073694d4d..42c23a471f2 100644
--- a/www-apps/phpBB/Manifest
+++ b/www-apps/phpBB/Manifest
@@ -1,2 +1 @@
-DIST phpBB-3.1.10.tar.bz2 2150999 BLAKE2B 
c0dce8b554f9bfd19f0e470fa0b96637f26969339f4ef6f87d04d5e492f0028d24e0adc76c8600b7a7d95c6531aa6971b646a02f22f731195c5a9491ea465bd0
 SHA512 
077a529075ea4e0691f9125be521b3fa8d4a078f9234b40bc5495faf00e1389808da40176ab8c8d9c66db259ebbf252d7292919d5c8e96e93c0bbda8d19695e2
 DIST phpBB-3.2.7.tar.bz2 4384851 BLAKE2B 
68af960efa04a30f81869b205d9c43ace86a4a4411a4cb969cdf5d52c8bf4f87f806fc3b2c71941f15be295afe5faa0d606af72a734356c3a7f0f97fb73d3f01
 SHA512 
f6cf728c022d803f2b39560037b987e832f4ee4583a377f63e01a1529b58e275db4f13386a0d70b50cfb40621d7573a26e349702f901a549cedda9db7f79d4d2

diff --git a/www-apps/phpBB/phpBB-3.1.10-r1.ebuild 
b/www-apps/phpBB/phpBB-3.1.10-r1.ebuild
deleted file mode 100644
index ebc5ae0c550..000
--- a/www-apps/phpBB/phpBB-3.1.10-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit webapp
-
-DESCRIPTION="An open-source bulletin board package"
-HOMEPAGE="https://www.phpbb.com/;
-SRC_URI="https://download.phpbb.com/pub/release/${PV:0:3}/${PV}/${P}.tar.bz2;
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~arm64 ~ppc ~sparc ~x86"
-IUSE="ftp gd imagemagick mssql mysqli postgres sqlite xml zlib"
-
-PHPV="5*:*"
-RDEPEND="=virtual/httpd-php-${PHPV}
-   
=dev-lang/php-${PHPV}[ftp?,gd?,json,mssql?,mysqli?,postgres?,sqlite?,xml?,zlib?]
-   imagemagick? ( virtual/imagemagick-tools )"
-
-need_httpd_cgi
-
-S="${WORKDIR}/${PN}${PV%%.*}"
-
-src_install() {
-   webapp_src_preinst
-
-   insinto "${MY_HTDOCSDIR}"
-   doins -r .
-
-   webapp_serverowned "${MY_HTDOCSDIR}"/cache
-   webapp_serverowned "${MY_HTDOCSDIR}"/files
-   webapp_serverowned "${MY_HTDOCSDIR}"/images/avatars/upload
-   webapp_serverowned "${MY_HTDOCSDIR}"/store
-   webapp_serverowned "${MY_HTDOCSDIR}"/config.php
-   webapp_configfile  "${MY_HTDOCSDIR}"/config.php
-
-   webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
-   webapp_src_install
-
-   # phpBB needs docs together with the other files.
-   dosym "${MY_HTDOCSDIR}"/docs /usr/share/doc/${PF}
-}



[gentoo-commits] repo/gentoo:master commit in: www-apps/phpBB/files/, www-apps/phpBB/

2019-06-24 Thread James Le Cuirot
commit: 7180d5f150295b7a8f5fd492a637f8a7b10f0253
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Jun 24 21:27:39 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 24 21:27:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7180d5f1

www-apps/phpBB: Version bump to 3.2.7

Bug: https://bugs.gentoo.org/678512
Closes: https://bugs.gentoo.org/615182
Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: James Le Cuirot  gentoo.org>

 www-apps/phpBB/Manifest |  1 +
 www-apps/phpBB/files/permissions| 19 +
 www-apps/phpBB/files/postinstall-en.txt | 30 
 www-apps/phpBB/metadata.xml | 11 
 www-apps/phpBB/phpBB-3.2.7.ebuild   | 50 +
 5 files changed, 92 insertions(+), 19 deletions(-)

diff --git a/www-apps/phpBB/Manifest b/www-apps/phpBB/Manifest
index ef210a44d71..06073694d4d 100644
--- a/www-apps/phpBB/Manifest
+++ b/www-apps/phpBB/Manifest
@@ -1 +1,2 @@
 DIST phpBB-3.1.10.tar.bz2 2150999 BLAKE2B 
c0dce8b554f9bfd19f0e470fa0b96637f26969339f4ef6f87d04d5e492f0028d24e0adc76c8600b7a7d95c6531aa6971b646a02f22f731195c5a9491ea465bd0
 SHA512 
077a529075ea4e0691f9125be521b3fa8d4a078f9234b40bc5495faf00e1389808da40176ab8c8d9c66db259ebbf252d7292919d5c8e96e93c0bbda8d19695e2
+DIST phpBB-3.2.7.tar.bz2 4384851 BLAKE2B 
68af960efa04a30f81869b205d9c43ace86a4a4411a4cb969cdf5d52c8bf4f87f806fc3b2c71941f15be295afe5faa0d606af72a734356c3a7f0f97fb73d3f01
 SHA512 
f6cf728c022d803f2b39560037b987e832f4ee4583a377f63e01a1529b58e275db4f13386a0d70b50cfb40621d7573a26e349702f901a549cedda9db7f79d4d2

diff --git a/www-apps/phpBB/files/permissions b/www-apps/phpBB/files/permissions
new file mode 100755
index 000..b5c21c879eb
--- /dev/null
+++ b/www-apps/phpBB/files/permissions
@@ -0,0 +1,19 @@
+#!/bin/bash -e
+
+if [[ $1 = install ]]; then
+   # Ensure database credentials are not world-readable.
+   chmod -v o= "${MY_INSTALLDIR}"/config.php
+
+   # These paths need to be writeable by the PHP user.
+   PATHS=( 
"${MY_INSTALLDIR}"/{cache/,config.php,download/,files/,store/,images/avatars/upload/}
 )
+
+   # Assume the PHP user is in the config group.
+   GID=${VHOST_CONFIG_GID}
+
+   # If that group is root, assume the web server group instead.
+   [[ ${GID} = 0 || ${GID} = root ]] && GID=${VHOST_SERVER_GID}
+
+   # Make the paths writeable by that group.
+   chgrp -v "${GID}" "${PATHS[@]}"
+   chmod -v g+w "${PATHS[@]}"
+fi

diff --git a/www-apps/phpBB/files/postinstall-en.txt 
b/www-apps/phpBB/files/postinstall-en.txt
index 6787a37ca81..8bdf1386e4d 100644
--- a/www-apps/phpBB/files/postinstall-en.txt
+++ b/www-apps/phpBB/files/postinstall-en.txt
@@ -1,22 +1,14 @@
-You are almost done!
+IMPORTANT! Ensure that the group assigned to group-writeable paths
+such as config.php (see above) is one your PHP user is a member
+of. This may or may not be your web server group, ${VHOST_SERVER_GID}.
+If not, adjust your PHP user and/or reinstall the application with
+webapp-config while specifying an appropriate group with -g. Then...
 
-  0. Setup a database (e.g. MySQL: see 
-   http://www.gentoo.org/doc/en/mysql-howto.xml)
+1. Set up a database.
+2. Continue the installation by visiting the URL in your browser.
+3. Delete the "install" folder as follows:
 
-  1. Login on
+   # cd ${MY_INSTALLDIR}
+   # rm -rf install
 
- http://${VHOST_HOSTNAME}/${VHOST_APPDIR}
-
- and finish the installation.
-
-  2. Move into the directory where you installed phpBB and remove
- the "install" folder:
-
- # cd ${MY_INSTALLDIR}
- # rm -rf install
-
-  3. You can now launch your browser and point it to your phpBB site:
-
- http://${VHOST_HOSTNAME}/${VHOST_APPDIR} 
-
-  Enjoy phpBB!
+4. phpBB is now ready to use. Enjoy!

diff --git a/www-apps/phpBB/metadata.xml b/www-apps/phpBB/metadata.xml
index 575e4216b63..14d03d3e9a1 100644
--- a/www-apps/phpBB/metadata.xml
+++ b/www-apps/phpBB/metadata.xml
@@ -9,4 +9,15 @@
ch...@gentoo.org
James Le Cuirot

+   
+   phpBB is a free flat-forum bulletin board software solution 
that can be used
+   to stay in touch with a group of people or can power your 
entire website.
+   With an extensive database of user-created extensions and 
styles database
+   containing hundreds of style and image packages to customise 
your board,
+   you can create a very unique forum in minutes.
+   
+   
+   https://tracker.phpbb.com
+   phpbb/phpbb
+   
 

diff --git a/www-apps/phpBB/phpBB-3.2.7.ebuild 
b/www-apps/phpBB/phpBB-3.2.7.ebuild
new file mode 100644
index 000..c44df8c4c35
--- /dev/null
+++ b/www-apps/phpBB/phpBB-3.2.7.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General 

[gentoo-commits] proj/x11:master commit in: app-benchmarks/glmark2/

2019-06-24 Thread Matt Turner
commit: afbaafaa912dc09a19fee7ee28ef94c44a134a06
Author: Sandino Araico Sanchez  sandino  net>
AuthorDate: Sun Jun 23 00:20:32 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jun 24 21:08:58 2019 +
URL:https://gitweb.gentoo.org/proj/x11.git/commit/?id=afbaafaa

app-benchmarks/glmark2: add patch to fix compile

Compile fix copied from
https://bbs.archlinux.org/viewtopic.php?id=212719

Closes: https://bugs.gentoo.org/688518
Closes: https://github.com/gentoo/x11/pull/2
Signed-off-by: Sandino Araico Sanchez  sandino.net>
Signed-off-by: Matt Turner  gentoo.org>

 app-benchmarks/glmark2/glmark2-2014.03.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app-benchmarks/glmark2/glmark2-2014.03.ebuild 
b/app-benchmarks/glmark2/glmark2-2014.03.ebuild
index db6f924c..4d47a987 100644
--- a/app-benchmarks/glmark2/glmark2-2014.03.ebuild
+++ b/app-benchmarks/glmark2/glmark2-2014.03.ebuild
@@ -31,6 +31,8 @@ REQUIRED_USE="|| ( opengl gles2 )
 src_prepare() {
rm -rf "${S}/src/libpng"
sed -i "s/libpng15/libpng/g" "${S}/wscript" # allow build with >= 
libpng:1.6
+   sed -i "/req_funcs/ s/,..sqrt.*\]/\]/" "${S}/wscript" # sqrt patch
+   sed -i "s/-Werror//" "${S}/wscript"
 }
 
 src_configure() {



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

2019-06-24 Thread Zac Medico
commit: aacd87e8b697e316b3fa66c3bca4075e5a3d66e4
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 24 20:35:47 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 24 20:57:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aacd87e8

dev-python/jsonpickle: Bump to version 1.2

Bug: https://bugs.gentoo.org/688034
Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Zac Medico  gentoo.org>

 dev-python/jsonpickle/Manifest  |  1 +
 dev-python/jsonpickle/jsonpickle-1.2.ebuild | 49 +
 2 files changed, 50 insertions(+)

diff --git a/dev-python/jsonpickle/Manifest b/dev-python/jsonpickle/Manifest
index 39dfe23fc4b..de068698e2f 100644
--- a/dev-python/jsonpickle/Manifest
+++ b/dev-python/jsonpickle/Manifest
@@ -1 +1,2 @@
 DIST jsonpickle-0.9.3.tar.gz 60489 BLAKE2B 
4767809a3bd5816343e9081bdaf45cdec8dfd1e28b832675e01ae415c1ac081d0a84e2827051520999d11d0dc28a62bdd09285cf384fff0f941d3a571064e2bf
 SHA512 
38de2ab2c15e0e28323a8cc83b0c0b0631f2f678f620e8738fee19c71492f011aa7eec428b859574a0066b9e24a08bde911a283736757964035befe3042f2e06
+DIST jsonpickle-1.2.tar.gz 74693 BLAKE2B 
65f9c18b8693351995f84815d27f2d86ab65fe7a620cda0d346b88db56de45ff6aa21b7ae941e8820e16e184d9a5ac55d56caf112f3930083e63b50751fe2dd8
 SHA512 
0a5bfb2e77175c9174ee1783301c613e25fcfa60f07e610206d1e1e34053e90b21b12bc1b1045dd03ff2d4efe5940d85d852800037ca01397994c022f0ffb2c6

diff --git a/dev-python/jsonpickle/jsonpickle-1.2.ebuild 
b/dev-python/jsonpickle/jsonpickle-1.2.ebuild
new file mode 100644
index 000..f4a6601fd81
--- /dev/null
+++ b/dev-python/jsonpickle/jsonpickle-1.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for serializing any arbitrary object graph into 
JSON"
+HOMEPAGE="https://github.com/jsonpickle/jsonpickle/ 
https://pypi.org/project/jsonpickle/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+# There are optional json backends serializer/deserializers in addition to 
those selected here
+# jsonlib, yajl.
+RDEPEND="dev-python/simplejson[${PYTHON_USEDEP}]
+   dev-python/feedparser[${PYTHON_USEDEP}]
+   dev-python/ujson[${PYTHON_USEDEP}]
+   "
+DEPEND="test? ( ${RDEPEND} )
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'dev-python/sphinxtogithub[${PYTHON_USEDEP}]' python2_7) )"
+
+python_prepare_all() {
+   # Prevent un-needed d'loading during doc build
+   sed -e "s/, 'sphinx.ext.intersphinx'//" -i docs/source/conf.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   use doc && { python_setup python2_7 && sphinx-build -b html -c 
docs/source/ docs/source/ docs/source/html || die; }
+}
+
+python_test() {
+   # An apparent regression in tests
+   # https://github.com/jsonpickle/jsonpickle/issues/124
+   einfo "testsuite has optional tests for package demjson"
+   ${PYTHON} tests/runtests.py || die
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/source/html/. )
+   distutils-r1_python_install_all
+}



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

2019-06-24 Thread Zac Medico
commit: 098db277d4ac38240413f1b699f7f100acc21af0
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 24 20:42:42 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 24 20:57:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=098db277

dev-python/ujson: PYTHON_COMPAT+=( python3_7 )

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

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

diff --git a/dev-python/ujson/ujson-1.35.ebuild 
b/dev-python/ujson/ujson-1.35.ebuild
index 59f05a077fb..e74f14482d7 100644
--- a/dev-python/ujson/ujson-1.35.ebuild
+++ b/dev-python/ujson/ujson-1.35.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
 
 inherit distutils-r1
 
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm x86"
+KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2019-06-24 Thread Zac Medico
commit: 8a41975a2a5e44a44d35b1685c93997e4cecd153
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 24 20:38:18 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 24 20:56:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a41975a

dev-python/feedparser: PYTHON_COMPAT+=( python3_7 )

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

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

diff --git a/dev-python/feedparser/feedparser-5.2.1.ebuild 
b/dev-python/feedparser/feedparser-5.2.1.ebuild
index 24dc06b507a..8a2807be96e 100644
--- a/dev-python/feedparser/feedparser-5.2.1.ebuild
+++ b/dev-python/feedparser/feedparser-5.2.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_{5,6} pypy{,3} )
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy{,3} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: profiles/updates/, games-fps/prboom/files/, games-fps/prboom/

2019-06-24 Thread James Le Cuirot
commit: 15146545b8770900b9323a0ff5a18b2eee4ee265
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Jun 24 20:11:32 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 24 20:11:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15146545

games-fps/prboom: prboom is dead, long live prboom-plus!

Signed-off-by: James Le Cuirot  gentoo.org>

 games-fps/prboom/Manifest  |  2 -
 games-fps/prboom/files/prboom-2.5.0-libpng14.patch | 22 --
 games-fps/prboom/files/prboom-2.5.0-nvidia-test.c  |  3 -
 games-fps/prboom/files/prboom-2.5.0-nvidia.patch   | 48 
 games-fps/prboom/metadata.xml  | 11 ---
 games-fps/prboom/prboom-2.5.0-r1.ebuild| 91 --
 profiles/updates/2Q-2019   |  1 +
 7 files changed, 1 insertion(+), 177 deletions(-)

diff --git a/games-fps/prboom/Manifest b/games-fps/prboom/Manifest
deleted file mode 100644
index 44e5df82a2b..000
--- a/games-fps/prboom/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST prboom-2.5.0.tar.gz 1049505 BLAKE2B 
eb044c091279e04bfb65f9fea26bb706be213510b82a95ebe9d482a7c5d2c2ca5a51776afb3af6e8cebeba5df2441922f2298e52c54414b56e98e637c6feb544
 SHA512 
9e25b55047c66931ea010751fb64484e466395b04dfb738ed9dc515bd8b78e1124a337da33bf7be6e97280016ed1f01c852d8bc12704bdb82074488d7b5d2894
-DIST prboom.png 4254 BLAKE2B 
cf70f0ee9d41ad41c3f326b30a12df90f76fdb788d252b29bce1925ef253ec272feedc7040a8bf33146f313517afdc038c66324b9c671d90a7db89a5da2569db
 SHA512 
72631d253c6754484ab1c96c953ed37a734197fa851dc88156fd3d4fb8396a77347805233481470b936a504d08e06d994de1eba613e6bf70a89db8fc7ee9b1ac

diff --git a/games-fps/prboom/files/prboom-2.5.0-libpng14.patch 
b/games-fps/prboom/files/prboom-2.5.0-libpng14.patch
deleted file mode 100644
index 3dea0e7a983..000
--- a/games-fps/prboom/files/prboom-2.5.0-libpng14.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-https://bugs.gentoo.org/show_bug.cgi?id=308739
-
 a/src/SDL/i_sshot.c
-+++ b/src/SDL/i_sshot.c
-@@ -231,7 +231,7 @@
-   if (fp)
-   {
- png_struct *png_ptr = png_create_write_struct(
--PNG_LIBPNG_VER_STRING, png_error_ptr_NULL, error_fn, warning_fn);
-+PNG_LIBPNG_VER_STRING, NULL, error_fn, warning_fn);
- 
- if (png_ptr)
- {
-@@ -279,7 +279,7 @@
- break;
- }
-   }
--  png_destroy_write_struct(_ptr,  png_infopp_NULL);
-+  png_destroy_write_struct(_ptr,  NULL);
- }
- fclose(fp);
-   }

diff --git a/games-fps/prboom/files/prboom-2.5.0-nvidia-test.c 
b/games-fps/prboom/files/prboom-2.5.0-nvidia-test.c
deleted file mode 100644
index f9e4bd700f8..000
--- a/games-fps/prboom/files/prboom-2.5.0-nvidia-test.c
+++ /dev/null
@@ -1,3 +0,0 @@
-#include 
-PFNGLCOLORTABLEEXTPROC glColorTableEXT;
-int main(){return 0;}

diff --git a/games-fps/prboom/files/prboom-2.5.0-nvidia.patch 
b/games-fps/prboom/files/prboom-2.5.0-nvidia.patch
deleted file mode 100644
index c602c784c13..000
--- a/games-fps/prboom/files/prboom-2.5.0-nvidia.patch
+++ /dev/null
@@ -1,48 +0,0 @@
 a/src/gl_intern.h.orig 2003-09-21 16:39:30.247451624 -0400
-+++ b/src/gl_intern.h  2003-09-21 16:39:41.610724144 -0400
-@@ -84,6 +84,6 @@
- #define min(a,b) ((a)<(b)?(a):(b))
- #endif
- 
--PFNGLCOLORTABLEEXTPROC gld_ColorTableEXT;
-+//PFNGLCOLORTABLEEXTPROC gld_ColorTableEXT;
- 
- #endif // _GL_INTERN_H
 a/src/gl_main.c.orig   2003-09-21 16:39:55.436622288 -0400
-+++ b/src/gl_main.c2003-09-21 16:43:00.943420968 -0400
-@@ -285,6 +285,7 @@
- 
- if (strcasecmp(extension, "GL_EXT_texture_filter_anisotropic") == 0)
-   gl_texture_filter_anisotropic = true;
-+/*
- else if (strcasecmp(extension, "GL_EXT_paletted_texture") == 0) {
-   if (gl_use_paletted_texture) {
- gl_paletted_texture = true;
-@@ -304,6 +305,7 @@
-   else
-   lprintf(LO_INFO,"using 
GL_EXT_shared_texture_palette\n",glGetString(GL_VENDOR));
-   }
-+*/
- 
- extension = p;
-   } while (*extension != '\0');
-@@ -761,7 +763,7 @@
- pal[transparent_pal_index*4+1]=0;
- pal[transparent_pal_index*4+2]=0;
- pal[transparent_pal_index*4+3]=0;
--gld_ColorTableEXT(GL_SHARED_TEXTURE_PALETTE_EXT, GL_RGBA, 256, GL_RGBA, 
GL_UNSIGNED_BYTE, pal);
-+//gld_ColorTableEXT(GL_SHARED_TEXTURE_PALETTE_EXT, GL_RGBA, 256, GL_RGBA, 
GL_UNSIGNED_BYTE, pal);
- W_UnlockLumpName("PLAYPAL");
-   } else {
- if (palette>0)
 a/src/gl_texture.c.orig2003-09-21 16:43:18.450759448 -0400
-+++ b/src/gl_texture.c 2003-09-21 16:43:39.549551944 -0400
-@@ -178,7 +178,7 @@
-   pal[transparent_pal_index*4+1]=0;
-   pal[transparent_pal_index*4+2]=0;
-   pal[transparent_pal_index*4+3]=0;
--  gld_ColorTableEXT(target, GL_RGBA, 256, GL_RGBA, GL_UNSIGNED_BYTE, pal);
-+//  gld_ColorTableEXT(target, GL_RGBA, 256, GL_RGBA, GL_UNSIGNED_BYTE, pal);
-   W_UnlockLumpName("PLAYPAL");
- }
- 

diff --git a/games-fps/prboom/metadata.xml 

[gentoo-commits] repo/gentoo:master commit in: games-fps/freedm/

2019-06-24 Thread James Le Cuirot
commit: 792599017954dd22e5ecfdca7652732992a2922b
Author: William Breathitt Gray  gmail  com>
AuthorDate: Thu Jun 20 10:28:02 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 24 19:57:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79259901

games-fps/freedm: Add games-fps/prboom-plus to the dependency list

Package-Manager: Portage-2.3.67, Repoman-2.3.15
Signed-off-by: William Breathitt Gray  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 games-fps/freedm/freedm-0.11.3.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/games-fps/freedm/freedm-0.11.3.ebuild 
b/games-fps/freedm/freedm-0.11.3.ebuild
index 342ceb06a7f..47c3ee76f4c 100644
--- a/games-fps/freedm/freedm-0.11.3.ebuild
+++ b/games-fps/freedm/freedm-0.11.3.ebuild
@@ -16,6 +16,7 @@ RDEPEND="
games-fps/gzdoom
games-engines/odamex
games-fps/doomsday
+   games-fps/prboom-plus
)
 "
 



[gentoo-commits] repo/gentoo:master commit in: games-fps/prboom-plus/files/, games-fps/prboom-plus/

2019-06-24 Thread James Le Cuirot
commit: 54d69b5150e342464abbf45d4699877b32a2efc2
Author: William Breathitt Gray  gmail  com>
AuthorDate: Thu Jun 20 07:30:38 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 24 19:57:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54d69b51

games-fps/prboom-plus: Introduce version 2.5.1.4

Closes: https://bugs.gentoo.org/338027
Package-Manager: Portage-2.3.67, Repoman-2.3.15
Signed-off-by: William Breathitt Gray  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12297
Signed-off-by: James Le Cuirot  gentoo.org>

 games-fps/prboom-plus/Manifest |  1 +
 1.4-Remove-nonstandard-gamesdir-variable.patch | 33 +++
 games-fps/prboom-plus/metadata.xml | 33 +++
 games-fps/prboom-plus/prboom-plus-2.5.1.4.ebuild   | 68 ++
 4 files changed, 135 insertions(+)

diff --git a/games-fps/prboom-plus/Manifest b/games-fps/prboom-plus/Manifest
new file mode 100644
index 000..74314aab3b5
--- /dev/null
+++ b/games-fps/prboom-plus/Manifest
@@ -0,0 +1 @@
+DIST prboom-plus-2.5.1.4.tar.gz 3007237 BLAKE2B 
3dce8aad6fb521d13cf3e6b48a261f010b545bafa853860b284be0d0772f65b4fa0bfa965f7cb1869cc0d0eb21a4237e1873d08ff56d439cb3eed00f82bf12fb
 SHA512 
625b75c5fe663bb3ba54bcd90f914ad7461c0860448f6f179180de26bea0a4d766739c50f96a8245687bc213742ec53bf6ffa26cde09772b3ae0bba91662213e

diff --git 
a/games-fps/prboom-plus/files/prboom-plus-2.5.1.4-Remove-nonstandard-gamesdir-variable.patch
 
b/games-fps/prboom-plus/files/prboom-plus-2.5.1.4-Remove-nonstandard-gamesdir-variable.patch
new file mode 100644
index 000..c64bd135937
--- /dev/null
+++ 
b/games-fps/prboom-plus/files/prboom-plus-2.5.1.4-Remove-nonstandard-gamesdir-variable.patch
@@ -0,0 +1,33 @@
+From d0aaa51e05da23c2b0ad46901c2f4b3cd0500681 Mon Sep 17 00:00:00 2001
+From: William Breathitt Gray 
+Date: Fri, 21 Jun 2019 17:31:01 +0900
+Subject: [PATCH] Remove nonstandard gamesdir variable
+
+The Autotools canonical method of configuring the program installation
+directory is via the bindir variable (e.g. "--bindir=/usr/games/doom").
+---
+ src/Makefile.am | 6 ++
+ 1 file changed, 2 insertions(+), 4 deletions(-)
+
+diff --git a/src/Makefile.am b/src/Makefile.am
+index c20da98..9b3ab13 100644
+--- a/src/Makefile.am
 b/src/Makefile.am
+@@ -8,12 +8,10 @@
+ 
+ SUBDIRS = SDL POSIX MAC PCSOUND TEXTSCREEN MUSIC   
+ 
+-gamesdir=$(prefix)/games
+-
+ if BUILD_SERVER
+-games_PROGRAMS = prboom-plus prboom-plus-game-server
++bin_PROGRAMS = prboom-plus prboom-plus-game-server
+ else
+-games_PROGRAMS = prboom-plus
++bin_PROGRAMS = prboom-plus
+ endif
+ 
+ CFLAGS = @CFLAGS@ @SDL_CFLAGS@
+-- 
+2.22.0
+

diff --git a/games-fps/prboom-plus/metadata.xml 
b/games-fps/prboom-plus/metadata.xml
new file mode 100644
index 000..c05b6d7832b
--- /dev/null
+++ b/games-fps/prboom-plus/metadata.xml
@@ -0,0 +1,33 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   PrBoom+ is a Doom source port developed from the original 
PrBoom project.
+   
+   
+   vilhelm.g...@gmail.com
+   William Breathitt Gray
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   ga...@gentoo.org
+   Gentoo Games Project
+   
+   
+   Enable support for various tracker-style 
music formats via media-libs/dumb
+   Enable support for MIDI via 
media-sound/fluidsynth
+   Enable support for network play
+   Enable non-free components
+   Enable support for MIDI via 
media-libs/portmidi
+   Enable support for high-resolution 
texture support via media-libs/sdl-image
+   Enable support for MIDI via 
media-libs/sdl-mixer
+   
+   
+   https://sourceforge.net/p/prboom-plus/bugs
+   https://prboom-plus.sourceforge.net
+   prboom-plus
+   
+

diff --git a/games-fps/prboom-plus/prboom-plus-2.5.1.4.ebuild 
b/games-fps/prboom-plus/prboom-plus-2.5.1.4.ebuild
new file mode 100644
index 000..29196ddfd2e
--- /dev/null
+++ b/games-fps/prboom-plus/prboom-plus-2.5.1.4.ebuild
@@ -0,0 +1,68 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools desktop xdg
+
+DESCRIPTION="A Doom source port developed from the original PrBoom project"
+HOMEPAGE="https://prboom-plus.sourceforge.net;
+# We are using a github mirror here because the upstream tarball is missing the
+# free dog assets; we should update SRC_URI to point to the upstream tarball
+# once the free assets are present as expected
+#SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+SRC_URI="https://github.com/coelckers/prboom-plus/archive/f96f891d068dcc5ec52ed91056b46d27e9a8462d.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2+
+   nonfree? ( freedist )
+   !nonfree? ( BSD )"
+SLOT="0"

[gentoo-commits] repo/gentoo:master commit in: games-fps/freedoom/

2019-06-24 Thread James Le Cuirot
commit: 45f18962ba1c456bcceb36c7f8ab0e538b965c31
Author: William Breathitt Gray  gmail  com>
AuthorDate: Thu Jun 20 10:26:57 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jun 24 19:57:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45f18962

games-fps/freedoom: Add games-fps/prboom-plus to the dependency list

Package-Manager: Portage-2.3.67, Repoman-2.3.15
Signed-off-by: William Breathitt Gray  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 games-fps/freedoom/freedoom-0.11.3-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/games-fps/freedoom/freedoom-0.11.3-r1.ebuild 
b/games-fps/freedoom/freedoom-0.11.3-r1.ebuild
index 2f5fd2f5c58..b0297a0238e 100644
--- a/games-fps/freedoom/freedoom-0.11.3-r1.ebuild
+++ b/games-fps/freedoom/freedoom-0.11.3-r1.ebuild
@@ -16,6 +16,7 @@ RDEPEND="
games-fps/gzdoom
games-engines/odamex
games-fps/doomsday
+   games-fps/prboom-plus
)
 "
 



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

2019-06-24 Thread Alfredo Tupone
commit: a553b18e675384fc47bf76070a74261be15b7531
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Mon Jun 24 19:47:45 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Mon Jun 24 19:47:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a553b18e

dev-ada/libadalang: fix dependency

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

 dev-ada/libadalang/libadalang-2018.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ada/libadalang/libadalang-2018.ebuild 
b/dev-ada/libadalang/libadalang-2018.ebuild
index 6ac7ffb8994..2f0bf1aa8ee 100644
--- a/dev-ada/libadalang/libadalang-2018.ebuild
+++ b/dev-ada/libadalang/libadalang-2018.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
@@ -23,7 +23,7 @@ RDEPEND="dev-python/pyyaml
dev-ada/gnatcoll-bindings[iconv,shared=,static-libs=]
${PYTHON_DEPS}"
 DEPEND="${RDEPEND}
-   >=dev-ada/langkit-2018"
+   ~dev-ada/langkit-2018"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 S="${WORKDIR}"/${MYP}



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

2019-06-24 Thread Alfredo Tupone
commit: 97a104986c0ad6247e11e7e918c9767d5feb7c7e
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Mon Jun 24 19:22:56 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Mon Jun 24 19:22:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97a10498

dev-ada/libadalang: gcc-4.9.4 is too old for 2018 (prod)

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

 dev-ada/libadalang/libadalang-2018-r1.ebuild | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev-ada/libadalang/libadalang-2018-r1.ebuild 
b/dev-ada/libadalang/libadalang-2018-r1.ebuild
index 635ac1d49b1..1fff1c6e5bf 100644
--- a/dev-ada/libadalang/libadalang-2018-r1.ebuild
+++ b/dev-ada/libadalang/libadalang-2018-r1.ebuild
@@ -16,16 +16,17 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5b0cf9adc7a4475263382c18
 LICENSE="GPL-3 gcc-runtime-library-exception-3.1"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="gnat_2016 gnat_2017 +gnat_2018 gnat_2019 +shared static-libs"
+IUSE="gnat_2017 +gnat_2018 gnat_2019 +shared static-libs"
 
 RDEPEND="dev-python/pyyaml
-   
dev-ada/gnatcoll-bindings[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]
+   dev-ada/gnatcoll-bindings[gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]
dev-ada/gnatcoll-bindings[iconv,shared=,static-libs=]
${PYTHON_DEPS}"
 DEPEND="${RDEPEND}
~dev-ada/langkit-2018
-   
dev-ada/gprbuild[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+   dev-ada/gprbuild[gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}
+   ^^ ( gnat_2017 gnat_2018 gnat_2019 )"
 
 S="${WORKDIR}"/${MYP}
 



[gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/, sys-boot/grub/files/

2019-06-24 Thread Mike Gilbert
commit: cc7c5c7c914a5a240a3f15788ad125c58ab7271c
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Jun 24 18:34:16 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Jun 24 18:34:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc7c5c7c

sys-boot/grub: backport fix for efi

Closes: https://bugs.gentoo.org/688622
Package-Manager: Portage-2.3.67_p12, Repoman-2.3.14_p7
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-boot/grub/files/2.02-efi-tsc-pmtimer.patch | 32 ++
 .../{grub-2.02-r3.ebuild => grub-2.02-r4.ebuild}   |  1 +
 2 files changed, 33 insertions(+)

diff --git a/sys-boot/grub/files/2.02-efi-tsc-pmtimer.patch 
b/sys-boot/grub/files/2.02-efi-tsc-pmtimer.patch
new file mode 100644
index 000..f20845d5a34
--- /dev/null
+++ b/sys-boot/grub/files/2.02-efi-tsc-pmtimer.patch
@@ -0,0 +1,32 @@
+From 446794de8da4329ea532cbee4ca877bcafd0e534 Mon Sep 17 00:00:00 2001
+From: "David E. Box" 
+Date: Fri, 15 Sep 2017 15:37:05 -0700
+Subject: [PATCH] tsc: Change default tsc calibration method to pmtimer on EFI
+ systems
+
+On efi systems, make pmtimer based tsc calibration the default over the
+pit. This prevents Grub from hanging on Intel SoC systems that power gate
+the pit.
+
+Signed-off-by: David E. Box 
+Reviewed-by: Daniel Kiper 
+---
+ grub-core/kern/i386/tsc.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/grub-core/kern/i386/tsc.c b/grub-core/kern/i386/tsc.c
+index 2e85289d8..f266eb131 100644
+--- a/grub-core/kern/i386/tsc.c
 b/grub-core/kern/i386/tsc.c
+@@ -68,7 +68,7 @@ grub_tsc_init (void)
+ #ifdef GRUB_MACHINE_XEN
+   (void) (grub_tsc_calibrate_from_xen () || calibrate_tsc_hardcode());
+ #elif defined (GRUB_MACHINE_EFI)
+-  (void) (grub_tsc_calibrate_from_pit () || grub_tsc_calibrate_from_pmtimer 
() || grub_tsc_calibrate_from_efi() || calibrate_tsc_hardcode());
++  (void) (grub_tsc_calibrate_from_pmtimer () || grub_tsc_calibrate_from_pit 
() || grub_tsc_calibrate_from_efi() || calibrate_tsc_hardcode());
+ #elif defined (GRUB_MACHINE_COREBOOT)
+   (void) (grub_tsc_calibrate_from_pmtimer () || grub_tsc_calibrate_from_pit 
() || calibrate_tsc_hardcode());
+ #else
+-- 
+2.22.0
+

diff --git a/sys-boot/grub/grub-2.02-r3.ebuild 
b/sys-boot/grub/grub-2.02-r4.ebuild
similarity index 99%
rename from sys-boot/grub/grub-2.02-r3.ebuild
rename to sys-boot/grub/grub-2.02-r4.ebuild
index 343fae3197d..e7fdf86942f 100644
--- a/sys-boot/grub/grub-2.02-r3.ebuild
+++ b/sys-boot/grub/grub-2.02-r4.ebuild
@@ -44,6 +44,7 @@ PATCHES=(
"${FILESDIR}"/2.02-xfs-sparse-inodes.patch
"${FILESDIR}"/2.02-X86_64_PLT32.patch
"${FILESDIR}"/2.02-gcc8.patch
+   "${FILESDIR}"/2.02-efi-tsc-pmtimer.patch
 )
 
 DEJAVU=dejavu-sans-ttf-2.37



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

2019-06-24 Thread Sebastian Pipping
commit: e5eb393709b24ec6441cd3f9a41a35eb2b3ced79
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Mon Jun 24 18:01:15 2019 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Mon Jun 24 18:02:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5eb3937

app-emulation/docker-compose: 1.24.1

Signed-off-by: Sebastian Pipping  gentoo.org>
Package-Manager: Portage-2.3.67, Repoman-2.3.12

 app-emulation/docker-compose/Manifest  |  1 +
 .../docker-compose/docker-compose-1.24.1.ebuild| 67 ++
 2 files changed, 68 insertions(+)

diff --git a/app-emulation/docker-compose/Manifest 
b/app-emulation/docker-compose/Manifest
index fdfb476798a..ffe2528f81e 100644
--- a/app-emulation/docker-compose/Manifest
+++ b/app-emulation/docker-compose/Manifest
@@ -1,2 +1,3 @@
 DIST docker-compose-1.23.2.tar.gz 302950 BLAKE2B 
b96db2e718bd6b05f6a35829749570320209def17b7536e402b9991b56e05a2d8da97fbd8d79d8125d9df6ff361a181fbfd71346a33a68704db0327a92757f66
 SHA512 
baa233c84ac770798ba3d8d256687630b331d774a8d60f3c0d5046aa0a74c8c3b8b0b8bc4431f3bc7d5b7a54f0646f5e2fd14d5af31db37cb546e86c96c8c1db
 DIST docker-compose-1.24.0.tar.gz 307601 BLAKE2B 
cb2a6f96e14c04d0279b25c075182d8f09e5a622e4cee2ce74995224e3a8634cc5f22ccc548b7754bbeb11630c1e638386cb1a6df927b3619cb6e7e3595aac6c
 SHA512 
318c6bf9877147de09526b4d49c3fd86012d85626e7a9a15863ca55a60e10fa85b27429605045d0aaa9933bc2e5f23cbb76856276a874e84793b878a3e86
+DIST docker-compose-1.24.1.tar.gz 307749 BLAKE2B 
7ded0a4b82a7a9beb9de38752f38998ca4ea9421e5ed5630627820ec7e250ad6f03f6788bcbebe8bc0dd4c064d275bb4ca5a6055a95b6a0f72d7ae9038ec7f22
 SHA512 
9b8632ef263b8dfa678e8b99b46e00441f779716a524280ce25f62fcd2605f400723b7790c466338374c34653946dc2c5d7f09593ddd892fee3409c2a2fd1a5f

diff --git a/app-emulation/docker-compose/docker-compose-1.24.1.ebuild 
b/app-emulation/docker-compose/docker-compose-1.24.1.ebuild
new file mode 100644
index 000..1efb5d463ed
--- /dev/null
+++ b/app-emulation/docker-compose/docker-compose-1.24.1.ebuild
@@ -0,0 +1,67 @@
+# Copyright 2018-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_6} )
+
+inherit bash-completion-r1 distutils-r1
+
+DESCRIPTION="Multi-container orchestration for Docker"
+HOMEPAGE="https://github.com/docker/compose;
+SRC_URI="https://github.com/docker/compose/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/cached-property-1.2.0[${PYTHON_USEDEP}]
+   >=dev-python/docker-py-3.7.0[${PYTHON_USEDEP}]
+   >=dev-python/dockerpty-0.4.1[${PYTHON_USEDEP}]
+   >=dev-python/docopt-0.6.1[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-2.5.1[${PYTHON_USEDEP}]
+   dev-python/paramiko[${PYTHON_USEDEP}]
+   >=dev-python/PySocks-1.6.0[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.18.1[${PYTHON_USEDEP}]
+   >=dev-python/six-1.3.0[${PYTHON_USEDEP}]
+   >=dev-python/texttable-0.9.0[${PYTHON_USEDEP}]
+   >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '>=dev-python/enum34-1.0.4[${PYTHON_USEDEP}]' 
'python2_7' )
+   $(python_gen_cond_dep '>=dev-python/ipaddress-1.0.16[${PYTHON_USEDEP}]' 
'python2_7' )
+   $(python_gen_cond_dep 
'>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' )"
+
+DEPEND="${RDEPEND}
+   test? ( dev-python/pytest[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '>=dev-python/mock-1.0.1[${PYTHON_USEDEP}]' 
'python2_7' ) )"
+
+S="${WORKDIR}/compose-${PV}"
+
+PATCHES=(
+   # Bug #679968 -- https://bugs.gentoo.org/679968
+   # Bug #681002 -- https://bugs.gentoo.org/681002
+   "${FILESDIR}"/${PN}-1.24.0-setup-py.patch
+)
+
+src_prepare() {
+   # Address QA issue "docker-compose.exe: missing alias (symlink) for 
completed command."
+   sed 's,^\(complete.*\) docker-compose\.exe\(.*\),\1\2,' -i 
contrib/completion/bash/docker-compose || die
+
+   default
+}
+
+python_test() {
+   distutils_install_for_testing
+   ${PYTHON} -m pytest tests/unit/ || die "tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   newbashcomp contrib/completion/bash/docker-compose ${PN}
+
+   insinto /usr/share/zsh/site-functions
+   doins contrib/completion/zsh/*
+
+   distutils-r1_python_install_all
+}



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

2019-06-24 Thread Mikle Kolyada
commit: a90553097ac89cf07e28263e30695c1ba8616cc2
Author: Alexey Korepanov  yandex  ru>
AuthorDate: Mon Jun 17 18:52:03 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jun 24 17:14:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9055309

dev-tex/latexdiff: 1.3.0 version bump

Signed-off-by: Alexey Korepanov  yandex.ru>
Closes: https://bugs.gentoo.org/688228
Signed-off-by: Mikle Kolyada  gentoo.org>

 dev-tex/latexdiff/Manifest |  1 +
 .../{latexdiff-.ebuild => latexdiff-1.3.0.ebuild}  | 10 ++
 dev-tex/latexdiff/latexdiff-.ebuild| 10 ++
 3 files changed, 13 insertions(+), 8 deletions(-)

diff --git a/dev-tex/latexdiff/Manifest b/dev-tex/latexdiff/Manifest
index 3145619bd9f..c2d082adc2f 100644
--- a/dev-tex/latexdiff/Manifest
+++ b/dev-tex/latexdiff/Manifest
@@ -1,2 +1,3 @@
 DIST latexdiff-1.1.0.zip 466029 BLAKE2B 
5efe78845f6bcd2a3c8af8e889cb868047a8131268e903bc465068fd1f9de419426738eb1d4014ca92adf28714a6af0650cfe03c31f4303830978f558c15c225
 SHA512 
04af20386b0e611f73d981242747316da6376967fef611a29927b66a7a129bec49c7224655378c6f9fc744f8d69cf2ac977d0f50278d3686c98dcdc4aef0b675
 DIST latexdiff-1.2.1.tar.gz 1780064 BLAKE2B 
d657d5d36bcb759889a582b4aac38ae67d99a17bc30fb37d627e9d496df40a1523871e31968333f07b1ad94b521faf91336b225f7466ef382713d48a803f1444
 SHA512 
9917a0eee36e5bff7c13e5690e743fa34aa7c1347a6509961aa4484094433854c6742a4c1605087db1902a57537fda2b49b071e98b015a5535379c27ccc1fd46
+DIST latexdiff-1.3.0.tar.gz 1791127 BLAKE2B 
e394dcf29d529f47a87eb7615d0da42a2d30c0e3a40938903cee75c2241ee8543713ee735f94f9eb9fe59829be85a5dad681183d96b2651e0e09d20ecae9e207
 SHA512 
d1b47ff4733bbba0ecadd71e6c54362b78ad8e97cac54b99b9ead4565dd0a56a8a5d4ce27866cabb4dc43c47a3c2230ce7743909f2d30bb94ecbae75c6ecbaae

diff --git a/dev-tex/latexdiff/latexdiff-.ebuild 
b/dev-tex/latexdiff/latexdiff-1.3.0.ebuild
similarity index 72%
copy from dev-tex/latexdiff/latexdiff-.ebuild
copy to dev-tex/latexdiff/latexdiff-1.3.0.ebuild
index c68835644e5..d293d8d31f6 100644
--- a/dev-tex/latexdiff/latexdiff-.ebuild
+++ b/dev-tex/latexdiff/latexdiff-1.3.0.ebuild
@@ -1,17 +1,17 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 DESCRIPTION="Compare two latex files and mark up significant differences"
-HOMEPAGE="http://www.ctan.org/tex-archive/support/latexdiff/ 
https://github.com/ftilmann/latexdiff/;
+HOMEPAGE="https://www.ctan.org/tex-archive/support/latexdiff/ 
https://github.com/ftilmann/latexdiff/;
 
 if [[ ${PV} == ** ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/ftilmann/latexdiff.git;
 else
SRC_URI="https://github.com/ftilmann/latexdiff/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+   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"
 fi
 
 LICENSE="GPL-3"
@@ -27,6 +27,8 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
dev-perl/Pod-LaTeX
+"
+BDEPEND="
test? ( app-shells/tcsh )
 "
 

diff --git a/dev-tex/latexdiff/latexdiff-.ebuild 
b/dev-tex/latexdiff/latexdiff-.ebuild
index c68835644e5..d293d8d31f6 100644
--- a/dev-tex/latexdiff/latexdiff-.ebuild
+++ b/dev-tex/latexdiff/latexdiff-.ebuild
@@ -1,17 +1,17 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 DESCRIPTION="Compare two latex files and mark up significant differences"
-HOMEPAGE="http://www.ctan.org/tex-archive/support/latexdiff/ 
https://github.com/ftilmann/latexdiff/;
+HOMEPAGE="https://www.ctan.org/tex-archive/support/latexdiff/ 
https://github.com/ftilmann/latexdiff/;
 
 if [[ ${PV} == ** ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/ftilmann/latexdiff.git;
 else
SRC_URI="https://github.com/ftilmann/latexdiff/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+   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"
 fi
 
 LICENSE="GPL-3"
@@ -27,6 +27,8 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
dev-perl/Pod-LaTeX
+"
+BDEPEND="
test? ( app-shells/tcsh )
 "
 



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

2019-06-24 Thread Alfredo Tupone
commit: 922e58479dd4dae63e71e1be134f7f5de279225f
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Mon Jun 24 16:56:48 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Mon Jun 24 16:56:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=922e5847

dev-ada/libadalang: fix dependency

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

 dev-ada/libadalang/libadalang-2019.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-ada/libadalang/libadalang-2019.ebuild 
b/dev-ada/libadalang/libadalang-2019.ebuild
index 823b7b6d2d1..b9b7080104d 100644
--- a/dev-ada/libadalang/libadalang-2019.ebuild
+++ b/dev-ada/libadalang/libadalang-2019.ebuild
@@ -26,7 +26,8 @@ DEPEND="${RDEPEND}
dev-ada/gprbuild[gnat_2018(-)?,gnat_2019(-)?]
>=dev-ada/langkit-2019"
 
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}
+   ^^ ( gnat_2018 gnat_2019 )"
 
 S="${WORKDIR}"/${MYP}
 



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

2019-06-24 Thread Lars Wendler
commit: 279241254c093e221a1441278fd1b959c2e8dc07
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jun 24 16:34:00 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jun 24 16:35:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27924125

media-libs/giflib: Bump to version 5.2.1

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

 media-libs/giflib/Manifest|  1 +
 media-libs/giflib/giflib-5.2.1.ebuild | 77 +++
 2 files changed, 78 insertions(+)

diff --git a/media-libs/giflib/Manifest b/media-libs/giflib/Manifest
index 35697dc45ac..d53ffb9540f 100644
--- a/media-libs/giflib/Manifest
+++ b/media-libs/giflib/Manifest
@@ -3,3 +3,4 @@ DIST giflib-5.0.6.tar.bz2 621073 BLAKE2B 
ae162c281755cae4d00bcbd07273f7c7488ae67
 DIST giflib-5.1.4.tar.bz2 639703 BLAKE2B 
5176fbd94c37a86a7f7a3964b6b5f2637d76ba5d40e594a0db52a3a09e22b915a0388fc9bd2f1446dcf66b3b9c0d76741583e4d5d3f7362fa3997e8b26503fc4
 SHA512 
32b5e342056c210e6478e9cb3b6ceec9594dcfaf34feea1eb4dad633a081ed4465bceee578c19165907cb47cb83912ac359ceea666a8e07dbbb5420f9928f96d
 DIST giflib-5.1.8.tar.gz 419065 BLAKE2B 
4a42120758be15e765dae249d98d25164b40e64f933415412420163c0ed7fd6967d3958fff70478d5635a5bb9a6ed397f06ad6de510f2e97de5574b7c68d84d2
 SHA512 
d390917837a64de1912720ab8968e6b077c6be9f9a2f835faced44420f54d6d55d4e3543b9779ec65d399858856188fea93c170b253d0b83928f15548a14aba3
 DIST giflib-5.1.9.tar.gz 385068 BLAKE2B 
0c6765eb9a017fee8de28c9440434f3054f87ae65139a3f9f4a41145d4d86dfbd88ece54ea6f40c58054e0ab728a1d346c2f725843bcc34bfd75825e58b8f650
 SHA512 
b6350b39755e3eeba58b5fccf319bbaeee2db6564e13c8ce44d3652cc32d243c391def74b6b1529bc5e0d4573eff94b2ffa5faa90fc564a049122d3e23f1d184
+DIST giflib-5.2.1.tar.gz 444187 BLAKE2B 
8c1e105bbb65dc7ab103976caed70834356440f381ec5118311882fb1c558bb65f6c1081e5767f9835087860de44df5dfcd2826f89744dded548d535736f27f0
 SHA512 
4550e53c21cb1191a4581e363fc9d0610da53f7898ca8320f0d3ef6711e76bdda2609c2df15dc94c45e28bff8de441f1227ec2da7ea827cb3c0405af4faa4736

diff --git a/media-libs/giflib/giflib-5.2.1.ebuild 
b/media-libs/giflib/giflib-5.2.1.ebuild
new file mode 100644
index 000..87eaf2bc700
--- /dev/null
+++ b/media-libs/giflib/giflib-5.2.1.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib-minimal toolchain-funcs
+
+DESCRIPTION="Library to handle, display and manipulate GIF images"
+HOMEPAGE="https://sourceforge.net/projects/giflib/;
+SRC_URI="mirror://sourceforge/giflib/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/7"
+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="doc static-libs"
+
+DEPEND="doc? ( app-text/xmlto )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-5.1.9-gentoo.patch
+)
+
+src_prepare() {
+   default
+   multilib_copy_sources
+}
+
+multilib_src_compile() {
+   # Use reallocarray() from libc if available.
+   if $(tc-getCC) ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} -D_GNU_SOURCE -o 
"${T}/reallocarray_test" -x c - <<< $'#include \nint main() {void *p 
= reallocarray(NULL, 0, 0);}' 2> /dev/null; then
+   local -x CPPFLAGS="${CPPFLAGS} -D_GNU_SOURCE 
-DHAVE_REALLOCARRAY"
+   sed -e "s/ openbsd-reallocarray\.c//" -i Makefile || die
+   rm openbsd-reallocarray.c || die
+   fi
+
+   emake \
+   CC="$(tc-getCC)" \
+   CFLAGS="${CFLAGS} -std=gnu99 -fPIC -Wno-format-truncation" \
+   LDFLAGS="${LDFLAGS}" \
+   OFLAGS="" \
+   all
+
+   if use doc && multilib_is_native_abi; then
+   emake -C doc
+   fi
+}
+
+multilib_src_install() {
+   emake \
+   DESTDIR="${D}" \
+   PREFIX="${EPREFIX}/usr" \
+   LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
+   install
+
+   if ! use static-libs ; then
+   find "${ED}" -name "*.a" -delete || die
+   fi
+
+   if use doc && multilib_is_native_abi; then
+   docinto html
+   dodoc doc/*.html
+   fi
+}
+
+multilib_src_install_all() {
+   docinto
+   dodoc ChangeLog NEWS README TODO
+   if use doc ; then
+   dodoc doc/*.txt
+   docinto html
+   dodoc -r doc/whatsinagif
+   fi
+}
+
+multilib_src_test() {
+   emake -j1 check
+}



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

2019-06-24 Thread Manuel Rüger
commit: 22b378bfa82e8c637dfd3cc859721b55e732a621
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Jun 24 15:43:46 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Jun 24 15:43:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22b378bf

sys-cluster/kube-scheduler: Version bump to 1.15.0

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

 sys-cluster/kube-scheduler/Manifest|  1 +
 .../kube-scheduler/kube-scheduler-1.15.0.ebuild| 48 ++
 2 files changed, 49 insertions(+)

diff --git a/sys-cluster/kube-scheduler/Manifest 
b/sys-cluster/kube-scheduler/Manifest
index dc1535d3d5f..cb40d7032b1 100644
--- a/sys-cluster/kube-scheduler/Manifest
+++ b/sys-cluster/kube-scheduler/Manifest
@@ -6,4 +6,5 @@ DIST kubernetes-1.13.5.tar.gz 28804719 BLAKE2B 
9ca1f24a26f5917c085fad65c3ed1cb4c
 DIST kubernetes-1.13.6.tar.gz 28822613 BLAKE2B 
80c7a5e84328776d2e5d937b5a6c16491c07789e72aa69fae3c2e83d617323fab4d1ad75fb25d8533c3ecb2abe030cb0bb168c29d971a65fc7b07d736ddda8ff
 SHA512 
42f2683ce5f74406efa87a0db5dc5ccd19a5de23c271af85ccdc325e24569234a1d5d16776a97eab1e46afd36699861ba4a4569fdd0017c639c1559e2de425a1
 DIST kubernetes-1.13.7.tar.gz 28861902 BLAKE2B 
16704365a00cee83eb461f21df2d2e6c5d9b721585c62a3b650b1ecb40f8ad044c2b68cadc5f6251be22b059112f2c206ff352715fef1322505e655645ff
 SHA512 
2cfc0b3739679da7e9bb9ce0aa71ef5842e45af382d616ce6188f20fec929aca579427b866b5cd71cca005d88d1717803c8f3be60eab8c99b200d422bdc40f04
 DIST kubernetes-1.14.3.tar.gz 28058624 BLAKE2B 
11a1bd98cf6270e0035d6f01a3b14cce641ab1af421e4f060d6616ae6f3e2fd84074c1fad48d4182ce49e62466be40181ff17fce9fd300b84afbdcc3a4f9dc22
 SHA512 
3fab0b5f142644454d22abfc99454adb3d3055b132cf93b6a0f6a0088b6a7938835edee813611756e80a21b1473e62c179905d77d3f2288bd5c60c6a43e60361
+DIST kubernetes-1.15.0.tar.gz 26591862 BLAKE2B 
114ae651bb1827913ff5294878956b46dba288928b9fec45796ce5f3c01ab611a7333bd955fb96e7fe970a9f4afc901570ff911dd946c1a72ff8e2c6b3bc927a
 SHA512 
764268020e0fc27e8325058fefbc53200996e5a8f963c9156cf079425cdfed7545522ff8c779bfa074db8739e3ab97e829a049deaf0a0568f1434d7c1ed8446b
 DIST kubernetes-1.9.11.tar.gz 23606810 BLAKE2B 
19d30d2cadaf5b95f919e82670b1a8e1d5e2b80a4134dbc5c6afcc23d06dee8392f63d80b59ebfbbbf3a4bcce0dc2d81b1d560c3b3b1910350efed35ee77fbbc
 SHA512 
87881d7dd7e0b3e46dc92f3160410fdf9e7ec1f0cbc3ef99da84b808c3813a3a2d843d49e2b501ee3eb8c9db3564f62c72eecaf5dc1917051e81c106bc80a9ba

diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.15.0.ebuild 
b/sys-cluster/kube-scheduler/kube-scheduler-1.15.0.ebuild
new file mode 100644
index 000..2830ac40ff3
--- /dev/null
+++ b/sys-cluster/kube-scheduler/kube-scheduler-1.15.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user golang-build golang-vcs-snapshot
+
+EGO_PN="k8s.io/kubernetes"
+ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Kubernetes Scheduler"
+HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io;
+SRC_URI="${ARCHIVE_URI}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+DEPEND="dev-go/go-bindata
+   >=dev-lang/go-1.11"
+
+RESTRICT="test"
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 -1 ${PN}
+}
+
+src_prepare() {
+   default
+   sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" -e 
"s/-s -w/-w/" src/${EGO_PN}/hack/lib/golang.sh || die
+   sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die
+}
+
+src_compile() {
+   LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} 
WHAT=cmd/${PN} GOFLAGS=-v
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin _output/bin/${PN}
+   popd || die
+   keepdir /var/log/${PN}
+   fowners ${PN}:${PN} /var/log/${PN}
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}.logrotated ${PN}
+}



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

2019-06-24 Thread Manuel Rüger
commit: f3629d356786e89be09d27dba3eb6d2f2cdd06de
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Jun 24 15:42:50 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Jun 24 15:42:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3629d35

sys-cluster/kube-proxy: Version bump to 1.15.0

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

 sys-cluster/kube-proxy/Manifest |  1 +
 sys-cluster/kube-proxy/kube-proxy-1.15.0.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/sys-cluster/kube-proxy/Manifest b/sys-cluster/kube-proxy/Manifest
index bef2988e68d..3f0ee8636dc 100644
--- a/sys-cluster/kube-proxy/Manifest
+++ b/sys-cluster/kube-proxy/Manifest
@@ -8,4 +8,5 @@ DIST kubernetes-1.13.7.tar.gz 28861902 BLAKE2B 
16704365a00cee83eb461f21df2d2e6c5
 DIST kubernetes-1.14.0.tar.gz 27797992 BLAKE2B 
e219717c866b0aba190ee13a480fb41a02335a629ecb655f826ae320456c60f71c1c3aaefadec45a5fb9cd4336871734eda964d062c456ca7eed556540d649b4
 SHA512 
dc748e4d9790e4ff17e765355b351a4fcec7a2bb5b87413bc4e36525c35fecc7d16add6111ac5ba787c311e2466c87bb76ca86105b7da9e056b66af81a700822
 DIST kubernetes-1.14.2.tar.gz 28018596 BLAKE2B 
6e80c6daa765bf7065b8479cdb7f4d921cc906afde69dcc9063583597010ab49d4b276dbe51f1eb0ecf09ce001b0e023e039307f7b8acb170276dd384f2e459d
 SHA512 
921e3db96c1464906a44f15733067f038c7759737a603cb305671fb311cc12f892751afffa789ce7990b1168e7b42b01a5510f52ff5bc66d618782817437b08e
 DIST kubernetes-1.14.3.tar.gz 28058624 BLAKE2B 
11a1bd98cf6270e0035d6f01a3b14cce641ab1af421e4f060d6616ae6f3e2fd84074c1fad48d4182ce49e62466be40181ff17fce9fd300b84afbdcc3a4f9dc22
 SHA512 
3fab0b5f142644454d22abfc99454adb3d3055b132cf93b6a0f6a0088b6a7938835edee813611756e80a21b1473e62c179905d77d3f2288bd5c60c6a43e60361
+DIST kubernetes-1.15.0.tar.gz 26591862 BLAKE2B 
114ae651bb1827913ff5294878956b46dba288928b9fec45796ce5f3c01ab611a7333bd955fb96e7fe970a9f4afc901570ff911dd946c1a72ff8e2c6b3bc927a
 SHA512 
764268020e0fc27e8325058fefbc53200996e5a8f963c9156cf079425cdfed7545522ff8c779bfa074db8739e3ab97e829a049deaf0a0568f1434d7c1ed8446b
 DIST kubernetes-1.9.11.tar.gz 23606810 BLAKE2B 
19d30d2cadaf5b95f919e82670b1a8e1d5e2b80a4134dbc5c6afcc23d06dee8392f63d80b59ebfbbbf3a4bcce0dc2d81b1d560c3b3b1910350efed35ee77fbbc
 SHA512 
87881d7dd7e0b3e46dc92f3160410fdf9e7ec1f0cbc3ef99da84b808c3813a3a2d843d49e2b501ee3eb8c9db3564f62c72eecaf5dc1917051e81c106bc80a9ba

diff --git a/sys-cluster/kube-proxy/kube-proxy-1.15.0.ebuild 
b/sys-cluster/kube-proxy/kube-proxy-1.15.0.ebuild
new file mode 100644
index 000..f519690e8b2
--- /dev/null
+++ b/sys-cluster/kube-proxy/kube-proxy-1.15.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit golang-build golang-vcs-snapshot
+
+EGO_PN="k8s.io/kubernetes"
+ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Kubernetes Proxy service"
+HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io;
+SRC_URI="${ARCHIVE_URI}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+DEPEND="dev-go/go-bindata
+   >=dev-lang/go-1.11"
+
+RDEPEND="net-firewall/conntrack-tools"
+
+RESTRICT="test"
+
+src_prepare() {
+   default
+   sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" -e 
"s/-s -w/-w/" src/${EGO_PN}/hack/lib/golang.sh || die
+   sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die
+}
+
+src_compile() {
+   LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} 
WHAT=cmd/${PN} GOFLAGS=-v
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin _output/bin/${PN}
+   popd || die
+   keepdir /var/log/${PN} /var/lib/${PN}
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}.logrotated ${PN}
+}



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

2019-06-24 Thread Manuel Rüger
commit: c723d18bc7b547826248f3060044ca37d6043b26
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Jun 24 15:40:39 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Jun 24 15:40:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c723d18b

sys-cluster/kube-apiserver: Version bump to 1.15.0

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

 sys-cluster/kube-apiserver/Manifest|  1 +
 .../kube-apiserver/kube-apiserver-1.15.0.ebuild| 48 ++
 2 files changed, 49 insertions(+)

diff --git a/sys-cluster/kube-apiserver/Manifest 
b/sys-cluster/kube-apiserver/Manifest
index cbab49de929..08f4a6e4639 100644
--- a/sys-cluster/kube-apiserver/Manifest
+++ b/sys-cluster/kube-apiserver/Manifest
@@ -6,4 +6,5 @@ DIST kubernetes-1.13.5.tar.gz 28804719 BLAKE2B 
9ca1f24a26f5917c085fad65c3ed1cb4c
 DIST kubernetes-1.13.6.tar.gz 28822613 BLAKE2B 
80c7a5e84328776d2e5d937b5a6c16491c07789e72aa69fae3c2e83d617323fab4d1ad75fb25d8533c3ecb2abe030cb0bb168c29d971a65fc7b07d736ddda8ff
 SHA512 
42f2683ce5f74406efa87a0db5dc5ccd19a5de23c271af85ccdc325e24569234a1d5d16776a97eab1e46afd36699861ba4a4569fdd0017c639c1559e2de425a1
 DIST kubernetes-1.13.7.tar.gz 28861902 BLAKE2B 
16704365a00cee83eb461f21df2d2e6c5d9b721585c62a3b650b1ecb40f8ad044c2b68cadc5f6251be22b059112f2c206ff352715fef1322505e655645ff
 SHA512 
2cfc0b3739679da7e9bb9ce0aa71ef5842e45af382d616ce6188f20fec929aca579427b866b5cd71cca005d88d1717803c8f3be60eab8c99b200d422bdc40f04
 DIST kubernetes-1.14.3.tar.gz 28058624 BLAKE2B 
11a1bd98cf6270e0035d6f01a3b14cce641ab1af421e4f060d6616ae6f3e2fd84074c1fad48d4182ce49e62466be40181ff17fce9fd300b84afbdcc3a4f9dc22
 SHA512 
3fab0b5f142644454d22abfc99454adb3d3055b132cf93b6a0f6a0088b6a7938835edee813611756e80a21b1473e62c179905d77d3f2288bd5c60c6a43e60361
+DIST kubernetes-1.15.0.tar.gz 26591862 BLAKE2B 
114ae651bb1827913ff5294878956b46dba288928b9fec45796ce5f3c01ab611a7333bd955fb96e7fe970a9f4afc901570ff911dd946c1a72ff8e2c6b3bc927a
 SHA512 
764268020e0fc27e8325058fefbc53200996e5a8f963c9156cf079425cdfed7545522ff8c779bfa074db8739e3ab97e829a049deaf0a0568f1434d7c1ed8446b
 DIST kubernetes-1.9.11.tar.gz 23606810 BLAKE2B 
19d30d2cadaf5b95f919e82670b1a8e1d5e2b80a4134dbc5c6afcc23d06dee8392f63d80b59ebfbbbf3a4bcce0dc2d81b1d560c3b3b1910350efed35ee77fbbc
 SHA512 
87881d7dd7e0b3e46dc92f3160410fdf9e7ec1f0cbc3ef99da84b808c3813a3a2d843d49e2b501ee3eb8c9db3564f62c72eecaf5dc1917051e81c106bc80a9ba

diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.15.0.ebuild 
b/sys-cluster/kube-apiserver/kube-apiserver-1.15.0.ebuild
new file mode 100644
index 000..a1931590ff3
--- /dev/null
+++ b/sys-cluster/kube-apiserver/kube-apiserver-1.15.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user golang-build golang-vcs-snapshot
+
+EGO_PN="k8s.io/kubernetes"
+ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Kubernetes API server"
+HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io;
+SRC_URI="${ARCHIVE_URI}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+DEPEND="dev-go/go-bindata
+   >=dev-lang/go-1.11"
+
+RESTRICT="test"
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 -1 ${PN}
+}
+
+src_prepare() {
+   default
+   sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" -e 
"s/-s -w/-w/" src/${EGO_PN}/hack/lib/golang.sh || die
+   sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die
+}
+
+src_compile() {
+   LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} 
WHAT=cmd/${PN} GOFLAGS=-v
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin _output/bin/${PN}
+   popd || die
+   keepdir /var/log/${PN}
+   fowners ${PN}:${PN} /var/log/${PN}
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}.logrotated ${PN}
+}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kube-controller-manager/

2019-06-24 Thread Manuel Rüger
commit: 205ded4aaf6ae2a367f5d388f8bb6116a4580ad4
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Jun 24 15:41:08 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Jun 24 15:41:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=205ded4a

sys-cluster/kube-controller-manager: Version bump to 1.15.0

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

 sys-cluster/kube-controller-manager/Manifest   |  1 +
 .../kube-controller-manager-1.15.0.ebuild  | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/sys-cluster/kube-controller-manager/Manifest 
b/sys-cluster/kube-controller-manager/Manifest
index dc1535d3d5f..cb40d7032b1 100644
--- a/sys-cluster/kube-controller-manager/Manifest
+++ b/sys-cluster/kube-controller-manager/Manifest
@@ -6,4 +6,5 @@ DIST kubernetes-1.13.5.tar.gz 28804719 BLAKE2B 
9ca1f24a26f5917c085fad65c3ed1cb4c
 DIST kubernetes-1.13.6.tar.gz 28822613 BLAKE2B 
80c7a5e84328776d2e5d937b5a6c16491c07789e72aa69fae3c2e83d617323fab4d1ad75fb25d8533c3ecb2abe030cb0bb168c29d971a65fc7b07d736ddda8ff
 SHA512 
42f2683ce5f74406efa87a0db5dc5ccd19a5de23c271af85ccdc325e24569234a1d5d16776a97eab1e46afd36699861ba4a4569fdd0017c639c1559e2de425a1
 DIST kubernetes-1.13.7.tar.gz 28861902 BLAKE2B 
16704365a00cee83eb461f21df2d2e6c5d9b721585c62a3b650b1ecb40f8ad044c2b68cadc5f6251be22b059112f2c206ff352715fef1322505e655645ff
 SHA512 
2cfc0b3739679da7e9bb9ce0aa71ef5842e45af382d616ce6188f20fec929aca579427b866b5cd71cca005d88d1717803c8f3be60eab8c99b200d422bdc40f04
 DIST kubernetes-1.14.3.tar.gz 28058624 BLAKE2B 
11a1bd98cf6270e0035d6f01a3b14cce641ab1af421e4f060d6616ae6f3e2fd84074c1fad48d4182ce49e62466be40181ff17fce9fd300b84afbdcc3a4f9dc22
 SHA512 
3fab0b5f142644454d22abfc99454adb3d3055b132cf93b6a0f6a0088b6a7938835edee813611756e80a21b1473e62c179905d77d3f2288bd5c60c6a43e60361
+DIST kubernetes-1.15.0.tar.gz 26591862 BLAKE2B 
114ae651bb1827913ff5294878956b46dba288928b9fec45796ce5f3c01ab611a7333bd955fb96e7fe970a9f4afc901570ff911dd946c1a72ff8e2c6b3bc927a
 SHA512 
764268020e0fc27e8325058fefbc53200996e5a8f963c9156cf079425cdfed7545522ff8c779bfa074db8739e3ab97e829a049deaf0a0568f1434d7c1ed8446b
 DIST kubernetes-1.9.11.tar.gz 23606810 BLAKE2B 
19d30d2cadaf5b95f919e82670b1a8e1d5e2b80a4134dbc5c6afcc23d06dee8392f63d80b59ebfbbbf3a4bcce0dc2d81b1d560c3b3b1910350efed35ee77fbbc
 SHA512 
87881d7dd7e0b3e46dc92f3160410fdf9e7ec1f0cbc3ef99da84b808c3813a3a2d843d49e2b501ee3eb8c9db3564f62c72eecaf5dc1917051e81c106bc80a9ba

diff --git 
a/sys-cluster/kube-controller-manager/kube-controller-manager-1.15.0.ebuild 
b/sys-cluster/kube-controller-manager/kube-controller-manager-1.15.0.ebuild
new file mode 100644
index 000..6aa71f51b8b
--- /dev/null
+++ b/sys-cluster/kube-controller-manager/kube-controller-manager-1.15.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user golang-build golang-vcs-snapshot
+
+EGO_PN="k8s.io/kubernetes"
+ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Kubernetes Controller Manager"
+HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io;
+SRC_URI="${ARCHIVE_URI}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+DEPEND="dev-go/go-bindata
+   >=dev-lang/go-1.11"
+
+RESTRICT="test"
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 -1 ${PN}
+}
+
+src_prepare() {
+   default
+   sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" -e 
"s/-s -w/-w/" src/${EGO_PN}/hack/lib/golang.sh || die
+   sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die
+}
+
+src_compile() {
+   LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} 
WHAT=cmd/${PN} GOFLAGS=-v
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin _output/bin/${PN}
+   popd || die
+   keepdir /var/log/${PN}
+   fowners ${PN}:${PN} /var/log/${PN}
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}.logrotated ${PN}
+}



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

2019-06-24 Thread Manuel Rüger
commit: 0de4ecd7b770f2b36e10d0d0ad659c0a30ef855a
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Jun 24 15:37:41 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Jun 24 15:37:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0de4ecd7

sys-cluster/kubeadm: Version bump to 1.15.0

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

 sys-cluster/kubeadm/Manifest  |  1 +
 sys-cluster/kubeadm/kubeadm-1.15.0.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/sys-cluster/kubeadm/Manifest b/sys-cluster/kubeadm/Manifest
index 64c409ae395..71dcc069d5b 100644
--- a/sys-cluster/kubeadm/Manifest
+++ b/sys-cluster/kubeadm/Manifest
@@ -1,3 +1,4 @@
 DIST kubernetes-1.13.7.tar.gz 28861902 BLAKE2B 
16704365a00cee83eb461f21df2d2e6c5d9b721585c62a3b650b1ecb40f8ad044c2b68cadc5f6251be22b059112f2c206ff352715fef1322505e655645ff
 SHA512 
2cfc0b3739679da7e9bb9ce0aa71ef5842e45af382d616ce6188f20fec929aca579427b866b5cd71cca005d88d1717803c8f3be60eab8c99b200d422bdc40f04
 DIST kubernetes-1.14.2.tar.gz 28018596 BLAKE2B 
6e80c6daa765bf7065b8479cdb7f4d921cc906afde69dcc9063583597010ab49d4b276dbe51f1eb0ecf09ce001b0e023e039307f7b8acb170276dd384f2e459d
 SHA512 
921e3db96c1464906a44f15733067f038c7759737a603cb305671fb311cc12f892751afffa789ce7990b1168e7b42b01a5510f52ff5bc66d618782817437b08e
 DIST kubernetes-1.14.3.tar.gz 28058624 BLAKE2B 
11a1bd98cf6270e0035d6f01a3b14cce641ab1af421e4f060d6616ae6f3e2fd84074c1fad48d4182ce49e62466be40181ff17fce9fd300b84afbdcc3a4f9dc22
 SHA512 
3fab0b5f142644454d22abfc99454adb3d3055b132cf93b6a0f6a0088b6a7938835edee813611756e80a21b1473e62c179905d77d3f2288bd5c60c6a43e60361
+DIST kubernetes-1.15.0.tar.gz 26591862 BLAKE2B 
114ae651bb1827913ff5294878956b46dba288928b9fec45796ce5f3c01ab611a7333bd955fb96e7fe970a9f4afc901570ff911dd946c1a72ff8e2c6b3bc927a
 SHA512 
764268020e0fc27e8325058fefbc53200996e5a8f963c9156cf079425cdfed7545522ff8c779bfa074db8739e3ab97e829a049deaf0a0568f1434d7c1ed8446b

diff --git a/sys-cluster/kubeadm/kubeadm-1.15.0.ebuild 
b/sys-cluster/kubeadm/kubeadm-1.15.0.ebuild
new file mode 100644
index 000..ffd3646b62e
--- /dev/null
+++ b/sys-cluster/kubeadm/kubeadm-1.15.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit golang-build golang-vcs-snapshot bash-completion-r1
+
+EGO_PN="k8s.io/kubernetes"
+ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="CLI to Easily bootstrap a secure Kubernetes cluster"
+HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io;
+SRC_URI="${ARCHIVE_URI}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND=">=dev-lang/go-1.12
+   dev-go/go-bindata"
+
+RESTRICT="test"
+
+src_prepare() {
+   default
+   sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" -e 
"s/-s -w/-w/" src/${EGO_PN}/hack/lib/golang.sh || die
+   sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die
+}
+
+src_compile() {
+   LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} 
WHAT=cmd/${PN} GOFLAGS=-v
+   pushd src/${EGO_PN} || die
+   _output/bin/${PN} completion bash > ${PN}.bash || die
+   _output/bin/${PN} completion zsh > ${PN}.zsh || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin _output/bin/${PN}
+
+   newbashcomp ${PN}.bash ${PN}
+   insinto /usr/share/zsh/site-functions
+   newins ${PN}.zsh _${PN}
+
+   popd || die
+}



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

2019-06-24 Thread Ulrich Müller
commit: 33c83a719db5ee462aa686d588aada960204151f
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 24 15:28:40 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 24 15:29:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33c83a71

acct-group: Add category metadata.

Signed-off-by: Ulrich Müller  gentoo.org>

 acct-group/metadata.xml | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/acct-group/metadata.xml b/acct-group/metadata.xml
new file mode 100644
index 000..5834b0513b7
--- /dev/null
+++ b/acct-group/metadata.xml
@@ -0,0 +1,7 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   The acct-group category contains packages for system groups.
+   
+



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

2019-06-24 Thread Ulrich Müller
commit: b1a81c88fca6755f7082d30d7431be21bb9447dd
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 24 15:28:52 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 24 15:29:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1a81c88

acct-user: Add category metadata.

Signed-off-by: Ulrich Müller  gentoo.org>

 acct-user/metadata.xml | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/acct-user/metadata.xml b/acct-user/metadata.xml
new file mode 100644
index 000..377c832369b
--- /dev/null
+++ b/acct-user/metadata.xml
@@ -0,0 +1,7 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   The acct-user category contains packages for system users.
+   
+



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

2019-06-24 Thread Michael Haubenwallner
commit: d0e4472c6accb2af75ec96d316fa9694f5a430ae
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:07:56 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0e4472c

dev-ruby/net-telnet: add ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-ruby/net-telnet/net-telnet-0.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/net-telnet/net-telnet-0.2.0.ebuild 
b/dev-ruby/net-telnet/net-telnet-0.2.0.ebuild
index 8feb2650110..1a8bbaedbe7 100644
--- a/dev-ruby/net-telnet/net-telnet-0.2.0.ebuild
+++ b/dev-ruby/net-telnet/net-telnet-0.2.0.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/ruby/net-telnet/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="|| ( Ruby-BSD BSD-2 )"
 SLOT="1"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~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 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 ruby_add_bdepend "test? ( dev-ruby/minitest )"



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

2019-06-24 Thread Michael Haubenwallner
commit: 32d33a0c6e38df3f1823a225d1ce0baaca33645b
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:08:49 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32d33a0c

dev-util/ragel: add ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-util/ragel/ragel-7.0.0.10-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/ragel/ragel-7.0.0.10-r1.ebuild 
b/dev-util/ragel/ragel-7.0.0.10-r1.ebuild
index 7b028b14164..26f9f2d5205 100644
--- a/dev-util/ragel/ragel-7.0.0.10-r1.ebuild
+++ b/dev-util/ragel/ragel-7.0.0.10-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=6
@@ -11,7 +11,7 @@ SRC_URI="https://www.colm.net/files/ragel/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="vim-syntax"
 
 DEPEND="~dev-util/colm-0.13.0.5"



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

2019-06-24 Thread Michael Haubenwallner
commit: 5c98ee2af3fb56bfa9eee4534e60402e57004917
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:07:12 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c98ee2a

dev-ruby/did_you_mean: add ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-ruby/did_you_mean/did_you_mean-1.1.2.ebuild | 2 +-
 dev-ruby/did_you_mean/did_you_mean-1.2.1.ebuild | 4 ++--
 dev-ruby/did_you_mean/did_you_mean-1.3.0.ebuild | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-ruby/did_you_mean/did_you_mean-1.1.2.ebuild 
b/dev-ruby/did_you_mean/did_you_mean-1.1.2.ebuild
index b7328c4ce37..2b7957f1075 100644
--- a/dev-ruby/did_you_mean/did_you_mean-1.1.2.ebuild
+++ b/dev-ruby/did_you_mean/did_you_mean-1.1.2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/yuki24/did_you_mean;
 
 LICENSE="MIT"
 SLOT="2.4"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~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 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 all_ruby_prepare() {

diff --git a/dev-ruby/did_you_mean/did_you_mean-1.2.1.ebuild 
b/dev-ruby/did_you_mean/did_you_mean-1.2.1.ebuild
index d62fc203069..d173ac89132 100644
--- a/dev-ruby/did_you_mean/did_you_mean-1.2.1.ebuild
+++ b/dev-ruby/did_you_mean/did_you_mean-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=6
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/yuki24/did_you_mean;
 
 LICENSE="MIT"
 SLOT="2.5"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~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 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 all_ruby_prepare() {

diff --git a/dev-ruby/did_you_mean/did_you_mean-1.3.0.ebuild 
b/dev-ruby/did_you_mean/did_you_mean-1.3.0.ebuild
index aea6c697389..aa7778cb36c 100644
--- a/dev-ruby/did_you_mean/did_you_mean-1.3.0.ebuild
+++ b/dev-ruby/did_you_mean/did_you_mean-1.3.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
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/yuki24/did_you_mean;
 
 LICENSE="MIT"
 SLOT="2.6"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~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 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 all_ruby_prepare() {



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

2019-06-24 Thread Michael Haubenwallner
commit: 2653ae516739d681684ee51d53cc94d0b46bed61
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:07:35 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2653ae51

dev-ruby/kpeg: add ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-ruby/kpeg/kpeg-1.1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/kpeg/kpeg-1.1.0-r1.ebuild 
b/dev-ruby/kpeg/kpeg-1.1.0-r1.ebuild
index 35b00355e7e..2e7cec56d9e 100644
--- a/dev-ruby/kpeg/kpeg-1.1.0-r1.ebuild
+++ b/dev-ruby/kpeg/kpeg-1.1.0-r1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/evanphx/kpeg;
 
 LICENSE="MIT"
 SLOT="1"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~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="test"
 
 PATCHES=( "${FILESDIR}/${P}-utf8.patch" )



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

2019-06-24 Thread Michael Haubenwallner
commit: c7325a0ee5c43a26be350696cb5f24dabbc8abf8
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:11:46 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7325a0e

dev-ruby/test-unit: add ~x86-linux keyword

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-ruby/test-unit/test-unit-3.3.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/test-unit/test-unit-3.3.3.ebuild 
b/dev-ruby/test-unit/test-unit-3.3.3.ebuild
index da020d3b86e..45fa46d7a4a 100644
--- a/dev-ruby/test-unit/test-unit-3.3.3.ebuild
+++ b/dev-ruby/test-unit/test-unit-3.3.3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://rubygems.org/gems/test-unit;
 
 LICENSE="|| ( Ruby GPL-2 ) PSF-2"
 SLOT="2"
-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 ~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_rdepend "dev-ruby/power_assert"



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

2019-06-24 Thread Michael Haubenwallner
commit: 51249a570d3925b7cdd7f4f5ad3d8c6dff94cdac
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:07:45 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51249a57

dev-ruby/mustache: add ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-ruby/mustache/mustache-1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/mustache/mustache-1.1.0.ebuild 
b/dev-ruby/mustache/mustache-1.1.0.ebuild
index 8a42ace79b0..dac6491d9da 100644
--- a/dev-ruby/mustache/mustache-1.1.0.ebuild
+++ b/dev-ruby/mustache/mustache-1.1.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://mustache.github.com/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
 IUSE=""
 
 ruby_add_bdepend "doc? ( app-text/ronn )"



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

2019-06-24 Thread Michael Haubenwallner
commit: 79feba545ce2c08eb96fad9d6ee76388402f4df2
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:08:07 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79feba54

dev-ruby/rdiscount: add ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-ruby/rdiscount/rdiscount-2.2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rdiscount/rdiscount-2.2.0.1.ebuild 
b/dev-ruby/rdiscount/rdiscount-2.2.0.1.ebuild
index 1ad5ee1e4fa..28e30f07be3 100644
--- a/dev-ruby/rdiscount/rdiscount-2.2.0.1.ebuild
+++ b/dev-ruby/rdiscount/rdiscount-2.2.0.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/rtomayko/rdiscount;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~x64-macos ~x64-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
 IUSE=""
 
 all_ruby_prepare() {



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

2019-06-24 Thread Michael Haubenwallner
commit: dbdeae8e60d3570ce108eb015b53b5098414d340
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:08:31 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbdeae8e

dev-ruby/xmlrpc: add ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-ruby/xmlrpc/xmlrpc-0.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/xmlrpc/xmlrpc-0.3.0.ebuild 
b/dev-ruby/xmlrpc/xmlrpc-0.3.0.ebuild
index 15ee011a619..9ecbdd985be 100644
--- a/dev-ruby/xmlrpc/xmlrpc-0.3.0.ebuild
+++ b/dev-ruby/xmlrpc/xmlrpc-0.3.0.ebuild
@@ -18,7 +18,7 @@ SRC_URI="https://github.com/ruby/xmlrpc/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Ruby"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~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="test"
 
 ruby_add_bdepend "test? ( dev-ruby/test-unit )"



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

2019-06-24 Thread Michael Haubenwallner
commit: 9e602509e5b10866f64777a4a09b7031b50940f4
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:08:38 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e602509

dev-util/colm: add ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-util/colm/colm-0.13.0.5.ebuild | 4 ++--
 dev-util/colm/colm-0.13.0.6.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-util/colm/colm-0.13.0.5.ebuild 
b/dev-util/colm/colm-0.13.0.5.ebuild
index d1aab6a6b73..4292b617eac 100644
--- a/dev-util/colm/colm-0.13.0.5.ebuild
+++ b/dev-util/colm/colm-0.13.0.5.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
@@ -9,7 +9,7 @@ SRC_URI="https://www.colm.net/files/${PN}/${P}.tar.gz;
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 DEPEND="app-text/asciidoc"

diff --git a/dev-util/colm/colm-0.13.0.6.ebuild 
b/dev-util/colm/colm-0.13.0.6.ebuild
index fab1897a218..4292b617eac 100644
--- a/dev-util/colm/colm-0.13.0.6.ebuild
+++ b/dev-util/colm/colm-0.13.0.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
@@ -9,7 +9,7 @@ SRC_URI="https://www.colm.net/files/${PN}/${P}.tar.gz;
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 DEPEND="app-text/asciidoc"



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

2019-06-24 Thread Michael Haubenwallner
commit: 97da4b3bdeb53a359cd2e221ecfbfe95ad13
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:11:23 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97da4b3b

dev-lang/go: add ~x86-linux keyword

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-lang/go/go-1.12.5.ebuild | 2 +-
 dev-lang/go/go-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/go/go-1.12.5.ebuild b/dev-lang/go/go-1.12.5.ebuild
index b48fe53d64d..daee1d59a92 100644
--- a/dev-lang/go/go-1.12.5.ebuild
+++ b/dev-lang/go/go-1.12.5.ebuild
@@ -37,7 +37,7 @@ case ${PV}  in
case ${PV} in
*_beta*|*_rc*) ;;
*)
-   KEYWORDS="-* amd64 arm ~arm64 ~ppc64 ~s390 x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x64-macos ~x64-solaris"
+   KEYWORDS="-* amd64 arm ~arm64 ~ppc64 ~s390 x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
# The upstream tests fail under portage but pass if the build is
# run according to their documentation [1].
# I am restricting the tests on released versions until this is

diff --git a/dev-lang/go/go-.ebuild b/dev-lang/go/go-.ebuild
index deea6d5a588..8c892831770 100644
--- a/dev-lang/go/go-.ebuild
+++ b/dev-lang/go/go-.ebuild
@@ -37,7 +37,7 @@ case ${PV}  in
case ${PV} in
*_beta*|*_rc*) ;;
*)
-   KEYWORDS="-* ~amd64 ~arm ~arm64 ~ppc64 ~s390 ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x64-macos ~x64-solaris"
+   KEYWORDS="-* ~amd64 ~arm ~arm64 ~ppc64 ~s390 ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
# The upstream tests fail under portage but pass if the build is
# run according to their documentation [1].
# I am restricting the tests on released versions until this is



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

2019-06-24 Thread Michael Haubenwallner
commit: fdcb9f58afe1a702df055a27e1d9e5ffd41e1671
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:08:55 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdcb9f58

dev-vcs/git-lfs: add ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-vcs/git-lfs/git-lfs-2.7.2.ebuild | 2 +-
 dev-vcs/git-lfs/git-lfs-.ebuild  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-vcs/git-lfs/git-lfs-2.7.2.ebuild 
b/dev-vcs/git-lfs/git-lfs-2.7.2.ebuild
index ed1c9a5d2cb..b2d04c64f71 100644
--- a/dev-vcs/git-lfs/git-lfs-2.7.2.ebuild
+++ b/dev-vcs/git-lfs/git-lfs-2.7.2.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == * ]]; then
inherit golang-build golang-vcs
 else
SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~amd64-linux ~x86-linux"
inherit golang-build golang-vcs-snapshot
 fi
 

diff --git a/dev-vcs/git-lfs/git-lfs-.ebuild 
b/dev-vcs/git-lfs/git-lfs-.ebuild
index 90878f67a22..d20644148b1 100644
--- a/dev-vcs/git-lfs/git-lfs-.ebuild
+++ b/dev-vcs/git-lfs/git-lfs-.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 @@ if [[ ${PV} == * ]]; then
inherit golang-build golang-vcs
 else
SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~amd64-linux ~x86-linux"
inherit golang-build golang-vcs-snapshot
 fi
 



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

2019-06-24 Thread Michael Haubenwallner
commit: 72d2d029abf00eb3ae12b89b6ee7ef0153680724
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:08:19 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72d2d029

dev-ruby/rdoc: add ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-ruby/rdoc/rdoc-6.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rdoc/rdoc-6.1.1.ebuild b/dev-ruby/rdoc/rdoc-6.1.1.ebuild
index 111d431e3e6..eab6ffb6427 100644
--- a/dev-ruby/rdoc/rdoc-6.1.1.ebuild
+++ b/dev-ruby/rdoc/rdoc-6.1.1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/ruby/rdoc/;
 SRC_URI="https://github.com/ruby/rdoc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Ruby MIT"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~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"
 IUSE=""
 



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

2019-06-24 Thread Michael Haubenwallner
commit: 61bd4ec603b8918cc64e9deab126b09764c7a863
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:11:35 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61bd4ec6

dev-ruby/power_assert: add ~x86-linux keyword

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-ruby/power_assert/power_assert-1.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/power_assert/power_assert-1.1.4.ebuild 
b/dev-ruby/power_assert/power_assert-1.1.4.ebuild
index fffecd78e0c..63637756078 100644
--- a/dev-ruby/power_assert/power_assert-1.1.4.ebuild
+++ b/dev-ruby/power_assert/power_assert-1.1.4.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/k-tsj/power_assert;
 SRC_URI="https://github.com/k-tsj/power_assert/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 LICENSE="|| ( Ruby BSD-2 )"
 
-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 ~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"
 IUSE=""



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

2019-06-24 Thread Michael Haubenwallner
commit: ef33a9fe33e2ca090161794c60d5e0a8b5d5a524
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:07:24 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef33a9fe

dev-ruby/fast_xs: add ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild 
b/dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild
index 1f051c86dce..c8d176efc95 100644
--- a/dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild
+++ b/dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/brianmario/fast_xs;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "test? ( dev-ruby/rack )"



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

2019-06-24 Thread Michael Haubenwallner
commit: 535ab068c030d99d5a4e8a854071ed0a06cadbdf
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 15:06:59 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 15:13:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=535ab068

app-text/ronn: add ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 app-text/ronn/ronn-0.7.3-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn/ronn-0.7.3-r3.ebuild 
b/app-text/ronn/ronn-0.7.3-r3.ebuild
index 491c5abab35..9c72157f73c 100644
--- a/app-text/ronn/ronn-0.7.3-r3.ebuild
+++ b/app-text/ronn/ronn-0.7.3-r3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/rtomayko/ronn/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~x64-macos ~x64-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
 
 IUSE=""
 



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

2019-06-24 Thread Ulrich Müller
commit: 71f3b765eb6d4ce6be99cd8c6623d2940a709975
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 24 15:06:13 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 24 15:06:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71f3b765

profiles: Suggest a replacement in app-emacs/limit mask.

Signed-off-by: Ulrich Müller  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 3edb4d6def6..b17fb4a86ef 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -31,6 +31,7 @@
 # Ulrich Müller  (24 Jun 2019)
 # Byte-compilation with recent Emacs versions fails.
 # SRC_URI is gone. Last visible upstream activity in 2008.
+# Use app-emacs/flim as replacement.
 # Masked for removal in 30 days, bug #688596.
 app-emacs/limit
 virtual/emacs-flim



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

2019-06-24 Thread Ulrich Müller
commit: c48af8aced44e57f1342bea4afb15bc7cba1ac2b
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 24 14:57:45 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 24 14:59:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c48af8ac

profiles: Mask app-emacs/limit for removal.

Signed-off-by: Ulrich Müller  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 247293c55f9..3edb4d6def6 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -28,6 +28,12 @@
 ## app-misc/some-package
 
 #--- END OF EXAMPLES ---
+# Ulrich Müller  (24 Jun 2019)
+# Byte-compilation with recent Emacs versions fails.
+# SRC_URI is gone. Last visible upstream activity in 2008.
+# Masked for removal in 30 days, bug #688596.
+app-emacs/limit
+virtual/emacs-flim
 
 # Jonas Stein  (24 Jun 2019)
 # Source is broken. Upstream is dead since 2011.



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

2019-06-24 Thread Manuel Rüger
commit: 380860316476b44720a82c6642d011005d69bbd7
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Jun 24 14:34:34 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Jun 24 14:34:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38086031

sys-cluster/kubelet: Version bump to 1.15.0

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

 sys-cluster/kubelet/Manifest  |  1 +
 sys-cluster/kubelet/kubelet-1.15.0.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/sys-cluster/kubelet/Manifest b/sys-cluster/kubelet/Manifest
index d532b0b40a6..87d872d5d2d 100644
--- a/sys-cluster/kubelet/Manifest
+++ b/sys-cluster/kubelet/Manifest
@@ -3,4 +3,5 @@ DIST kubernetes-1.11.6.tar.gz 24827575 BLAKE2B 
095adccef1b5618f7e5d3a46cbf835f10
 DIST kubernetes-1.12.6.tar.gz 28142622 BLAKE2B 
7f3541356aebb3f60c27ba1ae1c9c50867bf77ae8cb585955b38addc1015ef0dbbf0bd21e454610ee2fe6c9811c0d32fe912de368f7bf5d95fe60cab7a538354
 SHA512 
bd4b28fb6ecb7212c9bd6fb24b3ba59466ed9d684a4ba4e403e0270fc96ac5d1bcdcf8ea0be0085353af29bbfe73ab6ff1cda5127ea123ad7660c3022cab4703
 DIST kubernetes-1.13.7.tar.gz 28861902 BLAKE2B 
16704365a00cee83eb461f21df2d2e6c5d9b721585c62a3b650b1ecb40f8ad044c2b68cadc5f6251be22b059112f2c206ff352715fef1322505e655645ff
 SHA512 
2cfc0b3739679da7e9bb9ce0aa71ef5842e45af382d616ce6188f20fec929aca579427b866b5cd71cca005d88d1717803c8f3be60eab8c99b200d422bdc40f04
 DIST kubernetes-1.14.3.tar.gz 28058624 BLAKE2B 
11a1bd98cf6270e0035d6f01a3b14cce641ab1af421e4f060d6616ae6f3e2fd84074c1fad48d4182ce49e62466be40181ff17fce9fd300b84afbdcc3a4f9dc22
 SHA512 
3fab0b5f142644454d22abfc99454adb3d3055b132cf93b6a0f6a0088b6a7938835edee813611756e80a21b1473e62c179905d77d3f2288bd5c60c6a43e60361
+DIST kubernetes-1.15.0.tar.gz 26591862 BLAKE2B 
114ae651bb1827913ff5294878956b46dba288928b9fec45796ce5f3c01ab611a7333bd955fb96e7fe970a9f4afc901570ff911dd946c1a72ff8e2c6b3bc927a
 SHA512 
764268020e0fc27e8325058fefbc53200996e5a8f963c9156cf079425cdfed7545522ff8c779bfa074db8739e3ab97e829a049deaf0a0568f1434d7c1ed8446b
 DIST kubernetes-1.9.11.tar.gz 23606810 BLAKE2B 
19d30d2cadaf5b95f919e82670b1a8e1d5e2b80a4134dbc5c6afcc23d06dee8392f63d80b59ebfbbbf3a4bcce0dc2d81b1d560c3b3b1910350efed35ee77fbbc
 SHA512 
87881d7dd7e0b3e46dc92f3160410fdf9e7ec1f0cbc3ef99da84b808c3813a3a2d843d49e2b501ee3eb8c9db3564f62c72eecaf5dc1917051e81c106bc80a9ba

diff --git a/sys-cluster/kubelet/kubelet-1.15.0.ebuild 
b/sys-cluster/kubelet/kubelet-1.15.0.ebuild
new file mode 100644
index 000..f38ce59e625
--- /dev/null
+++ b/sys-cluster/kubelet/kubelet-1.15.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit golang-build golang-vcs-snapshot systemd
+
+EGO_PN="k8s.io/kubernetes"
+ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Kubernetes Node Agent"
+HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io;
+SRC_URI="${ARCHIVE_URI}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="hardened"
+
+DEPEND="dev-go/go-bindata
+   >=dev-lang/go-1.11"
+
+RESTRICT="test"
+
+src_prepare() {
+   default
+   sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d"  -e 
"s/-s -w/-w/" src/${EGO_PN}/hack/lib/golang.sh || die
+   sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die
+}
+
+src_compile() {
+   export CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')"
+   LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} 
WHAT=cmd/${PN} GOFLAGS=-v
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin _output/bin/${PN}
+   popd || die
+   keepdir /etc/kubernetes/manifests /var/log/kubelet /var/lib/kubelet
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}.logrotated ${PN}
+   systemd_dounit "${FILESDIR}"/${PN}.service
+   insinto /etc/kubernetes
+   newins "${FILESDIR}"/${PN}.env ${PN}.env
+}



[gentoo-commits] repo/gentoo:master commit in: dev-texlive/texlive-latexextra/, dev-texlive/texlive-latexextra/files/

2019-06-24 Thread Mikle Kolyada
commit: 9663606f52800daf15bf2c51d484534ee0dda2c9
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jun 24 14:20:15 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jun 24 14:21:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9663606f

dev-texlive/texlive-latexextra: fix exsheets macro syntax

Closes: https://bugs.gentoo.org/687706
Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 .../texlive-latexextra/files/exsheets-syntax.patch   | 20 
 .../texlive-latexextra-2019-r2.ebuild|  5 +++--
 2 files changed, 23 insertions(+), 2 deletions(-)

diff --git a/dev-texlive/texlive-latexextra/files/exsheets-syntax.patch 
b/dev-texlive/texlive-latexextra/files/exsheets-syntax.patch
new file mode 100644
index 000..3b6763488a6
--- /dev/null
+++ b/dev-texlive/texlive-latexextra/files/exsheets-syntax.patch
@@ -0,0 +1,20 @@
+--- a/texmf-dist/tex/latex/exsheets/exsheets.sty   2017-02-11 
00:30:33.0 +0100
 b/texmf-dist/tex/latex/exsheets/exsheets.sty   2019-06-09 
10:13:30.917543183 +0200
+@@ -2760,7 +2760,7 @@
+   }
+   }
+   
+-\cs_new_protected:Npn \__exsheets_blank_skip:N #1
++\cs_new_protected:Npn \__exsheets_blank_skip:n #1
+   {
+ \bool_if:NTF \l__exsheets_blank_width_bool
+   { \dim_set:Nn \l__exsheets_tmpa_dim {#1} }
+@@ -2791,7 +2791,7 @@
+   }
+   { \exsheets_write_blank:n { \skip_horizontal:N \l__exsheets_tmpa_dim } }
+   }
+-\cs_generate_variant:Nn \__exsheets_blank_skip:N { n }
++\cs_generate_variant:Nn \__exsheets_blank_skip:n { n, V }
+ 
+ % the following code from Heiko Oberdieck in d.c.t.t served as inspiration
+ % and basis for the \blank command:

diff --git a/dev-texlive/texlive-latexextra/texlive-latexextra-2019-r2.ebuild 
b/dev-texlive/texlive-latexextra/texlive-latexextra-2019-r2.ebuild
index a7bff807dcb..e9ab3f8e003 100644
--- a/dev-texlive/texlive-latexextra/texlive-latexextra-2019-r2.ebuild
+++ b/dev-texlive/texlive-latexextra/texlive-latexextra-2019-r2.ebuild
@@ -38,5 +38,6 @@ TEXLIVE_MODULE_BINSCRIPTS="
texmf-dist/scripts/makedtx/makedtx.pl
 "
 
-PATCHES=( "${FILESDIR}"/lstlinebgrd-syntax.patch
- "${FILESDIR}"/vpe_invocation.patch )
+PATCHES=( "${FILESDIR}"/exsheets-syntax.patch
+   "${FILESDIR}"/lstlinebgrd-syntax.patch
+   "${FILESDIR}"/vpe_invocation.patch )



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

2019-06-24 Thread Michael Haubenwallner
commit: f76ef2805b928a258d0858d709284a7b210fbe01
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 13:46:45 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 13:50:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f76ef280

dev-python/git-review: add ~x64-cygwin ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 dev-python/git-review/git-review-1.27.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/git-review/git-review-1.27.0.ebuild 
b/dev-python/git-review/git-review-1.27.0.ebuild
index 28dfcf4daf6..a238bf2d723 100644
--- a/dev-python/git-review/git-review-1.27.0.ebuild
+++ b/dev-python/git-review/git-review-1.27.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 x86 ~x64-cygwin ~amd64-linux ~x86-linux"
 IUSE=""
 
 DEPEND="



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

2019-06-24 Thread Michael Haubenwallner
commit: 6c64e6445393d9b66ad192d88842ac5482070447
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 13:45:37 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 13:50:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c64e644

dev-python/pbr: add ~x64-cygwin keyword

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

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

diff --git a/dev-python/pbr/pbr-5.1.1.ebuild b/dev-python/pbr/pbr-5.1.1.ebuild
index 6b887279b33..59bf982d33f 100644
--- a/dev-python/pbr/pbr-5.1.1.ebuild
+++ b/dev-python/pbr/pbr-5.1.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~mips ~s390 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm64 ~hppa ~mips ~s390 ~x86 ~x64-cygwin ~amd64-linux 
~x86-linux"
 #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
 #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"



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

2019-06-24 Thread Jeroen Roovers
commit: 6b96296c587c1909b642b0d22a33e3060776e45e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Jun 24 13:28:57 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Jun 24 13:30:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b96296c

Revert "net-libs/libssh2: Clean up patch"

This reverts commit a55608f44e799e4fab03882909992053b8e25b90.

Fixes: https://bugs.gentoo.org/688604
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-libs/libssh2/files/libssh2-1.9.0-missing.patch | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-libs/libssh2/files/libssh2-1.9.0-missing.patch 
b/net-libs/libssh2/files/libssh2-1.9.0-missing.patch
index 2216a2fa66f..7cc58d23963 100644
--- a/net-libs/libssh2/files/libssh2-1.9.0-missing.patch
+++ b/net-libs/libssh2/files/libssh2-1.9.0-missing.patch
@@ -1,5 +1,5 @@
 --- /dev/null
-+++ tests/test_public_key_auth_succeeds_with_correct_ed25519_key.c
 b/tests/test_public_key_auth_succeeds_with_correct_ed25519_key.c
 @@ -0,0 +1,37 @@
 +#include "session_fixture.h"
 +
@@ -39,7 +39,7 @@
 +return 0;
 +}
 --- /dev/null
-+++ tests/test_public_key_auth_succeeds_with_correct_encrypted_ed25519_key.c
 b/tests/test_public_key_auth_succeeds_with_correct_encrypted_ed25519_key.c
 @@ -0,0 +1,38 @@
 +#include "session_fixture.h"
 +
@@ -80,7 +80,7 @@
 +return 0;
 +}
 --- /dev/null
-+++ tests/test_public_key_auth_succeeds_with_correct_ed25519_key_from_mem.c
 b/tests/test_public_key_auth_succeeds_with_correct_ed25519_key_from_mem.c
 @@ -0,0 +1,97 @@
 +#include "session_fixture.h"
 +



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

2019-06-24 Thread Andrey Utkin
commit: 8d054f705eea755094454959dcbe730a7f18ae34
Author: Andrey Utkin  gentoo  org>
AuthorDate: Mon Jun 24 11:57:18 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Jun 24 13:28:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d054f70

net-wireless/hostapd: add new version 2.8

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andrey Utkin  gentoo.org>

 net-wireless/hostapd/Manifest   |   1 +
 net-wireless/hostapd/hostapd-2.8.ebuild | 262 
 2 files changed, 263 insertions(+)

diff --git a/net-wireless/hostapd/Manifest b/net-wireless/hostapd/Manifest
index f18f59bcb9b..8224998b89c 100644
--- a/net-wireless/hostapd/Manifest
+++ b/net-wireless/hostapd/Manifest
@@ -1,2 +1,3 @@
 DIST hostapd-2.7.tar.gz 2101166 BLAKE2B 
4e88b7f0d2c57a02edf4214bb35efa08e87a2cbdac4eda9934a40b09f8c046da6cca1250fe5714cb403eb81739bd99e04ea5a9fad62e47bcee4d72106170905d
 SHA512 
1c9a210dfffb951fb667be19aa44ad8c66dccd2aed26cdab939185923550e3c1998a678ebe6975e560e1b3385bff2098f1b2cb773452ba66fb35246fdd3eb2c1
+DIST hostapd-2.8.tar.gz 2169018 BLAKE2B 
29e331d8ebb52732d2548734fe9ea55d8401826da7a35962705335da7d81232c785ffa89d77e8ee848148d82bea1d9141cc4d515706eebacb267754829cf7ed6
 SHA512 
5a352517470912bcb87755a592238eac2d814a7089d4ba1ecb7969f172dbb746a4e9a6c0d47c0d7c4a6a86b04b14ac39147d729fdf3163371c1067490a4897aa
 DIST net-wireless_hostapd_2.7-r2_extras.tar.xz 1820 BLAKE2B 
5c4daf0e4fcf5ae0803cdbe2aabcc75e89b1e92048e8a01894d73639a16b049174b37eca6b6206c337a2874a6e6d5588d50fa5b8a4813e7f6c22bf02efca852f
 SHA512 
65bc4634c8314280ceab44d1f5d6d62092f4bca48253f107b076211020f6f6502388490aee907f9910846a25ba2da7e4122bdb1873eb2b12bf94e867e3295f4c

diff --git a/net-wireless/hostapd/hostapd-2.8.ebuild 
b/net-wireless/hostapd/hostapd-2.8.ebuild
new file mode 100644
index 000..382256f224b
--- /dev/null
+++ b/net-wireless/hostapd/hostapd-2.8.ebuild
@@ -0,0 +1,262 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs systemd savedconfig
+
+DESCRIPTION="IEEE 802.11 wireless LAN Host AP daemon"
+HOMEPAGE="http://w1.fi;
+EXTRAS_VER="2.7-r2"
+EXTRAS_NAME="${CATEGORY}_${PN}_${EXTRAS_VER}_extras"
+SRC_URI="https://dev.gentoo.org/~andrey_utkin/distfiles/${EXTRAS_NAME}.tar.xz;
+
+if [[ $PV ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://w1.fi/hostap.git;
+else
+   if [[ $PV =~ ^.*_p[0-9]{8}$ ]]; then
+   SRC_URI+=" 
https://dev.gentoo.org/~andrey_utkin/distfiles/${P}.tar.xz;
+   else
+   SRC_URI+=" https://w1.fi/releases/${P}.tar.gz;
+   fi
+   # Never stabilize snapshot ebuilds please
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="internal-tls ipv6 libressl logwatch netlink sqlite +wps +crda"
+
+DEPEND="
+   libressl? ( dev-libs/libressl:0= )
+   !libressl? (
+   internal-tls? ( dev-libs/libtommath )
+   !internal-tls? ( dev-libs/openssl:0=[-bindist] )
+   )
+   kernel_linux? (
+   dev-libs/libnl:3
+   crda? ( net-wireless/crda )
+   )
+   netlink? ( net-libs/libnfnetlink )
+   sqlite? ( >=dev-db/sqlite-3 )"
+
+RDEPEND="${DEPEND}"
+
+S="${S}/${PN}"
+
+pkg_pretend() {
+   if use internal-tls; then
+   if use libressl; then
+   elog "libressl flag takes precedence over internal-tls"
+   else
+   ewarn "internal-tls implementation is experimental and 
provides fewer features"
+   fi
+   fi
+}
+
+src_unpack() {
+   # Override default one because we need the SRC_URI ones even in case of 
 ebuilds
+   default
+   if [[ ${PV} ==  ]] ; then
+   git-r3_src_unpack
+   fi
+}
+
+src_prepare() {
+   # Allow users to apply patches to src/drivers for example,
+   # i.e. anything outside ${S}/${PN}
+   pushd ../ >/dev/null || die
+   default
+   popd >/dev/null || die
+
+   sed -i -e "s:/etc/hostapd:/etc/hostapd/hostapd:g" \
+   "${S}/hostapd.conf" || die
+}
+
+src_configure() {
+   local CONFIG="${S}/.config"
+
+   restore_config "${CONFIG}"
+   if [[ -f "${CONFIG}" ]]; then
+   default_src_configure
+   return 0
+   fi
+
+   # toolchain setup
+   echo "CC = $(tc-getCC)" > ${CONFIG}
+
+   # EAP authentication methods
+   echo "CONFIG_EAP=y" >> ${CONFIG}
+   echo "CONFIG_ERP=y" >> ${CONFIG}
+   echo "CONFIG_EAP_MD5=y" >> ${CONFIG}
+
+   if use internal-tls && ! use libressl; then
+   echo "CONFIG_TLS=internal" >> ${CONFIG}
+   else
+   # SSL authentication methods
+   echo "CONFIG_EAP_FAST=y" >> ${CONFIG}
+   echo "CONFIG_EAP_TLS=y" >> ${CONFIG}
+   echo "CONFIG_EAP_TTLS=y" >> ${CONFIG}
+   echo 

[gentoo-commits] repo/gentoo:master commit in: dev-util/nvidia-cuda-toolkit/

2019-06-24 Thread Jason Zaman
commit: 79c4c9ffcbdecef4bf36a914cb7ecf9cf16ffcfe
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Jun 23 12:23:02 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Jun 24 13:27:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79c4c9ff

dev-util/nvidia-cuda-toolkit: bump 10.1.168

Signed-off-by: Jason Zaman  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-util/nvidia-cuda-toolkit/Manifest  |   1 +
 .../nvidia-cuda-toolkit-10.1.168.ebuild| 148 +
 2 files changed, 149 insertions(+)

diff --git a/dev-util/nvidia-cuda-toolkit/Manifest 
b/dev-util/nvidia-cuda-toolkit/Manifest
index c6ef0b44ee5..33a355068f4 100644
--- a/dev-util/nvidia-cuda-toolkit/Manifest
+++ b/dev-util/nvidia-cuda-toolkit/Manifest
@@ -1,5 +1,6 @@
 DIST cuda_10.0.130_410.48_linux.run 2020126691 BLAKE2B 
f784f41c06d81b6f89d07e756347fb94148f79e5fd50650fc340feb6b49dcc2bedd05cf4c7c2662da39955f9393efc048aa17fa921aad86e182186fb6d98ec50
 SHA512 
409ea4cc6aa0fe7063450e77c3b67b9b41aab1bbe556db673fb1a80610b20bd52e2020bf94034a92ab68c721d3d5739500bae4bd7a3558b2d8e73730a3b4ea25
 DIST cuda_10.1.105_418.39_linux.run 2423314285 BLAKE2B 
924872eaaa4e8ecd6b81765c91d5e538d968e4fc88792a805339dd9cae15dd70372f310d39b9668d76cadbab875e3c4abcfca5a5cf71e4d83c9db056dc02f51c
 SHA512 
07cdc053989758e4cdccaad566cae7127fa79780ad85033ea52d33cc4c43c9de08e88dd087390c58b542e51703f256859cdf51a018ee57e6a412f45fb9561622
+DIST cuda_10.1.168_418.67_linux.run 2526901749 BLAKE2B 
ed2207400730600c63895cc894e02a14dce59c6293f198ea2a94f6dd0fab25a005d4754f91376c267cb95f3fdc66ee08e4353ec17b69d28881c59190b9eb4746
 SHA512 
85635012ec7081e200fb46f973852939f9709e802f495c288d5f31ff1fbd283a578fdaca0afa8955e6e0c7ca6c4862428da5168e0938b48390952d8633350910
 DIST cuda_6.5.14_linux_32.run 76788277 BLAKE2B 
75e79dce6cac5155bde8a3cafa945047c489b10272f8a3b94bf55d499df4b9c8b82506a81a20f9fd816bd4fd0514e515a6435399db1cb62b027c76490bd4dfae
 SHA512 
89649ee0f4543b37037b7c8f5ed0b8bd502512afb4d93e3158b3df4786123be05a5288986b5abbfe15c14eb010777d2527b715225bea96a354a898c34e4a2fcc
 DIST cuda_6.5.14_linux_64.run 972320904 BLAKE2B 
4a4361fb7a90989ec4b4aa433189e7b358e5a2272fb9b9c59429e0014ac14e3b8de1b247ee98dc30c3f3ee4cc009eca4fdd86027bd3b9527a683353d60bdf5c6
 SHA512 
fecca731b86955f5bc7b09d88b02951e3ee5d4b1f1cf5f92658227a029b87cd35d6ac22956a5fa0afe62dcdc57191f1d12bb08c9f7cc05128727cd8455947b1e
 DIST cuda_6.5.19_linux_32.run 81882112 BLAKE2B 
cf55ef7c969503c156431fc56301ed4e9a1234ae0cb867f12649636069f35e56bf6fc9df7482b6baade45d78c8baa2d98c41a28696da59294e0f575c4a0344ce
 SHA512 
1ce9bd6b472b7e4f1fb181eb340dfcb757714d59a89aaa02146cfe1a97c8ccb7eb7699b4ec823276f277eb4d82d95050eaba17e7ed5fd2e47b9b5d78531c5d4e

diff --git a/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-10.1.168.ebuild 
b/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-10.1.168.ebuild
new file mode 100644
index 000..d71931efe5e
--- /dev/null
+++ b/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-10.1.168.ebuild
@@ -0,0 +1,148 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit check-reqs cuda toolchain-funcs unpacker
+
+MYD=$(ver_cut 1-2 ${PV})
+DRIVER_PV="418.67"
+
+DESCRIPTION="NVIDIA CUDA Toolkit (compiler and friends)"
+HOMEPAGE="https://developer.nvidia.com/cuda-zone;
+SRC_URI="https://developer.nvidia.com/compute/cuda/${MYD}/Prod/local_installers/cuda_${PV}_${DRIVER_PV}_linux.run
 -> cuda_${PV}_${DRIVER_PV}_linux.run"
+
+LICENSE="NVIDIA-CUDA"
+SLOT="0/${PV}"
+KEYWORDS="-* ~amd64 ~amd64-linux"
+IUSE="debugger doc eclipse profiler"
+
+DEPEND=""
+RDEPEND="${DEPEND}
+   =x11-drivers/nvidia-drivers-396.24[X,uvm]
+   debugger? (
+   sys-libs/libtermcap-compat
+   sys-libs/ncurses:5/5[tinfo]
+   )
+   eclipse? ( >=virtual/jre-1.6 )
+   profiler? ( >=virtual/jre-1.6 )"
+
+S="${WORKDIR}"
+
+QA_PREBUILT="opt/cuda/*"
+
+CHECKREQS_DISK_BUILD="6100M"
+
+pkg_setup() {
+   # We don't like to run cuda_pkg_setup as it depends on us
+   check-reqs_pkg_setup
+}
+
+src_prepare() {
+   local cuda_supported_gcc
+
+   cuda_supported_gcc="4.7 4.8 4.9 5.3 5.4 6.3 6.4 7.2 7.3 8.2 8.3"
+
+   sed \
+   -e "s:CUDA_SUPPORTED_GCC:${cuda_supported_gcc}:g" \
+   "${FILESDIR}"/cuda-config.in > "${T}"/cuda-config || die
+
+   default
+}
+
+src_install() {
+   local i remove=( doc jre run_files install-linux.pl cuda-installer.pl )
+   local cudadir=/opt/cuda
+   local ecudadir="${EPREFIX}${cudadir}"
+
+   cd builds/cuda-toolkit
+   if use doc; then
+   DOCS+=( doc/pdf/. )
+   HTML_DOCS+=( doc/html/. )
+   fi
+   einstalldocs
+
+   mv doc/man/man3/{,cuda-}deprecated.3 || die
+   doman doc/man/man*/*
+
+   use debugger || remove+=( bin/cuda-gdb bin/cuda-gdbserver 
extras/Debugger share/gdb extras/cuda-gdb-${PV}.src.tar.gz )
+

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

2019-06-24 Thread Jason Zaman
commit: d6c1e12e919b125bf362435588d1da4608ba95d4
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Jun 23 12:23:59 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Jun 24 13:27:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6c1e12e

dev-libs/cudnn: bump 7.6.0.64

Signed-off-by: Jason Zaman  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-libs/cudnn/Manifest  |  1 +
 dev-libs/cudnn/cudnn-7.6.0.64.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/dev-libs/cudnn/Manifest b/dev-libs/cudnn/Manifest
index 15c4291ed7c..5e0ac8a214a 100644
--- a/dev-libs/cudnn/Manifest
+++ b/dev-libs/cudnn/Manifest
@@ -1,6 +1,7 @@
 DIST cudnn-10.0-linux-x64-v7.4.1.5.tgz 422699128 BLAKE2B 
e13b22428f011a4ad6532bfa35d836f23ea6298ad220eaea6c3a6fac7694f1c6b6920255690fac10d84388fb2bec7cc60a0319bd1816b20eac134c7b112822b9
 SHA512 
fd065c23b27416e2ace5f0eee854ea4a5e04f6ab4cf3a38cf806bb37a45d29756c3f138dfa01b991e96410de3668e0bb9d3cfc19cb7da7113c1f10d4147fcf67
 DIST cudnn-10.0-linux-x64-v7.4.2.24.tgz 424488399 BLAKE2B 
9883cccf146e3ca3a05b8e7ebb2d265da3b7e05949ebb76369a865aa1c2c55c217b21a7847417264712882cc882b25380e5978e58c74279eb208ec593d85e919
 SHA512 
1e1533a62355bbebc3df62b4c0f306195c7301334390511fae2e0f071d58451edda69b72c3a257fd16470fe3ac5d3ec00aaf208dee2e30d7db0c1f9300a9c663
 DIST cudnn-10.1-linux-x64-v7.5.0.56.tgz 471291852 BLAKE2B 
966a84e983631c827d7852e1dee0a87d80b61521a3c7c836c746f6ce5b60afb1da955a692dce5f0166600707c1f060231d7062d78acdf6085deb37c023301b8d
 SHA512 
875e50669f7ab0b8f52e793285041c0a33dfc951a562869258dd22f85c94cc924c87325253f39fa64c4386768eafd3b0fe181188ef6dd5707f57fc88a6495e36
+DIST cudnn-10.1-linux-x64-v7.6.0.64.tgz 500810447 BLAKE2B 
cfe884dd3b2a5ca4641844a0b5df22420148bcd9092b9ad81a45560f901d36e3ab228e7b5fed85519094f4b68be46cbb631368d67166cbef2546b94185a9058d
 SHA512 
c8d2c6efdb79940f5d475057b1e11246038b894990f58a620635e03d561ec3987806c0bccee8c12d0d3d8c4b5bf5211e46faa2c12918520af61f36bd36eb1738
 DIST cudnn-8.0-linux-x64-v6.0.tgz 201134139 BLAKE2B 
a7e616c671272a3a0f0c51b93646c8c60302c3dec85b71144e011bc3460d0ce80ff75d39869c05c4ef183d2d09aff31bb470a3fd3fd3d79b581a7a2d5a349279
 SHA512 
ddeeacb5b449920d942a26b98c353d78fd6f7d7fb3b3ce42a078626473efdda25c7ae641232702d62eb5749e39ecfd03e88346119c920c19348ac3ee82d3ff47
 DIST cudnn-9.1-linux-x64-v7.tgz 343081241 BLAKE2B 
22c2fbef38a05e7929ccc28410dfdbff906b2c3e97e0419cf83988c2fc2340005e4a944d43b1a215b0c3458b2cad03480b7e537ae93861924c28ec1010a530fb
 SHA512 
7eadb64a3d5e49aec2761e6f7dc0295c1d356910b114eed450c47081fc81b6e3b7748f3a4153f6a9d957691e3689cd52823bfa12816b1950dfc8794d6f332749
 DIST cudnn-9.2-linux-x64-v7.1.tgz 421083972 BLAKE2B 
1a1dd6708132d6ad6f8f541694b1406de4a26b7bb78b6198bc8ec5ddde2172d0cc0dc540c7c446a2f941ad11cfafa562235d17129ab8e6aa641433c35c8d31d6
 SHA512 
2f67c905976eb041512eb012a7cc98e1f408ec867f6a1d9d440afbcddc622c03c40de10386e44e4ab138c1a4ad040d39b0e9243f68e22975ca27ec297be25c5d

diff --git a/dev-libs/cudnn/cudnn-7.6.0.64.ebuild 
b/dev-libs/cudnn/cudnn-7.6.0.64.ebuild
new file mode 100644
index 000..2f134235f5a
--- /dev/null
+++ b/dev-libs/cudnn/cudnn-7.6.0.64.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CUDA_PV=10.1
+
+DESCRIPTION="NVIDIA Accelerated Deep Learning on GPU library"
+HOMEPAGE="https://developer.nvidia.com/cuDNN;
+
+MY_PV_MAJOR=$(ver_cut 1-2)
+SRC_URI="cudnn-${CUDA_PV}-linux-x64-v${PV}.tgz"
+
+SLOT="0/7"
+KEYWORDS="~amd64 ~amd64-linux"
+RESTRICT="fetch"
+LICENSE="NVIDIA-cuDNN"
+QA_PREBUILT="*"
+
+S="${WORKDIR}"
+
+DEPEND="=dev-util/nvidia-cuda-toolkit-${CUDA_PV}*"
+RDEPEND="${DEPEND}"
+
+src_install() {
+   insinto /opt/cuda
+   doins cuda/NVIDIA_SLA_cuDNN_Support.txt
+
+   insinto /opt/cuda/targets/x86_64-linux/include
+   doins -r cuda/include/*
+
+   insinto /opt/cuda/targets/x86_64-linux/lib
+   doins -r cuda/lib*/*
+}



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

2019-06-24 Thread Lars Wendler
commit: a1884920e44debfc789d07c4e9312e8f6ea2ab0b
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jun 24 13:00:58 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jun 24 13:08:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1884920

dev-libs/libinput: Bump to versionb 1.13.3

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

 dev-libs/libinput/Manifest   |  1 +
 dev-libs/libinput/libinput-1.13.3.ebuild | 78 
 2 files changed, 79 insertions(+)

diff --git a/dev-libs/libinput/Manifest b/dev-libs/libinput/Manifest
index 031ec2d3f46..b4c7e9a7b2d 100644
--- a/dev-libs/libinput/Manifest
+++ b/dev-libs/libinput/Manifest
@@ -1,3 +1,4 @@
 DIST libinput-1.12.6.tar.xz 518784 BLAKE2B 
7462f47be3628f9c66ef5b7c8265b588bd0ca328bafe91932f5341a010ac882648b4e7cfd0db241ae526836172e0829d68d21f8966d2be8b49f4e1c0c40df018
 SHA512 
02ad90c77a0c8c27fd96ec34e1546c5f0947ced49bad386372c1ef7c41b3b2157c39020f0766f20aaf2ab3c97128567e169279bea21115ced39499dda325d2ef
 DIST libinput-1.13.1.tar.xz 529516 BLAKE2B 
9eb9952ca2762470ee3e9ac0eab6b11c4b404b2702cd81b9f0720e539124a8f71a032803cf77105bbdce412b3c5d4a7fee4e24b8d3ceae991bd2ee9b3460e373
 SHA512 
a19deec802e704038df0901c103a82a3370f56e0299f4cc1b6aa84c1832a66fb638e6f9d0fa708b51df6c3b939cdc1271e4ff547c645c566be03dce0bc9ff7e0
 DIST libinput-1.13.2.tar.xz 529488 BLAKE2B 
489f962ca0b0385817fc76a5bc7254143d12c07e32a91dd118dca53fcdd6eaf5d2eef8aa5c5598a2aadda9e4a20b8a4c9340b60dee8286cd322fe2d294f1f6b7
 SHA512 
26f11c5274c26acc38b9b5729195010c0799a9563f1eb0e0cd67e323f8ed73b0fc8db8584ec8fdf1b726417f64c2daeb54832167079832626c8c1190fccf459f
+DIST libinput-1.13.3.tar.xz 530916 BLAKE2B 
af88659252d509c22ad255963353109ad9cf05171b3bff6d71872b6d2675a524c54a6ec0af28e1eab484dfeb91a9cd9db227084ffbfd6469d5726c4c882f
 SHA512 
427ec838975444571770e129ef78fd42e4438a11e89ed0b3fc98793184d00c0ca8ed282eab2045cc6cb345804ad6fce1061af563b4f41d75405cdf2f09cb01e1

diff --git a/dev-libs/libinput/libinput-1.13.3.ebuild 
b/dev-libs/libinput/libinput-1.13.3.ebuild
new file mode 100644
index 000..fd529371d3d
--- /dev/null
+++ b/dev-libs/libinput/libinput-1.13.3.ebuild
@@ -0,0 +1,78 @@
+# Copyright 2014-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
+
+inherit meson python-any-r1 udev
+
+DESCRIPTION="Library to handle input devices in Wayland"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/libinput/ 
https://gitlab.freedesktop.org/libinput/libinput;
+SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz;
+
+LICENSE="MIT"
+SLOT="0/10"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE="doc input_devices_wacom"
+# Tests require write access to udev rules directory which is a no-no for live 
system.
+# Other tests are just about logs, exported symbols and autotest of the test 
library.
+RESTRICT="test"
+
+BDEPEND="
+   virtual/pkgconfig
+   doc? (
+   $(python_gen_any_dep '
+   dev-python/commonmark[${PYTHON_USEDEP}]
+   dev-python/recommonmark[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   >=dev-python/sphinx_rtd_theme-0.2.4[${PYTHON_USEDEP}]
+   ')
+   >=app-doc/doxygen-1.8.3
+   >=media-gfx/graphviz-2.38.0
+   )
+"
+#  test? ( dev-util/valgrind )
+RDEPEND="
+   input_devices_wacom? ( >=dev-libs/libwacom-0.20 )
+   >=dev-libs/libevdev-1.3
+   >=sys-libs/mtdev-1.1
+   virtual/libudev:=
+   virtual/udev
+"
+DEPEND="${RDEPEND}"
+#  test? ( >=dev-libs/check-0.9.10 )
+
+python_check_deps() {
+   has_version "dev-python/commonmark[${PYTHON_USEDEP}]" && \
+   has_version "dev-python/recommonmark[${PYTHON_USEDEP}]" && \
+   has_version "dev-python/sphinx[${PYTHON_USEDEP}]" && \
+   has_version ">=dev-python/sphinx_rtd_theme-0.2.4[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   use doc && python-any-r1_pkg_setup
+}
+
+src_configure() {
+   # gui can be built but will not be installed
+   local emesonargs=(
+   -Ddebug-gui=false
+   $(meson_use doc documentation)
+   $(meson_use input_devices_wacom libwacom)
+   -Dtests=false # tests are restricted
+   -Dudev-dir="$(get_udevdir)"
+   )
+   meson_src_configure
+}
+
+src_install() {
+   meson_src_install
+   if use doc ; then
+   docinto html
+   dodoc -r "${BUILD_DIR}"/Documentation/.
+   fi
+}
+
+pkg_postinst() {
+   udevadm hwdb --update --root="${ROOT%/}"
+}



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

2019-06-24 Thread Lars Wendler
commit: d9db114c26311242805b7637360267d07dc1e2cd
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jun 24 13:01:34 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jun 24 13:08:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9db114c

dev-libs/libinput: Removed old.

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

 dev-libs/libinput/Manifest   |  1 -
 dev-libs/libinput/libinput-1.13.1.ebuild | 78 
 2 files changed, 79 deletions(-)

diff --git a/dev-libs/libinput/Manifest b/dev-libs/libinput/Manifest
index b4c7e9a7b2d..94b0e5dca97 100644
--- a/dev-libs/libinput/Manifest
+++ b/dev-libs/libinput/Manifest
@@ -1,4 +1,3 @@
 DIST libinput-1.12.6.tar.xz 518784 BLAKE2B 
7462f47be3628f9c66ef5b7c8265b588bd0ca328bafe91932f5341a010ac882648b4e7cfd0db241ae526836172e0829d68d21f8966d2be8b49f4e1c0c40df018
 SHA512 
02ad90c77a0c8c27fd96ec34e1546c5f0947ced49bad386372c1ef7c41b3b2157c39020f0766f20aaf2ab3c97128567e169279bea21115ced39499dda325d2ef
-DIST libinput-1.13.1.tar.xz 529516 BLAKE2B 
9eb9952ca2762470ee3e9ac0eab6b11c4b404b2702cd81b9f0720e539124a8f71a032803cf77105bbdce412b3c5d4a7fee4e24b8d3ceae991bd2ee9b3460e373
 SHA512 
a19deec802e704038df0901c103a82a3370f56e0299f4cc1b6aa84c1832a66fb638e6f9d0fa708b51df6c3b939cdc1271e4ff547c645c566be03dce0bc9ff7e0
 DIST libinput-1.13.2.tar.xz 529488 BLAKE2B 
489f962ca0b0385817fc76a5bc7254143d12c07e32a91dd118dca53fcdd6eaf5d2eef8aa5c5598a2aadda9e4a20b8a4c9340b60dee8286cd322fe2d294f1f6b7
 SHA512 
26f11c5274c26acc38b9b5729195010c0799a9563f1eb0e0cd67e323f8ed73b0fc8db8584ec8fdf1b726417f64c2daeb54832167079832626c8c1190fccf459f
 DIST libinput-1.13.3.tar.xz 530916 BLAKE2B 
af88659252d509c22ad255963353109ad9cf05171b3bff6d71872b6d2675a524c54a6ec0af28e1eab484dfeb91a9cd9db227084ffbfd6469d5726c4c882f
 SHA512 
427ec838975444571770e129ef78fd42e4438a11e89ed0b3fc98793184d00c0ca8ed282eab2045cc6cb345804ad6fce1061af563b4f41d75405cdf2f09cb01e1

diff --git a/dev-libs/libinput/libinput-1.13.1.ebuild 
b/dev-libs/libinput/libinput-1.13.1.ebuild
deleted file mode 100644
index bc7c6286e49..000
--- a/dev-libs/libinput/libinput-1.13.1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 2014-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
-
-inherit meson python-any-r1 udev
-
-DESCRIPTION="Library to handle input devices in Wayland"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/libinput/ 
https://gitlab.freedesktop.org/libinput/libinput;
-SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz;
-
-LICENSE="MIT"
-SLOT="0/10"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc input_devices_wacom"
-# Tests require write access to udev rules directory which is a no-no for live 
system.
-# Other tests are just about logs, exported symbols and autotest of the test 
library.
-RESTRICT="test"
-
-BDEPEND="
-   virtual/pkgconfig
-   doc? (
-   $(python_gen_any_dep '
-   dev-python/commonmark[${PYTHON_USEDEP}]
-   dev-python/recommonmark[${PYTHON_USEDEP}]
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   >=dev-python/sphinx_rtd_theme-0.2.4[${PYTHON_USEDEP}]
-   ')
-   >=app-doc/doxygen-1.8.3
-   >=media-gfx/graphviz-2.38.0
-   )
-"
-#  test? ( dev-util/valgrind )
-RDEPEND="
-   input_devices_wacom? ( >=dev-libs/libwacom-0.20 )
-   >=dev-libs/libevdev-1.3
-   >=sys-libs/mtdev-1.1
-   virtual/libudev:=
-   virtual/udev
-"
-DEPEND="${RDEPEND}"
-#  test? ( >=dev-libs/check-0.9.10 )
-
-python_check_deps() {
-   has_version "dev-python/commonmark[${PYTHON_USEDEP}]" && \
-   has_version "dev-python/recommonmark[${PYTHON_USEDEP}]" && \
-   has_version "dev-python/sphinx[${PYTHON_USEDEP}]" && \
-   has_version ">=dev-python/sphinx_rtd_theme-0.2.4[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   use doc && python-any-r1_pkg_setup
-}
-
-src_configure() {
-   # gui can be built but will not be installed
-   local emesonargs=(
-   -Ddebug-gui=false
-   $(meson_use doc documentation)
-   $(meson_use input_devices_wacom libwacom)
-   -Dtests=false # tests are restricted
-   -Dudev-dir="$(get_udevdir)"
-   )
-   meson_src_configure
-}
-
-src_install() {
-   meson_src_install
-   if use doc ; then
-   docinto html
-   dodoc -r "${BUILD_DIR}"/Documentation/.
-   fi
-}
-
-pkg_postinst() {
-   udevadm hwdb --update --root="${ROOT%/}"
-}



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

2019-06-24 Thread Lars Wendler
commit: 38d110d8d157776b840da4995bbeb7d9979cc7b4
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jun 24 13:08:13 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jun 24 13:08:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38d110d8

x11-misc/lightdm: USE="vala" requires USE="introspection"

Closes: https://bugs.gentoo.org/688408
Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Lars Wendler  gentoo.org>

 x11-misc/lightdm/lightdm-1.28.0.ebuild | 1 +
 x11-misc/lightdm/lightdm-1.30.0.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/x11-misc/lightdm/lightdm-1.28.0.ebuild 
b/x11-misc/lightdm/lightdm-1.28.0.ebuild
index a1ba623fec0..d18f8dffa15 100644
--- a/x11-misc/lightdm/lightdm-1.28.0.ebuild
+++ b/x11-misc/lightdm/lightdm-1.28.0.ebuild
@@ -44,6 +44,7 @@ PDEPEND="gtk? ( x11-misc/lightdm-gtk-greeter )"
 
 DOCS=( NEWS )
 RESTRICT="test"
+REQUIRED_USE="vala? ( introspection )"
 
 src_prepare() {
xdg_environment_reset

diff --git a/x11-misc/lightdm/lightdm-1.30.0.ebuild 
b/x11-misc/lightdm/lightdm-1.30.0.ebuild
index 2dbffbe278b..547beddb26d 100644
--- a/x11-misc/lightdm/lightdm-1.30.0.ebuild
+++ b/x11-misc/lightdm/lightdm-1.30.0.ebuild
@@ -46,6 +46,7 @@ PDEPEND="gtk? ( x11-misc/lightdm-gtk-greeter )"
 
 DOCS=( NEWS )
 RESTRICT="test"
+REQUIRED_USE="vala? ( introspection )"
 
 pkg_setup() {
export LIGHTDM_USER=${LIGHTDM_USER:-lightdm}



[gentoo-commits] repo/gentoo:master commit in: net-proxy/haproxy/

2019-06-24 Thread Christian Ruppert
commit: fa6b72f161927f3fdb75cfb805fa8bf3c7906432
Author: Christian Ruppert  gentoo  org>
AuthorDate: Mon Jun 24 13:03:24 2019 +
Commit: Christian Ruppert  gentoo  org>
CommitDate: Mon Jun 24 13:03:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa6b72f1

net-proxy/haproxy: Add prometheus-exporter re bug 688350

Package-Manager: Portage-2.3.67, Repoman-2.3.12
Signed-off-by: Christian Ruppert  gentoo.org>

 net-proxy/haproxy/haproxy-2.0.0.ebuild | 10 +++---
 net-proxy/haproxy/metadata.xml |  1 +
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/net-proxy/haproxy/haproxy-2.0.0.ebuild 
b/net-proxy/haproxy/haproxy-2.0.0.ebuild
index e41593121e8..3924975aade 100644
--- a/net-proxy/haproxy/haproxy-2.0.0.ebuild
+++ b/net-proxy/haproxy/haproxy-2.0.0.ebuild
@@ -20,8 +20,8 @@ fi
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-IUSE="+crypt doc examples libressl slz +net_ns +pcre pcre-jit pcre2 pcre2-jit 
ssl
-systemd +threads tools vim-syntax +zlib lua device-atlas 51degrees wurfl"
+IUSE="+crypt doc examples libressl slz +net_ns +pcre pcre-jit pcre2 pcre2-jit 
prometheus-exporter
+ssl systemd +threads tools vim-syntax +zlib lua device-atlas 51degrees wurfl"
 REQUIRED_USE="pcre-jit? ( pcre )
pcre2-jit? ( pcre2 )
pcre? ( !pcre2 )
@@ -98,8 +98,12 @@ src_compile() {
# For now, until the strict-aliasing breakage will be fixed
append-cflags -fno-strict-aliasing
 
+   if use prometheus-exporter; then
+   EXTRA_OBJS="contrib/prometheus-exporter/service-prometheus.o"
+   fi
+
# HAProxy really needs some of those "SPEC_CFLAGS", like 
-fno-strict-aliasing
-   emake CFLAGS="${CFLAGS} \$(SPEC_CFLAGS)" LDFLAGS="${LDFLAGS}" 
CC=$(tc-getCC) ${args[@]}
+   emake CFLAGS="${CFLAGS} \$(SPEC_CFLAGS)" LDFLAGS="${LDFLAGS}" 
CC=$(tc-getCC) EXTRA_OBJS="${EXTRA_OBJS}" ${args[@]}
emake -C contrib/systemd SBINDIR=/usr/sbin
 
if use tools ; then

diff --git a/net-proxy/haproxy/metadata.xml b/net-proxy/haproxy/metadata.xml
index 6a09dde73e2..bb3436846b4 100644
--- a/net-proxy/haproxy/metadata.xml
+++ b/net-proxy/haproxy/metadata.xml
@@ -23,6 +23,7 @@
Use JIT support for PCRE
Enable PCRE2 RegEx support
Use JIT support for PCRE2
+   Also build the prometheus 
exporter
Use dev-libs/libslz compression 
library
Install additional tools (halog, 
iprange)
Use 
dev-libs/device-atlas-api-c library



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

2019-06-24 Thread Michael Haubenwallner
commit: 91830d78d6f352ee1450263b6466fda5f7c8003c
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 12:12:59 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 12:14:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91830d78

prefix/winnt/profile.bashrc: first, check if usr/lib does exist

And fail if creating the back hardlink does fail.

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

 profiles/prefix/windows/winnt/profile.bashrc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/profiles/prefix/windows/winnt/profile.bashrc 
b/profiles/prefix/windows/winnt/profile.bashrc
index c0eaec08a6d..b8def6390de 100644
--- a/profiles/prefix/windows/winnt/profile.bashrc
+++ b/profiles/prefix/windows/winnt/profile.bashrc
@@ -62,6 +62,7 @@ post_src_install() {
;;
esac
done
+   [[ -d usr/$(get_libdir) ]] &&
find usr/$(get_libdir) -maxdepth 1 -type f -name '*.dll' |
while read f
do
@@ -69,7 +70,7 @@ post_src_install() {
ebegin "moving ${f} to usr/bin for native loader"
dodir usr/bin || die
mv -f "${f}" usr/bin || die
-   ln -sf "../bin/${f##*/}" "${f}"
+   ln -sf "../bin/${f##*/}" "${f}" || die
eend $?
fi
done



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

2019-06-24 Thread Michael Palimaka
commit: a17c6c85c115de7d49faf2a05bd1615cabfaacd6
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Jun 24 12:07:04 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Jun 24 12:08:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a17c6c85

media-sound/mp3diags: new package

Package-Manager: Portage-2.3.66, Repoman-2.3.16
Signed-off-by: Michael Palimaka  gentoo.org>

 media-sound/mp3diags/Manifest   |  1 +
 media-sound/mp3diags/metadata.xml   | 10 ++
 media-sound/mp3diags/mp3diags-1.5.01.ebuild | 56 +
 3 files changed, 67 insertions(+)

diff --git a/media-sound/mp3diags/Manifest b/media-sound/mp3diags/Manifest
new file mode 100644
index 000..1b9061be7b9
--- /dev/null
+++ b/media-sound/mp3diags/Manifest
@@ -0,0 +1 @@
+DIST MP3Diags-unstable-1.5.01.tar.gz 1234926 BLAKE2B 
f04a30d1418cde4b08aa744f2b280beac5af466a2657562ef9f8eafb3da84a357397975bb9c1cda4747a10ae1b9e0ac468fbd43c0f375fd99c2a90fd4698
 SHA512 
30ef7276e1be08c0d5d1d6af2a1f6f4fa61753fda65e0914c0e07a0823e1ba9a0e3a2718bde55d68e928cb965db510c80bd5f2419ac19d063edd1fa257a1ee18

diff --git a/media-sound/mp3diags/metadata.xml 
b/media-sound/mp3diags/metadata.xml
new file mode 100644
index 000..757721839e4
--- /dev/null
+++ b/media-sound/mp3diags/metadata.xml
@@ -0,0 +1,10 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   kensing...@gentoo.org
+   
+   
+   mp3diags
+   
+

diff --git a/media-sound/mp3diags/mp3diags-1.5.01.ebuild 
b/media-sound/mp3diags/mp3diags-1.5.01.ebuild
new file mode 100644
index 000..2d96e59d193
--- /dev/null
+++ b/media-sound/mp3diags/mp3diags-1.5.01.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop qmake-utils xdg-utils
+
+MY_PN=MP3Diags-unstable
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Qt-based MP3 diagnosis and repair tool"
+HOMEPAGE="http://mp3diags.sourceforge.net;
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+
+LICENSE="LGPL-3 GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+   dev-libs/boost:=[threads]
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   sys-libs/zlib
+"
+RDEPEND="${DEPEND}
+   dev-qt/qtsvg:5
+"
+
+S=${WORKDIR}/${MY_P}
+
+src_configure() {
+   eqmake5 ${PN}.pro
+}
+
+src_install() {
+   dobin bin/${MY_PN}
+   dodoc changelog.txt
+
+   local size
+   for size in 16 22 24 32 36 40 48; do
+   insinto /usr/share/icons/hicolor/${size}x${size}/apps
+   newins desktop/${MY_PN}${size}.png ${MY_PN}.png
+   done
+   domenu desktop/${MY_PN}.desktop
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



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

2019-06-24 Thread Michael Haubenwallner
commit: 05b7af2f1e6267dadad4fd49af872cc4c53c2a68
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 11:49:26 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 11:49:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05b7af2f

app-arch/zip: add ~amd64-linux ~x86-linux keywords

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

 app-arch/zip/zip-3.0-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-arch/zip/zip-3.0-r3.ebuild b/app-arch/zip/zip-3.0-r3.ebuild
index 0d6f2bd4ad6..22aeb260c16 100644
--- a/app-arch/zip/zip-3.0-r3.ebuild
+++ b/app-arch/zip/zip-3.0-r3.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="4"
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/infozip/${MY_P}.zip"
 
 LICENSE="Info-ZIP"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="bzip2 crypt natspec unicode"
 
 RDEPEND="bzip2? ( app-arch/bzip2 )



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

2019-06-24 Thread Michael Haubenwallner
commit: 2c895e05d24276b23909c7295a36a01ac7242165
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 11:28:46 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 11:29:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c895e05

dev-libs/libpcre: add ~x86-winnt keyword

Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michael Haubenwallner  gentoo.org>

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

diff --git a/dev-libs/libpcre/libpcre-8.43.ebuild 
b/dev-libs/libpcre/libpcre-8.43.ebuild
index a24c0d8e03f..3a5b54a20a8 100644
--- a/dev-libs/libpcre/libpcre-8.43.ebuild
+++ b/dev-libs/libpcre/libpcre-8.43.ebuild
@@ -18,7 +18,7 @@ fi
 
 LICENSE="BSD"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~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 ~riscv 
~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="bzip2 +cxx +jit libedit pcre16 pcre32 +readline +recursion-limit 
static-libs unicode zlib"
 REQUIRED_USE="readline? ( !libedit )
libedit? ( !readline )"



[gentoo-commits] repo/gentoo:master commit in: dev-texlive/texlive-latexextra/

2019-06-24 Thread Mikle Kolyada
commit: a22e5824478b5209f9e89b7c149a1599333b16ad
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jun 24 11:17:43 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jun 24 11:18:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a22e5824

dev-texlive/texlive-latexextra: Drop old

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

 .../texlive-latexextra-2019-r1.ebuild  | 39 --
 1 file changed, 39 deletions(-)

diff --git a/dev-texlive/texlive-latexextra/texlive-latexextra-2019-r1.ebuild 
b/dev-texlive/texlive-latexextra/texlive-latexextra-2019-r1.ebuild
deleted file mode 100644
index 964814d4935..000
--- a/dev-texlive/texlive-latexextra/texlive-latexextra-2019-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-TEXLIVE_MODULE_CONTENTS="2up ESIEEcv GS1 HA-prosper Tabbing a0poster a4wide 
a5comb abraces abstract achemso acro acronym acroterm actuarialangle 
actuarialsymbol addfont addlines adjmulticol adjustbox adrconv advdate akktex 
akletter alertmessage alnumsec alterqcm altfont amsaddr animate anonchap 
answers anyfontsize appendix appendixnumberbeamer apptools arcs arrayjobx 
arraysort arydshln asciilist assignment assoccnt attachfile aurl 
authoraftertitle authorarchive authorindex autonum autopdf avremu background 
bankstatement bashful basicarith bchart beamer2thesis beamer-rl beameraudience 
beamerauxtheme beamercolorthemeowl beamerdarkthemes beamerposter beamersubframe 
beamertheme-cuerna beamertheme-detlevcm beamertheme-epyt beamertheme-focus 
beamertheme-light beamertheme-metropolis beamertheme-npbt beamertheme-phnompenh 
beamertheme-saintpetersburg beamertheme-upenn-bc beamerthemejltree 
beamerthemenirma beton bewerbung bez123 bezos bhcexam bibletext bigfoot bigints 
biochemistry-colors bizc
 ard blindtext blkarray block blowup bnumexpr boites bold-extra bookcover 
bookest booklet boolexpr bophook boxedminipage boxedminipage2e boxhandler 
bracketkey braket breakurl bullcntr bxcalc bxdpx-beamer bxdvidriver bxenclose 
bxnewfont bxpapersize bxpdfver bxtexlogo calcage calctab calculator calrsfs 
cals cal- cancel canoniclayout capt-of captcont captdef carbohydrates 
cases casyl catchfilebetweentags catechis catoptions cbcoptic ccaption 
cclicenses cd cd-cover cdpbundl cellprops cellspace censor centeredline 
changebar changelayout changelog changepage changes chappg chapterfolder 
cheatsheet chet chextras childdoc chkfloat chletter chngcntr chronology circ 
classics classpack clefval cleveref clipboard clock cloze clrdblpg clrstrip 
cmdstring cmdtrack cmsd cnltx cntformats cntperchap codedoc codepage 
codesection collcell collectbox colophon colordoc colorinfo coloring colorspace 
colortab colorwav colorweb colourchange combelow combine comma commado commedit 
comment competences 
 concepts concprog constants continue contour contracard conv-xkv cooking 
cooking-units cool coollist coolstr coolthms cooltooltips coordsys copyedit 
copyrightbox coseoul counttexruns courseoutline coursepaper coverpage cprotect 
crbox crossreference crossreftools csquotes css-colors csvsimple cuisine 
currency currfile cutwin cv cv4tw cweb-latex cyber cybercic dashbox dashrule 
dashundergaps dataref datatool dateiliste datenumber datetime datetime2 
datetime2-bahasai datetime2-basque datetime2-breton datetime2-bulgarian 
datetime2-catalan datetime2-croatian datetime2-czech datetime2-danish 
datetime2-dutch datetime2-en-fulltext datetime2-english datetime2-esperanto 
datetime2-estonian datetime2-finnish datetime2-french datetime2-galician 
datetime2-german datetime2-greek datetime2-hebrew datetime2-icelandic 
datetime2-irish datetime2-italian datetime2-it-fulltext datetime2-latin 
datetime2-lsorbian datetime2-magyar datetime2-norsk datetime2-polish 
datetime2-portuges datetime2-romanian datetim
 e2-russian datetime2-samin datetime2-scottish datetime2-serbian 
datetime2-slovak datetime2-slovene datetime2-spanish datetime2-swedish 
datetime2-turkish datetime2-ukrainian datetime2-usorbian datetime2-welsh 
dblfloatfix decimal decorule delimtxt denisbdoc diagbox diagnose dialogl 
dichokey dinbrief directory dirtytalk dlfltxb dnaseq doclicense docmfp docmute 
doctools documentation doi dotarrow dotseqn download dox dpfloat dprogress drac 
draftcopy draftfigure draftwatermark dtk dtxdescribe dtxgallery duckuments 
ducksay dvdcoll dynamicnumber dynblocks ean13isbn easy easy-todo easyfig 
easyformat easylist easyreview ebezier ecclesiastic ecv ed edmargin eemeir 
efbox egplot ehhline elegantbook elegantnote elegantpaper elements ellipsis 
elmath elocalloc elpres elzcards emarks embedall embrac emptypage emulateapj 
endfloat endheads endnotes engpron engrec enotez enumitem enumitem-zref envbig 
environ epigraph epiolmec eqell eqlist eqnalign eqname eqparbox errata erw-l3 
esami 

[gentoo-commits] repo/gentoo:master commit in: dev-texlive/texlive-latexextra/files/, dev-texlive/texlive-latexextra/

2019-06-24 Thread Mikle Kolyada
commit: 4bc7d2ce2619faaebd20de59b34d7700244fa6fb
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jun 24 11:16:30 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jun 24 11:18:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bc7d2ce

dev-texlive/texlive-latexextra: fix lstlinebgrd macro

Closes: https://bugs.gentoo.org/688440
Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 .../files/lstlinebgrd-syntax.patch | 16 +
 .../texlive-latexextra/files/vpe_invocation.patch  |  4 +--
 .../texlive-latexextra-2019-r2.ebuild  | 42 ++
 3 files changed, 60 insertions(+), 2 deletions(-)

diff --git a/dev-texlive/texlive-latexextra/files/lstlinebgrd-syntax.patch 
b/dev-texlive/texlive-latexextra/files/lstlinebgrd-syntax.patch
new file mode 100644
index 000..16f9da12d05
--- /dev/null
+++ b/dev-texlive/texlive-latexextra/files/lstlinebgrd-syntax.patch
@@ -0,0 +1,16 @@
+--- a/texmf-dist/tex/latex/lstaddons/lstlinebgrd.sty   2019-06-21 
16:32:09.158990775 +0200
 b/texmf-dist/tex/latex/lstaddons/lstlinebgrd.sty   2019-06-21 
16:31:45.408991817 +0200
+@@ -27,10 +27,10 @@
+ \lst@Key{numbers}{none}{%
+ \def\lst@PlaceNumber{\lst@linebgrd}%
+ \lstKV@SwitchCases{#1}%
+-{none&\\%
+- left&\def\lst@PlaceNumber{\llap{\normalfont
++{none:\\%
++ left:\def\lst@PlaceNumber{\llap{\normalfont
+ 
\lst@numberstyle{\thelstnumber}\kern\lst@numbersep}\lst@linebgrd}\\%
+- right&\def\lst@PlaceNumber{\rlap{\normalfont
++ right:\def\lst@PlaceNumber{\rlap{\normalfont
+ \kern\linewidth \kern\lst@numbersep
+ \lst@numberstyle{\thelstnumber}}\lst@linebgrd}%
+ }{\PackageError{Listings}{Numbers #1 unknown}\@ehc}}

diff --git a/dev-texlive/texlive-latexextra/files/vpe_invocation.patch 
b/dev-texlive/texlive-latexextra/files/vpe_invocation.patch
index e4c114ec1a0..06f4534fd5b 100644
--- a/dev-texlive/texlive-latexextra/files/vpe_invocation.patch
+++ b/dev-texlive/texlive-latexextra/files/vpe_invocation.patch
@@ -3,8 +3,8 @@ https://bugs.gentoo.org/show_bug.cgi?id=289818
 
 Index: work/texmf-dist/scripts/vpe/vpe.pl
 ===
 work.orig/texmf-dist/scripts/vpe/vpe.pl
-+++ work/texmf-dist/scripts/vpe/vpe.pl
+--- a/texmf-dist/scripts/vpe/vpe.pl
 b/texmf-dist/scripts/vpe/vpe.pl
 @@ -1,5 +1,4 @@
 -eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' && eval 'exec perl -S 
$0 $argv:q'
 -  if 0;

diff --git a/dev-texlive/texlive-latexextra/texlive-latexextra-2019-r2.ebuild 
b/dev-texlive/texlive-latexextra/texlive-latexextra-2019-r2.ebuild
new file mode 100644
index 000..a7bff807dcb
--- /dev/null
+++ b/dev-texlive/texlive-latexextra/texlive-latexextra-2019-r2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+TEXLIVE_MODULE_CONTENTS="2up ESIEEcv GS1 HA-prosper Tabbing a0poster a4wide 
a5comb abraces abstract achemso acro acronym acroterm actuarialangle 
actuarialsymbol addfont addlines adjmulticol adjustbox adrconv advdate akktex 
akletter alertmessage alnumsec alterqcm altfont amsaddr animate anonchap 
answers anyfontsize appendix appendixnumberbeamer apptools arcs arrayjobx 
arraysort arydshln asciilist assignment assoccnt attachfile aurl 
authoraftertitle authorarchive authorindex autonum autopdf avremu background 
bankstatement bashful basicarith bchart beamer2thesis beamer-rl beameraudience 
beamerauxtheme beamercolorthemeowl beamerdarkthemes beamerposter beamersubframe 
beamertheme-cuerna beamertheme-detlevcm beamertheme-epyt beamertheme-focus 
beamertheme-light beamertheme-metropolis beamertheme-npbt beamertheme-phnompenh 
beamertheme-saintpetersburg beamertheme-upenn-bc beamerthemejltree 
beamerthemenirma beton bewerbung bez123 bezos bhcexam bibletext bigfoot bigints 
biochemistry-colors bizc
 ard blindtext blkarray block blowup bnumexpr boites bold-extra bookcover 
bookest booklet boolexpr bophook boxedminipage boxedminipage2e boxhandler 
bracketkey braket breakurl bullcntr bxcalc bxdpx-beamer bxdvidriver bxenclose 
bxnewfont bxpapersize bxpdfver bxtexlogo calcage calctab calculator calrsfs 
cals cal- cancel canoniclayout capt-of captcont captdef carbohydrates 
cases casyl catchfilebetweentags catechis catoptions cbcoptic ccaption 
cclicenses cd cd-cover cdpbundl cellprops cellspace censor centeredline 
changebar changelayout changelog changepage changes chappg chapterfolder 
cheatsheet chet chextras childdoc chkfloat chletter chngcntr chronology circ 
classics classpack clefval cleveref clipboard clock cloze clrdblpg clrstrip 
cmdstring cmdtrack cmsd cnltx cntformats cntperchap codedoc codepage 
codesection collcell collectbox colophon colordoc colorinfo coloring colorspace 
colortab colorwav colorweb colourchange combelow combine 

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

2019-06-24 Thread Michael Haubenwallner
commit: 3326692aad3350ef104471ba2500207754c4129f
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 11:01:25 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 11:07:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3326692a

prefix/winnt/profile.bashrc: move usr/lib/*.dll to usr/bin/

When dlls or executables are created without the parity loader in place,
dlls may not be found when not in usr/bin.
So better move dlls from usr/lib to usr/bin, much like Cygwin does.

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

 profiles/prefix/windows/winnt/profile.bashrc | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/profiles/prefix/windows/winnt/profile.bashrc 
b/profiles/prefix/windows/winnt/profile.bashrc
index 4e60691a494..c0eaec08a6d 100644
--- a/profiles/prefix/windows/winnt/profile.bashrc
+++ b/profiles/prefix/windows/winnt/profile.bashrc
@@ -62,6 +62,17 @@ post_src_install() {
;;
esac
done
+   find usr/$(get_libdir) -maxdepth 1 -type f -name '*.dll' |
+   while read f
+   do
+   if test ! -f usr/bin/${f##*/}; then
+   ebegin "moving ${f} to usr/bin for native loader"
+   dodir usr/bin || die
+   mv -f "${f}" usr/bin || die
+   ln -sf "../bin/${f##*/}" "${f}"
+   eend $?
+   fi
+   done
 }
 
 windows_setup_dllhelper_cp() {



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

2019-06-24 Thread Michael Haubenwallner
commit: 95a51fc1bd0282f10c6c97cc6a3cbaca4c9163b8
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Jun 24 11:00:21 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Jun 24 11:07:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a51fc1

prefix/winnt/profile.bashrc: inform on DLL cp wrapper setup

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

 profiles/prefix/windows/winnt/profile.bashrc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/profiles/prefix/windows/winnt/profile.bashrc 
b/profiles/prefix/windows/winnt/profile.bashrc
index 3c12c651967..4e60691a494 100644
--- a/profiles/prefix/windows/winnt/profile.bashrc
+++ b/profiles/prefix/windows/winnt/profile.bashrc
@@ -22,7 +22,9 @@ windows_setup_dllhelper() {
# But as there is another file to install (the real dll),
# and installation is done using cp, we override cp to
# additionally copy the dll when the library is copied.
+   ebegin "Setting up wrapper to copy the DLL along the LIB"
windows_setup_dllhelper_cp
+   eend $?
;;
esac
 }



[gentoo-commits] repo/gentoo:master commit in: app-emacs/wanderlust/, app-emacs/semi/, app-emacs/mu-cite/

2019-06-24 Thread Ulrich Müller
commit: 30e4a9c1cfc80f55f795939940851bab9a22145f
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 24 11:05:06 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 24 11:05:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30e4a9c1

app-emacs/{semi,wanderlust,mu-cite}: Depend on app-emacs/flim directly.

Instead of virtual/emacs-flim, because the virtual's second provider
app-emacs/limit fails to compile with recent Emacs versions.

Bug: https://bugs.gentoo.org/688596
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/mu-cite/mu-cite-8.1_p201202272330.ebuild  | 5 +++--
 app-emacs/semi/semi-1.14.6-r2.ebuild| 4 ++--
 app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild | 4 ++--
 app-emacs/wanderlust/wanderlust-2.15.9_p20180814.ebuild | 4 ++--
 4 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/app-emacs/mu-cite/mu-cite-8.1_p201202272330.ebuild 
b/app-emacs/mu-cite/mu-cite-8.1_p201202272330.ebuild
index 63f2fdaec66..0bf16aaea00 100644
--- a/app-emacs/mu-cite/mu-cite-8.1_p201202272330.ebuild
+++ b/app-emacs/mu-cite/mu-cite-8.1_p201202272330.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -15,7 +15,8 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
 RDEPEND="app-emacs/apel
-   virtual/emacs-flim"
+   app-emacs/flim"
+DEPEND="${RDEPEND}"
 
 SITEFILE="50${PN}-gentoo.el"
 DOCS="ChangeLog NEWS README.en"

diff --git a/app-emacs/semi/semi-1.14.6-r2.ebuild 
b/app-emacs/semi/semi-1.14.6-r2.ebuild
index c415b5d..7d4fcf4b0e6 100644
--- a/app-emacs/semi/semi-1.14.6-r2.ebuild
+++ b/app-emacs/semi/semi-1.14.6-r2.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=5
@@ -15,7 +15,7 @@ KEYWORDS="alpha amd64 ppc sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-maco
 IUSE="l10n_ja"
 
 DEPEND=">=app-emacs/apel-10.6
-   virtual/emacs-flim"
+   app-emacs/flim"
 RDEPEND="${DEPEND}"
 
 ELISP_PATCHES="${PN}-info.patch"

diff --git a/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild 
b/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild
index 51d5a4750a4..d655a9b9079 100644
--- a/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild
+++ b/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.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
@@ -16,7 +16,7 @@ KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE="bbdb ssl l10n_ja"
 
 DEPEND=">=app-emacs/apel-10.6
-   virtual/emacs-flim
+   app-emacs/flim
app-emacs/semi
bbdb? ( app-emacs/bbdb )"
 RDEPEND="${DEPEND}"

diff --git a/app-emacs/wanderlust/wanderlust-2.15.9_p20180814.ebuild 
b/app-emacs/wanderlust/wanderlust-2.15.9_p20180814.ebuild
index 6885a08624d..b425c3ba6b4 100644
--- a/app-emacs/wanderlust/wanderlust-2.15.9_p20180814.ebuild
+++ b/app-emacs/wanderlust/wanderlust-2.15.9_p20180814.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
@@ -17,7 +17,7 @@ KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE="bbdb ssl l10n_ja"
 
 DEPEND=">=app-emacs/apel-10.6
-   virtual/emacs-flim
+   app-emacs/flim
app-emacs/semi
bbdb? ( app-emacs/bbdb )"
 RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-emacs/wanderlust/, app-emacs/wanderlust/files/

2019-06-24 Thread Ulrich Müller
commit: 9e2e386c5b1ee62815ee384a3c7917ff82bf9fe8
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 24 10:30:36 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 24 10:37:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e2e386c

app-emacs/wanderlust: Remove old.

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/wanderlust/Manifest  |  2 -
 .../files/wanderlust-2.14.0-smtp-end-of-line.patch | 16 --
 .../files/wanderlust-2.14.0-texinfo-garbage.patch  | 11 
 app-emacs/wanderlust/wanderlust-2.14.0-r6.ebuild   | 62 --
 4 files changed, 91 deletions(-)

diff --git a/app-emacs/wanderlust/Manifest b/app-emacs/wanderlust/Manifest
index 3cb6ea63e53..a73fcda3063 100644
--- a/app-emacs/wanderlust/Manifest
+++ b/app-emacs/wanderlust/Manifest
@@ -1,5 +1,3 @@
-DIST wanderlust-2.14.0-20050405.patch.gz 3926 BLAKE2B 
0986f743e512cc7216554585c1c62af659fe35873bfcdfdb520e4085ec2606360ae1a29566ac756ad0e7f03cc51d1e5c0bd7460c8448ceb6251004d887858885
 SHA512 
103e8eda374eab453363f3a735d877e313ff341e09abd66093bd090b404738d42d98edf5d1c9c8e8966963bf972d462aebc28ea6e470126af9266188247c4044
 DIST wanderlust-2.15.9_p20130619.tar.xz 818124 BLAKE2B 
b6bbd6f63d862f81a5a0c194f0fe1b276303f75f8ffde29c844f1f7d2d8ef55f1c211ac1d0b6c3357c2507b2abe73ba1c4c8f5fc65e067d93eb6bf23fd8490a6
 SHA512 
91bdcc1b29370b7be7a2072f4d8c638b3c0604ba31b5419952b848af268e73a3f199f07a88caabec56f66b38013e0f9cd7c1de26b46d1062ddff782e8080d4e0
 DIST wanderlust-2.15.9_p20180814-git.tar.gz 1207081 BLAKE2B 
f52259b15040287f0afcf0768b3ae3237415b44960e205e48d4b658f3e522db993b87bac59ee3d9ba94ad26c830beaf26d9cf5f03830fcb1f01e4f5567ee4804
 SHA512 
67616cc1d35b25af1b56fa800943ad0c7e7d9b35f99c48fac96b77a68a3eb8db02b36525021ff8bba4d181530505face2a58725b7dff33b1bfe4f48a4314949f
 DIST wanderlust-2.15.9_p20190623.tar.gz 1210223 BLAKE2B 
50416e27062a9837c18660ea9a1a7a3ff596639763965b09925ca16c89617d159b9aa5d08d93d8b5c6a504da2b048df8b4c489d4fc11ff6abc530f741a5d8fb9
 SHA512 
369f8d93af4d0d98f66c4c8500aa3535e3f772d8a1920c1bdc434f0d9078555f40d0d4278937d97bccf0f417cf1b1fdeb6c8a891d42b2675fb7737382425c91d
-DIST wl-2.14.0.tar.gz 1101505 BLAKE2B 
5ceb3a8e294b230d48d50134e3dc07b9e19a9470907a488a2e41e53da54a8826a50cb53c06c5f3f1a5bdd1b5760bc6acd6cc75a25e63d092f1a9b80b3f073ed5
 SHA512 
edb49c0c9ddbd50cba4ce4cdd1b2d609cee9553d063aeb4775d0b43e0ed83cc6374aa47b11b3ff94a55827f7a9a29f7c1054e0fd9b3a5a25a2c410b241d268d2

diff --git 
a/app-emacs/wanderlust/files/wanderlust-2.14.0-smtp-end-of-line.patch 
b/app-emacs/wanderlust/files/wanderlust-2.14.0-smtp-end-of-line.patch
deleted file mode 100644
index f03542522ed..000
--- a/app-emacs/wanderlust/files/wanderlust-2.14.0-smtp-end-of-line.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-http://bugs.gentoo.org/280248
-Don't bind smtp-end-of-line. Patch from upstream CVS, by Yoichi NAKAYAMA.
-
 wl/wl-draft.el 28 Jan 2006 09:03:41 -  1.258
-+++ wl/wl-draft.el 9 Feb 2006 03:57:39 -   1.259
-@@ -147,10 +147,6 @@
-(if (eq wl-smtp-connection-type 'ssl)
-#'open-ssl-stream
-  smtp-open-connection-function))
--  (smtp-end-of-line
--   (if (eq wl-smtp-connection-type 'ssl)
--   "\n"
-- smtp-end-of-line))
-   smtp-sasl-user-name smtp-sasl-properties sasl-read-passphrase)
-(setq smtp-sasl-user-name wl-smtp-posting-user
-smtp-sasl-properties (when wl-smtp-authenticate-realm

diff --git a/app-emacs/wanderlust/files/wanderlust-2.14.0-texinfo-garbage.patch 
b/app-emacs/wanderlust/files/wanderlust-2.14.0-texinfo-garbage.patch
deleted file mode 100644
index 6be41a99b70..000
--- a/app-emacs/wanderlust/files/wanderlust-2.14.0-texinfo-garbage.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 wl-2.14.0-orig/doc/wl.texi 2005-02-25 16:05:48.0 +0100
-+++ wl-2.14.0/doc/wl.texi  2009-08-10 16:15:29.0 +0200
-@@ -4329,7 +4329,7 @@
- 
- @item wl-summary-resend-use-cache
- @vindex wl-summary-resend-use-cache
--The initial setting is @code{nil}��If non-nil, messages are resend
-+The initial setting is @code{nil}. If non-nil, messages are resend
- using cache even in the offline status. Note that if you use cache,
- the message identity is not guaranteed.
- 

diff --git a/app-emacs/wanderlust/wanderlust-2.14.0-r6.ebuild 
b/app-emacs/wanderlust/wanderlust-2.14.0-r6.ebuild
deleted file mode 100644
index 1f0b3fc12a3..000
--- a/app-emacs/wanderlust/wanderlust-2.14.0-r6.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit elisp
-
-MY_P="wl-${PV/_/}"
-DESCRIPTION="Yet Another Message Interface on Emacsen"
-HOMEPAGE="http://www.gohome.org/wl/;
-SRC_URI="ftp://ftp.gohome.org/wl/stable/${MY_P}.tar.gz
-   ftp://ftp.gohome.org/wl/beta/${MY_P}.tar.gz
-   

[gentoo-commits] repo/gentoo:master commit in: app-emacs/semi/

2019-06-24 Thread Ulrich Müller
commit: db4536f0265a8863a98e781ca0300a6c9b0ae154
Author: Markus Oehme  jonglieren-jena  de>
AuthorDate: Mon Jun 24 10:01:36 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 24 10:37:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db4536f0

app-emacs/semi: Version bump.

Bug: https://bugs.gentoo.org/688560
Signed-off-by: Markus Oehme  jonglieren-jena.de>
[ulm  gentoo.org: EAPI 7 bump, minor cleanup]
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/semi/Manifest |  1 +
 app-emacs/semi/semi-1.14.7_p20190517.ebuild | 52 +
 2 files changed, 53 insertions(+)

diff --git a/app-emacs/semi/Manifest b/app-emacs/semi/Manifest
index 73743402f2a..936ec5cf4e4 100644
--- a/app-emacs/semi/Manifest
+++ b/app-emacs/semi/Manifest
@@ -1 +1,2 @@
 DIST semi-1.14.6.tar.gz 142549 BLAKE2B 
e417b305ad814b2a23fad4fd37057395efb47bdb61778aa167149eda4277cda47dc81148821d9e4ad3225a858c77f781a6565c3e49747d78882b9401fd5fbac1
 SHA512 
1011271c58414f4ca23da079f16f273b408643e0d9f4961db321b65c1ed9a7d4ca66a7d7cb5b0c9fa2b4904fa992c9188858de6131180ee30132d3cadaeef33f
+DIST semi-1.14.7_p20190517.tar.gz 152636 BLAKE2B 
a22b1f9a5de0a695de2d8e342ca313af05c12a1c0b597890d926496e9ce240e3329365700f91e6268cf399976ec067163ac8197c7a643e499d70851501f63798
 SHA512 
d25c940fdd0a048d21079d905ae91521a1f1247b8f78145baeba24c994c0d5b30985a76c909a793f82f6253b323fb4699bbf059ea48037bb49ae92505b0c6d18

diff --git a/app-emacs/semi/semi-1.14.7_p20190517.ebuild 
b/app-emacs/semi/semi-1.14.7_p20190517.ebuild
new file mode 100644
index 000..0641b831804
--- /dev/null
+++ b/app-emacs/semi/semi-1.14.7_p20190517.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit elisp
+
+DESCRIPTION="A library to provide MIME feature for GNU Emacs"
+HOMEPAGE="https://github.com/wanderlust/semi;
+GITHUB_SHA1="4cf114c95fb49ad75eb6916f678b45b04bad8122"
+SRC_URI="${HOMEPAGE}/archive/${GITHUB_SHA1}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+IUSE="l10n_ja"
+
+DEPEND=">=app-emacs/apel-10.8
+   >=app-emacs/flim-1.14.9"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}-${GITHUB_SHA1}"
+ELISP_PATCHES="${PN}-info.patch"
+SITEFILE="65${PN}-gentoo.el"
+
+src_compile() {
+   emake PREFIX="${ED}"/usr \
+   LISPDIR="${ED}/${SITELISP}" \
+   VERSION_SPECIFIC_LISPDIR="${ED}/${SITELISP}"
+
+   ${EMACS} ${EMACSFLAGS} --visit mime-ui-en.texi -f texi2info || die
+   if use l10n_ja; then
+   ${EMACS} ${EMACSFLAGS} \
+   --eval "(set-default-coding-systems 'iso-2022-jp)" \
+   --visit mime-ui-ja.texi -f texi2info || die
+   fi
+}
+
+src_install() {
+   emake PREFIX="${ED}/usr" \
+   LISPDIR="${ED}/${SITELISP}" \
+   VERSION_SPECIFIC_LISPDIR="${ED}/${SITELISP}" install
+
+   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+
+   doinfo mime-ui-en.info
+   dodoc README.en ChangeLog VERSION NEWS
+   if use l10n_ja; then
+   doinfo mime-ui-ja.info
+   dodoc README.ja
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/wanderlust/

2019-06-24 Thread Ulrich Müller
commit: 6e364080df968fbac868bdae55b0c2dc6d9be076
Author: Markus Oehme  jonglieren-jena  de>
AuthorDate: Mon Jun 24 10:02:05 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 24 10:37:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e364080

app-emacs/wanderlust: Version bump.

Closes: https://bugs.gentoo.org/688560
Signed-off-by: Markus Oehme  jonglieren-jena.de>
[ulm  gentoo.org: EAPI 7 bump, minor cleanup]
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/wanderlust/Manifest  |  1 +
 .../wanderlust/wanderlust-2.15.9_p20190623.ebuild  | 57 ++
 2 files changed, 58 insertions(+)

diff --git a/app-emacs/wanderlust/Manifest b/app-emacs/wanderlust/Manifest
index ced02cca3ea..3cb6ea63e53 100644
--- a/app-emacs/wanderlust/Manifest
+++ b/app-emacs/wanderlust/Manifest
@@ -1,4 +1,5 @@
 DIST wanderlust-2.14.0-20050405.patch.gz 3926 BLAKE2B 
0986f743e512cc7216554585c1c62af659fe35873bfcdfdb520e4085ec2606360ae1a29566ac756ad0e7f03cc51d1e5c0bd7460c8448ceb6251004d887858885
 SHA512 
103e8eda374eab453363f3a735d877e313ff341e09abd66093bd090b404738d42d98edf5d1c9c8e8966963bf972d462aebc28ea6e470126af9266188247c4044
 DIST wanderlust-2.15.9_p20130619.tar.xz 818124 BLAKE2B 
b6bbd6f63d862f81a5a0c194f0fe1b276303f75f8ffde29c844f1f7d2d8ef55f1c211ac1d0b6c3357c2507b2abe73ba1c4c8f5fc65e067d93eb6bf23fd8490a6
 SHA512 
91bdcc1b29370b7be7a2072f4d8c638b3c0604ba31b5419952b848af268e73a3f199f07a88caabec56f66b38013e0f9cd7c1de26b46d1062ddff782e8080d4e0
 DIST wanderlust-2.15.9_p20180814-git.tar.gz 1207081 BLAKE2B 
f52259b15040287f0afcf0768b3ae3237415b44960e205e48d4b658f3e522db993b87bac59ee3d9ba94ad26c830beaf26d9cf5f03830fcb1f01e4f5567ee4804
 SHA512 
67616cc1d35b25af1b56fa800943ad0c7e7d9b35f99c48fac96b77a68a3eb8db02b36525021ff8bba4d181530505face2a58725b7dff33b1bfe4f48a4314949f
+DIST wanderlust-2.15.9_p20190623.tar.gz 1210223 BLAKE2B 
50416e27062a9837c18660ea9a1a7a3ff596639763965b09925ca16c89617d159b9aa5d08d93d8b5c6a504da2b048df8b4c489d4fc11ff6abc530f741a5d8fb9
 SHA512 
369f8d93af4d0d98f66c4c8500aa3535e3f772d8a1920c1bdc434f0d9078555f40d0d4278937d97bccf0f417cf1b1fdeb6c8a891d42b2675fb7737382425c91d
 DIST wl-2.14.0.tar.gz 1101505 BLAKE2B 
5ceb3a8e294b230d48d50134e3dc07b9e19a9470907a488a2e41e53da54a8826a50cb53c06c5f3f1a5bdd1b5760bc6acd6cc75a25e63d092f1a9b80b3f073ed5
 SHA512 
edb49c0c9ddbd50cba4ce4cdd1b2d609cee9553d063aeb4775d0b43e0ed83cc6374aa47b11b3ff94a55827f7a9a29f7c1054e0fd9b3a5a25a2c410b241d268d2

diff --git a/app-emacs/wanderlust/wanderlust-2.15.9_p20190623.ebuild 
b/app-emacs/wanderlust/wanderlust-2.15.9_p20190623.ebuild
new file mode 100644
index 000..232c0e9e7de
--- /dev/null
+++ b/app-emacs/wanderlust/wanderlust-2.15.9_p20190623.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit elisp
+
+DESCRIPTION="Yet Another Message Interface on Emacsen"
+HOMEPAGE="https://github.com/wanderlust/wanderlust;
+GITHUB_SHA1="b9a529a54b9e7eafa4ed230ad28efffe0d25a20e"
+SRC_URI="${HOMEPAGE}/archive/${GITHUB_SHA1}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="bbdb ssl l10n_ja"
+
+DEPEND=">=app-emacs/apel-10.8
+   >=app-emacs/flim-1.14.9
+   >=app-emacs/semi-1.14.7
+   bbdb? ( app-emacs/bbdb )"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}-${GITHUB_SHA1}"
+SITEFILE="50${PN}-gentoo.el"
+
+src_configure() {
+   local lang="\"en\""
+   use l10n_ja && lang="${lang} \"ja\""
+   echo "(setq wl-info-lang '(${lang}) wl-news-lang '(${lang}))" >>WL-CFG
+   use ssl && echo "(setq wl-install-utils t)" >>WL-CFG
+}
+
+src_compile() {
+   emake
+   emake info
+}
+
+src_install() {
+   emake \
+   LISPDIR="${ED}${SITELISP}" \
+   PIXMAPDIR="${ED}${SITEETC}/wl/icons" \
+   install
+
+   elisp-site-file-install "${FILESDIR}/${SITEFILE}" wl
+
+   insinto "${SITEETC}/wl/samples/en"
+   doins samples/en/*
+   doinfo doc/wl*.info
+   dodoc BUGS ChangeLog INSTALL NEWS README.md
+
+   if use l10n_ja; then
+   insinto "${SITEETC}/wl/samples/ja"
+   doins samples/ja/*
+   dodoc BUGS.ja INSTALL.ja NEWS.ja README.ja
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/mu-cite/

2019-06-24 Thread Ulrich Müller
commit: 86c083c1d4ca4f7770e6e66cf456f89567d71b4e
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 24 10:34:06 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 24 10:37:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86c083c1

app-emacs/mu-cite: New snapshot from upstream.

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/mu-cite/Manifest |  1 +
 app-emacs/mu-cite/mu-cite-8.1_p201808232348.ebuild | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/app-emacs/mu-cite/Manifest b/app-emacs/mu-cite/Manifest
index 5531468d2f7..5a542b12a35 100644
--- a/app-emacs/mu-cite/Manifest
+++ b/app-emacs/mu-cite/Manifest
@@ -1,2 +1,3 @@
 DIST mu-cite-200709030413.tar.gz 19439 BLAKE2B 
279627608af2759ee5fe566c315f8c2be168e0e4a01bc179ae7289f6c990f4a569d59288b02097a3230271ec4c1ba6aefa3db9e46271eb476eb50e912bacc9d0
 SHA512 
aee355abf8d77ca9ce6d5d2f00e5e8d9a1123b82bb15169bbbdf22c9447c37f1d200ffe1cd05abb61f1011c0d9731d3300d0e5bbf6f10ca6155c00a610a46703
 DIST mu-cite-201202272330.tar.gz 19212 BLAKE2B 
d52378258b3804e2867d6f8f6f471a73eebb3ff955df70a2ddc5dfd91d6ada2ea2349d44e86c81e1c314b88787b08b39f40238b22760a74b77f8393361aecdcc
 SHA512 
78013bed020c46baeecf56bcd155eb6058d11b1d61a0af55b075454601e3cd1a992bdad887e125ffd569782a38e4509d60efdc431ded501c35da096133b475b8
+DIST mu-cite-201808232348.tar.gz 20443 BLAKE2B 
814ebbd3ab45af4af65fee54884a1960a0cecccd07e1e0e084e860fcab4884ca0d97f4042f14f530b8ead4ee4347d13dbde9ecc96f5e82121bad44e0b93855ac
 SHA512 
5a30124041ea5a807f5d8ea8a1ef18afcc7020d3f2d2bee4dd163fa1098d37d27b43db81c1b538bf1d1b06720840fb5c3f95d999fddd624437dd251fa061f699

diff --git a/app-emacs/mu-cite/mu-cite-8.1_p201808232348.ebuild 
b/app-emacs/mu-cite/mu-cite-8.1_p201808232348.ebuild
new file mode 100644
index 000..89d2e17bf68
--- /dev/null
+++ b/app-emacs/mu-cite/mu-cite-8.1_p201808232348.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit elisp
+
+MY_P="${PN}-${PV#*_p}"
+DESCRIPTION="Message citation utilities for emacsen"
+HOMEPAGE="http://www.jpl.org/elips/mu/;
+SRC_URI="http://www.jpl.org/elips/mu/snapshots/${MY_P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="app-emacs/apel
+   app-emacs/flim"
+DEPEND="${RDEPEND}"
+
+SITEFILE="50${PN}-gentoo.el"
+DOCS="ChangeLog NEWS README.en"
+
+S="${WORKDIR}/${MY_P}"



[gentoo-commits] repo/gentoo:master commit in: app-emacs/apel/

2019-06-24 Thread Ulrich Müller
commit: 766f5f01ed572a38929fccd9aacd5f53cf1bc0a2
Author: Markus Oehme  jonglieren-jena  de>
AuthorDate: Mon Jun 24 10:00:29 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 24 10:37:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=766f5f01

app-emacs/apel: Version bump.

Bug: https://bugs.gentoo.org/688560
Signed-off-by: Markus Oehme  jonglieren-jena.de>
[ulm  gentoo.org: EAPI 7 bump, minor cleanup]
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/apel/Manifest   |  1 +
 app-emacs/apel/apel-10.8_p20190407.ebuild | 46 +++
 2 files changed, 47 insertions(+)

diff --git a/app-emacs/apel/Manifest b/app-emacs/apel/Manifest
index 4ae2aa39ddc..bab93f88e47 100644
--- a/app-emacs/apel/Manifest
+++ b/app-emacs/apel/Manifest
@@ -1,2 +1,3 @@
 DIST apel-10.8-030_Use-new-style-backquotes.patch.gz 7869 BLAKE2B 
93b93a089693a2fec68033b44f1cf96117fcdcb9dad5dbbf4283a79cd19f358c2a3bdc80ce2f7517e8b396182141583a371c21a8df7db7d05156ffd16987a872
 SHA512 
4074dc612feb2d63637bea2e9303423d4e9e035fad7f440d2da5331a6adc08f5ec61abb5087c2c4c72ec8931d1ccc4db3ffd061bcf3150d20c222c8df2e0b274
 DIST apel-10.8.tar.gz 126326 BLAKE2B 
6fc8f04006a971e9d48dbf5f7b43e201a4f5fa515210bb69829bc3b0f05aba2e9f205915e6117e20220ae5b48a6543520533dc95a90754a30ff3fb8094779901
 SHA512 
39f13f15ec0a078d8f8dfe797899474cf4dfeb0bf7b8432a0c05bb38cf134d805c171a66b3d3efd074fbf294d68006d1e1d49903e45f1991d79cdcb4cca4aa9d
+DIST apel-10.8_p20190407.tar.gz 94808 BLAKE2B 
47540e8c3ce96cc91efefe521942a3df4ee8423c7796d7e66b14bed7e9d662469a0767dd4863ae130fb114a1f9335d95abd13d61b6811e039db75e28679ac0f6
 SHA512 
6c780b0643f248e2a1409f1cea794dc6be515ee2ae766ead0834996bd9c13852492af1b9c343c4efda06fd057fae0c1b8a1ffc6b55b1469afbc7cbf1b579ea68

diff --git a/app-emacs/apel/apel-10.8_p20190407.ebuild 
b/app-emacs/apel/apel-10.8_p20190407.ebuild
new file mode 100644
index 000..6dd02e5f803
--- /dev/null
+++ b/app-emacs/apel/apel-10.8_p20190407.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit elisp
+
+DESCRIPTION="A Portable Emacs Library is a library for making portable Emacs 
Lisp programs"
+HOMEPAGE="https://github.com/wanderlust/apel;
+GITHUB_SHA1="d146ddbf8818e81d3577d5eee7825d377bec0c73"
+SRC_URI="${HOMEPAGE}/archive/${GITHUB_SHA1}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
+
+S="${WORKDIR}/${PN}-${GITHUB_SHA1}"
+
+src_prepare() {
+   elisp_src_prepare
+   cat <<-EOF >>APEL-CFG || die
+   (setq APEL_PREFIX "apel")
+   (setq EMU_PREFIX "apel")
+   EOF
+}
+
+src_compile() {
+   emake PREFIX="${ED}/usr" \
+   LISPDIR="${ED}/${SITELISP}" \
+   VERSION_SPECIFIC_LISPDIR="${ED}/${SITELISP}"
+}
+
+src_install() {
+   emake PREFIX="${ED}/usr" \
+   LISPDIR="${ED}/${SITELISP}" \
+   VERSION_SPECIFIC_LISPDIR="${ED}/${SITELISP}" \
+   install
+   elisp-site-file-install "${FILESDIR}/50apel-gentoo.el"
+   dodoc ChangeLog README*
+}
+
+pkg_postinst() {
+   elisp-site-regen
+   elog "See the README.en file in /usr/share/doc/${PF} for tips"
+   elog "on how to customize this package."
+}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/flim/

2019-06-24 Thread Ulrich Müller
commit: 27bc196626e7532e0fa11cae8c74f7f77a3ec5d1
Author: Markus Oehme  jonglieren-jena  de>
AuthorDate: Mon Jun 24 10:01:07 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 24 10:37:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27bc1966

app-emacs/flim: Version bump.

Bug: https://bugs.gentoo.org/688560
Signed-off-by: Markus Oehme  jonglieren-jena.de>
[ulm  gentoo.org: EAPI 7 bump, minor cleanup]
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/flim/Manifest |  1 +
 app-emacs/flim/flim-1.14.9_p20190526.ebuild | 38 +
 2 files changed, 39 insertions(+)

diff --git a/app-emacs/flim/Manifest b/app-emacs/flim/Manifest
index adcf62df6d1..a6c93d8f7fd 100644
--- a/app-emacs/flim/Manifest
+++ b/app-emacs/flim/Manifest
@@ -1 +1,2 @@
 DIST flim-1.14.9.tar.gz 182065 BLAKE2B 
e15779e93a422bc2c2b82ab5969f2b3d30a31d47b96769abf89bfe7e9aebf74e5f0f0e87270bcc187bdaf3e1af4bdd663c7d6661f1adc9575af0e4ba1dd316f1
 SHA512 
a272a30f27cea24f537b9bf3a6dbb25113deff0ab8e1c03bd802e4d32d673d567d282297ed9e4d35217f069699a1fc25bfdde09778171a188dfa46f49e9bb7dd
+DIST flim-1.14.9_p20190526.tar.gz 173261 BLAKE2B 
f28b0d1474d894fd93d9899fe66bc88d6669cc6bdbb2511dcd0b2f13c05abbe42ad4cc06e2de34664204f3ddbb3cb4f09e232394419892b3fd8e71c1ab3aab75
 SHA512 
8991c460bf9eb411e89edb8fb05088cc09dc354e4c14d7accba26d922b2d1041742e96d8a64407ee8dd2574984c5b3a8fbd66e828c8f8fadc55f8da6428d634e

diff --git a/app-emacs/flim/flim-1.14.9_p20190526.ebuild 
b/app-emacs/flim/flim-1.14.9_p20190526.ebuild
new file mode 100644
index 000..6bdc1e10d71
--- /dev/null
+++ b/app-emacs/flim/flim-1.14.9_p20190526.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit elisp
+
+DESCRIPTION="A library to provide basic features about message representation 
or encoding"
+HOMEPAGE="https://github.com/wanderlust/flim;
+GITHUB_SHA1="e4bd54fd7d335215b54f7ef27ed974c8cd68d472"
+SRC_URI="${HOMEPAGE}/archive/${GITHUB_SHA1}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris"
+
+DEPEND=">=app-emacs/apel-10.8"
+RDEPEND="${DEPEND}
+   !app-emacs/limit"
+
+S="${WORKDIR}/${PN}-${GITHUB_SHA1}"
+SITEFILE="60${PN}-gentoo.el"
+
+src_compile() {
+   emake PREFIX="${ED}/usr" \
+   LISPDIR="${ED}/${SITELISP}" \
+   VERSION_SPECIFIC_LISPDIR="${ED}/${SITELISP}"
+}
+
+src_install() {
+   emake PREFIX="${ED}/usr" \
+   LISPDIR="${ED}/${SITELISP}" \
+   VERSION_SPECIFIC_LISPDIR="${ED}/${SITELISP}" install
+
+   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+
+   dodoc FLIM-API.en NEWS VERSION README* ChangeLog
+}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/mu-cite/

2019-06-24 Thread Ulrich Müller
commit: 98aada7b188717635957e4eda4072298028ebcec
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 24 10:34:47 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 24 10:37:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98aada7b

app-emacs/mu-cite: Remove old.

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/mu-cite/Manifest |  1 -
 app-emacs/mu-cite/mu-cite-8.1_p200709030413.ebuild | 27 --
 2 files changed, 28 deletions(-)

diff --git a/app-emacs/mu-cite/Manifest b/app-emacs/mu-cite/Manifest
index 5a542b12a35..60c7ecd3e7c 100644
--- a/app-emacs/mu-cite/Manifest
+++ b/app-emacs/mu-cite/Manifest
@@ -1,3 +1,2 @@
-DIST mu-cite-200709030413.tar.gz 19439 BLAKE2B 
279627608af2759ee5fe566c315f8c2be168e0e4a01bc179ae7289f6c990f4a569d59288b02097a3230271ec4c1ba6aefa3db9e46271eb476eb50e912bacc9d0
 SHA512 
aee355abf8d77ca9ce6d5d2f00e5e8d9a1123b82bb15169bbbdf22c9447c37f1d200ffe1cd05abb61f1011c0d9731d3300d0e5bbf6f10ca6155c00a610a46703
 DIST mu-cite-201202272330.tar.gz 19212 BLAKE2B 
d52378258b3804e2867d6f8f6f471a73eebb3ff955df70a2ddc5dfd91d6ada2ea2349d44e86c81e1c314b88787b08b39f40238b22760a74b77f8393361aecdcc
 SHA512 
78013bed020c46baeecf56bcd155eb6058d11b1d61a0af55b075454601e3cd1a992bdad887e125ffd569782a38e4509d60efdc431ded501c35da096133b475b8
 DIST mu-cite-201808232348.tar.gz 20443 BLAKE2B 
814ebbd3ab45af4af65fee54884a1960a0cecccd07e1e0e084e860fcab4884ca0d97f4042f14f530b8ead4ee4347d13dbde9ecc96f5e82121bad44e0b93855ac
 SHA512 
5a30124041ea5a807f5d8ea8a1ef18afcc7020d3f2d2bee4dd163fa1098d37d27b43db81c1b538bf1d1b06720840fb5c3f95d999fddd624437dd251fa061f699

diff --git a/app-emacs/mu-cite/mu-cite-8.1_p200709030413.ebuild 
b/app-emacs/mu-cite/mu-cite-8.1_p200709030413.ebuild
deleted file mode 100644
index 63f2fdaec66..000
--- a/app-emacs/mu-cite/mu-cite-8.1_p200709030413.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit elisp
-
-MY_P="${PN}-${PV#*_p}"
-DESCRIPTION="Message citation utilities for emacsen"
-HOMEPAGE="http://www.jpl.org/elips/mu/;
-SRC_URI="http://www.jpl.org/elips/mu/snapshots/${MY_P}.tar.gz;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="app-emacs/apel
-   virtual/emacs-flim"
-
-SITEFILE="50${PN}-gentoo.el"
-DOCS="ChangeLog NEWS README.en"
-
-S="${WORKDIR}/${MY_P}"
-
-src_compile() {
-   emake EMACS=emacs
-}



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

2019-06-24 Thread Michał Górny
commit: 7b548a5195b7eef11bd9ae65a4321952903091df
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun 20 09:53:38 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jun 24 10:29:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b548a51

acct-group/mail: Add 'mail' group (GID 12 on Linux)

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

 acct-group/mail/mail-0.ebuild | 9 +
 acct-group/mail/metadata.xml  | 8 
 2 files changed, 17 insertions(+)

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

diff --git a/acct-group/mail/metadata.xml b/acct-group/mail/metadata.xml
new file mode 100644
index 000..e6f3bf582ab
--- /dev/null
+++ b/acct-group/mail/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+e...@gentoo.org
+Eray Aslan
+  
+



  1   2   >