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

2017-04-01 Thread William Hubbs
commit: 2e7255b6100b5cf2434a297514758f76ff0580f8
Author: William Hubbs  gentoo  org>
AuthorDate: Sat Apr  1 19:55:57 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat Apr  1 19:56:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e7255b6

net-misc/dhcpcd: 7.0.0_beta1 version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.2

 net-misc/dhcpcd/Manifest  |   1 +
 net-misc/dhcpcd/dhcpcd-7.0.0_beta1.ebuild | 148 ++
 2 files changed, 149 insertions(+)

diff --git a/net-misc/dhcpcd/Manifest b/net-misc/dhcpcd/Manifest
index a6403af2bcd..50067d05305 100644
--- a/net-misc/dhcpcd/Manifest
+++ b/net-misc/dhcpcd/Manifest
@@ -2,3 +2,4 @@ DIST dhcpcd-6.10.1.tar.xz 180112 SHA256 
284abf8c3be0580bbac5eaca95359346ab0d78d4
 DIST dhcpcd-6.11.1.tar.xz 190956 SHA256 
5c823d607ed1d7513d16ec51c54e21657f1324899e0ba333a497682d88a8c6ee SHA512 
50ef755b13a96fe484623d9f2dbd91407fbea5ca728fd05dbf4259a61611a07cf3ffad7e8d20ecd513dbef80602074809abd1f5177daaa51ceccc2af5c88269f
 WHIRLPOOL 
a32350beee83184fc9d0dec5cd65f265a83aa95177b8ff700fcce2aaf2ac6c2600c322e3d8c65f1d2e9d3a2cbe71bc00b3a6efbf045fa9c805b76a3a1fca0de5
 DIST dhcpcd-6.11.3.tar.xz 194892 SHA256 
5abd12c4df2947d608f60a35227f9bf8ae8ab9de06ce975cdab1144d8f229b06 SHA512 
249185532cb239124f847c28e6bfb3e8a85e818e05a07eb0c6ac6843fbbab8afa8d6ebce4032b3537ccfb7fafb306dd0dc51c0e97f337f12f5071ba499686a70
 WHIRLPOOL 
66eebad0ceabf07324f41b7c5861b13f233d6cf3fb4f7c82804b6391594595cda8c981cec088aa75242a04614a7228be7400171d32c68ee6be354bf976a237d5
 DIST dhcpcd-6.11.5.tar.xz 198080 SHA256 
6f9674dc7e27e936cc787175404a6171618675ecfb6903ab9887b1b66a87d69e SHA512 
a23d5dde66567c4addbc86c8b3fbf2c5d4dba3b463659729778a310306ab0e949be8998154ef15401ac2d289bde2f090d44492bba6a1becd2f01890d4efe7051
 WHIRLPOOL 
1b4bdd56112db20a0c6b0c843549f7c9cd8c534a9353df026d2c63a4b4bfd624f7fbc68282e04fd4f4c7c257d996e5019d3aa624f01b532074311d63b151164f
+DIST dhcpcd-7.0.0-beta1.tar.xz 200224 SHA256 
5db752d39de8c6c0279a4d017c92721251af8b5eb7c96b0c69c67c2fa98e6917 SHA512 
4852d8353dbfee286f801a348ce4fbd5165438e604438c6bcb9b21eeabdf1d8e2a87678c82085fc40358c6f63b4214beac8ffa3ba963c1759e4e96ec651ebe5d
 WHIRLPOOL 
4cc31d9b237f0ca7fd757b10fe618e7c7eacece60878b76e6d7acc6661638c491953eff6e28c46268455cbcad14a4210363163baf6d29748ca59b751fd626283

diff --git a/net-misc/dhcpcd/dhcpcd-7.0.0_beta1.ebuild 
b/net-misc/dhcpcd/dhcpcd-7.0.0_beta1.ebuild
new file mode 100644
index 000..deffde72be0
--- /dev/null
+++ b/net-misc/dhcpcd/dhcpcd-7.0.0_beta1.ebuild
@@ -0,0 +1,148 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="git://roy.marples.name/dhcpcd"
+   inherit git-r3
+else
+   MY_P="${P/_alpha/-alpha}"
+   MY_P="${MY_P/_beta/-beta}"
+   MY_P="${MY_P/_rc/-rc}"
+   SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+inherit eutils systemd toolchain-funcs
+
+DESCRIPTION="A fully featured, yet light weight RFC2131 compliant DHCP client"
+HOMEPAGE="http://roy.marples.name/projects/dhcpcd/;
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="elibc_glibc +embedded ipv6 kernel_linux +udev"
+
+COMMON_DEPEND="udev? ( virtual/udev )"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}"
+
+src_configure()
+{
+   local dev hooks rundir
+   use udev || dev="--without-dev --without-udev"
+   hooks="--with-hook=ntp.conf"
+   use elibc_glibc && hooks="${hooks} --with-hook=yp.conf"
+   use kernel_linux && rundir="--rundir=${EPREFIX}/run"
+   econf \
+   --prefix="${EPREFIX}" \
+   --libexecdir="${EPREFIX}/lib/dhcpcd" \
+   --dbdir="${EPREFIX}/var/lib/dhcpcd" \
+   --localstatedir="${EPREFIX}/var" \
+   ${rundir} \
+   $(use_enable embedded) \
+   $(use_enable ipv6) \
+   ${dev} \
+   CC="$(tc-getCC)" \
+   ${hooks}
+}
+
+src_install()
+{
+   default
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   systemd_dounit "${FILESDIR}"/${PN}.service
+}
+
+pkg_postinst()
+{
+   local dbdir="${EROOT%/}"/var/lib/dhcpcd old_files=
+
+   local old_old_duid="${EROOT%/}"/var/lib/dhcpcd/dhcpcd.duid
+   local old_duid="${EROOT%/}"/etc/dhcpcd.duid
+   local new_duid="${dbdir}"/duid
+   if [ -e "${old_old_duid}" ]; then
+   # Upgrade the duid file to the new format if needed
+   if ! grep -q '..:..:..:..:..:..' "${old_old_duid}"; then
+   sed -i -e 's/\(..\)/\1:/g; s/:$//g' "${old_old_duid}"
+   fi
+
+   # Move the duid to /etc, a more sensible location
+   if [ ! -e 

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

2017-04-01 Thread Kent Fredric
commit: 778077b9412e4b7701fe59c72da3f5215106ac8d
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Apr  1 22:27:58 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Apr  1 22:28:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=778077b9

dev-perl/Log-Any: Bump to version 1.49.0

Upstream:
- Suppress redundant argument warnings when too many arguments
  are passed to a log formatter
- New default null proxy for when no adapters are configured.
- Logging methods now return formatted string
- Default adapters now configurable with arguments
- Objects with stringification overloads now stringified instead
  of dumped
- Can now specify any name for imported log object
- Syslog adapter added to dist
- Log level aliases now case insensitive
- Invalid log levels now result in warnings

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-perl/Log-Any/Log-Any-1.49.0.ebuild | 32 
 dev-perl/Log-Any/Manifest  |  1 +
 dev-perl/Log-Any/metadata.xml  | 10 ++
 3 files changed, 43 insertions(+)

diff --git a/dev-perl/Log-Any/Log-Any-1.49.0.ebuild 
b/dev-perl/Log-Any/Log-Any-1.49.0.ebuild
new file mode 100644
index 000..bd3a7e79366
--- /dev/null
+++ b/dev-perl/Log-Any/Log-Any-1.49.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=PREACTION
+DIST_VERSION=1.049
+inherit perl-module
+
+DESCRIPTION="Bringing loggers and listeners together"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+IUSE="test minimal"
+
+# Test::Builder needed for Log/Any/Adapter/Test.pm
+# constant -> perl
+RDEPEND="
+   virtual/perl-Carp
+   virtual/perl-Data-Dumper
+   virtual/perl-Exporter
+   virtual/perl-IO
+   virtual/perl-Sys-Syslog
+   virtual/perl-Test-Simple
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   !minimal? ( >=virtual/perl-CPAN-Meta-2.120.900 )
+   virtual/perl-File-Spec
+   )
+"

diff --git a/dev-perl/Log-Any/Manifest b/dev-perl/Log-Any/Manifest
index 863218d591e..65b722f20fc 100644
--- a/dev-perl/Log-Any/Manifest
+++ b/dev-perl/Log-Any/Manifest
@@ -1 +1,2 @@
 DIST Log-Any-1.038.tar.gz 41707 SHA256 
09a07da9b797efa114096e2ea26287d19f22cfae5ac4d135c1be7ab5da94e220 SHA512 
36c8370d3924ee9cc85f2be5fe9d8212e7148b98392df90ef8e5566aedf12050115029434d9d969c1582c43a755fb540268dce73390ea53e8918f2901e25e62e
 WHIRLPOOL 
055df7a42d7424eca9162da656b65c0f37cf16c3c355836aefcaf0357afdf2450f63b500db350a86facae291fa9c00314b5d5681e12a35818713dcbf624282c3
+DIST Log-Any-1.049.tar.gz 44718 SHA256 
0db8f84eaefea734d31fdb3e285188523fe9ce0e8ba0870757231437c6d4f8bf SHA512 
9a6363c7fa8c187deb1c9008411150d3c6a723e17c51cfd957127b2f33246ce680bcea47eae15e856358e643ea8bd8c923a540503b733c421d94f9fdca340f7b
 WHIRLPOOL 
922e946656585e34739d8e01979f8c09c018953de4e37d6e45f6f342dcc13ed9d989d58a3dfd9f0526fcb6b6ca7d88ed3f4ec1257b975db121101a7730c8b6a5

diff --git a/dev-perl/Log-Any/metadata.xml b/dev-perl/Log-Any/metadata.xml
index 5d88b4c19ad..3a4dc30dbda 100644
--- a/dev-perl/Log-Any/metadata.xml
+++ b/dev-perl/Log-Any/metadata.xml
@@ -9,8 +9,18 @@
 Log-Any
 Log::Any
 Log::Any::Adapter
+Log::Any::Adapter::Base
+Log::Any::Adapter::File
 Log::Any::Adapter::Null
+Log::Any::Adapter::Stderr
+Log::Any::Adapter::Stdout
+Log::Any::Adapter::Syslog
 Log::Any::Adapter::Test
+Log::Any::Adapter::Util
+Log::Any::Manager
+Log::Any::Proxy
+Log::Any::Proxy::Null
+Log::Any::Proxy::Test
 Log::Any::Test
   
 



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

2017-04-01 Thread Kent Fredric
commit: be61ad73a22b4a94921289d9bb206a86748028ed
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Apr  1 22:48:20 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Apr  1 22:49:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be61ad73

dev-perl/Net-SSLeay: Bump to version 1.810.0

Upstream:
- Fix RSA_get_key_parameters
- Fix memory leak in X509_get_subjectAltNames
- Fix Makefile.PL without '.' in @INC
- Fix get_my_thread_id to work when ERRSV not defined

Bug: https://bugs.gentoo.org/613750
Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-perl/Net-SSLeay/Manifest  |  1 +
 dev-perl/Net-SSLeay/Net-SSLeay-1.810.0.ebuild | 56 +++
 2 files changed, 57 insertions(+)

diff --git a/dev-perl/Net-SSLeay/Manifest b/dev-perl/Net-SSLeay/Manifest
index e3e2d4491f1..51d68bb1f8e 100644
--- a/dev-perl/Net-SSLeay/Manifest
+++ b/dev-perl/Net-SSLeay/Manifest
@@ -1 +1,2 @@
 DIST Net-SSLeay-1.80.tar.gz 395820 SHA256 
a541a66d59fc5f9bb7af09d3a0b68305e4c43ba9488b12915728fd282ea01b93 SHA512 
03b5f2ba86d20f31ef50029af94b1bcf513c7b99d9666a04e83aba4f7c8cce3e30daf6df85932619949f059177660f49a928488e61b967a12dd4aec41eafad95
 WHIRLPOOL 
8f11141c3caaa1e9d32368183ab9742e8c1bba5efd6702efa9e4142b6f54871f2380cdb6fe3d1aef2b63db388bdf69f3167d592eca935d93af484dd00511b03c
+DIST Net-SSLeay-1.81.tar.gz 396631 SHA256 
00cbb6174e628b42178e1445c9fd5a3c5ae2cfd6a5a43e03610ba14786f21b7d SHA512 
8d4b72ede74ea22cf2ed681a8441f40965331cd5d4442c19677cf5bc7c1e61ed1e50d0f3a4f1b272428485bcc132ec99b0c75344ca43e8a34a9dd15539719f55
 WHIRLPOOL 
125710fcabce6f9ba2515bb04a90513d0f2ab2f57546187044bc7f4f45b0ba354f747674fcebfad41dced608603e8c811bce58a66e104efd90205a4b2102d417

diff --git a/dev-perl/Net-SSLeay/Net-SSLeay-1.810.0.ebuild 
b/dev-perl/Net-SSLeay/Net-SSLeay-1.810.0.ebuild
new file mode 100644
index 000..0078c2f73a6
--- /dev/null
+++ b/dev-perl/Net-SSLeay/Net-SSLeay-1.810.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=MIKEM
+DIST_VERSION=1.81
+DIST_EXAMPLES=("examples/*")
+inherit multilib perl-module
+
+DESCRIPTION="Perl extension for using OpenSSL"
+
+LICENSE="openssl"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="libressl test minimal examples"
+
+RDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   virtual/perl-MIME-Base64
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   !minimal? (
+   dev-perl/Test-Exception
+   dev-perl/Test-Warn
+   dev-perl/Test-NoWarnings
+   )
+   virtual/perl-Test-Simple
+   )
+"
+export OPTIMIZE="$CFLAGS"
+export OPENSSL_PREFIX=${EPREFIX}/usr
+
+src_prepare() {
+   sed -i \
+   -e "/\$opts->{optimize} = '-O2 -g';/d" \
+   -e "s,\"\$prefix/lib\",\"\$prefix/$(get_libdir)\"," \
+   inc/Module/Install/PRIVATE/Net/SSLeay.pm || die
+
+   local my_test_control
+   my_test_control=${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}
+
+   if use test; then
+   perl_rm_files 't/local/01_pod.t' 't/local/02_pod_coverage.t' 
't/local/kwalitee.t'
+   fi
+   if use test && has network ${my_test_control} ; then
+   eapply "${FILESDIR}/1.72-config-nettest-yes.patch"
+   else
+   eapply "${FILESDIR}/1.72-config-nettest-no.patch"
+   fi
+
+   perl-module_src_prepare
+}



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

2017-04-01 Thread Mike Pagano
commit: 050ca7612c86327977bf3784d0525c0c6a1770ea
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Apr  1 23:26:39 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Apr  1 23:26:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=050ca761

sys-kernel/gentoo-sources: Cleanup of 4.9.X kernel due to CVE-2017-7184.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-kernel/gentoo-sources/Manifest | 21 
 .../gentoo-sources/gentoo-sources-4.9.12.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.9.13.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.9.14.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.9.15.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.9.17.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.9.18.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.9.4.ebuild | 28 --
 8 files changed, 217 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 070cb041e49..91f687f78c8 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -89,33 +89,12 @@ DIST genpatches-4.4-61.extras.tar.xz 16460 SHA256 
692c8bd9330244081c90b0a80b7ff5
 DIST genpatches-4.4-62.base.tar.xz 1115956 SHA256 
c32b4d25bd464de9673c83219e98e2bbbc92ea1e671a8ce0c878944b8d70c1d9 SHA512 
e7e0108d8feaa5d1d30e764592cf79ca89a559c9734e2dd2afa62d1160b4ba07889de14e1426d610b1a669fdc1cd2df513f3beffdaebd43deac55a9c26b12689
 WHIRLPOOL 
4be7da6200c627bd0a719a4dbf97fb28346f7e129fbfc1c3856496791234b53c37798cd1956f496c082e1c1752d47255e9c2e9f0a2cebd4ca75572d0637eeece
 DIST genpatches-4.4-62.experimental.tar.xz 87776 SHA256 
d23bdc09f923de10bd7796f7709760c0e18981e147991d75ae1d1792586f3b43 SHA512 
1c60a9bfc6156a468ceb623485e53f898141f33c2c276c33a5f4d839e5e8d4a32034004172b99b37c7626c5c4dd65fc02268fbb01cb13b53a94b6078cad605e8
 WHIRLPOOL 
d05520471ddb61daff0bfc75d9557ed06bab4da68a02921c9ef5e3ca006acf32da689f96ac49dd291c33948a9507d4cdfe38e8a19d1d07b8fbf38b46138e579c
 DIST genpatches-4.4-62.extras.tar.xz 16464 SHA256 
4063554ff9c2bca3f127dba67429dbccfed3e68433fa22114c70599ec3680660 SHA512 
10c8ba0a02fa1d6484f4aff03f2b09ed79acacd99683a2f84f0919ac1785ed78e179f238ac3151447d8543dec3f30bce33e5bd1bd0443858823171b198430b5b
 WHIRLPOOL 
eb9abaacb0e8a0fb67e4ef91e2d4d20f57e6de776e7217329c4b06ac08e777b32a2b433f2a9c0d0bd8cf808fe8f72680fd1f3f05dde7d432be71eed644a1062d
-DIST genpatches-4.9-14.base.tar.xz 299156 SHA256 
a19e22f33b62858d28b2c78a3325f9334bd089bce9d077d6a759aa59a0b1a472 SHA512 
4891b932bf0967e42dc047ca5213c2ece7a4e8347cdb0c176b0dba2063ccab0245d1f3f89ad9e184226a02870526a246cd1f291f20e2e0d4aa79d06b40edaf16
 WHIRLPOOL 
0490f84c21e80a0b80d2c851096e07a31cdd24bc9fc8b29682d84876155ee8c074d7f736d1b5c6f7512e4810d57fca649602e519feb96e325a732b7cb32623db
-DIST genpatches-4.9-14.experimental.tar.xz 105584 SHA256 
a14fb8785a4f245cbcdc12557a4b2487ccb00e39763af17204557fbf81cb19b8 SHA512 
34787219163e2443b558531f5c427463aa1c4e1131bf950bb6afc906af4d8e3c2c57b5361ce7745a8b77f7ba391d76c35cfcc58afa464ea3da0c693cc2058e93
 WHIRLPOOL 
16287aa781e120c95638c4d72c13e4c1d0820323a4e7996e58431e9ee34bca9a8970f0c6ff2a9815227a901b1cd1128562994d43e73779e57a3d5c37febc
-DIST genpatches-4.9-14.extras.tar.xz 17332 SHA256 
2bdf94536e891c377ae1cc0120cb3f420cc84c7b5fe2f8070840d895f7e43ddc SHA512 
53adb516ae85e00a99fcae63e668a268520b74314b626c094cba4044a2c443b4f340238ca03a27624b23d356678739a933d515c8240cc08c2c4db79be090b183
 WHIRLPOOL 
d540140ae6b1edde3f34ebc19e7bba0cb0a05a8b7aed5be3c02f698ac40b6e713b249687f1d467553c859aca7e7e54b3901eeeb22ffedace8e6bd34e04000aec
-DIST genpatches-4.9-15.base.tar.xz 306680 SHA256 
0d21f36e5dada40a98ff345ebc01678d2aee060becc7c5c1df84edec9279af2a SHA512 
2962f30bd055a5afcefe8aca654419da52c61fc8e5ee8a16770020f517467ad13e4d7ba47c0b1b531b0e4be630b4ca2cf78170544d5ac0115db7071cc504278b
 WHIRLPOOL 
77f667264615abd7a7324abf60bcc2177421595130103d1af79a438da907fb2d274048f51e2f5ae66d80b27a8b1ba732c0653fa48d58bfff338c815cef3b68eb
-DIST genpatches-4.9-15.experimental.tar.xz 105620 SHA256 
95e2425fe639048d06d9695c34cc4e74222e29b08fe1e5e4673e746d6f5ad8d4 SHA512 
f708e6247ea3cfdcdcf2e4c80ddf65722ca078a10a545d21172d46ce0e9021e3f6cd382c85aa8bd219d1da1c69de6be21c41d8c2250ad0fda1e21e8ae2964577
 WHIRLPOOL 
8272693cd4e3a95bc731f035c0d2002761d8446f3fe21ae217c9ba83d127f4da4d0b072ca89fe8e7068540b4e55671f5acf288779dbff79542a590505802a64c
-DIST genpatches-4.9-15.extras.tar.xz 17328 SHA256 
7d65754bb7e17d006462d0575a954c48d5ce98ad5ca370cb7f227ba7e711cda0 SHA512 
4b4e61cb350716fe0e111ee81309de985e7a4442e7fce0268b50a8a02bddc63a904fd148dee8f1258c1df393324236cc75f823c4708f10a74863cdaf5c28d56e
 WHIRLPOOL 
849be987dc4a07fc7161ae52e2c996ad6dc4c8395e1559f41df508b6b95b60df00a50a3a252adc17d003a0630a580869d36661bef1dfd3186e7977f5900aa445
-DIST genpatches-4.9-16.base.tar.xz 

[gentoo-commits] repo/gentoo:master commit in: media-libs/gegl/, media-libs/gegl/files/

2017-04-01 Thread Sebastian Pipping
commit: eee0146ce47e305d2310f5139612b388c7be0e72
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Sat Apr  1 22:22:44 2017 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Sat Apr  1 22:24:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eee0146c

media-libs/gegl: 0.3.14

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 media-libs/gegl/Manifest   |   1 +
 .../files/gegl-0.3.14-implicit-declaration.patch   |  37 +
 media-libs/gegl/gegl-0.3.14.ebuild | 180 +
 3 files changed, 218 insertions(+)

diff --git a/media-libs/gegl/Manifest b/media-libs/gegl/Manifest
index e2e4991034c..f0a938a4c56 100644
--- a/media-libs/gegl/Manifest
+++ b/media-libs/gegl/Manifest
@@ -2,5 +2,6 @@ DIST gegl-0.2.0.tar.bz2 7502040 SHA256 
df2e6a0d9499afcbc4f9029c18d9d1e0dd5e8710a
 DIST gegl-0.3.0.tar.bz2 5463571 SHA256 
f0fec8f2e7b8835979d3cf4e38b05d41bb79f68dc80cf899a846484da693bbf7 SHA512 
ff758df4689b0fa8f5e16ebcea32a7fe77bccfef70efc20d10669ce5139a70ec3533e78227fd4798812b31ac1ca5081b9d1d701a7449bf75356f879ece5fadd6
 WHIRLPOOL 
4827d6e40025c36d4ef869b5856f4def1e93cc195757f430cfd2980742ce6b37c79833283d17ec51e93b569a144548aaf7021854b9bcdb241b90049b1321a99b
 DIST gegl-0.3.10.tar.bz2 5905157 SHA256 
26b4d6d0a8edb358ca2fbc097f9f97eec9d74e0ffe42f89fa1aff201728023d9 SHA512 
54df7e0cb26be2f2664eb9373fc2e1dff809df505007c95e72c896f3e2829e2159df7b9701c31b4dc20953a9476de69d603e8d5c1c42078284edfa6cf05dccd7
 WHIRLPOOL 
c307bcb65287489c98e3cae50a57c6215e29eeef315b7d581c3c5239c8156ddd69b30edd83e35549d4c6b840e6ed15a778a5145f939a7a2e20a70d6b64551439
 DIST gegl-0.3.12.tar.bz2 6037107 SHA256 
62eb08d7dd6ac046953a0bf606a71f9d14c9016ffef4ef7273b07b598f14bec7 SHA512 
a8c9d1d21b042d2c848a540f69f58c2224c6617e21a6e25b47eb885a0388242195569a81101242041eba2b7c486dbbc47f516fae8d7ab35f4d67ab5f5c2b0fe4
 WHIRLPOOL 
2f7846f80238d525cf160ad07b5dc96d52f081a35a5ac2455c1c7eab65cd09d9acb048ed361ec99a033f16562ac505943e845a5f4e7e1f363840f7721fd99a93
+DIST gegl-0.3.14.tar.bz2 5985306 SHA256 
09f5e2e6899697641d4660e3e274aed696f5bacc96ba389ac77674ee1156590a SHA512 
8d03bb15433777af3baae20bb987587cef2ae80315116e7e8a3197278c3ca2ff2814aa533ebe2ad4c2cca58a618a8a24b0b6faff0d0ce1194e3d31cfe85beaf9
 WHIRLPOOL 
1be1914cae5760bb2b35fc495c409cb927783f303cff393f0cdc43a875b42b380829cec9c8907d19c1f78cb57bed5d639759f09bb434c48436d1bc59750ab33d
 DIST gegl-0.3.4.tar.bz2 5328192 SHA256 
846290a790854d1e6b7c17a2d6f82ad7cb14c72e240bd3b81b98cc0ceddbc3ec SHA512 
7fe14c1534d61cfc253bce54cc707f93882ad96302068fe672e6cdcb613430e835ee5d39a5398537f845a6d101eed6fd3d1ff7e4204d51bc9ab5a59c9e09d2ec
 WHIRLPOOL 
046af673b5a21a050555fabf5e52532b5de7af289922991f0c15cc39a09d32302a6a98483bd4ff2cee3a37356d0cf0e267c87f524f3b6678eb61fcaab6d6735c
 DIST gegl-0.3.8.tar.bz2 5876259 SHA256 
06ca9e67a59da026eb941b9d323269d7c19a922f1e478acdd3791a0eef8b229b SHA512 
13207e7ab4723be1e31bdba5e30e5725e93c1adc61bad1413502128730391dbe7eb35419d243c8d0a1d8794341a58188790adacbb10d2a8e68db861c18d21bfb
 WHIRLPOOL 
97e3521e2c95e2b370c8a6ac2724b57212ebfbbf3c1eeccc3cfaa4de6b993c56b32ead9e5baa23dcbcb8272f7ec29ce7a2acc3afcc5fcc062d0adc72899293b8

diff --git a/media-libs/gegl/files/gegl-0.3.14-implicit-declaration.patch 
b/media-libs/gegl/files/gegl-0.3.14-implicit-declaration.patch
new file mode 100644
index 000..0a7943aebc1
--- /dev/null
+++ b/media-libs/gegl/files/gegl-0.3.14-implicit-declaration.patch
@@ -0,0 +1,37 @@
+From 72905e2865b4f352da7caa8f722b1db77c07a173 Mon Sep 17 00:00:00 2001
+From: Sebastian Pipping 
+Date: Sun, 2 Apr 2017 00:13:54 +0200
+Subject: [PATCH] Apply upstream fixes for implicit function declaration
+ warnings
+
+Source commits:
+https://git.gnome.org/browse/gegl/commit/tests/simple/test-buffer-sharing.c?id=7cb72e3a9ade11a506e252623bead17635de2047
+https://git.gnome.org/browse/gegl/commit/tests/simple/test-buffer-sharing.c?id=52f01ba49e2246df24a504084863b12794682d37
+---
+ tests/simple/test-buffer-sharing.c | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/tests/simple/test-buffer-sharing.c 
b/tests/simple/test-buffer-sharing.c
+index 94eccda..a52bfa8 100644
+--- a/tests/simple/test-buffer-sharing.c
 b/tests/simple/test-buffer-sharing.c
+@@ -16,6 +16,7 @@
+  */
+ 
+ #include 
++#include 
+ 
+ // in order of progression
+ typedef enum _TestState {
+@@ -164,6 +165,8 @@ on_timeout(gpointer user_data) {
+ return FALSE;
+ }
+ 
++#include 
++
+ static void
+ test_init(TestData *data) {
+ 
+-- 
+2.12.2
+

diff --git a/media-libs/gegl/gegl-0.3.14.ebuild 
b/media-libs/gegl/gegl-0.3.14.ebuild
new file mode 100644
index 000..f9b15ae02a4
--- /dev/null
+++ b/media-libs/gegl/gegl-0.3.14.ebuild
@@ -0,0 +1,180 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+# vala and introspection support is broken, bug #468208
+VALA_USE_DEPEND=vapigen
+
+inherit 

[gentoo-commits] repo/gentoo:master commit in: virtual/linux-sources/

2017-04-01 Thread Anthony G. Basile
commit: eaa30304047c1217bc145f4a5c076e21813b87ed
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Apr  1 22:26:01 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr  1 22:26:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaa30304

virtual/linux-sources: stabilize across all arches

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 virtual/linux-sources/linux-sources-2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/linux-sources/linux-sources-2.ebuild 
b/virtual/linux-sources/linux-sources-2.ebuild
index 71ffaf090aa..6561f9321d1 100644
--- a/virtual/linux-sources/linux-sources-2.ebuild
+++ b/virtual/linux-sources/linux-sources-2.ebuild
@@ -5,7 +5,7 @@ EAPI=5
 
 DESCRIPTION="Virtual for Linux kernel sources"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
 IUSE="firmware"
 
 RDEPEND="|| (



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

2017-04-01 Thread Mike Pagano
commit: fb79e00accf7e6febf32883ec5dcc8e78b64cd84
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Apr  1 23:23:17 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Apr  1 23:23:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb79e00a

sys-kernel/gentoo-sources: Cleanup 4.10.X kernel due to CVE-2017-7184.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-kernel/gentoo-sources/Manifest | 21 
 .../gentoo-sources/gentoo-sources-4.10.0.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.10.1.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.10.2.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.10.3.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.10.4.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.10.5.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.10.6.ebuild| 28 --
 8 files changed, 217 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 4288168bcf2..070cb041e49 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -59,27 +59,6 @@ DIST genpatches-4.1-45.extras.tar.xz 16412 SHA256 
a43862849f1b2f9b7fb47cf54da768
 DIST genpatches-4.1-46.base.tar.xz 1055240 SHA256 
fe0e5a4405bad418e23c0cfde36614daab49d5899a870905181c5bb15e328f03 SHA512 
d892fbace2dac31e0599d146061308cddc08686853ccf75d5df56c149a7a848adcf3f3782baa58415c6e28d6e04ee2a5f7690e601bea9239b05c81b8cbb44153
 WHIRLPOOL 
72d16e4cd82f27c5abf9f49ccafbc4372da504d0a4bf9c6e249f9da80bc79e34f221a936fde6f7f0e2ab0db837673e60c687d9cfed6f937d861d073fe9636fad
 DIST genpatches-4.1-46.experimental.tar.xz 61756 SHA256 
595ac35502757b6d6c381bbc5a7d92bb225ce353c99dbef7e545e3574de5204a SHA512 
0d88d9784a68b2caa1e63bf03e3348db56ca91e6239e3c76f0347ffb61b6082af42a042f0d0cba888a3d7a471c6bd3304aee12a141c8235cca582b49ed99a3e2
 WHIRLPOOL 
a32ccad89299b08e03b5e73c4f9b8f8a9acba0b292fe07430d2f4e506622ce02cf1c84fc0533d6b6c04d07dab88adee438cc460d78bcf4dfd7d0e4af5030
 DIST genpatches-4.1-46.extras.tar.xz 16456 SHA256 
93d5480260772badd18a8bfa34e81f1e2c4f321db7bc869af8e74acbbe95a381 SHA512 
f17a67e1bdb94b73fa64b5fa1626cc5f04e36a53a7314aeaf334a9e1d3c2a1861753a3790e5c62fc725d146df2c5c0dc1330303c96d6943d9c46eb66b3429c9d
 WHIRLPOOL 
98f31bfa914837ba010da7c96ee496e0b244e2e9a38196b08ea70cb9bd1a0d23cf88597cd984fa49cb2fe9e7e8438a1cc9e3d194e69eaefa829a594183be2e2c
-DIST genpatches-4.10-1.base.tar.xz 4456 SHA256 
4ab1b9a81b102744f406600b21bcec8cc4f7ea12d7f2551c3623c1b54ba35f91 SHA512 
7587c3fdcc9554c31ffb2506e2b4d6cf3467638859b01683f85c510c718011d15d298195272fb4c06588be74ce88459896720cbc1f0270c0565f91bdccb9fc9d
 WHIRLPOOL 
eee757d3cd9f5d2793d33e94c381d570da356c6552407996df49a38be9bf968fb93daa2c009ba417020b834a4aecd1f3d0f9fd0f03dc4425eb09e27a49740d7d
-DIST genpatches-4.10-1.experimental.tar.xz 4276 SHA256 
07290c3f1efc42cb269a226664a7d43fe7109b4da1a3ce23b744e60462cbb4b1 SHA512 
55edcf5299e729b7cc56c57c23ab22c1bbc495ca04fbe71f7f841b651203bc9bf9020c99c920d778611d3c8bfa795e2187f0ebd34b6a797bb8a6f82c9c778d6e
 WHIRLPOOL 
fb460da630355daa8350de6bf0ed1c888a1f2ea5805d169203dbddcc81645b8b5fa6d117bcff7ae259f5ec7fda5decc355fdd25a8b8449d4557a8b4caee4d4cb
-DIST genpatches-4.10-1.extras.tar.xz 17328 SHA256 
120d720363b78d18c198cee75e2fde7187e8fdea1ec66b48306452b5839e0484 SHA512 
2a5c257d1e2169f73fbd9cc8bb89dc39a019f92fdb4f0fd649633f0285fdd5e3288acff4749780e3af303f7a75c3acd93a1bf8e8b00d6667f50ccd6b873cf187
 WHIRLPOOL 
8c752fd68cb6b56e402ae8f708668ab4489b2c6da0d240eb7feb20e3e93c84e96b2f080ce4ae536f1a3831078e3e7972e1335a50c8f710066f778c60f150982a
-DIST genpatches-4.10-2.base.tar.xz 11420 SHA256 
21a3562b144e7e1ad80ef846b4793701d0acdd603ece5e9db0945066b2471720 SHA512 
d0682416eac5e60308fa2c6da540beabe4f61e7144096e867b2b45f497b2465076ae14447c4c7e6378c4ba62d8811249c8906505604ca82cf6244a2fe880b00f
 WHIRLPOOL 
50278fbea48138c65897213e9a6b75634245a1febeb39141822737a0a8169497645eb470520183df708c09f5f2d848c407d88fca0c655e0296cc25b5ff66be12
-DIST genpatches-4.10-2.experimental.tar.xz 4276 SHA256 
4c96172e68278d2c364c68868925ffa2596d41f765a794acda7850ab73523ee6 SHA512 
618f128e228e9d035af0b8b08d7c72600796579383834b8ef9a6ed18907bf704cc811d8dd9fda7e1b3590af4fbffdfe4f3e18aba82207cda17f0b8827a6f3375
 WHIRLPOOL 
05cf7b8eb6144a7fddb407d66f59b368c905cf2b75e15e846044a4c7edaf62b0506d365122ac17d23be36eb82ea7d06ea9c96dbb5449bfc8c9cda076ed347889
-DIST genpatches-4.10-2.extras.tar.xz 17328 SHA256 
74092d499a5762fdc5334024b6cabb5ecf1bda47473baf0a930cb80f44ce4832 SHA512 
a79a7339c0c8a1c8871b8ef93bc9089d7e3a54ff5c9f64afaa77d6a512a13b6f0ca6ce6b1b4b878c312e10651469414241c9b96cd267fa8031edf093d5de0012
 WHIRLPOOL 
4684b18aaceea92869ed266a3d8dad10adfd801efdda8eeebe7d711ec6561b8527e86762e86d3883d11bd92c7a313101ad1318b8953f5279ee775c3036f9dfba
-DIST genpatches-4.10-3.base.tar.xz 69616 

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

2017-04-01 Thread Göktürk Yüksek
commit: 02eb0cfb77482f2e936b4e66f621494af35f192e
Author: Espen Henriksen  henriksen  is>
AuthorDate: Fri Dec 30 20:13:25 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Sat Apr  1 20:30:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02eb0cfb

dev-util/wsta: List all crates in SRC_URI

Previously, libraries were fetched in the compile step.
This commit ensures all crates are fetched in the fetch
step by adding them to the SRC_URI.

Gentoo-Bug: https://bugs.gentoo.org/604122

Package-Manager: portage-2.3.0

 dev-util/wsta/Manifest  | 59 ++
 dev-util/wsta/wsta-0.4.1.ebuild | 71 +++--
 dev-util/wsta/wsta-0.5.0.ebuild | 71 +++--
 3 files changed, 183 insertions(+), 18 deletions(-)

diff --git a/dev-util/wsta/Manifest b/dev-util/wsta/Manifest
index 1e56b182cc0..b6a8e172a90 100644
--- a/dev-util/wsta/Manifest
+++ b/dev-util/wsta/Manifest
@@ -1,2 +1,61 @@
+DIST argparse-0.2.1.crate 18969 SHA256 
37bb99f5e39ee8b23b6e227f5b8f024207e8616f44aa4b8c76ecd828011667ef SHA512 
f12aea4ddc0d619d40194f8d3db3c4d952521d1dfad6bc21b5b7cf8db91c30f70c5259bd6a0cf40d521e4d0cbaf3e4d59ae0bd40554772c79a4b200ebcfa73fe
 WHIRLPOOL 
84ea81a44af8490c5aa135d51f026475e276df2d0d90d7d15aa6a5f924bea2b0a70788c8db3533a92c284eeb76d2c84b5d5172380444aaab485b2cdf90434585
+DIST bitflags-0.7.0.crate 10851 SHA256 
aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d SHA512 
fdfe472c26e5486d1a3f1bfe5a27d26678781235c6e14b49bdb75388359cb78841f38d794fc4557548581a80a10b715d8840182c9ca3316049984a6b9f35b3c0
 WHIRLPOOL 
60551486cd6688c78ecd0ac40ca39b1f3d75537dd96ec32e9882e205bfe2062de939a129777d66f8c269c8a71e2f2aa240e015c0b3bfa51adbad478024e296d4
+DIST byteorder-0.5.3.crate 8643 SHA256 
0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855 SHA512 
c6134458bc5b05529cef261c519b1d1e515fde37143690cf365dfb7a65d1fa91f1689bec1d1d04dff7f6417ed1eb2e70aef40c78400d7f1bc90c12eac085496b
 WHIRLPOOL 
94628caf86b15255e65924062665df7ef46f05f09a4ba622cf4c6261881e5cf92968dcbd126464cee0cf1bdc5d1bc9f3a08dfb3e4abf02899b56ecc4ca82cc67
+DIST cfg-if-0.1.0.crate 2758 SHA256 
de1e760d7b6535af4241fca8bd8adf68e2e7edacc6b29f5d399050c5e48cf88c SHA512 
d2f10ae39a7fe712cd9d228e3b5a96448acaeab3b92d1b97229d54e5201237b9434ceecb1f38f1ebc1f678da5cfc33aa46c810f422f68a21aa341666c27572fb
 WHIRLPOOL 
8a57a78a8e4a72c3321cf8ac97c2b50f18eb4ed35b2e3c22ca06b5f8031eadccce015237ac846ce78ecf9414632b75a04b168993439d1469eb928d4d05c843e5
+DIST config-0.1.3.crate 29564 SHA256 
90acbe23921c3b07226a6679befa9e906be58a5c7f9691b2f646e064949f23cc SHA512 
c2acf4ab9976b11bd99d8b3b7c0f8bddcf16b91ff4979aad8db79733b2ea8073f5e96d8333238eb1e2418ce07605311907aed59920b5a578a7efa23fe53ca641
 WHIRLPOOL 
497eb280acfb4ff3bf93bde605b7127bf9b1ef96f9cc7cf58d86622ad18082c1444c9ddb54fd5d2c04e66f26c432d49ed8ed11515b70f0d5f482d6c534c7ab7f
+DIST cookie-0.2.5.crate 12969 SHA256 
0e3d6405328b6edb412158b3b7710e2634e23f3614b9bb1c412df7952489a626 SHA512 
41705087506d3bf7d8de839245eabc032c79c712e6b1fda39afd92b267c0e2aa61013020b8b5a3a679aa779861fa2ef9397b9bbb3c5705ba2585ea02afaf
 WHIRLPOOL 
6124a6c0c2d88ae648f3788158eced4b58b19d38fa23a2c5eb87b2eacb8b66d457b478440e0fb2240bd821ffcfcb374f1d3b573e726914c64823fb186c0d6bbe
+DIST gcc-0.3.32.crate 22953 SHA256 
dcb000abd6df9df4c637f75190297ebe56c1d7e66b56bbf3b4aa7aece15f61a2 SHA512 
56c98b1cda076bdf08e4bb0fc668a88072396fda3750c6e35b2cfa206a371c677ecabcc4e7c7cce0ec343a80d49ce5574a14a56df8eec6a623b33f5d96c0daab
 WHIRLPOOL 
e86e5331c9b2a17698a98f64baf784c7210c1c28abc5a44f79d9a73ab94f85d415303b8503ed84a4ade0494b9e08e2237854b7a157bc81b0fca8fb5cadee35c9
+DIST gcc-0.3.40.crate 25010 SHA256 
872db9e59486ef2b14f8e8c10e9ef02de2bccef6363d7f34835dedb386b3d950 SHA512 
8facf1c0f85642047386ae41f7dad525007ef8a3e898e6f21985200fa564bac54af9c97f2340c094d05b04bb8741352f71583ae8c2186e6abcb2ec8286e5dbe6
 WHIRLPOOL 
0de06c41785288614b4cf084756b214628948f59c32ef163fd114ea30b74114ec8054d8a23c3755e708b6ca11ca937a66cdbcbcecbba890ab57fa5ffe0af54cf
+DIST gdi32-sys-0.2.0.crate 7643 SHA256 
0912515a8ff24ba900422ecda800b52f4016a56251922d397c576bf92c690518 SHA512 
009f51899ecf9c8a6c688c3b087c294482c9d4c09b9c2b7fd5d949ed269bed9dea7ab5ff95ba9524c3402e4299d944205187f99ce0d0300a1646ff021030f19c
 WHIRLPOOL 
f7a8005023ee0cf45af76580acb0960680694a3481c8ee2a6d78278f438fe35a245672854720984c7a1c6b81152bd1f705a78f4c554aced34ad81f882c0305b6
+DIST hpack-0.2.0.crate 26932 SHA256 
3d2da7d3a34cf6406d9d700111b8eafafe9a251de41ae71d8052748259343b58 SHA512 
d77b4329d2bed10fc00b49e5f9228a03c6f95e7bab5fabe02a6f88e3bde8bffed34c2f12c11fbe6283697f473543cdff37dbda10b159185c7a13a47142e168ff
 WHIRLPOOL 
fe723f8dd4e1c909aafebf2685cfb9a1ba8971e75456b5f28467d7d20872eaf4c8211517bcf3f53c74a790d06b51023a720a861a7c47a76f9682b73f6adbeace
+DIST httparse-1.1.2.crate 10028 SHA256 
46534074dbb80b070d60a5cb8ecadd8963a00a438ae1a95268850a7ef73b67ae SHA512 

[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/qmapshack/

2017-04-01 Thread Andrey Grozin
commit: 855a0d9ff8c047b58ca90b1d2a41194c82fad82a
Author: Andrey Grozin  gentoo  org>
AuthorDate: Sat Apr  1 22:22:22 2017 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Sat Apr  1 22:22:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=855a0d9f

sci-geosciences/qmapshack: bump to 1.8.0

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sci-geosciences/qmapshack/Manifest   |  1 +
 sci-geosciences/qmapshack/qmapshack-1.8.0.ebuild | 25 
 2 files changed, 26 insertions(+)

diff --git a/sci-geosciences/qmapshack/Manifest 
b/sci-geosciences/qmapshack/Manifest
index 0c59e454a4f..bfc4a110048 100644
--- a/sci-geosciences/qmapshack/Manifest
+++ b/sci-geosciences/qmapshack/Manifest
@@ -1,3 +1,4 @@
 DIST qmapshack-1.6.1.tar.gz 4538423 SHA256 
e702482ef894ec3fdbc5a932dd220bbb34eef1580b1645a314e9a3fa99956c22 SHA512 
f6437004a79a875bdbfe6567bc1a771c6862ca7f851306ccf3ab044a28c4071eff227b3e5a200a21ec30c65df29e8e7371d32c0b4c8b5cc2799cf224adb892a6
 WHIRLPOOL 
0b180e5265a2a739008f0128947eaf28102dcb5d21041206631654b098d770d0c2e3ff3086289f1370df358747be033d326b93be4d44174e8738adcfa6faa9b4
 DIST qmapshack-1.6.3.tar.gz 5181205 SHA256 
6fa5158bd823e8d43eb8a4e4db35a05720d1fe8d624eb65320b905ae315bd708 SHA512 
6e9efdd35ebf3980011aea0cefdbcc433e4f0d333cbeff72e70880a41bff972cc27f4517e243f4990b5e04112a50af2651d99cb5c1c6e542341db30e5e000133
 WHIRLPOOL 
7fa7e8bbd658f351e5d62ef979a91e291207d1b25a5a94c335051dd93e1f41947dc612eec80c2134e7929edca0becaa0c866e9060e0cbe7c54a856d480acd938
 DIST qmapshack-1.7.1.tar.gz 5201773 SHA256 
5da33e575fec11c1bfe097ab9c89c9d815124436b5ebf736ec0681acbda4a509 SHA512 
406346df4777e06d14f175fc6cd01b653102d5754c3354721d5f86c2fbe3139f384f57241d2990721ceac12d4d546924c36c4e408770ad5c523a73f980bd3c02
 WHIRLPOOL 
75641f622a61b8c8ac1da18503d21cef2ed737ac4f4b522539de7d3df3f729bff6d5f2f20efb81aca9e8cfdd0b095f6a5c6e0ecd295319312e942448fe7dc97d
+DIST qmapshack-1.8.0.tar.gz 7512082 SHA256 
a1a6b543533af280f06afff0f0b1f457d09ef6c702922471a95ec350a99ccf2d SHA512 
9ee2e764368994c71813d48afb55368a2a26f8f4517b2671af2eb457e152b33f2eb756e347625940383b0e8c89814259d9e78133a1bc4544f183c4a424d31a4d
 WHIRLPOOL 
81b1d95d8b36f9bd6809443bbef134c5dc2427995d416fab5ba1324f38427c7c95a8a6c16f5f2cc9290d0a7000447568dc5d985d0b3787676ed9668db9f352a6

diff --git a/sci-geosciences/qmapshack/qmapshack-1.8.0.ebuild 
b/sci-geosciences/qmapshack/qmapshack-1.8.0.ebuild
new file mode 100644
index 000..47bb8e093c9
--- /dev/null
+++ b/sci-geosciences/qmapshack/qmapshack-1.8.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="GPS mapping utility"
+HOMEPAGE="https://bitbucket.org/maproom/qmapshack/wiki/Home;
+SRC_URI="https://bitbucket.org/maproom/${PN}/downloads/${P}.tar.gz;
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+RDEPEND="dev-qt/qtwebkit:5
+   dev-qt/qtscript:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtdbus:5
+   dev-qt/qttest:5
+   dev-qt/qtnetwork:5[ssl]
+   >=sci-geosciences/routino-3.1.1
+   sci-libs/gdal
+   sci-libs/proj"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5"



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

2017-04-01 Thread Patrice Clement
commit: 7d2058adfc56d3667675ed8236654e4240a5dcef
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Apr  1 23:19:31 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr  1 23:20:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d2058ad

dev-java/junit: EAPI 6 bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-java/junit/junit-3.8.2-r2.ebuild | 42 
 1 file changed, 42 insertions(+)

diff --git a/dev-java/junit/junit-3.8.2-r2.ebuild 
b/dev-java/junit/junit-3.8.2-r2.ebuild
new file mode 100644
index 000..7cf51fa048a
--- /dev/null
+++ b/dev-java/junit/junit-3.8.2-r2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+JAVA_PKG_IUSE="doc source"
+
+inherit java-pkg-2 java-pkg-simple
+
+MY_P=${P/-/}
+
+DESCRIPTION="Simple framework to write repeatable tests"
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
+HOMEPAGE="http://www.junit.org/;
+LICENSE="CPL-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+
+DEPEND=">=virtual/jdk-1.6"
+RDEPEND=">=virtual/jre-1.6"
+
+DOCS=( README.html cpl-v10.html )
+
+JAVA_SRC_DIR="${PN}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_unpack() {
+   unpack ${A}
+   cd "${S}" || die
+   unzip src.jar || die
+}
+
+src_prepare() {
+   default
+   java-pkg_clean
+}
+
+src_install() {
+   java-pkg-simple_src_install
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: dev-java/jgoodies-binding/

2017-04-01 Thread Patrice Clement
commit: 29f23519495f314342c87c486dadc94ff55c7a19
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Apr  1 23:31:58 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr  1 23:38:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29f23519

dev-java/jgoodies-binding: EAPI 6 bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-java/jgoodies-binding/Manifest |  1 +
 .../jgoodies-binding-1.1.2-r2.ebuild   | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/dev-java/jgoodies-binding/Manifest 
b/dev-java/jgoodies-binding/Manifest
index cf2bd059a38..a541ffb387c 100644
--- a/dev-java/jgoodies-binding/Manifest
+++ b/dev-java/jgoodies-binding/Manifest
@@ -1 +1,2 @@
 DIST binding-1_1_2.zip 1265099 SHA256 
dcefcf854c9cfad7281ba86f767191ab657a0e34afe83075c96925fb44cf2958 SHA512 
2373a21f7866173a634adf34c089895ff69022ce24af3a0a9225dc312d659c910df387d26ccd94f3f9f2b79edf5a40a9c101e9040a36f0cf96228cfcf5b7
 WHIRLPOOL 
9660c62af445d28632c31a2fc0d7266d98dcecb9080d63d2bbefc750d7501468dc8759c887c3019371595267af7b955717c6d13e2bce118be1c2c6358e1d
+DIST jgoodies-binding-1.1.2.zip 1265099 SHA256 
dcefcf854c9cfad7281ba86f767191ab657a0e34afe83075c96925fb44cf2958 SHA512 
2373a21f7866173a634adf34c089895ff69022ce24af3a0a9225dc312d659c910df387d26ccd94f3f9f2b79edf5a40a9c101e9040a36f0cf96228cfcf5b7
 WHIRLPOOL 
9660c62af445d28632c31a2fc0d7266d98dcecb9080d63d2bbefc750d7501468dc8759c887c3019371595267af7b955717c6d13e2bce118be1c2c6358e1d

diff --git a/dev-java/jgoodies-binding/jgoodies-binding-1.1.2-r2.ebuild 
b/dev-java/jgoodies-binding/jgoodies-binding-1.1.2-r2.ebuild
new file mode 100644
index 000..c135a628f18
--- /dev/null
+++ b/dev-java/jgoodies-binding/jgoodies-binding-1.1.2-r2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+JAVA_PKG_IUSE="doc examples source"
+
+inherit java-pkg-2 java-pkg-simple
+
+MY_V=${PV//./_}
+
+DESCRIPTION="Bind object properties with UI components"
+HOMEPAGE="http://www.jgoodies.com/;
+SRC_URI="mirror://gentoo/binding-${MY_V}.zip -> ${P}.zip"
+
+LICENSE="BSD"
+SLOT="1.0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND=">=virtual/jdk-1.6"
+RDEPEND=">=virtual/jre-1.6"
+
+DOCS=( RELEASE-NOTES.txt README.html )
+
+S="${WORKDIR}/binding-${PV}"
+
+JAVA_SRC_DIR="src/core"
+
+src_prepare() {
+   default
+   java-pkg_clean
+}
+
+src_install() {
+   java-pkg-simple_src_install
+   use examples && java-pkg_doexamples \
+   src/core \
+   src/tutorial
+   einstalldocs
+}



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

2017-04-01 Thread Kent Fredric
commit: 10ade24e40640054843ef6a333d3cc07f4788305
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Apr  1 20:20:51 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Apr  1 20:20:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10ade24e

dev-perl/Gearman: Bump to version 2.3.2

Upstream:
- Fix tests for '.' in @INC
- Disable GEARMAN_WORKER_USE_STDIO testing witout AUTHOR_TESTING

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-perl/Gearman/Gearman-2.3.2.ebuild | 43 +++
 dev-perl/Gearman/Manifest |  1 +
 2 files changed, 44 insertions(+)

diff --git a/dev-perl/Gearman/Gearman-2.3.2.ebuild 
b/dev-perl/Gearman/Gearman-2.3.2.ebuild
new file mode 100644
index 000..f8a56b48d6d
--- /dev/null
+++ b/dev-perl/Gearman/Gearman-2.3.2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=PALIK
+DIST_VERSION=2.003.002
+inherit perl-module
+
+DESCRIPTION="Gearman distributed job system, client and worker libraries"
+
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="test"
+
+RDEPEND="
+   virtual/perl-Carp
+   virtual/perl-IO
+   virtual/perl-IO-Socket-IP
+   dev-perl/IO-Socket-SSL
+   dev-perl/List-MoreUtils
+   virtual/perl-Scalar-List-Utils
+   virtual/perl-Socket
+   virtual/perl-Storable
+   dev-perl/String-CRC32
+   virtual/perl-Time-HiRes
+   >=virtual/perl-version-0.770.0
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   dev-perl/File-Which
+   virtual/perl-Perl-OSType
+   >=dev-perl/Proc-Guard-0.70.0
+   dev-perl/Test-Differences
+   dev-perl/Test-Exception
+   virtual/perl-Test-Simple
+   >=dev-perl/Test-TCP-2.170.0
+   dev-perl/Test-Timer
+   )
+"
+
+mydoc="CHANGES HACKING TODO"

diff --git a/dev-perl/Gearman/Manifest b/dev-perl/Gearman/Manifest
index d2d088a0c31..79e8e0d64c1 100644
--- a/dev-perl/Gearman/Manifest
+++ b/dev-perl/Gearman/Manifest
@@ -1,3 +1,4 @@
 DIST Gearman-1.12.tar.gz 29938 SHA256 
dbfedf1b6d09f50d1e62393ef0408c8353f9aab105154b702c972d230ea02e73 SHA512 
2c7dbf934bb56abfc58cde5f62593e10ab11bccd2e047a21a46e344304147bfb7d5f6e7d067caf34b4a65e5d29983f2975345a46c95b22383ab1d1c4c04c77ac
 WHIRLPOOL 
5dfe414919f14a8a5938e30c23ba0558676839376b3f3c8d067e53a89e129d1e380fbf394bc5d8f176c82bd04a96d72a421c83a3f4eec99b01fd56ef37e5aa5b
 DIST Gearman-2.002.004.tar.gz 42296 SHA256 
ba40b9a79f106c2dd3039153c4ca22c783840a222b4864072cbd3b5cc60edeff SHA512 
aac12fa725177a0aa7e78c0a31930c2fa644386396eb46f140c757636e9d078e9f04299b66dcfb684c273df0d5e8a20a0a0bdc944ed1e6b6b127e0a8a114bdbb
 WHIRLPOOL 
332669fbb2e7008fda8d16a1ac3b583dd5721e6de56174f4ded5435a7c415bbd45be481e0440eea908c5524b803a1c1c2cfdb4c7300d0e808129a03b14a38318
 DIST Gearman-2.003.001.tar.gz 45811 SHA256 
a90898ff8fddd046844fcbca4df8497678cbe8e4fa43076421148203eda499be SHA512 
6787add0062fe97e1c493f56ff404e78951e3d90cd70aeda42687c5c4172cf8ebb66e882aa8ae950b363b26fa235c34e32271a7b8cdee3524b19a8b713cd5db3
 WHIRLPOOL 
3a28830b623b6a8c1711c71f1759147c1180db6c17624676852333e3feb1c1cf38e3c4e560dcb1e3197c075507a2525a5d1f04cf8f58abfa6bcd42856eb2e47f
+DIST Gearman-2.003.002.tar.gz 45859 SHA256 
4353b9210e711349a97c4c13c0130585fd4289a6927c2f90b41f6522ffa11108 SHA512 
8314d863b5c6643761f9add16f2b3bcde6091c3596fa34d521506e4961f96fc2a4bce0613154c48f88edd21432e4d63a9617e9013a53a5e71ba69bc141ec235e
 WHIRLPOOL 
9ac6d3367df9e412417ba806db83d7687b4b05e51c8ff192d66ba20b1831dc149feb739dd0b1c41373957877a3ee29a7452892319f56174d082e9e6f33bde273



[gentoo-commits] proj/genkernel:master commit in: arch/ppc/, arch/sparc64/, arch/sparc/, arch/ppc64/, arch/x86/, arch/arm/, ...

2017-04-01 Thread Robin H. Johnson
commit: 897b702af18baf02d6320ef4a345ca60f6d2bf6b
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sat Apr  1 21:53:02 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Apr  1 21:53:02 2017 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=897b702a

modules_load: add qemu_fw_cfg on supported hardware.

Signed-off-by: Robin H. Johnson  gentoo.org>

 arch/arm/modules_load | 2 +-
 arch/ppc/modules_load | 2 +-
 arch/ppc64/modules_load   | 2 +-
 arch/sparc/modules_load   | 2 +-
 arch/sparc64/modules_load | 2 +-
 arch/x86/modules_load | 2 +-
 arch/x86_64/modules_load  | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/arch/arm/modules_load b/arch/arm/modules_load
index 9b06eb0..654142b 100644
--- a/arch/arm/modules_load
+++ b/arch/arm/modules_load
@@ -26,5 +26,5 @@ MODULES_PCMCIA="pcmcia pcmcia_core yenta_socket pd6729 i82092 
i82365 tcic ds ide
 MODULES_USB="ehci-pci ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd 
xhci-hcd xhci-pci xhci-plat usbhid hid-generic sl811-hcd hid-a4tech hid-apple 
hid-belkin hid-cherry hid-chicony hid-cypress hid-dummy hid-ezkey hid-gyration 
hid-logitech hid-logitech-dj hid-microsoft hid-monterey hid-petalynx hid-pl 
hid-samsung hid-sony hid-sunplus"
 
 # Filesystems
-MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs fuse"
+MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs fuse qemu_fw_cfg"
 

diff --git a/arch/ppc/modules_load b/arch/ppc/modules_load
index 9b06eb0..654142b 100644
--- a/arch/ppc/modules_load
+++ b/arch/ppc/modules_load
@@ -26,5 +26,5 @@ MODULES_PCMCIA="pcmcia pcmcia_core yenta_socket pd6729 i82092 
i82365 tcic ds ide
 MODULES_USB="ehci-pci ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd 
xhci-hcd xhci-pci xhci-plat usbhid hid-generic sl811-hcd hid-a4tech hid-apple 
hid-belkin hid-cherry hid-chicony hid-cypress hid-dummy hid-ezkey hid-gyration 
hid-logitech hid-logitech-dj hid-microsoft hid-monterey hid-petalynx hid-pl 
hid-samsung hid-sony hid-sunplus"
 
 # Filesystems
-MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs fuse"
+MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs fuse qemu_fw_cfg"
 

diff --git a/arch/ppc64/modules_load b/arch/ppc64/modules_load
index e61445f..6d81079 100644
--- a/arch/ppc64/modules_load
+++ b/arch/ppc64/modules_load
@@ -26,4 +26,4 @@ MODULES_PCMCIA="pcmcia pcmcia_core yenta_socket pd6729 i82092 
i82365 tcic ds ide
 MODULES_USB="ehci-pci ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd 
xhci-hcd xhci-pci xhci-plat usbhid hid-generic sl811-hcd hid-a4tech hid-apple 
hid-belkin hid-cherry hid-chicony hid-cypress hid-dummy hid-ezkey hid-gyration 
hid-logitech hid-logitech-dj hid-microsoft hid-monterey hid-petalynx hid-pl 
hid-samsung hid-sony hid-sunplus"
 
 # Filesystems
-MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs fuse"
+MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs fuse qemu_fw_cfg"

diff --git a/arch/sparc/modules_load b/arch/sparc/modules_load
index 9b06eb0..654142b 100644
--- a/arch/sparc/modules_load
+++ b/arch/sparc/modules_load
@@ -26,5 +26,5 @@ MODULES_PCMCIA="pcmcia pcmcia_core yenta_socket pd6729 i82092 
i82365 tcic ds ide
 MODULES_USB="ehci-pci ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd 
xhci-hcd xhci-pci xhci-plat usbhid hid-generic sl811-hcd hid-a4tech hid-apple 
hid-belkin hid-cherry hid-chicony hid-cypress hid-dummy hid-ezkey hid-gyration 
hid-logitech hid-logitech-dj hid-microsoft hid-monterey hid-petalynx hid-pl 
hid-samsung hid-sony hid-sunplus"
 
 # Filesystems
-MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs fuse"
+MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs fuse qemu_fw_cfg"
 

diff --git a/arch/sparc64/modules_load b/arch/sparc64/modules_load
index e61445f..6d81079 100644
--- a/arch/sparc64/modules_load
+++ b/arch/sparc64/modules_load
@@ -26,4 +26,4 @@ MODULES_PCMCIA="pcmcia pcmcia_core yenta_socket pd6729 i82092 
i82365 tcic ds ide
 MODULES_USB="ehci-pci ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd 
xhci-hcd xhci-pci xhci-plat usbhid hid-generic sl811-hcd hid-a4tech hid-apple 
hid-belkin hid-cherry hid-chicony hid-cypress hid-dummy hid-ezkey hid-gyration 
hid-logitech hid-logitech-dj hid-microsoft hid-monterey hid-petalynx hid-pl 
hid-samsung hid-sony hid-sunplus"
 
 # Filesystems
-MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs fuse"
+MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs fuse qemu_fw_cfg"

diff --git a/arch/x86/modules_load b/arch/x86/modules_load
index 135db2d..0df1cb2 100644
--- a/arch/x86/modules_load
+++ b/arch/x86/modules_load
@@ -27,7 +27,7 @@ MODULES_PCMCIA="pcmcia pcmcia_core yenta_socket pd6729 i82092 
i82365 tcic ds ide
 MODULES_USB="ehci-pci ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd 
xhci-hcd xhci-pci xhci-plat usbhid hid-generic sl811-hcd hid-a4tech hid-apple 
hid-belkin hid-cherry hid-chicony hid-cypress hid-dummy hid-ezkey hid-gyration 

[gentoo-commits] proj/genkernel:master commit in: /

2017-04-01 Thread Robin H. Johnson
commit: 5d40e362d527ed9e5c91921c3dcef625cd266876
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sat Apr  1 21:39:35 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Apr  1 21:39:35 2017 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=5d40e362

gen_configkernel: enable QEMU fw_cfg device support for virtualized kernels.

Signed-off-by: Robin H. Johnson  gentoo.org>

 gen_configkernel.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gen_configkernel.sh b/gen_configkernel.sh
index fb0532e..0ca6a11 100755
--- a/gen_configkernel.sh
+++ b/gen_configkernel.sh
@@ -217,6 +217,8 @@ config_kernel() {
CONFIG_PARAVIRT_GUEST \
CONFIG_SCSI_VIRTIO \
CONFIG_VHOST_NET \
+   \
+   CONFIG_FW_CFG_SYSFS \
; do
cfg___virtio_opt=$(kconfig_get_opt 
"${KERNEL_OUTPUTDIR}/.config" "$k")
case "$cfg___virtio_opt" in



[gentoo-commits] repo/gentoo:master commit in: dev-perl/List-MoreUtils-XS/

2017-04-01 Thread Kent Fredric
commit: d81832e0e855992c4101a7d6a0e520231a670d28
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Apr  1 21:47:27 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Apr  1 21:53:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d81832e0

dev-perl/List-MoreUtils-XS: Add w/ version 0.418.0

Split out from dev-perl/List-MoreUtils

Keywords copied from there as its the same codebase
originally upstream.

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 .../List-MoreUtils-XS-0.418.0.ebuild   | 31 ++
 dev-perl/List-MoreUtils-XS/Manifest|  1 +
 dev-perl/List-MoreUtils-XS/metadata.xml| 12 +
 3 files changed, 44 insertions(+)

diff --git a/dev-perl/List-MoreUtils-XS/List-MoreUtils-XS-0.418.0.ebuild 
b/dev-perl/List-MoreUtils-XS/List-MoreUtils-XS-0.418.0.ebuild
new file mode 100644
index 000..78e950e5b3e
--- /dev/null
+++ b/dev-perl/List-MoreUtils-XS/List-MoreUtils-XS-0.418.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=REHSACK
+DIST_VERSION=0.418
+inherit perl-module
+
+DESCRIPTION="Compiled List::MoreUtils functions"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+IUSE="test"
+# See XS.pm/LICENSE
+LICENSE="Apache-2.0 || ( Artistic GPL-1+ )"
+
+RDEPEND="
+   !=virtual/perl-XSLoader-0.220.0
+"
+DEPEND="${RDEPEND}
+   virtual/perl-Carp
+   virtual/perl-ExtUtils-MakeMaker
+   virtual/perl-File-Path
+   virtual/perl-File-Spec
+   virtual/perl-IPC-Cmd
+   test? (
+   >=dev-perl/List-MoreUtils-0.417.1
+   >=virtual/perl-Test-Simple-0.960.0
+   )
+"

diff --git a/dev-perl/List-MoreUtils-XS/Manifest 
b/dev-perl/List-MoreUtils-XS/Manifest
new file mode 100644
index 000..614e5163472
--- /dev/null
+++ b/dev-perl/List-MoreUtils-XS/Manifest
@@ -0,0 +1 @@
+DIST List-MoreUtils-XS-0.418.tar.gz 129838 SHA256 
0aa41a90337bb1ec48db50e5c73875b960685ff4dd49c26ed39dea0d52752d4f SHA512 
1f6b9adfe641afe45ee3bb9d6df8f81d20916cff860c4955200026302da82799939d309dd2412af10ad1874e4e0528a63e8852e543a667942f1c582cb522b4b1
 WHIRLPOOL 
7842b37186257c325d32420d31098ffb3263e47b982185d287676e8654f66ca71f5e7119c349c625561e395708892802cfda4e5fb07a10d3201e1e3b4eaaee89

diff --git a/dev-perl/List-MoreUtils-XS/metadata.xml 
b/dev-perl/List-MoreUtils-XS/metadata.xml
new file mode 100644
index 000..02e2197d621
--- /dev/null
+++ b/dev-perl/List-MoreUtils-XS/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+List-MoreUtils-XS
+List::MoreUtils::XS
+  
+



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

2017-04-01 Thread Kent Fredric
commit: f2f9f186bd8f90809fef9c83594ffcc7d3ec4c36
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Apr  1 21:53:23 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Apr  1 21:53:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2f9f186

dev-perl/List-MoreUtils: Bump to version 0.418.0

- EAPI6
- Update LICENSE
- Add USE="xs"

Upstream:
- XS bits forked out to List-MoreUtils-XS
- License now Apache-2 as well

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 .../List-MoreUtils/List-MoreUtils-0.418.0.ebuild   | 23 ++
 dev-perl/List-MoreUtils/Manifest   |  1 +
 dev-perl/List-MoreUtils/metadata.xml   |  4 
 3 files changed, 28 insertions(+)

diff --git a/dev-perl/List-MoreUtils/List-MoreUtils-0.418.0.ebuild 
b/dev-perl/List-MoreUtils/List-MoreUtils-0.418.0.ebuild
new file mode 100644
index 000..1bd85f3880c
--- /dev/null
+++ b/dev-perl/List-MoreUtils/List-MoreUtils-0.418.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=REHSACK
+DIST_VERSION=0.418
+inherit perl-module
+
+DESCRIPTION="Provide the missing functionality from List::Util"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+IUSE="test +xs"
+# See MoreUtils.pm/LICENSE
+LICENSE="Apache-2.0 || ( Artistic GPL-1+ )"
+
+PDEPEND="xs? ( dev-perl/List-MoreUtils-XS )"
+RDEPEND=">=dev-perl/Exporter-Tiny-0.38.0"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? ( >=virtual/perl-Test-Simple-0.960.0 )
+"

diff --git a/dev-perl/List-MoreUtils/Manifest b/dev-perl/List-MoreUtils/Manifest
index 9528c0e1e5b..13258c4c21f 100644
--- a/dev-perl/List-MoreUtils/Manifest
+++ b/dev-perl/List-MoreUtils/Manifest
@@ -1 +1,2 @@
 DIST List-MoreUtils-0.413.tar.gz 131313 SHA256 
4d6429d5672ce74a59d6490320252cb8b5b8285db8fe9c6551a4162e5375ef37 SHA512 
178c08995d2eddd75054b29cd68adb77617e92b7e56ac56a890eb7b8e04a1f8eda09f2208288d61352db563bff7da0accf58f7482906a51e03b38465ea655d17
 WHIRLPOOL 
843a54dc44e6698ced55e2737dc42c14327af5e76d25899e617cbec6fccceb4ddcf8ca424e641fa32be60b6b1878191ad3446c1f8477c7c751559799b3d871bc
+DIST List-MoreUtils-0.418.tar.gz 55111 SHA256 
365651edea4e0c806576e4dcfc3dfb98bb4cbb343bc5c3e04cdc7b5b71ed4988 SHA512 
7ba4395262c4406e822baf40e5a32aa6d93779a56d2567c4920f085ab2580c376db41e2141e4b9b43860d65122ebe73a03dfb0ed76a32f087b05ca7eb90f6d6e
 WHIRLPOOL 
ed63b850aebc353fda7ba9a8b24b1e50527d56b0c672c16cbc534cd90c9fe452a055b05f256d3e05c2d66be3752b1ab20580815d473c0231bfbea55d34c55c40

diff --git a/dev-perl/List-MoreUtils/metadata.xml 
b/dev-perl/List-MoreUtils/metadata.xml
index 0df48e19049..4fa641e66c8 100644
--- a/dev-perl/List-MoreUtils/metadata.xml
+++ b/dev-perl/List-MoreUtils/metadata.xml
@@ -5,8 +5,12 @@
 p...@gentoo.org
 Gentoo Perl Project
   
+  
+Install C-Based backend implementation for 
performance
+  
   
 List-MoreUtils
 List::MoreUtils
+List::MoreUtils::PP
   
 



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

2017-04-01 Thread Kent Fredric
commit: e41cb79da7eb9ee50a4efcf3406a7eddf8ac9ab2
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Apr  1 21:15:01 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Apr  1 21:53:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e41cb79d

virtual/perl-XSLoader: Bump to 0.220.0

Managed to somehow overlook this in corelist updates.

5.24.0 -> 5.24.1  did 0.21 -> 0.22

So this has to increment its own version, and reduce
its perl availability as well.

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 .../{perl-XSLoader-0.210.0-r1.ebuild => perl-XSLoader-0.220.0.ebuild}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/perl-XSLoader/perl-XSLoader-0.210.0-r1.ebuild 
b/virtual/perl-XSLoader/perl-XSLoader-0.220.0.ebuild
similarity index 89%
rename from virtual/perl-XSLoader/perl-XSLoader-0.210.0-r1.ebuild
rename to virtual/perl-XSLoader/perl-XSLoader-0.220.0.ebuild
index 0a6fcf4f9d8..803ec3a55b0 100644
--- a/virtual/perl-XSLoader/perl-XSLoader-0.210.0-r1.ebuild
+++ b/virtual/perl-XSLoader/perl-XSLoader-0.220.0.ebuild
@@ -8,7 +8,7 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
-   || ( =dev-lang/perl-5.24* ~perl-core/${PN#perl-}-${PV} )
+   || ( =dev-lang/perl-5.24.1* ~perl-core/${PN#perl-}-${PV} )
dev-lang/perl:=
!perl-core/${PN#perl-}-${PV}-r999



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

2017-04-01 Thread Anthony G. Basile
commit: 40ac9c55aaab3487241bf71f5e141c9086a3b04b
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Apr  1 22:23:29 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr  1 22:23:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40ac9c55

dev-util/valgrind: stable on amd64, ppc and ppc64.  bug #604808.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

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

diff --git a/dev-util/valgrind/valgrind-3.12.0.ebuild 
b/dev-util/valgrind/valgrind-3.12.0.ebuild
index 6afaad873e0..8eec00fdaa5 100644
--- a/dev-util/valgrind/valgrind-3.12.0.ebuild
+++ b/dev-util/valgrind/valgrind-3.12.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -10,7 +10,7 @@ SRC_URI="http://www.valgrind.org/downloads/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
+KEYWORDS="-* amd64 ~arm ppc ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
 IUSE="mpi"
 
 DEPEND="mpi? ( virtual/mpi )"



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

2017-04-01 Thread Andreas Sturmlechner
commit: ab40e6daaed487ad5f2796d2251b5cdcf37d3788
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Apr  1 22:37:00 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Apr  1 22:42:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab40e6da

media-libs/glew: Drop unused eclass

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-libs/glew/glew-2.0.0.ebuild | 12 
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/media-libs/glew/glew-2.0.0.ebuild 
b/media-libs/glew/glew-2.0.0.ebuild
index 85b85f450f1..173817c6fa2 100644
--- a/media-libs/glew/glew-2.0.0.ebuild
+++ b/media-libs/glew/glew-2.0.0.ebuild
@@ -2,7 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit multilib multilib-minimal toolchain-funcs versionator
+
+inherit multilib-minimal toolchain-funcs versionator
 
 DESCRIPTION="The OpenGL Extension Wrangler Library"
 HOMEPAGE="http://glew.sourceforge.net/;
@@ -13,14 +14,17 @@ SLOT="0/$(get_version_component_range 1-2)"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs"
 
-RDEPEND=">=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
+DEPEND="
+   >=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
>=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
>=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
>=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
>=x11-libs/libXi-1.7.2[${MULTILIB_USEDEP}]
>=x11-libs/libXmu-1.1.1-r1[${MULTILIB_USEDEP}]
-   abi_x86_32? ( !app-emulation/emul-linux-x86-opengl[-abi_x86_32(-)] )"
-DEPEND="${RDEPEND}"
+"
+RDEPEND="${DEPEND}
+   abi_x86_32? ( !app-emulation/emul-linux-x86-opengl[-abi_x86_32(-)] )
+"
 
 src_prepare() {
local PATCHES=( "${FILESDIR}"/${P}-install-headers.patch )



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/routino/, sci-geosciences/routino/files/

2017-04-01 Thread Andrey Grozin
commit: e80a1974963f3c3633ab857fb5e4e75cb83bc803
Author: Andrey Grozin  gentoo  org>
AuthorDate: Sat Apr  1 22:16:35 2017 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Sat Apr  1 22:16:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e80a1974

sci-geosciences/routino: bump to 3.2

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sci-geosciences/routino/Manifest|  1 +
 sci-geosciences/routino/files/routino-3.2.patch | 30 +
 sci-geosciences/routino/routino-3.2.ebuild  | 23 +++
 3 files changed, 54 insertions(+)

diff --git a/sci-geosciences/routino/Manifest b/sci-geosciences/routino/Manifest
index 85ab15fb76c..1ba4e62bd8b 100644
--- a/sci-geosciences/routino/Manifest
+++ b/sci-geosciences/routino/Manifest
@@ -1 +1,2 @@
 DIST routino-3.1.1.tgz 1795118 SHA256 
23b9fce43f0a85c9efe220c6c72026dd7b37f6a4a5153bb9dc4c4b0747c7f282 SHA512 
088f22e9297f485418ed369d00827690f86e224e331b69085513339870fe6d97cffef62aa5e7e14883800469beff4af4b0a581ba8bad78920a383d7152be6ede
 WHIRLPOOL 
914180a728120ba189ff9bc2bf51c64246f635f7cc2e6b6efecf4dbb2c76f9b61f6269225620b5a5204025c838a6fcd8ffc24953a8cf24c084edbbdfb24a6b58
+DIST routino-3.2.tgz 2463662 SHA256 
e2a431eaffbafab630835966d342e4ae25d5edb94c8ed419200e1ffb50bc7552 SHA512 
f5be46d9c026fcd92658490630d9ff6e4827e84ee57ccbaae48f54372da37ab78de24432ab9fa1d6860304a9a2ac86061eb876c12b39e821693282c4d4aaefcf
 WHIRLPOOL 
c30ea87987e60d5ef57591bcba8190ece3cc8acfba2cb62035785238119c0d84db65e9f53a2935d8cd2bb0c3d37cd9b8970e9c6ba897b0874f847db31f0858ee

diff --git a/sci-geosciences/routino/files/routino-3.2.patch 
b/sci-geosciences/routino/files/routino-3.2.patch
new file mode 100644
index 000..484b61b68f1
--- /dev/null
+++ b/sci-geosciences/routino/files/routino-3.2.patch
@@ -0,0 +1,30 @@
+diff -r -U1 routino-3.2.orig/Makefile.conf routino-3.2/Makefile.conf
+--- routino-3.2.orig/Makefile.conf 2016-11-22 20:22:52.0 +0100
 routino-3.2/Makefile.conf  2017-04-01 23:58:23.835905270 +0200
+@@ -47,3 +47,3 @@
+ ifneq ($(HOST),MINGW)
+-prefix=/usr/local
++prefix=/usr
+ bindir=$(prefix)/bin
+@@ -51,3 +51,3 @@
+ libdir=$(prefix)/lib
+-docdir=$(prefix)/doc/routino
++docdir=$(prefix)/share/doc/$(PF)
+ datadir=$(prefix)/share/routino
+@@ -79,3 +79,3 @@
+ # Language dialect selection
+-CFLAGS=-std=c99
++CFLAGS+=-std=c99
+ 
+@@ -85,3 +85,3 @@
+ # Optimisation options
+-CFLAGS+=-O3
++#CFLAGS+=-O3
+ CFLAGS+=-ffast-math
+@@ -141,4 +141,4 @@
+ # Required for xz support (uncomment these two lines if required)
+-#CFLAGS+=-DUSE_XZ
+-#LDFLAGS+=-llzma
++CFLAGS+=-DUSE_XZ
++LDFLAGS+=-llzma
+ 

diff --git a/sci-geosciences/routino/routino-3.2.ebuild 
b/sci-geosciences/routino/routino-3.2.ebuild
new file mode 100644
index 000..cb1ceff2cd3
--- /dev/null
+++ b/sci-geosciences/routino/routino-3.2.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+EAPI=6
+
+DESCRIPTION="Routing application based on openstreetmap data"
+HOMEPAGE="http://www.routino.org/;
+SRC_URI="http://www.routino.org/download/${P}.tgz;
+LICENSE="AGPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+DEPEND=""
+PATCHES=( "${FILESDIR}"/${P}.patch )
+
+src_configure() {
+   :
+}
+
+src_compile() {
+   emake -j1
+   rm README.txt
+   mv doc/rm README.txt .
+}



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

2017-04-01 Thread Andreas Sturmlechner
commit: 030a8ddb917e0a1c0f1f78330533c62a8d1c0bfd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Apr  1 22:39:09 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Apr  1 22:42:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=030a8ddb

media-libs/glew: Update metadata

sourceforge -> github

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-libs/glew/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/glew/metadata.xml b/media-libs/glew/metadata.xml
index 627aee7d12d..328c65134fc 100644
--- a/media-libs/glew/metadata.xml
+++ b/media-libs/glew/metadata.xml
@@ -3,6 +3,6 @@
 


-   glew
+   nigels-com/glew

 



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

2017-04-01 Thread Andreas Sturmlechner
commit: ef8b31297da03a44f8ee548c7928f7f162abc09d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Apr  1 22:31:12 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Apr  1 22:42:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef8b3129

media-libs/glew: Bump to EAPI 6

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-libs/glew/glew-1.13.0.ebuild | 25 ++---
 1 file changed, 18 insertions(+), 7 deletions(-)

diff --git a/media-libs/glew/glew-1.13.0.ebuild 
b/media-libs/glew/glew-1.13.0.ebuild
index 7584497d1f8..1f036e13255 100644
--- a/media-libs/glew/glew-1.13.0.ebuild
+++ b/media-libs/glew/glew-1.13.0.ebuild
@@ -1,8 +1,9 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-inherit multilib multilib-minimal toolchain-funcs versionator
+EAPI=6
+
+inherit multilib-minimal toolchain-funcs versionator
 
 DESCRIPTION="The OpenGL Extension Wrangler Library"
 HOMEPAGE="http://glew.sourceforge.net/;
@@ -13,14 +14,17 @@ SLOT="0/$(get_version_component_range 1-2)"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs"
 
-RDEPEND=">=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
+DEPEND="
+   >=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
>=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
>=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
>=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
>=x11-libs/libXi-1.7.2[${MULTILIB_USEDEP}]
>=x11-libs/libXmu-1.1.1-r1[${MULTILIB_USEDEP}]
-   abi_x86_32? ( !app-emulation/emul-linux-x86-opengl[-abi_x86_32(-)] )"
-DEPEND=${RDEPEND}
+"
+RDEPEND="${DEPEND}
+   abi_x86_32? ( !app-emulation/emul-linux-x86-opengl[-abi_x86_32(-)] )
+"
 
 src_prepare() {
sed -i \
@@ -42,6 +46,7 @@ src_prepare() {
# and let freebsd be built as on linux too
cp config/Makefile.linux config/Makefile.freebsd || die
 
+   default
multilib_copy_sources
 }
 
@@ -72,7 +77,10 @@ set_opts() {
 
 multilib_src_compile() {
set_opts
-   emake GLEW_DEST="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" 
"${myglewopts[@]}"
+   emake \
+   GLEW_DEST="${EPREFIX}/usr" \
+   LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
+   "${myglewopts[@]}"
 }
 
 multilib_src_install() {
@@ -84,5 +92,8 @@ multilib_src_install() {
install.all
 
dodoc TODO.txt
-   use doc && dohtml doc/*
+   if use doc; then
+   docinto html
+   dodoc doc/*
+   fi
 }



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

2017-04-01 Thread Kent Fredric
commit: 67b026ea0ae5b2dea10794aa744c356a63d6815f
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Apr  1 23:31:27 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Apr  1 23:31:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67b026ea

dev-perl/Devel-Declare: Bump to version 0.6.19

- EAPI6
- Parallel Tests

Upstream:
- Mark deprecated
- Fix '.' in @INC test failure

Bug: https://bugs.gentoo.org/614472
Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-perl/Devel-Declare/Devel-Declare-0.6.19.ebuild | 28 ++
 dev-perl/Devel-Declare/Manifest|  1 +
 2 files changed, 29 insertions(+)

diff --git a/dev-perl/Devel-Declare/Devel-Declare-0.6.19.ebuild 
b/dev-perl/Devel-Declare/Devel-Declare-0.6.19.ebuild
new file mode 100644
index 000..b6fb1bb1c01
--- /dev/null
+++ b/dev-perl/Devel-Declare/Devel-Declare-0.6.19.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=ETHER
+DIST_VERSION=0.006019
+inherit perl-module
+
+DESCRIPTION="Adding keywords to perl, in perl"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   >=dev-perl/B-Hooks-EndOfScope-0.50.0
+   >=dev-perl/B-Hooks-OP-Check-0.190.0
+   >=virtual/perl-Scalar-List-Utils-1.110.0
+   dev-perl/Sub-Name
+"
+DEPEND="${RDEPEND}
+   >=dev-perl/ExtUtils-Depends-0.302.0
+   test? (
+   >=virtual/perl-Test-Simple-0.88
+   dev-perl/Test-Requires
+   )
+"

diff --git a/dev-perl/Devel-Declare/Manifest b/dev-perl/Devel-Declare/Manifest
index b6621e55ded..f89c0aff308 100644
--- a/dev-perl/Devel-Declare/Manifest
+++ b/dev-perl/Devel-Declare/Manifest
@@ -1 +1,2 @@
 DIST Devel-Declare-0.006018.tar.gz 44155 SHA256 
bb3607bc7546bcf8d9ac57acd8de4e4ca5567ace836ab823d5f5b450216f466a SHA512 
0d85d8f00c566aac63a86a4b8990aad1b1267bfd7cfe7304c106e26d066d75c74b54a7ca6998dcd2fd6a05cf6e9388355baa2a24f520156e1b2a132def823bf1
 WHIRLPOOL 
ad28e25f095afcf3af2a8a30f3f4e1ad9711d47208af1b041a0e6cb89a6a3dcec1905031cbd7ec8fd9f60f6eec1a8e3cdb271b875977e1bcffd1bf8b4b005858
+DIST Devel-Declare-0.006019.tar.gz 45174 SHA256 
ac719dc289cbf53fbb3b090ccd3a55a9d207f24e09480423c96f7185af131808 SHA512 
1f3073597c5b27160a9ccd8019c35563982479a8c6303e138d1260706499732aa6c402e835d8b5f06a02ee55294889735500d8a24c2f6f5df9d5ed3111d08fb0
 WHIRLPOOL 
6abdb13d0c00efeb53c802a9c2c69664dd924631f04ea9b43a60b5a8c3be21e325fe5739b8e4b93004355d0ddf0e95b79b72e06a309158037904c6e301a85d95



[gentoo-commits] proj/releng:master commit in: releases/weekly/kconfig/amd64/

2017-04-01 Thread Matt Thode
commit: 380e1b0d73918359e25a74694ff61e6a16ff1536
Author: Matthew Thode  mthode  org>
AuthorDate: Sat Apr  1 21:50:45 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Apr  1 21:50:45 2017 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=380e1b0d

adding CONFIG_FW_CFG_SYSFS=y to cloud configs

 releases/weekly/kconfig/amd64/cloud-amd64-gentoo.config   | 1 +
 releases/weekly/kconfig/amd64/cloud-amd64-hardened.config | 1 +
 2 files changed, 2 insertions(+)

diff --git a/releases/weekly/kconfig/amd64/cloud-amd64-gentoo.config 
b/releases/weekly/kconfig/amd64/cloud-amd64-gentoo.config
index 0b3a20d0..2c73a4ef 100644
--- a/releases/weekly/kconfig/amd64/cloud-amd64-gentoo.config
+++ b/releases/weekly/kconfig/amd64/cloud-amd64-gentoo.config
@@ -1331,6 +1331,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y
 CONFIG_FW_LOADER=y
 CONFIG_FIRMWARE_IN_KERNEL=y
 CONFIG_EXTRA_FIRMWARE=""
+CONFIG_FW_CFG_SYSFS=y
 # CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
 CONFIG_ALLOW_DEV_COREDUMP=y
 # CONFIG_DEBUG_DRIVER is not set

diff --git a/releases/weekly/kconfig/amd64/cloud-amd64-hardened.config 
b/releases/weekly/kconfig/amd64/cloud-amd64-hardened.config
index f7b1b695..5163c4c9 100644
--- a/releases/weekly/kconfig/amd64/cloud-amd64-hardened.config
+++ b/releases/weekly/kconfig/amd64/cloud-amd64-hardened.config
@@ -1210,6 +1210,7 @@ CONFIG_FW_LOADER=y
 CONFIG_FIRMWARE_IN_KERNEL=y
 CONFIG_EXTRA_FIRMWARE=""
 # CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
+CONFIG_FW_CFG_SYSFS=y
 CONFIG_ALLOW_DEV_COREDUMP=y
 # CONFIG_DEBUG_DRIVER is not set
 # CONFIG_DEBUG_DEVRES is not set



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

2017-04-01 Thread Patrice Clement
commit: 903ce8317ca2cb2f5b4f6fc5672252fa06654368
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Apr  1 22:03:01 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr  1 22:03:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=903ce831

dev-java/jsr173: drop jaxme dependency.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-java/jsr173/jsr173-1.0-r4.ebuild | 43 
 1 file changed, 43 insertions(+)

diff --git a/dev-java/jsr173/jsr173-1.0-r4.ebuild 
b/dev-java/jsr173/jsr173-1.0-r4.ebuild
new file mode 100644
index 000..4ae2654069f
--- /dev/null
+++ b/dev-java/jsr173/jsr173-1.0-r4.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+EAPI=6
+
+JAVA_PKG_IUSE="doc source"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Yet another Java library for parsing and writing XML"
+HOMEPAGE="http://dev2dev.bea.com/xml/stax.html;
+SRC_URI="http://ftpna2.bea.com/pub/downloads/${PN}.jar;
+
+LICENSE="bea.ri.jsr173"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+
+RDEPEND="
+   ${CDEPEND}
+   >=virtual/jre-1.6"
+
+DEPEND="
+   ${CDEPEND}
+   >=virtual/jdk-1.6"
+
+S="${WORKDIR}"
+
+DOCS=( README.txt jsr173_1.0.pdf )
+
+src_unpack() {
+   cd "${S}" || die
+   jar xvf "${DISTDIR}/${A}" || die "failed to unpack"
+   jar xvf "${P//-/_}_src.jar" || die "failed to unpack"
+}
+
+src_prepare() {
+   default
+   java-pkg_clean
+}
+
+src_install() {
+   java-pkg-simple_src_install
+   use doc && einstalldocs
+}



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

2017-04-01 Thread Mike Pagano
commit: df41d84b797915a17c6f85e35bbceec435708f94
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Apr  1 23:28:50 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Apr  1 23:28:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df41d84b

sys-kernel/gentoo-sources: Clean up 4.4.X due to CVE-2017-7184

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-kernel/gentoo-sources/Manifest | 18 --
 .../gentoo-sources/gentoo-sources-4.4.51.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.4.53.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.4.54.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.4.55.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.4.56.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-4.4.57.ebuild| 28 --
 7 files changed, 186 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 91f687f78c8..cb012032a1c 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -65,27 +65,9 @@ DIST genpatches-4.10-8.extras.tar.xz 17348 SHA256 
3444b846c3232541152db3bb2d9ff5
 DIST genpatches-4.4-43.base.tar.xz 912072 SHA256 
f7c9220f08385e8bdcd3cc42974581c259209aaf61fab1c3535e71a37e7fcb6c SHA512 
3e84797279583fbe5e3031bef8c3a734363c2aa41ddac266d51871d7885293c1dd63a64f4cfbf0c06cb35420c3f66e84fb93dc5d1a4ea2cf0c63db43605054aa
 WHIRLPOOL 
7b4eb188985fecbb1561cda8e2a78cd01f3695b198efa288482d432392b3a3d5c60fb6c5d6a70566ae4e929793ff967fef56fdadbdcab22426b328463756345d
 DIST genpatches-4.4-43.experimental.tar.xz 87780 SHA256 
534a3f534991a30ed827439a943507610af2a3063e1fdf04a312e53ffc2cc120 SHA512 
37944015c17ca4ffbc09532980c78011b4e18cab22a83e28a052ba5708c9a560220ad84a445469165a4cc1e955c60c323e3cb52c3cdbee0d9c9bb1766c8638d9
 WHIRLPOOL 
0f52497cf2ba2d58c2cd7e84787df2bafb2cfa470c36421d72c4269c9f7f2bc856c611dbcc60e825ed5bebddd1de04adb1fe15893e7a1fb6fc9409e1b16ea34a
 DIST genpatches-4.4-43.extras.tar.xz 16420 SHA256 
edccb4cc994f3a80f3c8e01a0824038b2e0fa38572833027f6161908f2eeb739 SHA512 
776451ecdbab4c28697549536224824c41e4d903bc3ea6fe5eee9d8b747bbac7343b56daddd7ab23bd2d35482e31e0f411dd60fa2b174112bee2fb75b07641c0
 WHIRLPOOL 
59ccb8d8254c1dab01c47bd6c312f442eefea753d1e7424b7b052ae6d652c2be076380406e6250e536cac49233c665955dbca085cc6b12276b13537cc86e69c7
-DIST genpatches-4.4-55.base.tar.xz 1017432 SHA256 
f82bcb9e01ef28e9daf89f34eb12b4eea0a870441837e1a0eaca61e118f4aefd SHA512 
ed169ded178859019c9a6725fbd199353047d8d9a73798f27b2f039e44f56770086e16eec21276ea437b75e0d57161c2f2ac920452bb7494064b9c56e0d4e35f
 WHIRLPOOL 
7faeca8a4559554303fa1b23b332bbcf431c70169260f2ba02831e1d998f1cc268338bd57aeee46cd3bbd59c35b392c44ef076fab3f6f15be1609c9b5e2961cd
-DIST genpatches-4.4-55.experimental.tar.xz 87732 SHA256 
62330e87e51cd8c2858e621c036fb37c629d90a133de9e6895d27ec06c2bd825 SHA512 
2f6ae387398c2fe98681c4a1e506ec4f6b23486e91e923d8c1e74b12644f4f2253fb0505564e09987e48b8554372d5bed56e10a070f96e111dd12aed94f08897
 WHIRLPOOL 
aec9b053261ecfc03113fb499129dcefc21639a359013b10a19bf464eb1135a832c695aa674517a2a6d900a402314c373d35f0ace5def6c3923ef99b2bf54d0a
-DIST genpatches-4.4-55.extras.tar.xz 16424 SHA256 
8a655abca05855a072415c1e1b6dd9781ccfef1fc2ae42c6a1094ca2728bdaa4 SHA512 
bdd4cd9a29c155306cfec669acec4a1528ab060e002f1a9e02b8ad18c5d81c46c3cb9fc8067844929fe107a5fe466a88b2c954232b0a6c4d72ac4d8dfbcf5452
 WHIRLPOOL 
61c4956a4c1f0f8aa748e01063cf37de2bb07b5dfe98c51cebd4e70029726cc3830ee6a44e2fb8b972549572f3c4d997714589835a49d251a31a7c849b90
 DIST genpatches-4.4-56.base.tar.xz 1021856 SHA256 
a3118b9cb3204ac85b69c3676550f60859ee68707f0c5816120a2565cd7ab317 SHA512 
eeed7dc7358bc0151db89cb292e8b30a7498ac8c9c72fd301d9e08343977806e19a91a4958dda2643a418b50ca5ff7f2a27c871c53d1e9d3f0930e27c6ab11ba
 WHIRLPOOL 
10b4e757bd6b4e611d4828b7ea45b4d4f704dbec76a32c5294a8489ecd85103dc472c7b144588cbe1b07c3f507c076b8b2f9555b88542120a53d165c68a592f4
 DIST genpatches-4.4-56.experimental.tar.xz 87752 SHA256 
6324d9c2e58f33bf39ec7834d3ab6c6ed9eb6d53ffbd4d55aba0879903a503e2 SHA512 
d77dd2a45117afe1913dbf7163de8a9b0acfe28fc0afe18e3b1cd2d5d2e785fe374f7018e085a0d2bf8dc052273f1781e2c2094359c4a8a771b9f14443273be5
 WHIRLPOOL 
2f67af9640ab8d917617bc2bf8ee0d518dd5bdc343abff965bd2f8a8b35eae23b2ce9fd99aeb4497a7ac9293ec1005640c096e72b816143680ddfb6d60158598
 DIST genpatches-4.4-56.extras.tar.xz 16408 SHA256 
74babcf456aed9c7c406a0feb37b5fbe51db461a67b5fd9c07a252398a15b41f SHA512 
661cb1c58b38c24283a9465f596045669f2d686b7418e9586ca6ce48b56bd9cfce52705502f876e68006c4ff1624847cd1e18e3aec37d60f64e6f7788d5facee
 WHIRLPOOL 
11dd648ebf88f43d0c1e1543e5a68c93a1a31b5c1f2d287add703e20979820ecadf003b051e787d6089c346e4a13485326d9c05b5968bd9cb3ca21a755d95a54
-DIST genpatches-4.4-57.base.tar.xz 1057984 SHA256 
862bbd88fb4a6ed195e732a0148aec510a93c346119ec8efc1a329fb8e772ae2 SHA512 

[gentoo-commits] proj/hardened-patchset: New tag: 20170331

2017-04-01 Thread Anthony G. Basile
commit: 
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr  1 23:41:07 2017 +

New tag: 20170331




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

2017-04-01 Thread Anthony G. Basile
commit: 31c4885ab29341dd66926dadd1e48c7035233b59
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Apr  1 23:48:45 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr  1 23:49:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c4885a

sys-kernel/hardened-sources: version bump to 4.9.20

vanilla-4.9 + genpatches-4.9-21 + grsecurity-3.1-4.9.20-201703310823

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-kernel/hardened-sources/Manifest   |  2 +
 .../hardened-sources-4.9.20.ebuild | 45 ++
 2 files changed, 47 insertions(+)

diff --git a/sys-kernel/hardened-sources/Manifest 
b/sys-kernel/hardened-sources/Manifest
index 24fdd0b6a45..93157bfe831 100644
--- a/sys-kernel/hardened-sources/Manifest
+++ b/sys-kernel/hardened-sources/Manifest
@@ -14,6 +14,7 @@ DIST genpatches-4.9-14.base.tar.xz 299156 SHA256 
a19e22f33b62858d28b2c78a3325f93
 DIST genpatches-4.9-15.base.tar.xz 306680 SHA256 
0d21f36e5dada40a98ff345ebc01678d2aee060becc7c5c1df84edec9279af2a SHA512 
2962f30bd055a5afcefe8aca654419da52c61fc8e5ee8a16770020f517467ad13e4d7ba47c0b1b531b0e4be630b4ca2cf78170544d5ac0115db7071cc504278b
 WHIRLPOOL 
77f667264615abd7a7324abf60bcc2177421595130103d1af79a438da907fb2d274048f51e2f5ae66d80b27a8b1ba732c0653fa48d58bfff338c815cef3b68eb
 DIST genpatches-4.9-17.base.tar.xz 375092 SHA256 
aa60be6abf48139e2f4646aa66a3f146bde37d06abbf2e5682986e480f11f3ac SHA512 
1944972a8bb3677ea5cf8314757bc0eb970abea41b0ea923f83eb88fd99aaccb98112f24147542bae39c0da913f7c3be607980fa5fcacbb3a0c3e65ee2c178e1
 WHIRLPOOL 
c876ee565d2171c7877e1a80f0500a5e3b8dc51c079133b32c82c33d1799c4600a25a96fa84f5636ff3391d18ac0f989c3784a2f885d0f66aec4d45d21e06a63
 DIST genpatches-4.9-18.base.tar.xz 385508 SHA256 
d29fc16842e846c2c6487e9c1543e6fe43429d34882ac9c6ca070c1fe3564605 SHA512 
c1d08b3d66df74efe610cbf586921f7caa57bb8337848380fdc8e2034883180a60a26dab9ded50974fb468d35dc923912ead08cb0f751a515cef85efb31955d9
 WHIRLPOOL 
e1ef981b945718eab2e96470f96a033cc2b1ede6c706d6cd3e32f4f1c4e066766135141d55a5ccee06d9fb84bc66df389cdb2d095ad569bd565afc600b3b4095
+DIST genpatches-4.9-21.base.tar.xz 451684 SHA256 
5ed957a995b91d0b6c434c821b8505b86f13a7cdbe204b89302c0cbeaa35ba39 SHA512 
c6260fdf7d6e144556499bc8a9be1e0507ae88cdedc1918f8e35de91f653a4b05deaab46d3a96413fc346aa03589116e1ebe62dce18fe8af55e6dce4fc7634b9
 WHIRLPOOL 
8b5d754119ba1c4b0ec73de4d6c07e0cdcb66e780d502a59c23b42860e75e146d4d573c5b2c50e1c8e48d1ea6fc4351e59a934d216140ab22e7cf4fffc8c0c11
 DIST hardened-patches-4.4.8-2.extras.tar.bz2 1743408 SHA256 
5cde9a96f6a47ebe3c8abeb5d5add60480490fd365d4c31da2d7ac1973a4c258 SHA512 
cfb52ee6aee76b125a5a833cd9facc92ea1dff17129a488b66e976e94699cea8109e6f5df90835e818af1ea6e59e12cecc95159601d544f5b008560a1190b530
 WHIRLPOOL 
56facf79d5556aaac3bf08fa3b4be21b7fef561c8d3fd41943ce51c4d15b71e114be2e33914f5bf7e3d981abcebeffb95fb99aedde8d72231edcef72123ea9fa
 DIST hardened-patches-4.7.10-1.extras.tar.bz2 1941100 SHA256 
8a7787da2d440308b28d16738ba843138c01d14e3f09cef33f8c32d46886411b SHA512 
851d8875452fceaa696a7bb6847bda82c42ca40c61f2d1da16545190eeba65eb26c15f9fd428d1de83e9ea7c019133808ab3622e770147e06ab598629b8dfb6b
 WHIRLPOOL 
fa4a7bdb8bf8bf232d32d466b0ce8492a82cda7908edc96d6f7937686e3a766dabbc75c7fd33de82be080e3a277aaf4e63e9c754c97b9164301630aa13810755
 DIST hardened-patches-4.7.6-1.extras.tar.bz2 1913657 SHA256 
f32b7891fa0a821a60270f42dc817135d887ea55bda676e1141f0681ff360374 SHA512 
943b25c12071abab62a169a2daf6e2255c76e595678a2553eaac4b87f2f227f0bfc47daad246db9b002119c6be3ec56e8746a7cb598a29c8772b3de4f7601519
 WHIRLPOOL 
b1f5ddadf8d0387ade037a4b3f0e7e001971b01584f03ec40e61dda2db1e5762ac66266f00f5d95226337347dd9ed43c1d019a65eb66780403c81348bfc4682d
@@ -23,6 +24,7 @@ DIST hardened-patches-4.9.14-1.extras.tar.bz2 1977361 SHA256 
3d7d75c0320075d14db
 DIST hardened-patches-4.9.15-1.extras.tar.bz2 1996486 SHA256 
06aaeb0a06a39475b3b234df2d3fd8fe7eedc23deb7dd710eed11c108cabe0b5 SHA512 
93763fbbb36709fa69883ea229bd8e0af88fb8214594c549a97afe4701bbebdafba9dac2fdf46792a9110e563a5798fe03d23f9a8ee07a12bcceb53f852ccb69
 WHIRLPOOL 
09aa7ccd3dd7b58db7f3959f44c7b2cb79b4d28290c5728235e0d5509de221e87359bb43e122cc4907716f20e3a4b4c2f5360c1a4b567b813b0f11618b02cd52
 DIST hardened-patches-4.9.16-1.extras.tar.bz2 1932414 SHA256 
fbefbd34b007d4705d06a8e5f0223fd1777dab2a0ec754ae0f2e046fc9757a0d SHA512 
734c9f2790b0ef6a202e2d35538874905a3eebdf41e144831207153991f844b255adc48dd611dfb2d3ecceececb9016057464d6c7ea53bf7e5b22aa7e216ff74
 WHIRLPOOL 
6e2ad6fbe64cef7c6eeb47f2ffdd89a1818ba58d407ca140f21503e3b41dbe150d6d596e2ce14501622af03da73205b429f0a0b7a813c37961fd04fe558b
 DIST hardened-patches-4.9.18-1.extras.tar.bz2 1985554 SHA256 
6289173e53369bdb07df0cf831c8a079c6328e471c2d975eaf1dd9474e42d38f SHA512 
96d15015d94f67d7a7ae29aa6af1829d37d76f85eaac39fdb7f07511f471151f668e217841454c94dae8473b61bc2b2d9c65de66caae7016c5454e6ee96bef69
 WHIRLPOOL 

[gentoo-commits] repo/gentoo:master commit in: app-backup/zbackup/, app-backup/zbackup/files/

2017-04-01 Thread Göktürk Yüksek
commit: 29f1455481e07c0de116380763f79f72342ca786
Author: Vladimir Pavljuchenkov (SpiderX)  spiderx  dp 
 ua>
AuthorDate: Fri Feb 24 07:32:59 2017 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Sat Apr  1 23:56:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29f14554

app-backup/zbackup: new ebuild

zbackup is a globally-deduplicating backup tool, based on the ideas found in 
rsync.
Feed a large .tar into it, and it will store duplicate regions of it only once,
then compress and optionally encrypt the result. Feed another .tar file,
and it will also re-use any data found in any previous backups.
This way only new changes are stored, and as long as the files are not very 
different,
the amount of storage required is very low. Any of the backup files stored 
previously
can be read back in full at any time.

Base for ebuild from 
https://github.com/SpiderX/portage-overlay/tree/master/app-backup/zbackup

Gentoo-Bug: https://bugs.gentoo.org/576796

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-backup/zbackup/Manifest|  1 +
 .../zbackup/files/zbackup-1.4.4-tartool.patch  | 11 +++
 .../zbackup/files/zbackup--tartool.patch   | 11 +++
 app-backup/zbackup/metadata.xml| 26 
 app-backup/zbackup/zbackup-1.4.4.ebuild| 34 
 app-backup/zbackup/zbackup-.ebuild | 36 ++
 6 files changed, 119 insertions(+)

diff --git a/app-backup/zbackup/Manifest b/app-backup/zbackup/Manifest
new file mode 100644
index 000..9020e7f8aff
--- /dev/null
+++ b/app-backup/zbackup/Manifest
@@ -0,0 +1 @@
+DIST zbackup-1.4.4.tar.gz 87118 SHA256 
efd2a045da91576c591968374379da1dc4ca2e3dec4d3f8f12628fa29a85 SHA512 
96f0984be71e521b2a188448bb2801996701be6e96b1dac4672cabc9f6bcb6631fdb8d03f5dde4bbdbb0050d9bd1409d468fcba15f93730d69e6c55271aba575
 WHIRLPOOL 
4c41f300177b3a140f833f999e5b86e8c3386e81c02a7a94f2a0dd418ba2027adb2c7906d5d2a59fba12b47c5ea3190727ef63b1e8fd12eef8bc9fbe2ca426a6

diff --git a/app-backup/zbackup/files/zbackup-1.4.4-tartool.patch 
b/app-backup/zbackup/files/zbackup-1.4.4-tartool.patch
new file mode 100644
index 000..8f9f839a66f
--- /dev/null
+++ b/app-backup/zbackup/files/zbackup-1.4.4-tartool.patch
@@ -0,0 +1,11 @@
+--- a/CMakeLists.txt   2017-02-24 09:22:39.360392521 +0200
 b/CMakeLists.txt   2017-02-24 09:23:13.642390978 +0200
+@@ -51,4 +51,8 @@
+   ${LIBLZO_LIBRARIES}
+ )
+ 
++if (BUILD_TARTOOL)
++  add_subdirectory(tartool)
++endif (BUILD_TARTOOL)
++
+ install( TARGETS zbackup DESTINATION bin )

diff --git a/app-backup/zbackup/files/zbackup--tartool.patch 
b/app-backup/zbackup/files/zbackup--tartool.patch
new file mode 100644
index 000..26052f97a48
--- /dev/null
+++ b/app-backup/zbackup/files/zbackup--tartool.patch
@@ -0,0 +1,11 @@
+--- a/CMakeLists.txt   2017-02-24 09:22:39.360392521 +0200
 b/CMakeLists.txt   2017-02-24 09:23:13.642390978 +0200
+@@ -51,4 +51,8 @@
+   ${LIBLZO_LIBRARIES}
+ )
+ 
++if (BUILD_TARTOOL)
++  add_subdirectory(tools/tartool)
++endif (BUILD_TARTOOL)
++
+ install( TARGETS zbackup DESTINATION bin )

diff --git a/app-backup/zbackup/metadata.xml b/app-backup/zbackup/metadata.xml
new file mode 100644
index 000..65b65652113
--- /dev/null
+++ b/app-backup/zbackup/metadata.xml
@@ -0,0 +1,26 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   spid...@spiderx.dp.ua
+   Vladimir Pavljuchenkov
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   zbackup is a globally-deduplicating backup tool.
+   The program has the following features:
+   Parallel LZMA or LZO compression of the stored data
+   Built-in AES encryption of the stored data
+   Possibility to delete old backup data
+   Use of a 64-bit rolling hash, keeping the amount of soft collisions to 
zero
+   
+   
+   Install tartool utility
+   
+   
+   zbackup/zbackup
+   
+

diff --git a/app-backup/zbackup/zbackup-1.4.4.ebuild 
b/app-backup/zbackup/zbackup-1.4.4.ebuild
new file mode 100644
index 000..75f7cf5fca2
--- /dev/null
+++ b/app-backup/zbackup/zbackup-1.4.4.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="A versatile deduplicating backup tool"
+HOMEPAGE="http://zbackup.org/ https://github.com/zbackup/zbackup;
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="libressl tartool"
+
+DEPEND="app-arch/lzma
+   dev-libs/lzo:2
+   http://zbackup.org/ https://github.com/zbackup/zbackup;
+SRC_URI=""
+EGIT_REPO_URI="git://github.com/${PN}/${PN}.git"
+

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

2017-04-01 Thread Patrice Clement
commit: a33756daaf14a2155fbf74363871c2219dc52293
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Apr  1 21:49:12 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr  1 22:03:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a33756da

dev-java/dom4j: EAPI 6 bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-java/dom4j/dom4j-1.6.1-r7.ebuild | 87 
 1 file changed, 87 insertions(+)

diff --git a/dev-java/dom4j/dom4j-1.6.1-r7.ebuild 
b/dev-java/dom4j/dom4j-1.6.1-r7.ebuild
new file mode 100644
index 000..5ed8109c4c7
--- /dev/null
+++ b/dev-java/dom4j/dom4j-1.6.1-r7.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+JAVA_PKG_IUSE="doc source test"
+
+inherit java-pkg-2 java-ant-2
+
+DESCRIPTION="Java library for working with XML"
+HOMEPAGE="http://dom4j.sourceforge.net/;
+SRC_URI="
+   mirror://sourceforge/dom4j/${P}.tar.gz
+   mirror://gentoo/${P}-java5.patch.bz2"
+
+LICENSE="dom4j"
+SLOT="1"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+IUSE=""
+
+CDEPEND="
+   dev-java/xpp2:0
+   dev-java/xpp3:0
+   dev-java/xsdlib:0
+   dev-java/relaxng-datatype:0"
+
+RDEPEND="
+   ${CDEPEND}
+   >=virtual/jre-1.6"
+
+DEPEND="
+   ${CDEPEND}
+   test? (
+   dev-java/xalan:0
+   dev-java/ant-junit:0
+   dev-java/junitperf:0
+   )
+   >=virtual/jdk-1.6"
+
+PDEPEND="dev-java/jaxen:1.1"
+
+# Add missing methods to compile on Java 5 #137970
+PATCHES=( "${WORKDIR}/${P}-java5.patch" )
+
+JAVA_RM_FILES=(
+   src/test/org/dom4j/bean/BeansTest.java
+   src/test/org/dom4j/io/StaxTest.java
+   src/test/org/dom4j/rule/RuleTest.java
+   src/test/org/dom4j/ThreadingTest.java
+   src/test/org/dom4j/io/XPP3ReaderTest.java
+)
+
+src_prepare() {
+   default
+
+   # Circular deps with jaxen #212993
+   find -name '*.jar' -! -name jaxen-1.1-beta-6.jar -exec rm -v {} + || die
+
+   rm -v "${JAVA_RM_FILES[@]}" || die
+}
+
+# 0 - Requires X11.
+# 1 - Fails with JDK 1.7.
+# 2 - Fails with JDK 1.6.
+
+JAVA_ANT_REWRITE_CLASSPATH="yes"
+JAVA_ANT_CLASSPATH_TAGS+=" javadoc"
+
+JAVA_ANT_ENCODING="ISO-8859-1"
+
+EANT_BUILD_TARGET="clean package"
+EANT_GENTOO_CLASSPATH="relaxng-datatype,xpp2,xpp3,xsdlib"
+EANT_GENTOO_CLASSPATH_EXTRA="lib/jaxen-1.1-beta-6.jar"
+EANT_EXTRA_ARGS="-Dbuild.javadocs=build/doc/api"
+
+EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},junitperf,xalan"
+
+src_test() {
+   java-pkg-2_src_test
+}
+
+src_install() {
+   java-pkg_dojar "build/${PN}.jar"
+   java-pkg_register-dependency jaxen-1.1
+   use doc && java-pkg_dojavadoc build/doc/api
+   use source && java-pkg_dosrc src/java/*
+}



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

2017-04-01 Thread Andreas Sturmlechner
commit: ca2a8a6c64b9d0bcbf784c6c192566049a0768ec
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Apr  1 19:08:19 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Apr  1 19:08:19 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ca2a8a6c

profiles: Mask KDE Frameworks 5.33.0

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

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



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

2017-04-01 Thread Andreas Sturmlechner
commit: 3c5360a28f29d26cf4a25874df36cca1211de6f3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Apr  1 19:08:37 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Apr  1 19:08:37 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=3c5360a2

kde5.eclass: Mark KDE Frameworks 5.33.0 unreleased

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

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 106383bb05..f1519b798d 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -126,7 +126,7 @@ fi
 # An array of $CATEGORY-$PV pairs of packages that are unreleased upstream.
 # Any package matching this will have fetch restriction enabled, and receive
 # a proper error message via pkg_nofetch.
-KDE_UNRELEASED=( )
+KDE_UNRELEASED=( kde-frameworks-5.33.0 )
 
 if [[ ${KDEBASE} = kdevelop ]]; then
HOMEPAGE="https://www.kdevelop.org/;



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

2017-04-01 Thread Andreas Sturmlechner
commit: 7e2e3141c760d780307c80c664589ad4e3bf7398
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Apr  1 21:18:58 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Apr  1 21:32:56 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=7e2e3141

sets: Add kde-frameworks-5.33

 sets/kde-frameworks-5.33 | 75 
 1 file changed, 75 insertions(+)

diff --git a/sets/kde-frameworks-5.33 b/sets/kde-frameworks-5.33
new file mode 100644
index 00..7377aa3ce5
--- /dev/null
+++ b/sets/kde-frameworks-5.33
@@ -0,0 +1,75 @@
+

[gentoo-commits] proj/kde:master commit in: kde-frameworks/networkmanager-qt/, kde-frameworks/oxygen-icons/, ...

2017-04-01 Thread Andreas Sturmlechner
commit: 46ccd8487b5116028055d9c7f4f37e09c8775cb3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Apr  1 21:38:31 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Apr  1 21:38:31 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=46ccd848

kde-frameworks: 5.33.0 version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 kde-frameworks/attica/attica-5.33.0.ebuild | 16 
 kde-frameworks/baloo/baloo-5.33.0.ebuild   | 32 
 kde-frameworks/bluez-qt/bluez-qt-5.33.0.ebuild | 36 +
 .../breeze-icons-rcc-5.33.0.ebuild | 29 
 .../breeze-icons/breeze-icons-5.33.0.ebuild| 30 
 .../extra-cmake-modules-5.33.0.ebuild  | 57 +++
 .../frameworkintegration-5.33.0.ebuild | 52 +
 .../kactivities-stats-5.33.0.ebuild| 21 ++
 .../kactivities/kactivities-5.33.0.ebuild  | 27 +++
 kde-frameworks/kapidox/kapidox-5.33.0.ebuild   | 28 +++
 kde-frameworks/karchive/karchive-5.33.0.ebuild | 27 +++
 kde-frameworks/kauth/kauth-5.33.0.ebuild   | 33 +
 kde-frameworks/kbookmarks/kbookmarks-5.33.0.ebuild | 29 
 kde-frameworks/kcmutils/kcmutils-5.33.0.ebuild | 31 
 kde-frameworks/kcodecs/kcodecs-5.33.0.ebuild   | 13 
 .../kcompletion/kcompletion-5.33.0.ebuild  | 21 ++
 kde-frameworks/kconfig/kconfig-5.33.0.ebuild   | 26 +++
 .../kconfigwidgets/kconfigwidgets-5.33.0.ebuild| 37 ++
 .../kcoreaddons/kcoreaddons-5.33.0.ebuild  | 30 
 kde-frameworks/kcrash/kcrash-5.33.0.ebuild | 28 +++
 .../kdbusaddons/kdbusaddons-5.33.0.ebuild  | 28 +++
 .../kdeclarative/kdeclarative-5.33.0.ebuild| 31 
 kde-frameworks/kded/kded-5.33.0.ebuild | 35 +
 .../kdelibs4support/kdelibs4support-5.33.0.ebuild  | 85 ++
 .../kdesignerplugin/kdesignerplugin-5.33.0.ebuild  | 53 ++
 kde-frameworks/kdesu/kdesu-5.33.0.ebuild   | 32 
 kde-frameworks/kdewebkit/kdewebkit-5.33.0.ebuild   | 29 
 kde-frameworks/kdnssd/kdnssd-5.33.0.ebuild | 31 
 kde-frameworks/kdoctools/kdoctools-5.33.0.ebuild   | 24 ++
 kde-frameworks/kemoticons/kemoticons-5.33.0.ebuild | 26 +++
 .../kfilemetadata/kfilemetadata-5.33.0.ebuild  | 49 +
 .../kglobalaccel/kglobalaccel-5.33.0.ebuild| 30 
 kde-frameworks/kguiaddons/kguiaddons-5.33.0.ebuild | 22 ++
 kde-frameworks/khtml/khtml-5.33.0.ebuild   | 66 +
 kde-frameworks/ki18n/ki18n-5.33.0.ebuild   | 36 +
 .../kiconthemes/kiconthemes-5.33.0.ebuild  | 29 
 kde-frameworks/kidletime/kidletime-5.33.0.ebuild   | 24 ++
 .../kimageformats/kimageformats-5.33.0.ebuild  | 34 +
 kde-frameworks/kinit/kinit-5.33.0.ebuild   | 40 ++
 kde-frameworks/kio/kio-5.33.0.ebuild   | 79 
 .../kitemmodels/kitemmodels-5.33.0.ebuild  | 14 
 kde-frameworks/kitemviews/kitemviews-5.33.0.ebuild | 20 +
 .../kjobwidgets/kjobwidgets-5.33.0.ebuild  | 35 +
 kde-frameworks/kjs/kjs-5.33.0.ebuild   | 21 ++
 kde-frameworks/kjsembed/kjsembed-5.33.0.ebuild | 25 +++
 .../kmediaplayer/kmediaplayer-5.33.0.ebuild| 20 +
 kde-frameworks/knewstuff/knewstuff-5.33.0.ebuild   | 34 +
 .../knotifications/knotifications-5.33.0.ebuild| 45 
 .../knotifyconfig/knotifyconfig-5.33.0.ebuild  | 24 ++
 kde-frameworks/kpackage/kpackage-5.33.0.ebuild | 37 ++
 kde-frameworks/kparts/kparts-5.33.0.ebuild | 30 
 kde-frameworks/kpeople/kpeople-5.33.0.ebuild   | 38 ++
 kde-frameworks/kplotting/kplotting-5.33.0.ebuild   | 18 +
 kde-frameworks/kpty/kpty-5.33.0.ebuild | 26 +++
 kde-frameworks/kross/kross-5.33.0.ebuild   | 31 
 kde-frameworks/krunner/krunner-5.33.0.ebuild   | 29 
 kde-frameworks/kservice/kservice-5.33.0.ebuild | 46 
 .../ktexteditor/ktexteditor-5.33.0.ebuild  | 55 ++
 .../ktextwidgets/ktextwidgets-5.33.0.ebuild| 37 ++
 .../kunitconversion/kunitconversion-5.33.0.ebuild  | 18 +
 kde-frameworks/kwallet/kwallet-5.33.0.ebuild   | 50 +
 kde-frameworks/kwayland/kwayland-5.33.0.ebuild | 28 +++
 .../kwidgetsaddons/kwidgetsaddons-5.33.0.ebuild| 20 +
 .../kwindowsystem/kwindowsystem-5.33.0.ebuild  | 40 ++
 kde-frameworks/kxmlgui/kxmlgui-5.33.0.ebuild   | 41 +++
 .../kxmlrpcclient/kxmlrpcclient-5.33.0.ebuild  | 20 +
 .../modemmanager-qt/modemmanager-qt-5.33.0.ebuild  | 24 ++
 .../networkmanager-qt-5.33.0.ebuild| 27 +++
 .../oxygen-icons/oxygen-icons-5.33.0.ebuild| 29 
 

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

2017-04-01 Thread Andreas Sturmlechner
commit: c8f1c7f29a0c1c7adea7de69d5550950d87c1ee9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Apr  1 21:33:52 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Apr  1 21:33:52 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=c8f1c7f2

Documentation: Add KDE Frameworks 5.33.0

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

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index 55dea81e2d..a1161328ae 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -9,7 +9,7 @@ cd "$(dirname $0)"
 SCRIPT=$(basename $0)
 HEADER="# Autogenerated by ${SCRIPT}, DO NOT EDIT."
 
-KF_RELEASES="5.29 5.32"
+KF_RELEASES="5.29 5.32 5.33"
 KF_RELEASE=${KF_RELEASE:-5.29}
 
 PLASMA_RELEASES="5.8 5.9"

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

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

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

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

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

2017-04-01 Thread Matthias Maier
commit: 8e6a5f44a3119c14be5245fec2e4ee2528c573bc
Author: Matthias Maier  gentoo  org>
AuthorDate: Sun Apr  2 02:25:20 2017 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sun Apr  2 02:25:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e6a5f44

app-emulation/qemu: drop vulnerable, bug #606088

Package-Manager: Portage-2.3.3, Repoman-2.3.2

 app-emulation/qemu/metadata.xml |   1 -
 app-emulation/qemu/qemu-2.8.0-r3.ebuild | 699 
 2 files changed, 700 deletions(-)

diff --git a/app-emulation/qemu/metadata.xml b/app-emulation/qemu/metadata.xml
index 9a8a1a335b7..3fe0408cc40 100644
--- a/app-emulation/qemu/metadata.xml
+++ b/app-emulation/qemu/metadata.xml
@@ -32,7 +32,6 @@
Use libsdl2 instead of libsdl
Enable Spice protocol support via 
app-emulation/spice
Enable SSH based block device support via 
net-libs/libssh2
-   Build the Software MMU (system) 
targets as static binaries
Build the User targets as static 
binaries
Build the User and Software MMU (system) 
targets as well as tools as static binaries
Enable support for snappy compression

diff --git a/app-emulation/qemu/qemu-2.8.0-r3.ebuild 
b/app-emulation/qemu/qemu-2.8.0-r3.ebuild
deleted file mode 100644
index c1aa5245a6d..000
--- a/app-emulation/qemu/qemu-2.8.0-r3.ebuild
+++ /dev/null
@@ -1,699 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="ncurses,readline"
-
-PLOCALES="bg de_DE fr_FR hu it tr zh_CN"
-
-inherit eutils flag-o-matic linux-info toolchain-funcs multilib python-r1 \
-   user udev fcaps readme.gentoo-r1 pax-utils l10n
-
-if [[ ${PV} = ** ]]; then
-   EGIT_REPO_URI="git://git.qemu.org/qemu.git"
-   inherit git-2
-   SRC_URI=""
-else
-   SRC_URI="http://wiki.qemu-project.org/download/${P}.tar.bz2;
-   KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86 ~x86-fbsd"
-fi
-
-DESCRIPTION="QEMU + Kernel-based Virtual Machine userland tools"
-HOMEPAGE="http://www.qemu.org http://www.linux-kvm.org;
-
-LICENSE="GPL-2 LGPL-2 BSD-2"
-SLOT="0"
-IUSE="accessibility +aio alsa bluetooth bzip2 +caps +curl debug +fdt glusterfs 
\
-gnutls gtk gtk2 infiniband iscsi +jpeg \
-kernel_linux kernel_FreeBSD lzo ncurses nfs nls numa opengl +pin-upstream-blobs
-+png pulseaudio python \
-rbd sasl +seccomp sdl sdl2 selinux smartcard snappy spice ssh static 
static-softmmu
-static-user systemtap tci test +threads usb usbredir vde +vhost-net \
-virgl virtfs +vnc vte xattr xen xfs"
-
-COMMON_TARGETS="aarch64 alpha arm cris i386 m68k microblaze microblazeel mips
-mips64 mips64el mipsel or32 ppc ppc64 s390x sh4 sh4eb sparc sparc64
-x86_64"
-IUSE_SOFTMMU_TARGETS="${COMMON_TARGETS} lm32 moxie ppcemb tricore unicore32 
xtensa xtensaeb"
-IUSE_USER_TARGETS="${COMMON_TARGETS} armeb mipsn32 mipsn32el ppc64abi32 
ppc64le sparc32plus tilegx"
-
-use_softmmu_targets=$(printf ' qemu_softmmu_targets_%s' 
${IUSE_SOFTMMU_TARGETS})
-use_user_targets=$(printf ' qemu_user_targets_%s' ${IUSE_USER_TARGETS})
-IUSE+=" ${use_softmmu_targets} ${use_user_targets}"
-
-# Allow no targets to be built so that people can get a tools-only build.
-# Block USE flag configurations known to not work.
-REQUIRED_USE="${PYTHON_REQUIRED_USE}
-   gtk2? ( gtk )
-   qemu_softmmu_targets_arm? ( fdt )
-   qemu_softmmu_targets_microblaze? ( fdt )
-   qemu_softmmu_targets_ppc? ( fdt )
-   qemu_softmmu_targets_ppc64? ( fdt )
-   sdl2? ( sdl )
-   static? ( static-softmmu static-user )
-   static-softmmu? ( !alsa !pulseaudio !bluetooth !opengl !gtk !gtk2 )
-   virtfs? ( xattr )
-   vte? ( gtk )"
-
-# Yep, you need both libcap and libcap-ng since virtfs only uses libcap.
-#
-# The attr lib isn't always linked in (although the USE flag is always
-# respected).  This is because qemu supports using the C library's API
-# when available rather than always using the extranl library.
-#
-# Older versions of gnutls are supported, but it's simpler to just require
-# the latest versions.  This is also why we require nettle.
-#
-# TODO: Split out tools deps into another var.  e.g. bzip2 is only used by
-# system binaries and tools, not user binaries.
-COMMON_LIB_DEPEND=">=dev-libs/glib-2.0[static-libs(+)]
-   sys-libs/zlib[static-libs(+)]
-   bzip2? ( app-arch/bzip2[static-libs(+)] )
-   xattr? ( sys-apps/attr[static-libs(+)] )"
-SOFTMMU_LIB_DEPEND="${COMMON_LIB_DEPEND}
-   >=x11-libs/pixman-0.28.0[static-libs(+)]
-   accessibility? ( app-accessibility/brltty[static-libs(+)] )
-   aio? ( dev-libs/libaio[static-libs(+)] )
-   alsa? ( >=media-libs/alsa-lib-1.0.13 )
-   bluetooth? ( net-wireless/bluez )
-   caps? ( sys-libs/libcap-ng[static-libs(+)] )
-   curl? ( >=net-misc/curl-7.15.4[static-libs(+)] )
-   

[gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-xkb/

2017-04-01 Thread Michael Orlitzky
commit: 185b95f79dbcbe8f2ec3ece66d9a57c6cd0fed35
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Sun Apr  2 02:35:46 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sun Apr  2 02:35:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=185b95f7

x11-plugins/gkrellm-xkb: remove unused version 1.05.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 x11-plugins/gkrellm-xkb/gkrellm-xkb-1.05.ebuild | 15 ---
 1 file changed, 15 deletions(-)

diff --git a/x11-plugins/gkrellm-xkb/gkrellm-xkb-1.05.ebuild 
b/x11-plugins/gkrellm-xkb/gkrellm-xkb-1.05.ebuild
deleted file mode 100644
index 04ee0a22db8..000
--- a/x11-plugins/gkrellm-xkb/gkrellm-xkb-1.05.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit gkrellm-plugin
-
-DESCRIPTION="XKB keyboard switcher for gkrellm2"
-HOMEPAGE="http://tripie.sweb.cz/gkrellm/xkb/;
-SRC_URI="http://tripie.sweb.cz/gkrellm/xkb/dist/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-PLUGIN_SO=xkb.so



[gentoo-commits] proj/sci:master commit in: sci-libs/openblas/

2017-04-01 Thread Benda XU
commit: d10535319c19d2e0e4fad56ebeed85ad874eb980
Author: Benda Xu  gentoo  org>
AuthorDate: Sun Apr  2 04:16:28 2017 +
Commit: Benda XU  gentoo  org>
CommitDate: Sun Apr  2 04:18:16 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=d1053531

sci-libs/openblas: advise openmp cflags in pkg-config.

 sci-libs/openblas/openblas-0.2.15.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sci-libs/openblas/openblas-0.2.15.ebuild 
b/sci-libs/openblas/openblas-0.2.15.ebuild
index 6dc5fd3c2..c419d8974 100644
--- a/sci-libs/openblas/openblas-0.2.15.ebuild
+++ b/sci-libs/openblas/openblas-0.2.15.ebuild
@@ -67,6 +67,7 @@ get_openblas_abi_cflags() {
fi
$(numeric-int64_is_int64_build) && \
openblas_abi_cflags+=( -DOPENBLAS_USE64BITINT )
+   use openmp && openblas_abi_cflags+=( -fopenmp )
echo "${openblas_abi_cflags[@]}"
 }
 



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

2017-04-01 Thread Hans de Graaff
commit: 00499f72ca711c7b98a79383023af3416a514990
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr  2 05:39:45 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Apr  2 05:39:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00499f72

dev-ruby/syntax: fix building with newer rake versions, bug 614260

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ruby/syntax/syntax-1.2.0-r1.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-ruby/syntax/syntax-1.2.0-r1.ebuild 
b/dev-ruby/syntax/syntax-1.2.0-r1.ebuild
index 9f642c10133..28abba848f1 100644
--- a/dev-ruby/syntax/syntax-1.2.0-r1.ebuild
+++ b/dev-ruby/syntax/syntax-1.2.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -21,3 +21,7 @@ IUSE="test doc"
 RUBY_PATCHES=( "${P}-require-set.patch" )
 
 ruby_add_bdepend "doc? ( dev-ruby/rdoc )"
+
+all_ruby_prepare() {
+   sed -i -e '/sshpublisher/ s:^:#:' Rakefile || die
+}



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/astime/

2017-04-01 Thread Michael Orlitzky
commit: 382bd326e5d6555698ee2ad1d124745216623932
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Sun Apr  2 02:33:49 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sun Apr  2 02:33:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=382bd326

x11-plugins/astime: remove unused version 2.8-r1.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 x11-plugins/astime/astime-2.8-r1.ebuild | 38 -
 1 file changed, 38 deletions(-)

diff --git a/x11-plugins/astime/astime-2.8-r1.ebuild 
b/x11-plugins/astime/astime-2.8-r1.ebuild
deleted file mode 100644
index fdb91211e27..000
--- a/x11-plugins/astime/astime-2.8-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Analogue clock utility for X Windows"
-HOMEPAGE="http://www.tigr.net/;
-SRC_URI="http://www.tigr.net/afterstep/download/astime/${P}.tar.gz;
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="jpeg"
-
-RDEPEND="x11-libs/libXpm
-   x11-libs/libSM
-   jpeg? ( virtual/jpeg )"
-
-DEPEND="${RDEPEND}
-   x11-proto/xproto"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   epatch "${FILESDIR}"/${P}-gentoo.patch
-}
-
-src_compile() {
-   econf $(use_enable jpeg) || die "econf failed"
-   emake CC="$(tc-getCC)" || die "emake failed"
-}
-
-src_install () {
-   dodir /usr/bin
-   dodir /usr/share/man/man1
-
-   emake DESTDIR="${D}" install || die
-   dodoc CHANGES README
-}



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

2017-04-01 Thread Michael Orlitzky
commit: 49af7a6d47bbd1d8b75cd3bbb685bff9802928ed
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Sun Apr  2 02:30:18 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sun Apr  2 02:30:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49af7a6d

net-analyzer/nagios-check_logfiles: remove old versions.

The old versions (including the stable version) of this package
require an old perl that isn't in the tree any longer. Now that we
have a new stable version, drop the old ones.

Gentoo-Bug: 518490
Gentoo-Bug: 614316

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-analyzer/nagios-check_logfiles/Manifest|  2 --
 .../nagios-check_logfiles-2.3.2.1-r1.ebuild| 32 --
 .../nagios-check_logfiles-3.7.3.1-r1.ebuild| 26 --
 .../nagios-check_logfiles-3.7.3.1.ebuild   | 27 --
 4 files changed, 87 deletions(-)

diff --git a/net-analyzer/nagios-check_logfiles/Manifest 
b/net-analyzer/nagios-check_logfiles/Manifest
index ccdb8e53cbd..c3fb68b0ec8 100644
--- a/net-analyzer/nagios-check_logfiles/Manifest
+++ b/net-analyzer/nagios-check_logfiles/Manifest
@@ -1,3 +1 @@
-DIST check_logfiles-2.3.2.1.tar.gz 140546 SHA256 
8aba94b2942ac4433368487245085afec30d39ffbc62fcfaa1d3bfacac9edd94 SHA512 
c8295a4cdbe421982d97b7de671e04f4420689f46e5a75b9ca2833a083423a127871350f805f47b2a08a762db914f81ceb0f3badedf545909df55dbbbcb59152
 WHIRLPOOL 
c8f23c872515a6858d0791881d7837a9d68e1c4b32938fb28d3788150e2b75874f77a381e4f405b7aa3cb13c44e1ff6807834e76f5b765b54397dd5533bac91e
-DIST check_logfiles-3.7.3.1.tar.gz 234827 SHA256 
453416566d1d96a4b15f38b0ea9b78d265079f21e850652312e90ae48dc896cf SHA512 
84f196b9687a43dc2be8754a078f64836db45b3e273c52f1dafaaa78fe06a71c6f9fc27ce9b2964c2b4ba5d0a354708472fdd634b18b4e856d54b8bc1c6e393b
 WHIRLPOOL 
5313299d6c5541ab5b082a8688cb28c65493ca670a963d9ccab2264d22b354e0f1877dc0950796b7d5f46e6e02138119d8c9837e0891705197f9dc3dd1b502fc
 DIST nagios-check_logfiles-3.7.6.3.tar.gz 238683 SHA256 
8f782297f276024b4ff545b7c7094eb3a6981ebb719c5cb91fea05267fe3ef04 SHA512 
2f72d571bfc0815e12b5c9a6e178b7b9b6e58d69e2d1a3efc560dd6b7bfd3d04a705d15e93069959611be1981941866e8775ee7d67c5dbf3983a155ab2ec3c91
 WHIRLPOOL 
8b45071210c35e8f3fba5f7b586b23baafaa3fa8a8a1e25d13a97cfa9fd04d8a4ae83b67b66b07956721779cf601e2eb26d4b4109206887d1cb9e923b73ca5ec

diff --git 
a/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-2.3.2.1-r1.ebuild 
b/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-2.3.2.1-r1.ebuild
deleted file mode 100644
index c24af88f74d..000
--- a/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-2.3.2.1-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils multilib
-DESCRIPTION="A nagios plugin for checking logfiles"
-HOMEPAGE="http://www.consol.com/opensource/nagios/check-logfiles;
-
-MY_P=${P/nagios-/}
-
-SRC_URI="http://www.consol.com/fileadmin/opensource/Nagios/${MY_P}.tar.gz;
-LICENSE="GPL-3"
-SLOT="0"
-
-KEYWORDS="~alpha amd64 ~ppc ppc64 ~sparc x86"
-IUSE=""
-
-DEPEND="|| ( >=net-analyzer/nagios-plugins-1.4.13-r1 
>=net-analyzer/monitoring-plugins-2 )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_compile() {
-   econf \
-   --prefix=/usr \
-   --libexecdir=/usr/$(get_libdir)/nagios/plugins \
-   --sysconfdir=/etc/nagios || die "econf failed"
-   emake || die "emake failed"
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die "emake install failed"
-}

diff --git 
a/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-3.7.3.1-r1.ebuild 
b/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-3.7.3.1-r1.ebuild
deleted file mode 100644
index e66d0a53801..000
--- a/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-3.7.3.1-r1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A nagios plugin for checking logfiles"
-HOMEPAGE="https://labs.consol.de/nagios/check_logfiles/index.html;
-
-MY_P=${P/nagios-/}
-
-SRC_URI="https://labs.consol.de/assets/downloads/nagios/${MY_P}.tar.gz;
-LICENSE="GPL-3"
-SLOT="0"
-
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
-
-RDEPEND="|| ( >=net-analyzer/nagios-plugins-1.4.13-r1 
>=net-analyzer/monitoring-plugins-2 )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
-   econf \
-   --libexecdir=/usr/$(get_libdir)/nagios/plugins \
-   --prefix=/usr \
-   --sysconfdir=/etc/nagios
-}

diff --git 
a/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-3.7.3.1.ebuild 
b/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-3.7.3.1.ebuild
deleted file mode 100644
index 0dc016c0d55..000
--- a/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-3.7.3.1.ebuild
+++ 

[gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-imonc/

2017-04-01 Thread Michael Orlitzky
commit: 1b3470e5888941d021050bdd1d9701a1be0640e2
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Sun Apr  2 02:34:44 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sun Apr  2 02:34:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b3470e5

x11-plugins/gkrellm-imonc: remove unused version 0.2.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 x11-plugins/gkrellm-imonc/gkrellm-imonc-0.2.ebuild | 16 
 1 file changed, 16 deletions(-)

diff --git a/x11-plugins/gkrellm-imonc/gkrellm-imonc-0.2.ebuild 
b/x11-plugins/gkrellm-imonc/gkrellm-imonc-0.2.ebuild
deleted file mode 100644
index b4e9adf8853..000
--- a/x11-plugins/gkrellm-imonc/gkrellm-imonc-0.2.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit gkrellm-plugin
-
-IUSE=""
-DESCRIPTION="A GKrellM2 plugin to control a fli4l router"
-SRC_URI="mirror://sourceforge/${PN}/${PN}-src-${PV}.tar.bz2"
-RESTRICT="mirror"
-HOMEPAGE="http://gkrellm-imonc.sourceforge.net/;
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86"
-
-S=${WORKDIR}/${PN}-src-${PV}



[gentoo-commits] repo/gentoo:master commit in: app-crypt/yubikey-manager/

2017-04-01 Thread Göktürk Yüksek
commit: 06c817d3f3a11fbd04f6c310e315230c179be831
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Sun Apr  2 05:44:19 2017 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Sun Apr  2 05:48:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06c817d3

app-crypt/yubikey-manager: initial commit with version 0.3.1

Python library and command line tool for configuring a YubiKey

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-crypt/yubikey-manager/Manifest |  1 +
 app-crypt/yubikey-manager/metadata.xml | 13 
 .../yubikey-manager/yubikey-manager-0.3.1.ebuild   | 24 ++
 3 files changed, 38 insertions(+)

diff --git a/app-crypt/yubikey-manager/Manifest 
b/app-crypt/yubikey-manager/Manifest
new file mode 100644
index 000..6ce6dac71cd
--- /dev/null
+++ b/app-crypt/yubikey-manager/Manifest
@@ -0,0 +1 @@
+DIST yubikey-manager-0.3.1.tar.gz 50433 SHA256 
cf60cbbfc12a331afe6e261e0294326ec18eeb43bba559049638308f1656306f SHA512 
bc5871483d0fafdba93f20bfd270364485c286170f1c1a90af19d0874828f9a31febdc23e5519f4f7d90b988cfc88bde01cacaa3f2d1e00b3cd4dbacd619cda4
 WHIRLPOOL 
8e3915dada18731d5454dce6deb21fc4fd1ea97c07eb6a4494b23dc40bfdc364744eae7a7a608eb5cd9bbe2793a0c86e3e455f3a874997964303e08dd1dd19d0

diff --git a/app-crypt/yubikey-manager/metadata.xml 
b/app-crypt/yubikey-manager/metadata.xml
new file mode 100644
index 000..07ad13b3783
--- /dev/null
+++ b/app-crypt/yubikey-manager/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+gokt...@gentoo.org
+Göktürk Yüksek
+  
+  
+Yubikey Manager is a python library and command line tool for
+configuring any YubiKey over all USB transports. It's a CLI
+successor of app-crypt/yubikey-neo-manager.
+  
+

diff --git a/app-crypt/yubikey-manager/yubikey-manager-0.3.1.ebuild 
b/app-crypt/yubikey-manager/yubikey-manager-0.3.1.ebuild
new file mode 100644
index 000..0d39029f39e
--- /dev/null
+++ b/app-crypt/yubikey-manager/yubikey-manager-0.3.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+inherit distutils-r1
+
+DESCRIPTION="Python library and command line tool for configuring a YubiKey"
+HOMEPAGE="https://developers.yubico.com/yubikey-manager/;
+SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.gz;
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/pyscard[${PYTHON_USEDEP}]
+   dev-python/pyusb[${PYTHON_USEDEP}]
+   dev-python/click[${PYTHON_USEDEP}]
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7)
+"



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

2017-04-01 Thread Hans de Graaff
commit: 380f33db58735d082c7cda7c9ebbed52fa9fe59e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr  2 05:18:22 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Apr  2 05:18:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=380f33db

dev-ruby/cri: add 2.8.0

Package-Manager: Portage-2.3.3, Repoman-2.3.1

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

diff --git a/dev-ruby/cri/Manifest b/dev-ruby/cri/Manifest
index 01e57dae264..ab36c1faa52 100644
--- a/dev-ruby/cri/Manifest
+++ b/dev-ruby/cri/Manifest
@@ -1 +1,2 @@
 DIST cri-2.7.1.gem 25088 SHA256 
989fc14d1986c9c252c84e1b22e300fd139ef6bc4c9c57762a93cbf7eb4fd5f5 SHA512 
37d641390dc83550c254b3c48018f7f2c53f73161807c299cb78ef84b8625e5f00cd8c877ac464ece5c6623d7118872c45648ed56c2bd5f53ae62cd66b8e24d1
 WHIRLPOOL 
85a5eb19f439d8fb53c56139bf6fe14faef2790c2eb5c319b2e8c52d92807f257771180afcf7af4342747cd69ae4787ad5266fb3f01bb2a2c01fba9f9f8fc9a5
+DIST cri-2.8.0.gem 25600 SHA256 
61da9c5aa44d46b0e1e4bc2a7f310ed6f521883aeb318a456fb237ba6e005240 SHA512 
ea8543debfda3a9e6ed1ea304b93dcf12114cdade532981b6c1e854ce37fa0c939455b7501f7b36a6efbdd1fd6b77696b97f9baacdb7029f55a9e707c19225a6
 WHIRLPOOL 
b31d1bb63e59ffdcc9fc6d3e8cd7090ad9a7dac9a7602e68883c5417e69bef36fccd65f740f362ab46d85dfb22899a813782d1405ae14e779bc56b4bcc085478

diff --git a/dev-ruby/cri/cri-2.8.0.ebuild b/dev-ruby/cri/cri-2.8.0.ebuild
new file mode 100644
index 000..055a4d156bd
--- /dev/null
+++ b/dev-ruby/cri/cri-2.8.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_EXTRADOC="NEWS.md README.adoc"
+
+RUBY_FAKEGEM_TASK_DOC="doc"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Cri is a library for building easy-to-use commandline tools"
+HOMEPAGE="http://rubygems.org/gems/cri;
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/colored-1.2"
+
+ruby_add_bdepend "doc? ( dev-ruby/yard )
+   test? ( dev-ruby/yard dev-ruby/minitest )"
+
+all_ruby_prepare() {
+   sed -e '/coveralls/I s:^:#:' -i test/helper.rb || die
+   sed -i -e '/rubocop/ s:^:#:' \
+   -e '/RuboCop/,/end/ s:^:#:' Rakefile || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib -S rake test_unit || die
+}



[gentoo-commits] repo/gentoo:master commit in: media-tv/kodi/

2017-04-01 Thread David Seifert
commit: ad413a7318b01ccca23f9a058a1a2d1c19f34915
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Mar 28 03:11:04 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:20:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad413a73

media-tv/kodi: Add dependency on dev-libs/rapidjson, remove dependency on 
dev-libs/yajl-2

Gentoo-bug: 613810
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4310

 media-tv/kodi/kodi-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-tv/kodi/kodi-.ebuild b/media-tv/kodi/kodi-.ebuild
index 68227f2364e..230dd7cc2e5 100644
--- a/media-tv/kodi/kodi-.ebuild
+++ b/media-tv/kodi/kodi-.ebuild
@@ -54,7 +54,6 @@ COMMON_DEPEND="${PYTHON_DEPS}
dev-libs/libxml2
>=dev-libs/lzo-2.04
dev-libs/tinyxml[stl]
-   >=dev-libs/yajl-2
dev-python/pillow[${PYTHON_USEDEP}]
dev-libs/libcdio
dev-libs/libfmt
@@ -117,6 +116,7 @@ DEPEND="${COMMON_DEPEND}
app-arch/zip
dev-lang/swig
dev-libs/crossguid
+   dev-libs/rapidjson
dev-util/cmake
dev-util/gperf
media-libs/giflib



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

2017-04-01 Thread David Seifert
commit: bb5ceff1f0b6a70c7e01ca566f14c33406556578
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Mar 28 03:09:35 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:20:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb5ceff1

dev-libs/rapidjson: A fast JSON parser/generator for C++ with both SAX/DOM 
style API

Gentoo-bug: 614100
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4310

 dev-libs/rapidjson/Manifest   |  1 +
 dev-libs/rapidjson/metadata.xml   | 16 +
 dev-libs/rapidjson/rapidjson-1.1.0.ebuild | 40 +++
 dev-libs/rapidjson/rapidjson-.ebuild  | 40 +++
 4 files changed, 97 insertions(+)

diff --git a/dev-libs/rapidjson/Manifest b/dev-libs/rapidjson/Manifest
new file mode 100644
index 000..f6b84ff6f2b
--- /dev/null
+++ b/dev-libs/rapidjson/Manifest
@@ -0,0 +1 @@
+DIST rapidjson-1.1.0.tar.gz 1019402 SHA256 
bf7ced29704a1e696fbccf2a2b4ea068e7774fa37f6d7dd4039d0787f8bed98e SHA512 
2e82a4bddcd6c4669541f5945c2d240fb1b4fdd6e239200246d3dd50ce98733f0a4f6d3daa56f865d8c88779c036099c52a9ae85d47ad263686b68a88d832dff
 WHIRLPOOL 
01863b2fd4270776bea95530a15a815a9b27f8157250d59889351b154fcc591643c6f1071371bf667935833229c93ba8c2de803d9263491d79d73594c05003aa

diff --git a/dev-libs/rapidjson/metadata.xml b/dev-libs/rapidjson/metadata.xml
new file mode 100644
index 000..8d243cccf84
--- /dev/null
+++ b/dev-libs/rapidjson/metadata.xml
@@ -0,0 +1,16 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   candr...@integralblue.com
+   Craig Andrews
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   https://github.com/miloyip/rapidjson/issues
+   miloyip/rapidjson
+   
+

diff --git a/dev-libs/rapidjson/rapidjson-1.1.0.ebuild 
b/dev-libs/rapidjson/rapidjson-1.1.0.ebuild
new file mode 100644
index 000..8f3a254b791
--- /dev/null
+++ b/dev-libs/rapidjson/rapidjson-1.1.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="A fast JSON parser/generator for C++ with both SAX/DOM style API"
+HOMEPAGE="http://rapidjson.org/;
+
+LICENSE="MIT"
+IUSE="doc examples test"
+SLOT="0"
+
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="git://github.com/miloyip/rapidjson.git"
+   inherit git-r3
+else
+   SRC_URI="https://github.com/miloyip/rapidjson/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+   S="${WORKDIR}/rapidjson-${PV}"
+fi
+
+DEPEND="
+   doc? ( app-doc/doxygen )
+   test? (
+   dev-cpp/gtest
+   dev-util/valgrind
+   )"
+RDEPEND=""
+
+src_configure() {
+   local mycmakeargs=(
+   -DRAPIDJSON_BUILD_DOC=$(usex doc)
+   -DRAPIDJSON_BUILD_EXAMPLES=$(usex examples)
+   -DRAPIDJSON_BUILD_TESTS=$(usex test)
+   -DRAPIDJSON_BUILD_THIRDPARTY_GTEST=OFF
+   )
+   cmake-utils_src_configure
+}

diff --git a/dev-libs/rapidjson/rapidjson-.ebuild 
b/dev-libs/rapidjson/rapidjson-.ebuild
new file mode 100644
index 000..8f3a254b791
--- /dev/null
+++ b/dev-libs/rapidjson/rapidjson-.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="A fast JSON parser/generator for C++ with both SAX/DOM style API"
+HOMEPAGE="http://rapidjson.org/;
+
+LICENSE="MIT"
+IUSE="doc examples test"
+SLOT="0"
+
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="git://github.com/miloyip/rapidjson.git"
+   inherit git-r3
+else
+   SRC_URI="https://github.com/miloyip/rapidjson/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+   S="${WORKDIR}/rapidjson-${PV}"
+fi
+
+DEPEND="
+   doc? ( app-doc/doxygen )
+   test? (
+   dev-cpp/gtest
+   dev-util/valgrind
+   )"
+RDEPEND=""
+
+src_configure() {
+   local mycmakeargs=(
+   -DRAPIDJSON_BUILD_DOC=$(usex doc)
+   -DRAPIDJSON_BUILD_EXAMPLES=$(usex examples)
+   -DRAPIDJSON_BUILD_TESTS=$(usex test)
+   -DRAPIDJSON_BUILD_THIRDPARTY_GTEST=OFF
+   )
+   cmake-utils_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/trayer/, x11-misc/trayer/files/

2017-04-01 Thread David Seifert
commit: f87a7939f464757daef7cdd5559a9639129fcbbc
Author: Harri Nieminen  gmail  com>
AuthorDate: Sun Mar 26 07:31:06 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:20:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f87a7939

x11-misc/trayer: Dont include libXmu

Gentoo-Bug: https://bugs.gentoo.org/613842
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4302

 .../files/trayer-1.0-dont-include-libXmu.patch | 24 ++
 x11-misc/trayer/trayer-1.0-r2.ebuild   |  2 ++
 x11-misc/trayer/trayer-1.0-r3.ebuild   |  1 +
 3 files changed, 27 insertions(+)

diff --git a/x11-misc/trayer/files/trayer-1.0-dont-include-libXmu.patch 
b/x11-misc/trayer/files/trayer-1.0-dont-include-libXmu.patch
new file mode 100644
index 000..8b9fd291d15
--- /dev/null
+++ b/x11-misc/trayer/files/trayer-1.0-dont-include-libXmu.patch
@@ -0,0 +1,24 @@
+From 710efb0c8192e704a83fd3d4b8b3c0d6be984246 Mon Sep 17 00:00:00 2001
+From: Harri Nieminen 
+Date: Sun, 26 Mar 2017 10:08:05 +0300
+Subject: [PATCH] Don't include libXmu
+
+---
+ systray/main.c | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/systray/main.c b/systray/main.c
+index dff5455..79cbe34 100644
+--- a/systray/main.c
 b/systray/main.c
+@@ -2,7 +2,6 @@
+ #include 
+ #include 
+ 
+-#include 
+ #include 
+ 
+ #include "panel.h"
+-- 
+2.12.1
+

diff --git a/x11-misc/trayer/trayer-1.0-r2.ebuild 
b/x11-misc/trayer/trayer-1.0-r2.ebuild
index eb0f827a998..9876527f2e6 100644
--- a/x11-misc/trayer/trayer-1.0-r2.ebuild
+++ b/x11-misc/trayer/trayer-1.0-r2.ebuild
@@ -24,6 +24,8 @@ DEPEND="
virtual/pkgconfig
 "
 
+PATCHES=( "${FILESDIR}"/${P}-dont-include-libXmu.patch )
+
 src_prepare() {
default
# fix for as-needed, bug #141707

diff --git a/x11-misc/trayer/trayer-1.0-r3.ebuild 
b/x11-misc/trayer/trayer-1.0-r3.ebuild
index 574902f5043..ad5fb8df846 100644
--- a/x11-misc/trayer/trayer-1.0-r3.ebuild
+++ b/x11-misc/trayer/trayer-1.0-r3.ebuild
@@ -26,6 +26,7 @@ DEPEND="
 
 PATCHES=(
"${FILESDIR}"/${P}-dont-include-gdk-pixbuf-xlib.patch
+   "${FILESDIR}"/${P}-dont-include-libXmu.patch
"${FILESDIR}"/${P}-as-needed-and-pre-stripped.patch
 )
 



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Console_CommandLine/

2017-04-01 Thread Michael Weber
commit: 4f8ef26489656daba8ea12566baf61b564627267
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 10:37:22 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 10:37:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f8ef264

dev-php/PEAR-Console_CommandLine: add ~ppc keyword (bug 594824).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

 dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild 
b/dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild
index 68861dcda4c..bdd79c1f472 100644
--- a/dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild
+++ b/dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~hppa ~ppc64 x86"
+KEYWORDS="amd64 arm ~hppa ~ppc ~ppc64 x86"
 IUSE="examples test"
 
 # Only needs PEAR_Exception (not yet packaged) -- not all of PEAR-PEAR.



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

2017-04-01 Thread Michael Weber
commit: bbffd24d305402fc880e0f8d933b2c415daa9087
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 10:38:38 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 10:38:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbffd24d

mail-client/roundcube: add ~ppc keyword (bug 594824).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

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

diff --git a/mail-client/roundcube/roundcube-1.2.4.ebuild 
b/mail-client/roundcube/roundcube-1.2.4.ebuild
index 28d0cc22b0f..4ce1abb11e7 100644
--- a/mail-client/roundcube/roundcube-1.2.4.ebuild
+++ b/mail-client/roundcube/roundcube-1.2.4.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/${PN}/${MY_PN}/releases/download/${PV/_/-}/${MY_P}.t
 # roundcube is GPL-licensed, the rest of the licenses here are
 # for bundled PEAR components, googiespell and utf8.class.php
 LICENSE="GPL-3 BSD PHP-2.02 PHP-3 MIT public-domain"
-KEYWORDS="amd64 arm ~ppc64 x86"
+KEYWORDS="amd64 arm ~ppc ~ppc64 x86"
 
 IUSE="enigma ldap managesieve mysql postgres sqlite ssl spell"
 REQUIRED_USE="|| ( mysql postgres sqlite )"



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2017-04-01 Thread Michael Weber
commit: 708022cf54d84fffefa8ce62ed43f8513b55c46d
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 10:38:00 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 10:38:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=708022cf

dev-php/PEAR-Crypt_GPG: add ~ppc keyword (bug 594824).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild   | 2 +-
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild   | 2 +-
 dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
index 66c312a73c4..d859e36bfc0 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.4.2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="GNU Privacy Guard (GnuPG)"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm ~ppc64 x86"
+KEYWORDS="amd64 arm ~ppc ~ppc64 x86"
 IUSE=""
 DEPEND=">=dev-lang/php-5.2.1:*[posix,unicode]"
 RDEPEND="${DEPEND}

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
index 5d8d3d04172..ad7e0803a74 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 # Really only needs PEAR_Exception, not PEAR-PEAR.

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
index 726076e5283..6b6f6674bff 100644
--- a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
 IUSE="test"
 
 # Really only needs PEAR_Exception, not PEAR-PEAR.



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

2017-04-01 Thread Hans de Graaff
commit: 7f17513272dcec8befeea3bd4fec0d712ae1c242
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Apr  1 06:02:59 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Apr  1 06:17:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f175132

dev-ruby/github_api: cleanup

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ruby/github_api/Manifest |  2 --
 dev-ruby/github_api/github_api-0.14.0.ebuild | 42 
 dev-ruby/github_api/github_api-0.14.1.ebuild | 42 
 3 files changed, 86 deletions(-)

diff --git a/dev-ruby/github_api/Manifest b/dev-ruby/github_api/Manifest
index 7152826a2ec..c25bf0faa8e 100644
--- a/dev-ruby/github_api/Manifest
+++ b/dev-ruby/github_api/Manifest
@@ -1,4 +1,2 @@
 DIST github_api-0.12.4.tar.gz 2024775 SHA256 
14d1cb0b9872297683e3dce55808550602d31bfde6778981bae85453bb7c7b10 SHA512 
3517a5375359d233207aacc4fd1ac971e91f2be1c61dfa4529a0d531bca698e25c4f177932c5536c16808fe523bede64f20b92b9f30586706b9817ff9dc24cfe
 WHIRLPOOL 
c92e0f7a75c0a7a356afd26b664847a02f6a9f115e4cce9f200571728ffbe2f1dd00da87675b4ea5b16651262f7dece6553d430435ba3991657c61c82d3fbcde
-DIST github_api-0.14.0.tar.gz 2042476 SHA256 
e9dfa394d3401790c29204eafd5fbe959f5c66a2378566c6b623de9217245cde SHA512 
01460b0ff362ababbdb82aea697f2b02043f3e6007de1811dcb32dee915df91b2f45a00a373315d6f5b5a4499c20f3c315bb31e10e176535511d65d84c4d138f
 WHIRLPOOL 
d71e11c5aa7f475c747c50fec2fecb150cdf91a0a9cd1e6a576c6a85fbe7efc164f270f86f9f386f32e95e699b2cda86e7560e0069b299cfaa6ab00585220fc0
-DIST github_api-0.14.1.tar.gz 2046140 SHA256 
bf005b8d57a5af65e3cfa244e82341be16eacb017e950101fec3b672f513d9cc SHA512 
be4e05cd1239b8930158a5631f636791274a3f9f722f5cd90d5de1bb84be20e28677e05519684e008b7552f884a9caa7dacb3875abb8687d4d19b4babb131ff9
 WHIRLPOOL 
4f0a23915d3f29d0f261177634c3f730ce92375479d71a6a746ffd594c5bbaae539b1f00467043fa34c074857cc24db985a1fd5fe1b4881ecf55f101584620e1
 DIST github_api-0.14.5.tar.gz 2047231 SHA256 
f85da640b8ee5daa6c412f73cb87a55bfe71af86533d8cd2a3853f664b3e5b8b SHA512 
c19b8364e627427ae0447810b7d56b5bf50f89030a02af9b19116abc906ac780149b47d54ae3a93d4e1a3f52461fd1b8fe969501fa5ec6e535db22749b8ecd89
 WHIRLPOOL 
db44f29ed0b57a15a1f2479cd0cad13aa199b989ebfdd15fdfca1e69d17729d52a22f2fff367d96d473e76d65551222eb09938f528e4145bb0a794cd50cb7a6d

diff --git a/dev-ruby/github_api/github_api-0.14.0.ebuild 
b/dev-ruby/github_api/github_api-0.14.0.ebuild
deleted file mode 100644
index e701f2e8829..000
--- a/dev-ruby/github_api/github_api-0.14.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A Ruby wrapper for the GitHub REST API v3"
-HOMEPAGE="https://github.com/peter-murach/github;
-SRC_URI="https://github.com/peter-murach/github/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-RUBY_S="github-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/addressable-2.4
-   >=dev-ruby/descendants_tracker-0.0.4
-   >=dev-ruby/faraday-0.8
-   =dev-ruby/hashie-3.4
-   dev-ruby/oauth2"
-
-ruby_add_bdepend "test? ( >=dev-ruby/rspec-2.14 dev-ruby/webmock )"
-
-all_ruby_prepare() {
-   # Work around or avoid webmock incompatibilities
-   files=$(grep -R -l "with(inputs)" spec)
-   sed -i -e 's/\.with(inputs)//' \
-   -e 's/\.with(inputs.except(.*))//' ${files} || die
-   sed -i -e 's/.with(hub_inputs.*)//' 
spec/github/client/repos/pub_sub_hubbub/*subscribe* || die
-   sed -i -e 's/.with({})//i' 
spec/github/client/repos/{list,contributors}_spec.rb || die
-   sed -i -e 's/.with({.*})//' 
spec/github/client/orgs/memberships/edit_spec.rb || die
-   rm -f spec/github/error/service_error_spec.rb 
spec/github/client/authorizations/two_factor_spec.rb || die
-}

diff --git a/dev-ruby/github_api/github_api-0.14.1.ebuild 
b/dev-ruby/github_api/github_api-0.14.1.ebuild
deleted file mode 100644
index 4b99c2e8564..000
--- a/dev-ruby/github_api/github_api-0.14.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A Ruby wrapper for the GitHub REST API v3"
-HOMEPAGE="https://github.com/peter-murach/github;
-SRC_URI="https://github.com/peter-murach/github/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-RUBY_S="github-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/addressable-2.4
-   

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

2017-04-01 Thread Michael Weber
commit: 43e8bce3e82771215fa8eefe6bee4bcc1c3453ac
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 09:35:22 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 09:35:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43e8bce3

mail-client/claws-mail: add ~ppc keyword (bug 614064).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

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

diff --git a/mail-client/claws-mail/claws-mail-3.15.0.ebuild 
b/mail-client/claws-mail/claws-mail-3.15.0.ebuild
index 419461cfc01..f1441fc66f9 100644
--- a/mail-client/claws-mail/claws-mail-3.15.0.ebuild
+++ b/mail-client/claws-mail/claws-mail-3.15.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://www.claws-mail.org/download.php?file=releases/${P}.tar.xz;
 
 SLOT="0"
 LICENSE="GPL-3"
-KEYWORDS="~amd64 ~hppa ~ppc64 ~x86"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
 
 IUSE="archive bogofilter calendar clamav dbus debug doc gdata +gnutls gtk3 
+imap ipv6 ldap +libcanberra +libindicate +libnotify networkmanager nls nntp 
+notification pda pdf perl +pgp python rss session sieve smime spamassassin 
spam-report spell startup-notification svg valgrind xface"
 REQUIRED_USE="libcanberra? ( notification )



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-sr/

2017-04-01 Thread David Seifert
commit: 01e6f9608b5b3f665c868c2f710c2af1c82ac98d
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:27 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:44:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01e6f960

app-dicts/aspell-sr: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-sr/aspell-sr-0.60.ebuild | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/app-dicts/aspell-sr/aspell-sr-0.60.ebuild 
b/app-dicts/aspell-sr/aspell-sr-0.60.ebuild
index 4e78650f3e3..5e495930305 100644
--- a/app-dicts/aspell-sr/aspell-sr-0.60.ebuild
+++ b/app-dicts/aspell-sr/aspell-sr-0.60.ebuild
@@ -1,16 +1,19 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Serbian"
-ASPOSTFIX="6"
+ASPELL_VERSION=6
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
-LICENSE="GPL-2"
+MY_P="aspell6-sr-0.02"
 
+SRC_URI="http://srpski.org/aspell/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""
 
-FILENAME="aspell6-sr-0.02"
-SRC_URI="http://srpski.org/aspell/${FILENAME}.tar.bz2;
-S="${WORKDIR}/${FILENAME}"
+S="${WORKDIR}/${MY_P}"



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-sl/

2017-04-01 Thread David Seifert
commit: 97cf4b7f481dd2e6f647c2bf4763237fc0290d3c
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:27 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:44:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97cf4b7f

app-dicts/aspell-sl: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-sl/aspell-sl-0.50.0.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-dicts/aspell-sl/aspell-sl-0.50.0.ebuild 
b/app-dicts/aspell-sl/aspell-sl-0.50.0.ebuild
index f6596da2746..6907222b301 100644
--- a/app-dicts/aspell-sl/aspell-sl-0.50.0.ebuild
+++ b/app-dicts/aspell-sl/aspell-sl-0.50.0.ebuild
@@ -1,11 +1,12 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Slovenian"
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
 LICENSE="GPL-2"
-
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-ga/

2017-04-01 Thread David Seifert
commit: 450cec125a739aaa1fd77b049b3bbd67788d415d
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:25 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=450cec12

app-dicts/aspell-ga: Bump to EAPI 6

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-ga/aspell-ga-0.50.4.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-dicts/aspell-ga/aspell-ga-0.50.4.ebuild 
b/app-dicts/aspell-ga/aspell-ga-0.50.4.ebuild
index 7366734231f..0123d2fbb8d 100644
--- a/app-dicts/aspell-ga/aspell-ga-0.50.4.ebuild
+++ b/app-dicts/aspell-ga/aspell-ga-0.50.4.ebuild
@@ -1,11 +1,12 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Irish"
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
 LICENSE="GPL-2"
-
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-hu/

2017-04-01 Thread David Seifert
commit: 476b38cce2fa3336399373fc5ffb156f4d1bb458
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:25 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=476b38cc

app-dicts/aspell-hu: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-hu/aspell-hu-0.99.4.2.ebuild | 16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/app-dicts/aspell-hu/aspell-hu-0.99.4.2.ebuild 
b/app-dicts/aspell-hu/aspell-hu-0.99.4.2.ebuild
index daffe9f336d..269a21f70b8 100644
--- a/app-dicts/aspell-hu/aspell-hu-0.99.4.2.ebuild
+++ b/app-dicts/aspell-hu/aspell-hu-0.99.4.2.ebuild
@@ -1,17 +1,19 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Hungarian"
-ASPOSTFIX="6"
+ASPELL_VERSION=6
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
-LICENSE="GPL-2"
+MY_P="aspell6-hu-0.99.4.2-0"
+
+SRC_URI="mirror://gnu/aspell/dict/hu/${MY_P}.tar.bz2"
 
+LICENSE="GPL-2"
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ppc ppc64 sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""
 
-FILENAME="aspell6-hu-0.99.4.2-0"
-SRC_URI="mirror://gnu/aspell/dict/hu/${FILENAME}.tar.bz2"
-
-S="${WORKDIR}/${FILENAME}"
+S="${WORKDIR}/${MY_P}"



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-nl/

2017-04-01 Thread David Seifert
commit: f1744fa5a82690ec54e9472f3079bc2a225c3025
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:26 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1744fa5

app-dicts/aspell-nl: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-nl/aspell-nl-0.50.2.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-dicts/aspell-nl/aspell-nl-0.50.2.ebuild 
b/app-dicts/aspell-nl/aspell-nl-0.50.2.ebuild
index fabb389b96b..b0f20c4dc58 100644
--- a/app-dicts/aspell-nl/aspell-nl-0.50.2.ebuild
+++ b/app-dicts/aspell-nl/aspell-nl-0.50.2.ebuild
@@ -1,11 +1,12 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Dutch"
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
 LICENSE="freedist"
-
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-sk/

2017-04-01 Thread David Seifert
commit: fe3eb88ad4375274e10764a886af147216e89ec5
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:27 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:44:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe3eb88a

app-dicts/aspell-sk: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-sk/aspell-sk-2.01.2.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/app-dicts/aspell-sk/aspell-sk-2.01.2.ebuild 
b/app-dicts/aspell-sk/aspell-sk-2.01.2.ebuild
index 662ee0c793d..05e6ae54302 100644
--- a/app-dicts/aspell-sk/aspell-sk-2.01.2.ebuild
+++ b/app-dicts/aspell-sk/aspell-sk-2.01.2.ebuild
@@ -1,12 +1,13 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Slovak"
-ASPOSTFIX="6"
+ASPELL_VERSION=6
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
 LICENSE="GPL-2"
-
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-fr/

2017-04-01 Thread David Seifert
commit: f87b78b7ef0ecc0ae6fc08adf967cbd2ecf7acb8
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:25 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f87b78b7

app-dicts/aspell-fr: Bump to EAPI 6

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-fr/aspell-fr-0.60.ebuild | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/app-dicts/aspell-fr/aspell-fr-0.60.ebuild 
b/app-dicts/aspell-fr/aspell-fr-0.60.ebuild
index 169be29e620..e257c729d34 100644
--- a/app-dicts/aspell-fr/aspell-fr-0.60.ebuild
+++ b/app-dicts/aspell-fr/aspell-fr-0.60.ebuild
@@ -1,19 +1,22 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="French"
-ASPOSTFIX="6"
+ASPELL_VERSION=6
 
 # This is a hack to allow for using the French 0.50 dictionary until I have
 # the time to do this properly. Do not stabilise this.
 
-inherit aspell-dict
+inherit aspell-dict-r1
+
+MY_P="aspell-fr-0.50-3"
+
+SRC_URI="mirror://gnu/aspell/dict/fr/${MY_P}.tar.bz2"
 
 LICENSE="GPL-2"
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos"
-
-FILENAME="aspell-fr-0.50-3"
-SRC_URI="mirror://gnu/aspell/dict/fr/${FILENAME}.tar.bz2"
 IUSE=""
 
-S=${WORKDIR}/${FILENAME}
+S=${WORKDIR}/${MY_P}



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-hy/

2017-04-01 Thread David Seifert
commit: 9ca4c2f04ccaa0e99ceea7aca97c6980f3c3584d
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:26 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ca4c2f0

app-dicts/aspell-hy: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-hy/aspell-hy-0.10.0.ebuild | 16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/app-dicts/aspell-hy/aspell-hy-0.10.0.ebuild 
b/app-dicts/aspell-hy/aspell-hy-0.10.0.ebuild
index 20f2c7d01bf..ecb020f28dd 100644
--- a/app-dicts/aspell-hy/aspell-hy-0.10.0.ebuild
+++ b/app-dicts/aspell-hy/aspell-hy-0.10.0.ebuild
@@ -1,17 +1,19 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Armenian"
-ASPOSTFIX="6"
+ASPELL_VERSION=6
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
-LICENSE="GPL-2"
+MY_P=aspell6-hy-0.10.0-0
+
+SRC_URI="mirror://gnu/aspell/dict/hy/${MY_P}.tar.bz2"
 
+LICENSE="GPL-2"
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ppc ppc64 sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""
 
-FILENAME=aspell6-hy-0.10.0-0
-SRC_URI="mirror://gnu/aspell/dict/hy/${FILENAME}.tar.bz2"
-
-S="${WORKDIR}/${FILENAME}"
+S="${WORKDIR}/${MY_P}"



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-ro/

2017-04-01 Thread David Seifert
commit: 235a84172ef41dcbf4926fd6eb7213eeb7d89f16
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:27 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:44:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=235a8417

app-dicts/aspell-ro: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-ro/aspell-ro-3.3.2.ebuild | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/app-dicts/aspell-ro/aspell-ro-3.3.2.ebuild 
b/app-dicts/aspell-ro/aspell-ro-3.3.2.ebuild
index c6a652f7b65..5283ef42246 100644
--- a/app-dicts/aspell-ro/aspell-ro-3.3.2.ebuild
+++ b/app-dicts/aspell-ro/aspell-ro-3.3.2.ebuild
@@ -1,13 +1,15 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Romanian"
-ASPOSTFIX="5"
+ASPELL_VERSION=5
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
 HOMEPAGE="http://aspell.net http://rospell.sourceforge.net/;
 
 LICENSE="GPL-2"
-
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-pt/

2017-04-01 Thread David Seifert
commit: 9d1a358d2c8b0f8d1a6430c4bb5e3a9993fcc118
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:26 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d1a358d

app-dicts/aspell-pt: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-pt/aspell-pt-0.50.2-r1.ebuild | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-dicts/aspell-pt/aspell-pt-0.50.2-r1.ebuild 
b/app-dicts/aspell-pt/aspell-pt-0.50.2-r1.ebuild
index a2a6173cb99..5be881b7dc9 100644
--- a/app-dicts/aspell-pt/aspell-pt-0.50.2-r1.ebuild
+++ b/app-dicts/aspell-pt/aspell-pt-0.50.2-r1.ebuild
@@ -1,9 +1,11 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Portuguese"
 
-inherit multilib aspell-dict
+inherit aspell-dict-r1
 
 LICENSE="GPL-2"
 
@@ -11,7 +13,8 @@ KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc 
ppc64 s390 sh sparc x8
 IUSE=""
 
 src_install() {
-   aspell-dict_src_install
-   rm "${D}"/usr/$(get_libdir)/aspell-0.60/pt_BR*
-   rm "${D}"/usr/$(get_libdir)/aspell-0.60/brazilian.alias
+   aspell-dict-r1_src_install
+
+   rm "${ED%/}"/usr/$(get_libdir)/aspell-0.60/pt_BR* || die
+   rm "${ED%/}"/usr/$(get_libdir)/aspell-0.60/brazilian.alias || die
 }



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-it/

2017-04-01 Thread David Seifert
commit: 0ea963a913e87867ba4e99277096fcb0540909e9
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:26 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ea963a9

app-dicts/aspell-it: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-it/aspell-it-2.4.20070901.ebuild | 16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/app-dicts/aspell-it/aspell-it-2.4.20070901.ebuild 
b/app-dicts/aspell-it/aspell-it-2.4.20070901.ebuild
index 5d3378a9628..110de34f83c 100644
--- a/app-dicts/aspell-it/aspell-it-2.4.20070901.ebuild
+++ b/app-dicts/aspell-it/aspell-it-2.4.20070901.ebuild
@@ -1,17 +1,19 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Italian"
-ASPOSTFIX="6"
+ASPELL_VERSION=6
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
-LICENSE="GPL-2"
+MY_P="aspell${ASPELL_VERSION}-${PN#aspell-}-${PV%.*}-${PV##*.}-0"
 
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
-IUSE=
+SRC_URI="mirror://sourceforge/linguistico/${MY_P}.tar.bz2"
 
-MY_P=aspell${ASPOSTFIX}-${PN#aspell-}-${PV%.*}-${PV##*.}-0
+LICENSE="GPL-2"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+IUSE=""
 
-SRC_URI="mirror://sourceforge/linguistico/${MY_P}.tar.bz2"
 S=${WORKDIR}/${MY_P}



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-hr/

2017-04-01 Thread David Seifert
commit: d52cba7eaca01a6e3bcac7db42c6d7a621f0b0b4
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:25 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d52cba7e

app-dicts/aspell-hr: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-hr/aspell-hr-0.51.0.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-dicts/aspell-hr/aspell-hr-0.51.0.ebuild 
b/app-dicts/aspell-hr/aspell-hr-0.51.0.ebuild
index d3a1c734836..9c5aef8cb87 100644
--- a/app-dicts/aspell-hr/aspell-hr-0.51.0.ebuild
+++ b/app-dicts/aspell-hr/aspell-hr-0.51.0.ebuild
@@ -1,11 +1,12 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Croatian"
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
 LICENSE="GPL-2"
-
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-he/

2017-04-01 Thread David Seifert
commit: b9d02063bafbf1740144c9174e52b8275ba6ea4f
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:25 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9d02063

app-dicts/aspell-he: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-he/aspell-he-1.0.0.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/app-dicts/aspell-he/aspell-he-1.0.0.ebuild 
b/app-dicts/aspell-he/aspell-he-1.0.0.ebuild
index 1d89813..3e0f1eb1573 100644
--- a/app-dicts/aspell-he/aspell-he-1.0.0.ebuild
+++ b/app-dicts/aspell-he/aspell-he-1.0.0.ebuild
@@ -1,12 +1,13 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Hebrew"
-ASPOSTFIX="6"
+ASPELL_VERSION=6
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
 LICENSE="GPL-2"
-
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-lt/

2017-04-01 Thread David Seifert
commit: 856e7368e7c0f0ffb68b93c471f5184666d80ecc
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:26 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=856e7368

app-dicts/aspell-lt: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-lt/aspell-lt-1.0.1.ebuild | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/app-dicts/aspell-lt/aspell-lt-1.0.1.ebuild 
b/app-dicts/aspell-lt/aspell-lt-1.0.1.ebuild
index ef78d7f2ca8..3ddd9a934db 100644
--- a/app-dicts/aspell-lt/aspell-lt-1.0.1.ebuild
+++ b/app-dicts/aspell-lt/aspell-lt-1.0.1.ebuild
@@ -1,16 +1,19 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Lithuanian"
-ASPOSTFIX="6"
+ASPELL_VERSION=6
+
+inherit aspell-dict-r1
 
-inherit aspell-dict
+MY_P="aspell6-lt-1.0-1"
+
+SRC_URI="mirror://gnu/aspell/dict/lt/${MY_P}.tar.bz2"
 
 LICENSE="GPL-2"
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
-
-FILENAME="aspell6-lt-1.0-1"
-SRC_URI="mirror://gnu/aspell/dict/lt/${FILENAME}.tar.bz2"
 IUSE=""
 
-S="${WORKDIR}/${FILENAME}"
+S="${WORKDIR}/${MY_P}"



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-vi/

2017-04-01 Thread David Seifert
commit: 41b51501475a2b51863d801d2582924cde6f9e45
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:27 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:44:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41b51501

app-dicts/aspell-vi: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-vi/aspell-vi-0.01.1.1.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/app-dicts/aspell-vi/aspell-vi-0.01.1.1.ebuild 
b/app-dicts/aspell-vi/aspell-vi-0.01.1.1.ebuild
index 9e24c71e156..d0b99923f56 100644
--- a/app-dicts/aspell-vi/aspell-vi-0.01.1.1.ebuild
+++ b/app-dicts/aspell-vi/aspell-vi-0.01.1.1.ebuild
@@ -1,12 +1,13 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Vietnamese"
-ASPOSTFIX="6"
+ASPELL_VERSION=6
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
 LICENSE="GPL-2"
-
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-pt-br/

2017-04-01 Thread David Seifert
commit: 210b4c63b49798f26b30d9f2f2cc983216d6641f
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:27 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=210b4c63

app-dicts/aspell-pt-br: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-pt-br/aspell-pt-br-6.0.20090702.ebuild | 13 -
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/app-dicts/aspell-pt-br/aspell-pt-br-6.0.20090702.ebuild 
b/app-dicts/aspell-pt-br/aspell-pt-br-6.0.20090702.ebuild
index b540c2b82b1..34ca6d72f64 100644
--- a/app-dicts/aspell-pt-br/aspell-pt-br-6.0.20090702.ebuild
+++ b/app-dicts/aspell-pt-br/aspell-pt-br-6.0.20090702.ebuild
@@ -1,19 +1,22 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Brazilian Portuguese"
-ASPOSTFIX=6
+ASPELL_VERSION=6
+
+inherit aspell-dict-r1
 
-inherit aspell-dict
+MY_P="aspell6-pt_BR-20090702-0"
 
-FILENAME=aspell6-pt_BR-20090702-0
-SRC_URI="mirror://gnu/aspell/dict/pt_BR/${FILENAME}.tar.bz2"
+SRC_URI="mirror://gnu/aspell/dict/pt_BR/${MY_P}.tar.bz2"
 
 LICENSE="LGPL-2"
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""
 
-S=${WORKDIR}/${FILENAME}
+S=${WORKDIR}/${MY_P}
 
 # Contains a conflict
 RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-pl/

2017-04-01 Thread David Seifert
commit: 028c0f68647df6b0117867dec5df200a4397efee
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:26 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=028c0f68

app-dicts/aspell-pl: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-pl/aspell-pl-6.0.20120418.0.ebuild | 15 ++-
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/app-dicts/aspell-pl/aspell-pl-6.0.20120418.0.ebuild 
b/app-dicts/aspell-pl/aspell-pl-6.0.20120418.0.ebuild
index 5f014c0b0e6..5a5785b6ffd 100644
--- a/app-dicts/aspell-pl/aspell-pl-6.0.20120418.0.ebuild
+++ b/app-dicts/aspell-pl/aspell-pl-6.0.20120418.0.ebuild
@@ -1,15 +1,20 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Polish"
-ASPOSTFIX="6"
-inherit versionator aspell-dict
+ASPELL_VERSION=6
+
+inherit versionator aspell-dict-r1
+
+MY_P="${PN/aspell/aspell6}-$(replace_version_separator 2 _ 
$(replace_version_separator 3 -))"
 
 HOMEPAGE="http://www.sjp.pl/slownik/;
+SRC_URI="http://www.sjp.pl/slownik/ort/sjp-${MY_P}.tar.bz2;
+
 LICENSE="GPL-2"
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""
 
-FILENAME="${PN/aspell/aspell6}-$(replace_version_separator 2 _ 
$(replace_version_separator 3 -))"
-SRC_URI="http://www.sjp.pl/slownik/ort/sjp-${FILENAME}.tar.bz2;
-S="${WORKDIR}/${FILENAME}"
+S="${WORKDIR}/${MY_P}"



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-sv/

2017-04-01 Thread David Seifert
commit: 1a6fc2998d7d4fce4b83a8ababc80bb26461717b
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:27 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:44:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a6fc299

app-dicts/aspell-sv: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-sv/aspell-sv-0.51.0.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-dicts/aspell-sv/aspell-sv-0.51.0.ebuild 
b/app-dicts/aspell-sv/aspell-sv-0.51.0.ebuild
index 5cbe19c28c8..23e76f9d1e9 100644
--- a/app-dicts/aspell-sv/aspell-sv-0.51.0.ebuild
+++ b/app-dicts/aspell-sv/aspell-sv-0.51.0.ebuild
@@ -1,11 +1,12 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Swedish"
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
 LICENSE="GPL-2"
-
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-is/

2017-04-01 Thread David Seifert
commit: 0814b59a92e0afd39766a1a07b6f8654d59b5b79
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:26 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0814b59a

app-dicts/aspell-is: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-is/aspell-is-0.51.1.0.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-dicts/aspell-is/aspell-is-0.51.1.0.ebuild 
b/app-dicts/aspell-is/aspell-is-0.51.1.0.ebuild
index 69352262b10..a9d8dc22e04 100644
--- a/app-dicts/aspell-is/aspell-is-0.51.1.0.ebuild
+++ b/app-dicts/aspell-is/aspell-is-0.51.1.0.ebuild
@@ -1,11 +1,12 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Icelandic"
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
 LICENSE="GPL-2"
-
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-ru/

2017-04-01 Thread David Seifert
commit: 4348cfb8cbc54edc35ad8e8a9c3b969ede20085f
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:27 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:44:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4348cfb8

app-dicts/aspell-ru: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-ru/aspell-ru-0.99.1-r1.ebuild | 24 +---
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/app-dicts/aspell-ru/aspell-ru-0.99.1-r1.ebuild 
b/app-dicts/aspell-ru/aspell-ru-0.99.1-r1.ebuild
index 553c104fdf9..793e034b27b 100644
--- a/app-dicts/aspell-ru/aspell-ru-0.99.1-r1.ebuild
+++ b/app-dicts/aspell-ru/aspell-ru-0.99.1-r1.ebuild
@@ -1,25 +1,27 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Russian"
-ASPOSTFIX="6"
+ASPELL_VERSION=6
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
-LICENSE="GPL-2"
+# very strange filename not supported by the gentoo naming scheme
+MY_P="aspell6-ru-0.99f7-1"
 
+SRC_URI="mirror://gnu/aspell/dict/ru/${MY_P}.tar.bz2"
+
+LICENSE="GPL-2"
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""
 
-# very strange filename not supported by the gentoo naming scheme
-FILENAME=aspell6-ru-0.99f7-1
+S=${WORKDIR}/${MY_P}
 
-SRC_URI="mirror://gnu/aspell/dict/ru/${FILENAME}.tar.bz2"
-S=${WORKDIR}/${FILENAME}
+src_prepare() {
+   default
 
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   einfo "Set default dictionary to ru-yeyo."
+   einfo "Setting default dictionary to ru-yeyo"
cp -v ru-yeyo.multi ru.multi || die
 }



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-gl/

2017-04-01 Thread David Seifert
commit: 5044837a7361f6824d0a0adb3a10423141cc75d1
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:25 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5044837a

app-dicts/aspell-gl: Bump to EAPI 6

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-gl/aspell-gl-0.5.2.ebuild | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/app-dicts/aspell-gl/aspell-gl-0.5.2.ebuild 
b/app-dicts/aspell-gl/aspell-gl-0.5.2.ebuild
index 73c355459ce..f9b68e210f0 100644
--- a/app-dicts/aspell-gl/aspell-gl-0.5.2.ebuild
+++ b/app-dicts/aspell-gl/aspell-gl-0.5.2.ebuild
@@ -1,17 +1,20 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Galician"
-ASPOSTFIX="6"
+ASPELL_VERSION=6
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
-LICENSE="GPL-2"
+MY_P=${P%.*}a-${PV##*.}
+MY_P=aspell${ASPELL_VERSION}-${MY_P/aspell-/}
 
+SRC_URI="mirror://gnu/aspell/dict/${ASPELL_SPELLANG}/${MY_P}.tar.bz2"
+
+LICENSE="GPL-2"
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""
 
-MY_P=${P%.*}a-${PV##*.}
-MY_P=aspell${ASPOSTFIX}-${MY_P/aspell-/}
 S=${WORKDIR}/${MY_P}
-SRC_URI="mirror://gnu/aspell/dict/${SPELLANG}/${MY_P}.tar.bz2"



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-no/

2017-04-01 Thread David Seifert
commit: f0b4ba66de3754f72a08551ae4b079743c909905
Author: David Seifert  gentoo  org>
AuthorDate: Sat Apr  1 10:41:26 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:43:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0b4ba66

app-dicts/aspell-no: Bump to EAPI 6

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4237

 app-dicts/aspell-no/aspell-no-0.50.2.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-dicts/aspell-no/aspell-no-0.50.2.ebuild 
b/app-dicts/aspell-no/aspell-no-0.50.2.ebuild
index 0af5efb63a0..b1c5b8a4df1 100644
--- a/app-dicts/aspell-no/aspell-no-0.50.2.ebuild
+++ b/app-dicts/aspell-no/aspell-no-0.50.2.ebuild
@@ -1,11 +1,12 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 ASPELL_LANG="Norwegian"
 
-inherit aspell-dict
+inherit aspell-dict-r1
 
 LICENSE="GPL-2"
-
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""



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

2017-04-01 Thread Michael Weber
commit: 76d6ce457981b2e1ce88f3af73696d97d5f09c3a
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 10:01:51 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 10:01:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76d6ce45

mail-client/roundcube: add ~ppc64 keyword (bug 594824).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

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

diff --git a/mail-client/roundcube/roundcube-1.2.4.ebuild 
b/mail-client/roundcube/roundcube-1.2.4.ebuild
index 3666f7f0c46..28d0cc22b0f 100644
--- a/mail-client/roundcube/roundcube-1.2.4.ebuild
+++ b/mail-client/roundcube/roundcube-1.2.4.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/${PN}/${MY_PN}/releases/download/${PV/_/-}/${MY_P}.t
 # roundcube is GPL-licensed, the rest of the licenses here are
 # for bundled PEAR components, googiespell and utf8.class.php
 LICENSE="GPL-3 BSD PHP-2.02 PHP-3 MIT public-domain"
-KEYWORDS="amd64 arm x86"
+KEYWORDS="amd64 arm ~ppc64 x86"
 
 IUSE="enigma ldap managesieve mysql postgres sqlite ssl spell"
 REQUIRED_USE="|| ( mysql postgres sqlite )"



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Console_CommandLine/

2017-04-01 Thread Michael Weber
commit: 3659e877449b7d72a302a10cf217d8f9f5c18760
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 09:59:52 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 09:59:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3659e877

dev-php/PEAR-Console_CommandLine: add ~ppc64 keyword (bug 594824).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

 dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild 
b/dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild
index 14202b43ff2..68861dcda4c 100644
--- a/dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild
+++ b/dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~hppa x86"
+KEYWORDS="amd64 arm ~hppa ~ppc64 x86"
 IUSE="examples test"
 
 # Only needs PEAR_Exception (not yet packaged) -- not all of PEAR-PEAR.



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

2017-04-01 Thread David Seifert
commit: fc968ed0091e2d4367abe0c5ee0e714c9ab9b1c3
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:36:08 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:23:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc968ed0

x11-misc/xtrlock: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/xtrlock/Manifest   |  1 -
 x11-misc/xtrlock/xtrlock-2.7.ebuild | 39 -
 2 files changed, 40 deletions(-)

diff --git a/x11-misc/xtrlock/Manifest b/x11-misc/xtrlock/Manifest
index e67fd8eeb2f..9e93e89e65a 100644
--- a/x11-misc/xtrlock/Manifest
+++ b/x11-misc/xtrlock/Manifest
@@ -1,2 +1 @@
-DIST xtrlock_2.7.tar.gz 20939 SHA256 
9993e099fe1c74176fa4b7863cbcf1f746307ee6c90c9ad1e4d2dae1871be6b9 SHA512 
44693dfa7b8b109b19c4f61902ac5c181af1d8fb6044115517391211411239a506108e6fd5b998978030f997f9094e9df18e5d40499c6b3b83a42cf9dd1b7f92
 WHIRLPOOL 
687572be8b7e5118e7d9afedb8c54c74afb647caebc5f4c14c59af2871d86cf25a1c596563e2c903774ab11842b92d2c6245e1c3c9762036c4bcdcfe5373a2e6
 DIST xtrlock_2.8.tar.gz 21125 SHA256 
3848b0c9f2597247e82932f43c42cc9fd7171b808dc08ae84b40a13f7f969604 SHA512 
a1388250430f7cb7bfe875aae938c332098f9e88ab7a17d68634b36726acfa7a459bf40f71e6df3c6b1256fb4574a62b2fc72357c6e779c1bc55f10204634068
 WHIRLPOOL 
fc0c7c0becf915a2643c3d727c406f4fab10326667ec790926a92bd6967fae3fde86be5e05d43777a1f7e621efce07bc0de22a326a8be954a2596b54f0255a7c

diff --git a/x11-misc/xtrlock/xtrlock-2.7.ebuild 
b/x11-misc/xtrlock/xtrlock-2.7.ebuild
deleted file mode 100644
index ed159a61dc3..000
--- a/x11-misc/xtrlock/xtrlock-2.7.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit toolchain-funcs
-
-#Note: there's no difference vs 2.0-12
-MY_P=${P/-/_}
-
-DESCRIPTION="A simplistic screen locking program for X"
-SRC_URI="mirror://debian/pool/main/x/xtrlock/${MY_P}.tar.gz"
-HOMEPAGE="http://ftp.debian.org/debian/pool/main/x/xtrlock/;
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-RDEPEND="x11-libs/libX11"
-DEPEND="${RDEPEND}
-   x11-proto/xproto
-   x11-misc/imake"
-
-src_prepare() {
-   sed -i -e 's|".*"|"'"${PV}"'"|g' patchlevel.h || die
-}
-
-src_compile() {
-   xmkmf || die
-   emake CDEBUGFLAGS="${CFLAGS} -DSHADOW_PWD" CC="$(tc-getCC)" \
-   EXTRA_LDOPTIONS="${LDFLAGS}" xtrlock
-}
-
-src_install() {
-   dobin xtrlock
-   chmod u+s "${D}"/usr/bin/xtrlock
-   newman xtrlock.man xtrlock.1
-   dodoc debian/changelog
-}



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

2017-04-01 Thread David Seifert
commit: 1e7c0a916114f8a1ed0eeffef9500444dce9ed66
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:29:40 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:23:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e7c0a91

x11-misc/xfe: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/xfe/Manifest  |  1 -
 x11-misc/xfe/xfe-1.40.1.ebuild | 72 --
 2 files changed, 73 deletions(-)

diff --git a/x11-misc/xfe/Manifest b/x11-misc/xfe/Manifest
index 005508c4de7..b492d3265a7 100644
--- a/x11-misc/xfe/Manifest
+++ b/x11-misc/xfe/Manifest
@@ -1,2 +1 @@
-DIST xfe-1.40.1.tar.gz 2627754 SHA256 
ec3d9495bb329c6199f6265dbfb514ffd3bdb8801e36ccc4e8fac6cea15bcc71 SHA512 
d4d701dc84b342ca6f728073ff746d7308cc1cf1254956e41831cfa933649c7ac2ed32a55e6dc92047636e99f14d2609f5307aab5af07c700e597dd1cf4bf4cb
 WHIRLPOOL 
00469cfe07604986b0a24fbcbb79c2174af6fc91ccaa7c08a47c31e6450ae637d3e1db002485d730f4ee241156c155754dcebd5a0d629941f101921c2825f533
 DIST xfe-1.42.tar.gz 2727833 SHA256 
a1e3e892584988c80b3a492f7b3cb78e1ee84d7148e6d1fc9d6054bbd8063bec SHA512 
858dd761e45ff09d32d2a230304be0817eab4b6a772376b08d778bb8e1eef681228e5d88e53c441f9b8722d8b7eeae96980e30f8c5e8bb603d4d9a3b3d267351
 WHIRLPOOL 
388d95e5623a49a6a9eae22a5ee2a97d496445fb6bf395c4129d5be82f786cefea5c6c771423facd139241bf04777ea8b1ee839be503e171f3493b0751d517bd

diff --git a/x11-misc/xfe/xfe-1.40.1.ebuild b/x11-misc/xfe/xfe-1.40.1.ebuild
deleted file mode 100644
index d4b519baba2..000
--- a/x11-misc/xfe/xfe-1.40.1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PLOCALES="
-   bs ca cs da de el es_AR es_CO es fr hu it ja nl no pl pt_BR pt_PT ru sv 
tr
-   zh_CN zh_TW
-"
-inherit autotools l10n
-
-DESCRIPTION="MS-Explorer-like minimalist file manager for X"
-HOMEPAGE="http://roland65.free.fr/xfe;
-SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~sparc x86"
-IUSE="debug nls startup-notification"
-
-RDEPEND="
-   media-libs/libpng:0
-   x11-libs/fox:1.6[truetype,png]
-   x11-libs/libX11
-   x11-libs/libXft
-   startup-notification? ( x11-libs/startup-notification )
-"
-DEPEND="
-   ${RDEPEND}
-   virtual/pkgconfig
-   nls? (
-   dev-util/intltool
-   sys-devel/gettext
-   )
-"
-
-DOCS=( AUTHORS BUGS ChangeLog README TODO )
-
-src_prepare() {
-   cat >po/POTFILES.skip <<-EOF
-   src/icons.cpp
-   xfe.desktop.in.in
-   xfi.desktop.in.in
-   xfp.desktop.in.in
-   xfv.desktop.in.in
-   xfw.desktop.in.in
-   EOF
-
-   # malformed LINGUAS file
-   # recent intltool expects newline for every linguas
-   sed -i \
-   -e '/^#/!s:\s\s*:\n:g' \
-   po/LINGUAS || die
-
-   # remove not selected locales
-   rm_locale() { sed -i -e "/${1}/d" po/LINGUAS || die ;}
-   l10n_for_each_disabled_locale_do rm_locale
-
-   sed -i \
-   -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \
-   configure.ac || die
-
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   $(use_enable debug) \
-   $(use_enable nls) \
-   $(use_enable startup-notification sn) \
-   --enable-minimalflags
-}



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

2017-04-01 Thread David Seifert
commit: a0de3883439544d0ac722afdad7c4e53d707616f
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:25:11 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:22:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0de3883

x11-misc/wbar: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/wbar/wbar-2.3.4-r1.ebuild | 53 --
 1 file changed, 53 deletions(-)

diff --git a/x11-misc/wbar/wbar-2.3.4-r1.ebuild 
b/x11-misc/wbar/wbar-2.3.4-r1.ebuild
deleted file mode 100644
index 40424acd149..000
--- a/x11-misc/wbar/wbar-2.3.4-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools bash-completion-r1 eutils
-
-DESCRIPTION="A fast, lightweight quick launch bar"
-HOMEPAGE="https://github.com/rodolf0/wbar;
-SRC_URI="https://${PN}.googlecode.com/files/${P}.tgz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gtk"
-
-RDEPEND="media-libs/imlib2[X]
-   x11-libs/libX11
-   gtk? ( gnome-base/libglade
-   media-libs/freetype:2
-   x11-libs/gdk-pixbuf:2
-   x11-libs/gtk+:2 )"
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-src_prepare() {
-   use gtk || epatch "${FILESDIR}"/${PN}-2.3.3-cfg.patch
-   epatch \
-   "${FILESDIR}"/${PN}-2.3.3-desktopfile.patch \
-   "${FILESDIR}"/${PN}-2.3.3-nowerror.patch \
-   "${FILESDIR}"/${PN}-2.3.3-test.patch \
-   "${FILESDIR}"/${P}-automake-1.13.patch
-
-   sed -i \
-   -e "/^bashcompletiondir/s:=.*$:=$(get_bashcompdir):" \
-   etc/Makefile.am || die #482358
-
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   $(use_enable gtk wbar-config)
-}
-
-pkg_postinst() {
-   einfo
-   elog "media-libs/imlib2 needs to be compiled with the appropriate 
useflags"
-   elog "depending on your choice of image files (such as png, jpeg...)"
-   einfo
-}



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

2017-04-01 Thread David Seifert
commit: ef79394d83e697dd8ef9fbae33951a385c688ef0
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:25:43 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:23:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef79394d

x11-misc/wininfo: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/wininfo/wininfo-0.7.ebuild | 30 --
 1 file changed, 30 deletions(-)

diff --git a/x11-misc/wininfo/wininfo-0.7.ebuild 
b/x11-misc/wininfo/wininfo-0.7.ebuild
deleted file mode 100644
index b4281c3c6c5..000
--- a/x11-misc/wininfo/wininfo-0.7.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-inherit eutils
-
-DESCRIPTION="An X app that follows your pointer providing information about 
the windows below"
-HOMEPAGE="https://freedesktop.org/Software/wininfo;
-SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-RDEPEND="x11-libs/gtk+:2
-   x11-libs/libX11
-   x11-libs/libXres
-   x11-libs/libXext"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-desktop-entry.patch
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die "emake install failed."
-   dodoc AUTHORS ChangeLog NEWS README
-}



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

2017-04-01 Thread David Seifert
commit: ae429c4f05cc236107b11c511ead9a9b13311aa6
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:23:52 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:22:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae429c4f

x11-misc/tint2: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/tint2/Manifest|  1 -
 x11-misc/tint2/metadata.xml|  1 -
 x11-misc/tint2/tint2-0.12.3.ebuild | 66 --
 3 files changed, 68 deletions(-)

diff --git a/x11-misc/tint2/Manifest b/x11-misc/tint2/Manifest
index 7a6660f32aa..77ae5af232e 100644
--- a/x11-misc/tint2/Manifest
+++ b/x11-misc/tint2/Manifest
@@ -1,2 +1 @@
 DIST tint2-0.12.12.tar.gz 469724 SHA256 
e4c6ffb67eb1242f19d94037b072602bc751ac71ca61352dea3465168e643450 SHA512 
10a1f42df6a66f6e092d69cd0ea3d900dcef57b06391206d950a1d7f576a880829bb44d00828a030d3172184db238a22f205169c12cc32cf42c6321d61929a8c
 WHIRLPOOL 
197b92a93eb0368708824159bde41bd81143d0423a1f9ab83b2af4a11b3e3055a40481b9746f095e10cca84f7d772237a92d06bf267761021be308c0b3b5d553
-DIST tint2-0.12.3.tar.gz 251977 SHA256 
655cde38f4d358d69f3628f722c7da7768e193769ac876cc24b59f328bcd3d6c SHA512 
8022895617905446bc01e548ece9df63d32ae1ef3bafc2de2c79fb2c0e91ab78d036e8c9165ea4d4224dd70edb510266bbea47baf382abbf27a275b60b7d1465
 WHIRLPOOL 
057ba74074d5e013d9c882a6cbef1bd75f80b1eba857bda933c5936511b1d2b9a519c770b1a2f31360774232e03962ca47dea73ad5f4ef21bcd6530d2c123662

diff --git a/x11-misc/tint2/metadata.xml b/x11-misc/tint2/metadata.xml
index 25ea024dffb..3187164d5a9 100644
--- a/x11-misc/tint2/metadata.xml
+++ b/x11-misc/tint2/metadata.xml
@@ -5,7 +5,6 @@
amy...@gentoo.org


-   Install tint2rc examples
Enable battery status plugin
Build/Install tint2conf as well


diff --git a/x11-misc/tint2/tint2-0.12.3.ebuild 
b/x11-misc/tint2/tint2-0.12.3.ebuild
deleted file mode 100644
index 8f076c0c139..000
--- a/x11-misc/tint2/tint2-0.12.3.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils gnome2-utils
-
-DESCRIPTION="tint2 is a lightweight panel/taskbar for Linux."
-HOMEPAGE="https://gitlab.com/o9000/tint2;
-SRC_URI="https://gitlab.com/o9000/${PN}/repository/archive.tar.gz?ref=v${PV} 
-> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="battery examples svg startup-notification tint2conf"
-
-DEPEND="
-   dev-libs/glib:2
-   svg? ( gnome-base/librsvg:2 )
-   >=media-libs/imlib2-1.4.2[X,png]
-   x11-libs/cairo
-   x11-libs/pango[X]
-   tint2conf? ( x11-libs/gtk+:2 )
-   x11-libs/libX11
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXinerama
-   >=x11-libs/libXrandr-1.3
-   x11-libs/libXrender
-   startup-notification? ( x11-libs/startup-notification )
-   "
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-v${PV}"
-
-PATCHES=( "${FILESDIR}/${PV}-no-hardcode-update-icon-cache.patch" )
-
-src_unpack() {
-   default
-   # Chop off the SHA1 gitlab's automated tarballs inject
-   mv "${PN}-v${PV}-"* "${PN}-v${PV}"
-}
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_enable battery BATTERY)
-   $(cmake-utils_use_enable examples EXAMPLES)
-   $(cmake-utils_use_enable tint2conf TINT2CONF)
-   $(cmake-utils_use_enable startup-notification SN)
-   $(cmake-utils_use_enable svg RSVG)
-   )
-
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



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

2017-04-01 Thread David Seifert
commit: c435caa71d8f846cd4085a595f063753b72a4658
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:30:44 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:23:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c435caa7

x11-misc/xkbd: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/xkbd/Manifest  |  1 -
 x11-misc/xkbd/xkbd-0.8.15-r1.ebuild | 55 -
 2 files changed, 56 deletions(-)

diff --git a/x11-misc/xkbd/Manifest b/x11-misc/xkbd/Manifest
index a018017fa9b..1f77cefe544 100644
--- a/x11-misc/xkbd/Manifest
+++ b/x11-misc/xkbd/Manifest
@@ -1,2 +1 @@
-DIST xkbd-0.8.15-CVS.tar.gz 344790 SHA256 
04bc9f6ea423f7fbd9150767cef6a1bc5c70c545eeb923539a93a549905457de SHA512 
967ade3567ee7f6f43e4b51b2ca1d8a30497124289b3c8d078c22b879a93d4a74244dd212e424f31922aa49c4b47f88eb2d6ebe078841233b59eead95bd8ea35
 WHIRLPOOL 
061df4c59d824f23450c56096a7f20d77a7b62e73906b9e6c63b9cb2f5c53d3f27dc5a90ab0d84e8ef8bd209aa634506d2793e7ba4ed171a9a4041f6bf177af8
 DIST xkbd-0.8.16.tar.gz 347616 SHA256 
c85848851dfa42636a4eebec7f7f121365aa28b27554a0c1d5eca15ed4107471 SHA512 
8410f722cb93069eea26f9d1ed6b9fea76ed5222b8586c2f78ccc1a0f040a964e165df0611ce72c108dbc7adeec31515595c81be3867e68c0cadd8846d985d4a
 WHIRLPOOL 
38f729d2cddfb246b823dc49e3e4e9cc86060bb3bd6c11b46d289907f00ea66de57ecbc168494710d7dbb2efa418978e3e9c117fc98b7a70de3efdb1b3bf57bd

diff --git a/x11-misc/xkbd/xkbd-0.8.15-r1.ebuild 
b/x11-misc/xkbd/xkbd-0.8.15-r1.ebuild
deleted file mode 100644
index 85f6526cd4e..000
--- a/x11-misc/xkbd/xkbd-0.8.15-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-inherit eutils
-
-DESCRIPTION="Xkbd - onscreen soft keyboard for X11"
-HOMEPAGE="http://handhelds.org/;
-SRC_URI="ftp://ftp.yzu.edu.tw/mirror/pub2/ftp.handhelds.org/distributions/familiar/source/v0.8.4-rc1/sources/${P}-CVS.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc x86"
-IUSE="doc debug"
-
-RDEPEND="x11-libs/libXrender
-   x11-libs/libX11
-   x11-libs/libXft
-   x11-libs/libXtst
-   x11-libs/libXpm
-   media-libs/freetype
-   dev-libs/expat
-   sys-libs/zlib
-   doc? ( app-text/docbook-sgml-utils )"
-DEPEND="${RDEPEND}
-   x11-proto/xproto
-   x11-proto/xextproto"
-
-src_prepare() {
-   # 2008-03-23 gi1242: Fix handling of -geometry argument
-   epatch "${FILESDIR}"/${P}-fix-geometry.patch
-   # 2008-03-23 gi1242: Increase default repeat delay
-   epatch "${FILESDIR}"/${P}-increase-delay.patch
-   epatch "${FILESDIR}"/${P}-fix-keysyms-search.patch
-}
-
-src_configure() {
-   econf \
-   $(use_enable debug)
-}
-
-src_compile() {
-   emake || die
-   use doc && docbook2html README
-}
-
-src_install() {
-   einstall || die
-   dodoc AUTHORS NEWS README
-
-   if use doc; then
-   insinto /usr/share/doc/${PF}/html
-   doins *.html
-   fi
-}



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

2017-04-01 Thread David Seifert
commit: 116d5869ce8d947569d3f6bff229e8dacc468752
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:37:32 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:23:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=116d5869

x11-misc/xwit: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/xwit/Manifest|  1 -
 x11-misc/xwit/xwit-3.4.ebuild | 33 -
 2 files changed, 34 deletions(-)

diff --git a/x11-misc/xwit/Manifest b/x11-misc/xwit/Manifest
index 09b354449ae..0a938eb5736 100644
--- a/x11-misc/xwit/Manifest
+++ b/x11-misc/xwit/Manifest
@@ -1,3 +1,2 @@
-DIST xwit-3.4.tar.gz 14536 SHA256 
d915a7f2f8809da41edcc7784c2618be3f8ce179d82d8ace6d27ba264332c729 SHA512 
db0cc8cd7e899790493ca97fa4f12869385d1cfaa807298476d961401004d752531fe75ec72520733e78d81dcd91009c1b4437295056dc1de6219d766235cc5f
 WHIRLPOOL 
a72beed7ee71abc4b1679979bb05185f97fe905f2bf36b1bab6cc9874fc282b303ce458e5f1acdc9497fdc545444582f1e943d014c2747782bbbd0b70f961b08
 DIST xwit_3.4-15.debian.tar.gz 20722 SHA256 
71ee4d9816086f603754a4c16da8fd773c590821af386eb8adc2665623089f8c SHA512 
047e00e5ff0282729495f39c7cb264837306da46d24e4d95e835d6d0060acd0bfa8f8cedff37ab8c503f267d8c5d42e5af0120cba6260e6eb9dd8c9a3a9dab46
 WHIRLPOOL 
d246a368077e1025517dd59b6c8282bc9bdbe75dfa675aaad7cc0e9016b4663bba47da05a930e5e985d299ed2a8e54d7b0e7ffcea6f1c33974c195bc4d10
 DIST xwit_3.4.orig.tar.gz 14557 SHA256 
32e7b4929d31209791cab36e083a3fa6076f84b46dafad8642834a57675078f8 SHA512 
265114f81ede19e477685373e39deed3cf7cd3fd9dbb445362f34ea96dac6d9686d1c55cf882636f7d02598c83f5ee1ca2688fcbd01f6fc7ef34cac75691df94
 WHIRLPOOL 
b6989175ef4db74d977969b5a22f9f5f4c01ee9457c3d1009273a45b994606dced8f0ed982f19699480a221f636800fdccd0a89ce563193e0af6190aec389a10

diff --git a/x11-misc/xwit/xwit-3.4.ebuild b/x11-misc/xwit/xwit-3.4.ebuild
deleted file mode 100644
index c73dfdc9bbd..000
--- a/x11-misc/xwit/xwit-3.4.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A collection of simple routines to call some of those X11 
functions"
-HOMEPAGE="https://tracker.debian.org/pkg/xwit;
-SRC_URI="http://ftp.x.org/contrib/utilities/${P}.tar.gz;
-
-LICENSE="public-domain HPND"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE=""
-
-RDEPEND="x11-libs/libX11"
-DEPEND="${RDEPEND}
-   x11-proto/xproto"
-
-src_prepare() {
-   epatch "${FILESDIR}"/malloc.patch
-   cp -vf "${FILESDIR}"/Makefile .
-}
-
-src_compile() {
-   tc-export CC
-   emake || die
-}
-
-src_install() {
-   dobin xwit || die
-   newman xwit.man xwit.1 || die
-}



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

2017-04-01 Thread David Seifert
commit: aea866f4b86978abdd01d67980b8d8dce5755188
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:27:33 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:23:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aea866f4

x11-misc/xautomation: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/xautomation/Manifest|  1 -
 x11-misc/xautomation/xautomation-1.05.ebuild | 31 
 2 files changed, 32 deletions(-)

diff --git a/x11-misc/xautomation/Manifest b/x11-misc/xautomation/Manifest
index 861579801fe..05a01c0b39a 100644
--- a/x11-misc/xautomation/Manifest
+++ b/x11-misc/xautomation/Manifest
@@ -1,2 +1 @@
-DIST xautomation-1.05.tar.gz 114472 SHA256 
b57056699c405f12ad07254bd2486202df56bbfe2ca9db60cf4f3bedf7425d93 SHA512 
88915bdc35baf9efe5f5ab2475ebe88e5f5f8face06ac87a857dcec78ad3a4614e57e4dd30353f12e28e4f588d030c38d25bd6f12eb6df62c79a5712655563b0
 WHIRLPOOL 
62b670a4bc35b8509dd3a872404301b39a2dd55a0f73d0fbcae1cda82fba9b1c9ebcd18f52c6a395956aedd25289e6b80554d11b11917387e8719f447f11e3a6
 DIST xautomation-1.09.tar.gz 123995 SHA256 
ee8f2c61165da682f58371a51cfc263d6e54609b614e712320b0987779d95f0d SHA512 
60de78ef9e4bd605ff2cdf1cd34771940d043a2ba0498a053d54dad82476aa123afe91690e7f57d2f346845d4b1313bc0e4d3df524815265c817961978ef4ad8
 WHIRLPOOL 
51315082d23227805ce969760e12fadf4fa54b2cf6bfe7ccf93af5e5cf7faed9dfffb8a27fa922560c5720e2dea644a82b1e4d2b568dc69270efd70e06cb1c20

diff --git a/x11-misc/xautomation/xautomation-1.05.ebuild 
b/x11-misc/xautomation/xautomation-1.05.ebuild
deleted file mode 100644
index 8502781f6c2..000
--- a/x11-misc/xautomation/xautomation-1.05.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-DESCRIPTION="Control X from command line and find things on screen"
-HOMEPAGE="http://hoopajoo.net/projects/xautomation.html;
-SRC_URI="http://hoopajoo.net/static/projects/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc x86"
-IUSE=""
-
-RDEPEND="
-   media-libs/libpng
-   x11-libs/libX11
-   x11-libs/libXtst
-"
-DEPEND="
-   ${RDEPEND}
-   x11-proto/inputproto
-   x11-proto/xextproto
-   x11-proto/xproto
-"
-
-DOCS=( AUTHORS ChangeLog )
-
-src_prepare() {
-   export LIBS="-lX11"
-}



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

2017-04-01 Thread David Seifert
commit: dd8de19811cf28ec5a903fc79ab9aad696917115
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:35:15 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:23:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd8de198

x11-misc/xsnap: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/xsnap/Manifest|  1 -
 x11-misc/xsnap/xsnap-1.5.10.ebuild | 54 --
 2 files changed, 55 deletions(-)

diff --git a/x11-misc/xsnap/Manifest b/x11-misc/xsnap/Manifest
index 8a73edf1519..287e0e29417 100644
--- a/x11-misc/xsnap/Manifest
+++ b/x11-misc/xsnap/Manifest
@@ -1,2 +1 @@
-DIST xsnap-1.5.10.tar.bz2 54172 SHA256 
6839586dd3bdcef8c4fcc1e11d52716fb6a92b3a1d7613801f880da3b5ce332f SHA512 
d82414d1d5a99eba692b32b30b434119b60567eb89b62b1ea3cb3dfbc9e71e2196ee6ca667a02bfdb8d27fd3ec6df3589fe97702fff9758d3139881b32697b55
 WHIRLPOOL 
6c7137f2544cf9cef566e5e269967d15562578c0010ba20db596b0581971142fe375c4f0b59a7fc6dcb6b3440e0e584eaf2784e7dfbcad3b67ae2f59f3c26706
 DIST xsnap-1.5.15.tar.bz2 46574 SHA256 
e83cd5dc98fb682effd15db5a7423392236cf88f73fc98ca3972a2555c080fb9 SHA512 
898914dd0bfec93b641815cc07522d4ea6168266a7f5efe75715cf68555e8959a72b40b0a02e75244348afc6aa77d267fbe7ee60670da5f33e6db2f6c4476dac
 WHIRLPOOL 
aeb8a26e92af4b6cb602d4d33293bca511c502443215b5cddb4f2185663481e3fd540df5d6ed73b6a640526e040129cb4c8698879f342faf38e03b173385d53c

diff --git a/x11-misc/xsnap/xsnap-1.5.10.ebuild 
b/x11-misc/xsnap/xsnap-1.5.10.ebuild
deleted file mode 100644
index b072ea80870..000
--- a/x11-misc/xsnap/xsnap-1.5.10.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Program to interactively take a 'snapshot' of a region of the 
screen"
-HOMEPAGE="ftp://ftp.ac-grenoble.fr/ge/Xutils/;
-SRC_URI="ftp://ftp.ac-grenoble.fr/ge/Xutils/${P}.tar.bz2;
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux"
-IUSE=""
-
-COMMON_DEPEND="
-   media-libs/libpng:0
-   virtual/jpeg:0
-   x11-libs/libX11
-   x11-libs/libXft
-   x11-libs/libXpm
-"
-RDEPEND="${COMMON_DEPEND}
-   media-fonts/font-misc-misc"
-DEPEND="${COMMON_DEPEND}
-   app-text/rman
-   dev-lang/perl
-   x11-misc/imake
-   x11-proto/xproto"
-
-DOCS=( AUTHORS Changelog README )
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-prefix.patch
-
-   xmkmf || die
-   sed -i \
-   -e '/ CC = /d' \
-   -e '/ LD = /d' \
-   -e '/ CDEBUGFLAGS = /d' \
-   -e '/ CCOPTIONS = /d' \
-   -e 's|CPP = cpp|CPP = $(CC)|g' \
-   Makefile || die
-}
-
-src_compile() {
-   tc-export CC
-   emake CCOPTIONS="${CFLAGS}" EXTRA_LDOPTIONS="${LDFLAGS}"
-}
-
-src_install() {
-   dodir /usr/share/man/man1
-   default
-}



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

2017-04-01 Thread David Seifert
commit: 8ab2e9e75f6fc4fb9a4ec0f28512250ec8fa9499
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:35:39 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:23:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ab2e9e7

x11-misc/xtitle: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/xtitle/Manifest|  1 -
 x11-misc/xtitle/xtitle-1.0.2.ebuild | 29 -
 2 files changed, 30 deletions(-)

diff --git a/x11-misc/xtitle/Manifest b/x11-misc/xtitle/Manifest
index 6e8089ce898..2f323d79e2b 100644
--- a/x11-misc/xtitle/Manifest
+++ b/x11-misc/xtitle/Manifest
@@ -1,2 +1 @@
-DIST xtitle-1.0.2.tgz 10284 SHA256 
afbd2b913dcd786f7b8856a549bd4808045d9225c4942aff2f3eba7d2f9a04d8 SHA512 
5e83d48091fc6483b451aa265b2e2e08da0b5ee0f715c539ff2165ed460526dd46eb1dba883a407f4a20822e949a8a26cd960396174df9b05dd98d2dd523ddf9
 WHIRLPOOL 
0bdd47b862e406167d272a502607fe5b77d26da68514997f08b7eeb9edca790f971da81f4a33184830c655063385568d358b3dd4ef50069b7d3c80981b003afd
 DIST xtitle-1.0.4.tgz 10528 SHA256 
cadddef1389ba1c5e1dc7dd861545a5fe11cb397a3f692cd63881671340fcc15 SHA512 
6ed2b9fa5327dce0a2347631acf57517bc45f1bc7c88f098e5be70ec7acd844d1697da81c528046db897d7fd7be3b893f1fc79b010dd52c908c42a609f051cb6
 WHIRLPOOL 
f0540f8d9d80b92979d605fbb2bb4888b6fbd4b61f7be82640483bcee1d557350719673657f6854e4fe35cf015018d2e273c39af8e418d8b775cace0bb1084a9

diff --git a/x11-misc/xtitle/xtitle-1.0.2.ebuild 
b/x11-misc/xtitle/xtitle-1.0.2.ebuild
deleted file mode 100644
index 9d58eca1ebc..000
--- a/x11-misc/xtitle/xtitle-1.0.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-DESCRIPTION="Set window title and icon name for an X11 terminal window"
-HOMEPAGE="https://kinzler.com/me/xtitle/;
-SRC_URI="https://kinzler.com/me/${PN}/${P}.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="x11-misc/imake"
-RDEPEND=""
-
-DOCS=( README )
-
-src_compile() {
-   xmkmf || die
-   emake
-}
-
-src_install() {
-   default
-   newman "${PN}.man" "${PN}.1"
-   dohtml "${PN}.html"
-}



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

2017-04-01 Thread David Seifert
commit: 4ed0fefe2e145760e6093649e258f93f3fd97457
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:38:42 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:24:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ed0fefe

x11-misc/xxkb: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/xxkb/Manifest|  1 -
 x11-misc/xxkb/xxkb-1.11-r3.ebuild | 78 ---
 2 files changed, 79 deletions(-)

diff --git a/x11-misc/xxkb/Manifest b/x11-misc/xxkb/Manifest
index a0c2b87bc9d..b215639ee38 100644
--- a/x11-misc/xxkb/Manifest
+++ b/x11-misc/xxkb/Manifest
@@ -1,3 +1,2 @@
-DIST xxkb-1.11-src.tar.gz 37262 SHA256 
596d465bd39b2b660c1d19390a82cc5515cbf8f7e9600e82135564469e11bd3c SHA512 
12675bee3be5a37b5e471fa763e2f8600859d5621dcf7ea9f004bad8f2200035582661cfb36938e9606582a86570e6de99c30dcf2d988c96604daf1185592c14
 WHIRLPOOL 
da14d3ee40c35efa1dc3eb3b5df17a53540ed9eb007a7b8a42039dbf8bb97052d27ee77d04b3f115c002daebc0a7229aafb855621b057ab294b45cecb5beed87
 DIST xxkb-1.11.1-src.tar.gz 38123 SHA256 
ceaa33bed81d8ae5bf77e89787d0736f7564c3de047c35a57bcbf6f4d1888142 SHA512 
081629ccee41016cd468bd411c8584298bf64d4d791bf803490f6286a330401b933f895fbff2f4a6d1fcfe86c0490267f86d334436c1cea743ad08d97b26038f
 WHIRLPOOL 
62b4847722ee8f23cc7db6f9bb21b1d01dacd2eb68d5d0db09933b9970c6846bc239d1388bd3d7ada2490a42ce1d56cffa1e1a7e55df029864ae426a0adaf96a
 DIST xxkb-flags.tar.bz2 2541 SHA256 
f777c676a58ecab97c242efd703c0e8056cc2a93bb5b7a2fdb1f677348d6727c SHA512 
c75929bf78a8aa84ffb615c85c2ad70110a9f7b0465891651a57e4772eae5e0ded61d10197f430f9cdd0cf707903af3d0af4250ff1743fdd59d9ff19bc0c33a9
 WHIRLPOOL 
7c626b2e6ec805b888ebcaeba658978efcbd4528729966a087ac7692b6c2e18ee5deb6dcb5eefea5a31826dce3ebb9c81a87cfc9e01efa5c18d800d8cd0bad6f

diff --git a/x11-misc/xxkb/xxkb-1.11-r3.ebuild 
b/x11-misc/xxkb/xxkb-1.11-r3.ebuild
deleted file mode 100644
index c480d326f81..000
--- a/x11-misc/xxkb/xxkb-1.11-r3.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils multilib
-
-DESCRIPTION="eXtended XKB - assign different keymaps to different windows"
-HOMEPAGE="https://sourceforge.net/projects/xxkb/;
-SRC_URI="
-   mirror://sourceforge/${PN}/${P}-src.tar.gz
-   svg? ( https://dev.gentoo.org/~jer/${PN}-flags.tar.bz2 )
-"
-
-LICENSE="Artistic"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="svg"
-
-RDEPEND="
-   x11-libs/libX11
-   x11-libs/libXpm
-   x11-libs/libXt
-   svg? (
-   dev-libs/glib:2
-   gnome-base/librsvg:2
-   x11-libs/gtk+:2
-   )
-"
-DEPEND="
-   ${RDEPEND}
-   app-text/rman
-   svg? ( virtual/pkgconfig )
-   x11-misc/imake
-"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
-   if use svg; then
-   mv "${WORKDIR}"/flags . || die
-   epatch "${FILESDIR}"/svg-flags.patch
-   epatch "${FILESDIR}"/svg-appdefaults.patch
-   fi
-
-   epatch "${FILESDIR}"/missing_init.patch
-}
-
-src_configure() {
-   xmkmf $(usex svg -DWITH_SVG_SUPPORT '') || die
-}
-
-src_compile() {
-   emake \
-   CDEBUGFLAGS="${CFLAGS}" \
-   EXTRA_LIBRARIES="-lXext" \
-   LOCAL_LDFLAGS="${LDFLAGS}" \
-   PIXMAPDIR=/usr/share/xxkb \
-   PROJECTROOT=/usr
-}
-
-src_install() {
-   local myopts
-   if use svg; then
-   myopts="PIXMAPS=flags/de.svg flags/pl.svg flags/il.svg 
flags/by.svg \
-   flags/ua.svg flags/su.svg flags/ru.svg flags/bg.svg 
flags/en.svg"
-   else
-   myopts="FOOBAR=buzz"
-   fi
-
-   emake "${myopts}"  DESTDIR="${D}" install
-   rm -r "${D}"/usr/$(get_libdir)/X11/app-defaults || die
-
-   emake DESTDIR="${D}" install.man
-
-   insinto /usr/share/xxkb
-   use svg || doins "${FILESDIR}"/*.xpm
-   dodoc README* CHANGES*
-}



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

2017-04-01 Thread David Seifert
commit: 063ad806eb1a0a99aa7b279b30dd8a585b35b3e6
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:34:41 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:23:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=063ad806

x11-misc/xsel: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/xsel/xsel-1.2.0.ebuild | 23 ---
 1 file changed, 23 deletions(-)

diff --git a/x11-misc/xsel/xsel-1.2.0.ebuild b/x11-misc/xsel/xsel-1.2.0.ebuild
deleted file mode 100644
index c4da9e4b7d1..000
--- a/x11-misc/xsel/xsel-1.2.0.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-DESCRIPTION="Command-line program for getting and setting the contents of the 
X selection"
-HOMEPAGE="http://www.vergenet.net/~conrad/software/xsel;
-SRC_URI="http://www.vergenet.net/~conrad/software/${PN}/download/${P}.tar.gz;
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~mips ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE=""
-
-RDEPEND="x11-libs/libX11
-   x11-libs/libXext"
-DEPEND="${RDEPEND}
-   x11-proto/xproto
-   x11-libs/libXt"
-
-src_compile() {
-   emake CFLAGS="${CFLAGS}"
-}



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

2017-04-01 Thread David Seifert
commit: 84071cdc3666039fa5287004709f9bb814a69f7a
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:33:12 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:23:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84071cdc

x11-misc/xplanet: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/xplanet/Manifest |  1 -
 x11-misc/xplanet/xplanet-1.3.0.ebuild | 75 ---
 2 files changed, 76 deletions(-)

diff --git a/x11-misc/xplanet/Manifest b/x11-misc/xplanet/Manifest
index 0382efbfec5..5c8163e01da 100644
--- a/x11-misc/xplanet/Manifest
+++ b/x11-misc/xplanet/Manifest
@@ -1,2 +1 @@
-DIST xplanet-1.3.0.tar.gz 1227385 SHA256 
44fb742bb93e5661ea8b11ccabcc12896693e051f3dd5083c9227224c416b442 SHA512 
c9f0db21c457d0702f8b1fb6d632838f45e80ea45b9cade80d6ab0ae956fdca03cfeed9582548c69b349a354afc27308309656d7e06ac46bc416c3e1038f8efd
 WHIRLPOOL 
e4fe013eeef4868d28f8a53c194f54865dd4cf29137936eb609352fba4a3481e0a6db9664944cb67d9e7896b150b5e640c95136e6b9f33dc4810591316d0371a
 DIST xplanet-1.3.1.tar.gz 1236035 SHA256 
4380d570a8bf27b81fb629c97a636c1673407f4ac4989ce931720078a90aece7 SHA512 
06ce3187fbd364f4ccee768fceca559690c905c870e2fb25ca32453ce09c564ba3455ec539f1e3da177de23a0611f767b375efe2e10b601d09313c0d068e35e0
 WHIRLPOOL 
4c40fac4056654aa195f9955053d2dfba6791e8e2021673f05c334163ee5b1d842e6101447228844573ed41a88f37c0fd96df633716bddeb55c8940941621ad9

diff --git a/x11-misc/xplanet/xplanet-1.3.0.ebuild 
b/x11-misc/xplanet/xplanet-1.3.0.ebuild
deleted file mode 100644
index 9d1eed6bb69..000
--- a/x11-misc/xplanet/xplanet-1.3.0.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit base flag-o-matic
-
-DESCRIPTION="Render images of the earth into the X root window"
-HOMEPAGE="http://xplanet.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ppc ppc64 ~sparc x86"
-IUSE="gif jpeg png tiff truetype X"
-
-RDEPEND="gif? ( 

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

2017-04-01 Thread David Seifert
commit: e88f992ed9337b1cd7b68e1483f292f153652961
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:31:18 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:23:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e88f992e

x11-misc/xkeycaps: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/xkeycaps/xkeycaps-2.47-r1.ebuild | 45 ---
 1 file changed, 45 deletions(-)

diff --git a/x11-misc/xkeycaps/xkeycaps-2.47-r1.ebuild 
b/x11-misc/xkeycaps/xkeycaps-2.47-r1.ebuild
deleted file mode 100644
index 968a539c221..000
--- a/x11-misc/xkeycaps/xkeycaps-2.47-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="GUI frontend to xmodmap"
-HOMEPAGE="http://packages.qa.debian.org/x/xkeycaps.html;
-SRC_URI="mirror://debian/pool/main/x/${PN}/${PN}_${PV}.orig.tar.gz"
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE=""
-
-RDEPEND="x11-misc/xbitmaps
-   x11-libs/libX11
-   x11-libs/libXmu
-   x11-libs/libXt
-   x11-libs/libXaw
-   x11-libs/libXext"
-DEPEND="${RDEPEND}
-   x11-proto/xproto
-   x11-misc/imake
-   >=sys-apps/sed-4"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   epatch "${FILESDIR}"/${P}-Imakefile.patch \
-   "${FILESDIR}"/${P}-man.patch
-}
-
-src_compile() {
-   xmkmf || die
-   sed -i -e "s,all:: xkeycaps.\$(MANSUFFIX).html,all:: ,g" \
-   Makefile || die
-   emake EXTRA_LDOPTIONS="${LDFLAGS}" CC="$(tc-getCC)" \
-   CDEBUGFLAGS="${CFLAGS}" || die
-}
-
-src_install () {
-   emake DESTDIR="${D}" install || die
-   newman ${PN}.man ${PN}.1 || die
-   dodoc README *.txt || die
-}



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

2017-04-01 Thread David Seifert
commit: 9702dbfaa5aded64e1230440ae40b0b3e51ffd33
Author: Harri Nieminen  gmail  com>
AuthorDate: Tue Mar 28 18:36:55 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Apr  1 10:23:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9702dbfa

x11-misc/xvkbd: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

 x11-misc/xvkbd/Manifest |  1 -
 x11-misc/xvkbd/xvkbd-3.6.ebuild | 61 -
 2 files changed, 62 deletions(-)

diff --git a/x11-misc/xvkbd/Manifest b/x11-misc/xvkbd/Manifest
index 46ea7711c19..950d2359b3b 100644
--- a/x11-misc/xvkbd/Manifest
+++ b/x11-misc/xvkbd/Manifest
@@ -1,2 +1 @@
-DIST xvkbd-3.6.tar.gz 81613 SHA256 
2678541c23336a0795bf5684c9f38d382a6566e6509794a39952d6da47da5bae SHA512 
55f4ab7959e66320d094938e8c87bef5ae243c7e37f35aa7b01dc1be76182c18e493964e3dccc1ee78c797d380d9a55fcbebf3a0219c4a6d0bbb999840a31b6e
 WHIRLPOOL 
54454523465ec3353eaebcdc64210040b4a83eedb407e2bc2814757749331996b376da7e1ba90eca849b3c143622a2a0c63429905459e1d4e588d368be3fa4dd
 DIST xvkbd-3.7.tar.gz 81645 SHA256 
895f768269820e7c0379b0daac3687bda0c670d192ebb7e61e5613a5939ec90b SHA512 
19ac5e78c34889d80571bb9feea65582fa413cdce0ba2f949840a08e70c900d720ca789d90d1118aa9667d32183b0f1edb33b7b0029ef5abb1d6faf058134385
 WHIRLPOOL 
fccc9945e374098b4833ffd37a33f1745dc46782050c73a1a184daf463dfb23709d3d84385a2d80db215473ba3af4cbffcf02d1715e6c441a34213e6e7982dd6

diff --git a/x11-misc/xvkbd/xvkbd-3.6.ebuild b/x11-misc/xvkbd/xvkbd-3.6.ebuild
deleted file mode 100644
index 2acb5b86249..000
--- a/x11-misc/xvkbd/xvkbd-3.6.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="virtual keyboard for X window system"
-HOMEPAGE="http://homepage3.nifty.com/tsato/xvkbd/;
-SRC_URI="http://homepage3.nifty.com/tsato/xvkbd/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-
-RDEPEND="
-   x11-libs/libX11
-   x11-libs/libXaw
-   x11-libs/libXaw3d
-   x11-libs/libXmu
-   x11-libs/libXt
-   x11-libs/libXtst
-"
-DEPEND="
-   ${RDEPEND}
-   app-text/rman
-   x11-misc/gccmakedep
-   x11-misc/imake
-   x11-proto/inputproto
-   x11-proto/xextproto
-   x11-proto/xproto
-"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-last_altgr_mask.patch
-
-   epatch_user
-}
-
-src_configure() {
-   xmkmf -a || die
-}
-
-src_compile() {
-   emake \
-   CC=$(tc-getCC) LD=$(tc-getCC) \
-   XAPPLOADDIR="/usr/share/X11/app-defaults" \
-   LOCAL_LDFLAGS="${LDFLAGS}" \
-   CDEBUGFLAGS="${CFLAGS}"
-}
-
-src_install() {
-   emake \
-   XAPPLOADDIR="/usr/share/X11/app-defaults" \
-   DESTDIR="${D}" \
-   install
-
-   rm -r "${D}"/usr/$(get_libdir) "${D}"/etc || die
-
-   dodoc README
-   newman ${PN}.man ${PN}.1
-}



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

2017-04-01 Thread Michael Weber
commit: ed5e12ebfb8bd76096429b62aedc0ccb93d93874
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 10:34:49 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 10:35:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed5e12eb

dev-python/pyro: update dependency on serpent (bug 612802).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

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

diff --git a/dev-python/pyro/pyro-4.56.ebuild b/dev-python/pyro/pyro-4.56.ebuild
index f20108be3de..3c6afee9006 100644
--- a/dev-python/pyro/pyro-4.56.ebuild
+++ b/dev-python/pyro/pyro-4.56.ebuild
@@ -23,7 +23,7 @@ RDEPEND="
!dev-python/pyro:0
$(python_gen_cond_dep \
'dev-python/selectors34[${PYTHON_USEDEP}]' python{2_7,3_3})
-   >=dev-python/serpent-1.11[${PYTHON_USEDEP}]"
+   >=dev-python/serpent-1.19[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (



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

2017-04-01 Thread Michael Weber
commit: c67fcbb3176e896d94e08d245fe36bf82e8713aa
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 10:31:31 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 10:35:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c67fcbb3

dev-python/msgpack: restore ~arm64 keyword.

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

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

diff --git a/dev-python/msgpack/msgpack-0.4.7.ebuild 
b/dev-python/msgpack/msgpack-0.4.7.ebuild
index ef79a89294e..bd441e0426f 100644
--- a/dev-python/msgpack/msgpack-0.4.7.ebuild
+++ b/dev-python/msgpack/msgpack-0.4.7.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE="test"
 
 DEPEND="



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

2017-04-01 Thread Kent Fredric
commit: 9fe35936cf2385579eaf7c2ef6a526714ac7931c
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Apr  1 07:10:15 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Apr  1 07:11:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fe35936

dev-perl/Class-Inspector: Bump to version 1.310.0

- EAPI6
- Parallel Tests

Upstream:
- Avoid . in @INC bugs
- Switch to EUMM
- Fix for installed method when used with a PAR archive

Bug: https://bugs.gentoo.org/614394
Package-Manager: Portage-2.3.4, Repoman-2.3.2

 .../Class-Inspector/Class-Inspector-1.310.0.ebuild | 23 ++
 dev-perl/Class-Inspector/Manifest  |  1 +
 2 files changed, 24 insertions(+)

diff --git a/dev-perl/Class-Inspector/Class-Inspector-1.310.0.ebuild 
b/dev-perl/Class-Inspector/Class-Inspector-1.310.0.ebuild
new file mode 100644
index 000..e61b3b6a6f1
--- /dev/null
+++ b/dev-perl/Class-Inspector/Class-Inspector-1.310.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=PLICEASE
+DIST_VERSION=1.31
+inherit perl-module
+
+DESCRIPTION="Provides information about Classes"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="virtual/perl-File-Spec"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.940.0
+   )
+"

diff --git a/dev-perl/Class-Inspector/Manifest 
b/dev-perl/Class-Inspector/Manifest
index 4bdb2348864..4a6141209cc 100644
--- a/dev-perl/Class-Inspector/Manifest
+++ b/dev-perl/Class-Inspector/Manifest
@@ -1 +1,2 @@
 DIST Class-Inspector-1.28.tar.gz 39816 SHA256 
3ca4b7a3ed1f4cc846c9a3c08f9a6e9ec07a9cbfd92510dea9513db61a923112 SHA512 
ef7447ffcc5c63b14708e8e32f9938d70ac9d587edd9b738b45a156608ed3080fce3275cdbe470e22d76873d3a27a182c6c7006f490174b1ea6bdadbad524ca0
 WHIRLPOOL 
5b9841c09a61999bda0c974152bffd19d56e32b28e8dae258cbf868d0a91f6d1c3784891a119adf297bc9019ad1ed7310082d9497d7ad8d817011cdf76e7
+DIST Class-Inspector-1.31.tar.gz 24422 SHA256 
065f649f1f7a676f0496c37dc155cf4812edb77bdbb0e95d28c985deff930eeb SHA512 
5ae8fa38d145d351b00b316853428f1ff7cf4dfb19952ccaa10e64fb84b41fc45d2510ef941347785b1c44ef2a1f5d4a361d321e2c0a6ee4b08232f6bc8e2d2a
 WHIRLPOOL 
fa32edf7f34f5824652b6e301962cae69a97e4fce61e850da0feb75e8fb6e812d66cc6082c6e9c6b112ddaf11c3cacbef98e300055c938d2c601c68f9a8ac2d6



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

2017-04-01 Thread Michael Weber
commit: 6e5f822a1aed05b85b29ee4f38bf8487a52036ca
Author: Michael Weber  gentoo  org>
AuthorDate: Fri Mar 31 14:10:20 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 09:30:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e5f822a

dev-python/pycryptodome: add ~arm ~arm64 keyword (bug 613760).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

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

diff --git a/dev-python/pycryptodome/pycryptodome-3.4.5.ebuild 
b/dev-python/pycryptodome/pycryptodome-3.4.5.ebuild
index c425d887ac6..fd666bcc77c 100644
--- a/dev-python/pycryptodome/pycryptodome-3.4.5.ebuild
+++ b/dev-python/pycryptodome/pycryptodome-3.4.5.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/Legrandin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD-2 Unlicense"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86 ~ppc-aix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~x86 ~ppc-aix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="dev-libs/gmp:0



[gentoo-commits] repo/gentoo:master commit in: dev-php/PHP_TokenStream/

2017-04-01 Thread Michael Weber
commit: 8dbfc760c9015bf13887ae1bc17dde48a44a25dd
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 09:37:31 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 09:37:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dbfc760

dev-php/PHP_TokenStream: add ~ppc keyword (bug 613766)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 dev-php/PHP_TokenStream/PHP_TokenStream-1.4.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PHP_TokenStream/PHP_TokenStream-1.4.11.ebuild 
b/dev-php/PHP_TokenStream/PHP_TokenStream-1.4.11.ebuild
index 4f6f384da5f..8133b0e7c5f 100644
--- a/dev-php/PHP_TokenStream/PHP_TokenStream-1.4.11.ebuild
+++ b/dev-php/PHP_TokenStream/PHP_TokenStream-1.4.11.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> $
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE=""
 
 S="${WORKDIR}/${MY_PN}-${PV}"



[gentoo-commits] repo/gentoo:master commit in: dev-php/myclabs-deepcopy/

2017-04-01 Thread Michael Weber
commit: aff4050a06dc562cc9c22b6bb3737da12078e2ff
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 09:38:23 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 09:38:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aff4050a

dev-php/myclabs-deepcopy: add ~ppc keyword (bug 613766)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 dev-php/myclabs-deepcopy/myclabs-deepcopy-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/myclabs-deepcopy/myclabs-deepcopy-1.6.0.ebuild 
b/dev-php/myclabs-deepcopy/myclabs-deepcopy-1.6.0.ebuild
index bf70366fdca..247026abe71 100644
--- a/dev-php/myclabs-deepcopy/myclabs-deepcopy-1.6.0.ebuild
+++ b/dev-php/myclabs-deepcopy/myclabs-deepcopy-1.6.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/myclabs/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE=""
 
 S="${WORKDIR}/${MY_PN}-${PV}"



[gentoo-commits] repo/gentoo:master commit in: dev-php/sebastian-recursion-context/

2017-04-01 Thread Michael Weber
commit: 73bbe9b9f0bf95a01017e5abee2330132afee697
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 09:41:23 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 09:41:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73bbe9b9

dev-php/sebastian-recursion-context: add ~ppc keyword (bug 613766)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 .../sebastian-recursion-context-2.0.0.ebuild| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-php/sebastian-recursion-context/sebastian-recursion-context-2.0.0.ebuild 
b/dev-php/sebastian-recursion-context/sebastian-recursion-context-2.0.0.ebuild
index 77a68b921bd..4c59a7d6c6d 100644
--- 
a/dev-php/sebastian-recursion-context/sebastian-recursion-context-2.0.0.ebuild
+++ 
b/dev-php/sebastian-recursion-context/sebastian-recursion-context-2.0.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> $
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE=""
 
 S="${WORKDIR}/${MY_PN}-${PV}"



[gentoo-commits] repo/gentoo:master commit in: dev-php/phpunit/

2017-04-01 Thread Michael Weber
commit: edda3f66eb94a76b638580ea7e69ea67142e9aed
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 09:39:29 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 09:39:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edda3f66

dev-php/phpunit: add ~ppc keyword (bug 613766)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 dev-php/phpunit/phpunit-5.7.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/phpunit/phpunit-5.7.15.ebuild 
b/dev-php/phpunit/phpunit-5.7.15.ebuild
index 322d8d2a8c3..2672b9d632a 100644
--- a/dev-php/phpunit/phpunit-5.7.15.ebuild
+++ b/dev-php/phpunit/phpunit-5.7.15.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/sebastianbergmann/${PN}/archive/${PV}.tar.gz -> ${P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE=""
 
 RDEPEND="dev-php/fedora-autoloader



[gentoo-commits] repo/gentoo:master commit in: dev-php/symfony-yaml/

2017-04-01 Thread Michael Weber
commit: 3933b3007a91e4abdc33f01d6f3daab565f22aa3
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Apr  1 09:42:00 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Apr  1 09:42:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3933b300

dev-php/symfony-yaml: add ~ppc keyword (bug 613766)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 dev-php/symfony-yaml/symfony-yaml-2.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/symfony-yaml/symfony-yaml-2.1.0.ebuild 
b/dev-php/symfony-yaml/symfony-yaml-2.1.0.ebuild
index 2eb2128fa7e..fdf105c3ad2 100644
--- a/dev-php/symfony-yaml/symfony-yaml-2.1.0.ebuild
+++ b/dev-php/symfony-yaml/symfony-yaml-2.1.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/symfony/yaml/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE="test"
 RESTRICT="test"
 



  1   2   3   >