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

2018-08-05 Thread Ulrich Müller
commit: c42e007ccf67643c3bc16a548b9f0caa80dc691e
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Aug  5 08:08:18 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Aug  5 08:08:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c42e007c

app-editors/emacs: Remove old.

Package-Manager: Portage-2.3.44, Repoman-2.3.10

 app-editors/emacs/Manifest   |   1 -
 app-editors/emacs/emacs-18.59-r11.ebuild | 157 ---
 2 files changed, 158 deletions(-)

diff --git a/app-editors/emacs/Manifest b/app-editors/emacs/Manifest
index ab5ba0a1174..f652673f266 100644
--- a/app-editors/emacs/Manifest
+++ b/app-editors/emacs/Manifest
@@ -1,5 +1,4 @@
 DIST emacs-18.59-linux22x-elf-glibc21.diff.gz 15671 BLAKE2B 
0106fe8053b4f65f384d451ca85138991a57afaca16b32035585055bb877c039af826859fa58c4660ec80664d3bfb0ee7a757ad76381c150ebcb22cb333a98d6
 SHA512 
c6c6ea33850dadf08d68fff56fc6aacc80ad1aa36661260715d50b95438942d56e6244094427d50356cfe716f26559feb885254c436399bff7be639637d605b6
-DIST emacs-18.59-patches-10.tar.xz 21496 BLAKE2B 
bfa0202511a9e41d3278c63f43f174cca4ba95f42675796d85139fc43654ca3b9bc56a8c547029eaae967df66ec1e520d3bcdc67c4d53261fea70def6641574c
 SHA512 
c0255d9d02e047cc2173cebb916677e268d8f5043c9dd08041b78019df208cdd02eb8eb49256acde7a3d5b004a7227ee9a1220d7b1e24580bdb5a5258216fc39
 DIST emacs-18.59-patches-11.tar.xz 22032 BLAKE2B 
cfdb85aeefa7a71dfd0719de893e9ea3f7118baa0b8c5aa97b3800c1a5743e77d63c35ab1e4afb13c284f5c6dda522d1e2e37f8bfd9bbba052e543af7401565b
 SHA512 
cac3f2efc8b3f18cdf43474453acc406c5b469ecc11955f8216083a4deced887aea4a73221aa36f0bc6b7480788606f969ee1df15a8932ee771fdf790e98c00c
 DIST emacs-18.59.tar.gz 2962652 BLAKE2B 
d617636daff41e672af2dcda26ec24b2495cf0a3e6373561ee26a2a922b7252c074dd6b79289d771853a4720c60f084f5726b904bf65989718173232ac874b0b
 SHA512 
03ce565e346e89b7aacb1852f4783e8907f394de7da0c543b475cb038eb89b87f980d0f7ca1841b1d2108b20f211e95113c7214e4a33e5767a1827ff43173f33
 DIST emacs-23.4-patches-21.tar.xz 19604 BLAKE2B 
97327f2079c496c28122203d233a12199a3c11a8c4efb2107247a4ca4483b898467d73d19d4f0570ec7be2a49dc5f6bd1bc9ee0811f932e7deb6b1c4ca96e362
 SHA512 
135eda432de64200797456d594f7de811275a7adf792d10a1c3a51ca4aa3a2c682b9fd577c4d93fbce967ca08d4ac47eb45f031477c3e44c69c14d5d5b48

diff --git a/app-editors/emacs/emacs-18.59-r11.ebuild 
b/app-editors/emacs/emacs-18.59-r11.ebuild
deleted file mode 100644
index 91fad29d2a6..000
--- a/app-editors/emacs/emacs-18.59-r11.ebuild
+++ /dev/null
@@ -1,157 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs flag-o-matic multilib
-
-DESCRIPTION="The extensible self-documenting text editor"
-HOMEPAGE="https://www.gnu.org/software/emacs/;
-SRC_URI="ftp://ftp.gnu.org/old-gnu/emacs/${P}.tar.gz
-   
ftp://ftp.splode.com/pub/users/friedman/emacs/${P}-linux22x-elf-glibc21.diff.gz
-   https://dev.gentoo.org/~ulm/emacs/${P}-patches-10.tar.xz;
-
-LICENSE="GPL-1+ GPL-2+ BSD" #HPND
-SLOT="18"
-KEYWORDS="amd64 x86"
-IUSE="abi_x86_x32"
-
-RDEPEND=">=app-eselect/eselect-emacs-1.16
-   sys-libs/ncurses:0=
-   amd64? (
-   abi_x86_x32? ( >=sys-libs/ncurses-5.9-r3:0=[abi_x86_x32(-)?] )
-   !abi_x86_x32? ( >=sys-libs/ncurses-5.9-r3:0=[abi_x86_32(-)] )
-   )"
-#  X? ( x11-libs/libX11[-xcb] )
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-PATCHES="../${P}-linux22x-elf-glibc21.diff ../patch"
-
-src_prepare() {
-   default
-
-   # Do not use the sandbox, or the dumped Emacs will be twice as large
-   sed -i -e 's:\./temacs.*dump:SANDBOX_ON=0 LD_PRELOAD= env &:' \
-   src/ymakefile || die
-}
-
-src_configure() {
-   # autoconf? What's autoconf? We are living in 1992. ;-)
-   local arch
-   case ${ARCH} in
-   amd64)
-   if use abi_x86_x32; then
-   arch=x86-x32
-   multilib_toolchain_setup x32
-   else
-   arch=intel386
-   multilib_toolchain_setup x86
-   fi
-   ;;
-   x86) arch=intel386 ;;
-   *) die "Architecture ${ARCH} not yet supported" ;;
-   esac
-   local cmd="s/\"s-.*\.h\"/\"s-linux.h\"/;s/\"m-.*\.h\"/\"m-${arch}.h\"/"
-   #use X && cmd="${cmd};s/.*\(#define HAVE_X_WINDOWS\).*/\1/"
-   sed -e "${cmd}" src/config.h-dist >src/config.h || die
-
-   cat <<-END >src/paths.h
-   #define PATH_LOADSEARCH "/usr/share/emacs/${PV}/lisp"
-   #define PATH_EXEC "/usr/share/emacs/${PV}/etc"
-   #define PATH_LOCK "/var/lib/emacs/lock/"
-   #define PATH_SUPERLOCK "/var/lib/emacs/lock/!!!SuperLock!!!"
-   END
-
-   sed -i -e "s:/usr/lib/\([^ ]*\).o:/usr/$(get_libdir)/\1.o:g" \
-   -e 

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

2018-08-05 Thread Hans de Graaff
commit: cef034490fb961b0698f3f02c071bf35cde1724f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Aug  5 07:05:11 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Aug  5 07:05:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cef03449

dev-ruby/combustion: add ruby25

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-ruby/combustion/combustion-0.9.1.ebuild 
b/dev-ruby/combustion/combustion-0.9.1.ebuild
index 31470caeb48..be44f5684da 100644
--- a/dev-ruby/combustion/combustion-0.9.1.ebuild
+++ b/dev-ruby/combustion/combustion-0.9.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_TASK_TEST=""



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

2018-08-05 Thread Hans de Graaff
commit: 22c539c5b52fd9bb4c4741dc7179cdc0cfc150fc
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Aug  5 06:53:37 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Aug  5 06:53:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22c539c5

dev-ruby/autoprefixer-rails: add ruby25

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/autoprefixer-rails/autoprefixer-rails-8.6.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/autoprefixer-rails/autoprefixer-rails-8.6.5.ebuild 
b/dev-ruby/autoprefixer-rails/autoprefixer-rails-8.6.5.ebuild
index f623a7c290e..aed804b3d30 100644
--- a/dev-ruby/autoprefixer-rails/autoprefixer-rails-8.6.5.ebuild
+++ b/dev-ruby/autoprefixer-rails/autoprefixer-rails-8.6.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-USE_RUBY="ruby23 ruby24"
+USE_RUBY="ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2018-08-05 Thread Mart Raudsepp
commit: c3c1bfbb2144084f7c97c8b0b028b9ad963e2d56
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 08:05:32 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 08:13:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3c1bfbb

www-client/epiphany: bump to 3.26.7, fixes CVE-2018-11396/CVE-2018-12016

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 www-client/epiphany/Manifest   |  1 +
 www-client/epiphany/epiphany-3.26.7.ebuild | 80 ++
 2 files changed, 81 insertions(+)

diff --git a/www-client/epiphany/Manifest b/www-client/epiphany/Manifest
index 4e8bc6f5ac3..94cecca6ab1 100644
--- a/www-client/epiphany/Manifest
+++ b/www-client/epiphany/Manifest
@@ -1 +1,2 @@
 DIST epiphany-3.24.5.tar.xz 3216736 BLAKE2B 
8a4dd668606521d1b0144afc9ace8607f52eac457f0059e6087216323ec1132dbe1c755e40dfe9993bf685e5444db1268ada1cdf55edc04c51058fdd256c6047
 SHA512 
a8f203d182b8c87878a3272f8b4f642b0cf4128476e0727208135cfdffeb293425cf662c58820f0d3aed2e1b20fe6dc4cf5cbb8277a398c6f533a0bea34f40f2
+DIST epiphany-3.26.7.tar.xz 4429308 BLAKE2B 
cdd8cf084631891e97585307c90bd67f45e71deb6564f54711deb8dfd39c09007732efeb22ad5be45c1b0af6af7be30cf13a9d90aa1e9506a2e997f6f3f8d854
 SHA512 
686c8825d476a4c6675dadd7a68bf72727714bc6fe01b4dbf67d39b2dc7e3f21d4f630417865800664a716d6316df8a97fde5201ec72c90f448fd6f0af4b49a0

diff --git a/www-client/epiphany/epiphany-3.26.7.ebuild 
b/www-client/epiphany/epiphany-3.26.7.ebuild
new file mode 100644
index 000..feb70a041bc
--- /dev/null
+++ b/www-client/epiphany/epiphany-3.26.7.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome.org gnome2-utils meson xdg virtualx
+
+DESCRIPTION="GNOME webbrowser based on Webkit"
+HOMEPAGE="https://wiki.gnome.org/Apps/Web;
+
+LICENSE="GPL-3+"
+SLOT="0"
+IUSE="test"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
+
+COMMON_DEPEND="
+   >=dev-libs/glib-2.52.0:2
+   >=x11-libs/gtk+-3.22.13:3
+   >=dev-libs/nettle-3.2:=
+   >=net-libs/webkit-gtk-2.17.4:4=
+   >=x11-libs/cairo-1.2
+   >=app-crypt/gcr-3.5.5:=[gtk]
+   >=x11-libs/gdk-pixbuf-2.36.5:2
+   >=gnome-base/gnome-desktop-2.91.2:3=
+   dev-libs/icu:=
+   >=app-text/iso-codes-0.35
+   >=dev-libs/json-glib-1.2.4
+   >=x11-libs/libnotify-0.5.1
+   >=app-crypt/libsecret-0.14
+   >=net-libs/libsoup-2.48:2.4
+   >=dev-libs/libxml2-2.6.12:2
+   >=dev-libs/libxslt-1.1.7
+   dev-db/sqlite:3
+   dev-libs/gmp:0=
+   >=gnome-base/gsettings-desktop-schemas-0.0.1
+"
+RDEPEND="${COMMON_DEPEND}
+   x11-themes/adwaita-icon-theme
+"
+# paxctl needed for bug #407085
+DEPEND="${COMMON_DEPEND}
+   app-text/yelp-tools
+   dev-util/gdbus-codegen
+   sys-apps/paxctl
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+PATCHES=(
+   # https://bugzilla.gnome.org/show_bug.cgi?id=751591
+   # ephy-file-helpers tests are currently disabled due to 
https://gitlab.gnome.org/GNOME/epiphany/issues/419
+   # So this patch is currently without effect. Retest with 
PORTAGE_TMPDIR=/var/tmp once re-enabled upstream.
+   #"${FILESDIR}"/${PN}-3.16.0-unittest-1.patch
+)
+
+src_configure() {
+   local emesonargs=(
+   -Ddeveloper_mode=false
+   -Ddistributor_name=Gentoo
+   -Dhttps_everywhere=false # removed in 3.28
+   $(meson_use test unit_tests)
+   )
+   meson_src_configure
+}
+
+src_test() {
+   virtx meson_src_test
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+   gnome2_schemas_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+   gnome2_schemas_update
+}



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

2018-08-05 Thread Hans de Graaff
commit: 35345a783ca771cb9ed6816a52179edbdd12bfdd
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Aug  5 06:37:34 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Aug  5 06:41:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35345a78

dev-ruby/rspec-expectations: add 3.8.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/rspec-expectations/Manifest   |  1 +
 .../rspec-expectations-3.8.0.ebuild| 47 ++
 2 files changed, 48 insertions(+)

diff --git a/dev-ruby/rspec-expectations/Manifest 
b/dev-ruby/rspec-expectations/Manifest
index 27b37e10cea..5ba53219e84 100644
--- a/dev-ruby/rspec-expectations/Manifest
+++ b/dev-ruby/rspec-expectations/Manifest
@@ -2,3 +2,4 @@ DIST rspec-expectations-2.99.2-git.tgz 106884 BLAKE2B 
5b31c8681306d5c688f62fc3fc
 DIST rspec-expectations-3.5.0-git.tgz 187600 BLAKE2B 
607dabc38e077ed82e18cdc690900f7fef86e6bb30a8004534992804717f8430a132b8f7d882226557e8c83832a1a8f43a32e9791b19869919c9b0aa8cfead8f
 SHA512 
e6077549a028de0e34cdd50d93552ca3ee0f30bb550e9df20d391f287beb57070dcb3a5104627e7adb55689e7b102c91b7d3a3b944b8c4ff1235761140f2dce0
 DIST rspec-expectations-3.6.0-git.tgz 193897 BLAKE2B 
f3fc2b06a317e77838e2d483416ab0e05aefed8a129058ceaf1a80d3068b41e81abc9fd85576433fd1577e6114ccc65130734b850997f89310b80b549f80d679
 SHA512 
5c784eff2c076623f471bcfff6e014420782c8d52ff54a68adc9b4d6b60a91726da36e3989535f4ab7f1fcc6b1e2a3c3a63ee330f8ea55f475711741762c0f07
 DIST rspec-expectations-3.7.0-git.tgz 194071 BLAKE2B 
67c8db15c43cc1141b19c6eb99390eaaf2535ec03f0fdc7b05576daa463d252f56ff251d40f5771726ee6451d57eef206c893f2593b01d413b5d96cdf21f0daf
 SHA512 
bdd3222089299e9bfdd6f17a2b8af81d5e695290a3ce976630d586d51ff2df5baf76a3887b8adb31294bd6623ba85f8c2a4a31ac520046515aeeb81fa3a1bd5a
+DIST rspec-expectations-3.8.0-git.tgz 198184 BLAKE2B 
4bd191885a7944ca4909a1275618726cd0fff95352ef7e88f05d94e5f7088632d2c9ac7a9f47ea94c79e3665198482098daf7f6fc286c59563c8efbdee585241
 SHA512 
7157dcf09c18d2b56156ba4c1b0bc1a11cb98ab05e43ab9cbd65eea3f796cadf3319711d4e9837905cbba8d70cf297aea47f1f8631fd7a97be763dd33ce08002

diff --git a/dev-ruby/rspec-expectations/rspec-expectations-3.8.0.ebuild 
b/dev-ruby/rspec-expectations/rspec-expectations-3.8.0.ebuild
new file mode 100644
index 000..f478350c65e
--- /dev/null
+++ b/dev-ruby/rspec-expectations/rspec-expectations-3.8.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="A Behaviour Driven Development (BDD) framework for Ruby"
+HOMEPAGE="https://github.com/rspec/rspec-expectations;
+SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz"
+
+LICENSE="MIT"
+SLOT="3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE=""
+
+SUBVERSION="$(ver_cut 1-2)"
+
+ruby_add_rdepend ">=dev-ruby/diff-lcs-1.2.0 =dev-ruby/rspec-mocks-3.2.0:3
+   >=dev-ruby/rspec-support-3.5.0:3
+   )"
+
+all_ruby_prepare() {
+   # Don't set up bundler: it doesn't understand our setup.
+   sed -i -e '/[Bb]undler/d' Rakefile || die
+
+   # Remove the Gemfile to avoid running through 'bundle exec'
+   rm -f Gemfile || die
+
+   # fix up the gemspecs
+   sed -i \
+   -e '/git ls/d' \
+   -e '/add_development_dependency/d' \
+   "${RUBY_FAKEGEM_GEMSPEC}" || die
+}



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

2018-08-05 Thread Hans de Graaff
commit: b1020d6b6ff58654a5bbde54799c2bc237cc4a38
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Aug  5 06:35:11 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Aug  5 06:40:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1020d6b

dev-ruby/rspec-support: add 3.8.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/rspec-support/Manifest   |  1 +
 dev-ruby/rspec-support/rspec-support-3.8.0.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/dev-ruby/rspec-support/Manifest b/dev-ruby/rspec-support/Manifest
index 7dbf1de05f2..a905307f205 100644
--- a/dev-ruby/rspec-support/Manifest
+++ b/dev-ruby/rspec-support/Manifest
@@ -1,3 +1,4 @@
 DIST rspec-support-3.5.0-git.tgz 59824 BLAKE2B 
8e970af2f060344f842664e3afad7ba18d6884ef4a0e5b47ca3f2544f27a80df7227b98e853fea5a1091a6727d075d6a033e23dae930bbad854a181f8aa1662a
 SHA512 
246d86c131dae12d6ca9040dba800ea5e378cfce083b1840492cc2c968e4d17fe67617332aa77d46817356113f81d8d9584698e4fe9e4873291d18ebe04eacbc
 DIST rspec-support-3.6.0-git.tgz 64987 BLAKE2B 
9337da63047a1b33e8534a74a6dd4004287f0f057278b78160465ad66d43d5b543b9039d68e3488752e963308764b74a1343868f692b0ff26559b0c90cd3b674
 SHA512 
550e23ad2da53b445fa5e496eab243ad8c00db69949e50fe9e6c391b77166bbdc94261aae3a2b49c7f2f598abefe40ea4e93940cb493017fcdcc501675c8476e
 DIST rspec-support-3.7.1-git.tgz 65831 BLAKE2B 
8595c496bc8d13e36fdfd4a8be8e055db4ac1e85af63f99158d191c9ef9e0a6ba0a2972ad7661a63eeda959e2969139a99ded71219777fd493544b711b6fea53
 SHA512 
a5760d696048897d76c665a756474bbb1a1995891e577c989cf68a205644c8608c538bf3d87c558428e2c412e02d3552d47567a0679cd4f8793c06f43eccf459
+DIST rspec-support-3.8.0-git.tgz 68415 BLAKE2B 
c1b13d639213e03c4e334de5520f19136da0e25e96a93b685776a691a84dc1daa66e4dacf3feb83b01032cb1364ba16cdfccf19e738264bbc3bef20882a89d8a
 SHA512 
e16cc7bcc3de797e78c4f6ed475b0e60d492d0442dc048b4b2769a4819b80d1fb4a12aefaee3cc6a35f08d35f5fea82e00cc0fcf04363e57e74a6f5ed73d0693

diff --git a/dev-ruby/rspec-support/rspec-support-3.8.0.ebuild 
b/dev-ruby/rspec-support/rspec-support-3.8.0.ebuild
new file mode 100644
index 000..d41d78ed12d
--- /dev/null
+++ b/dev-ruby/rspec-support/rspec-support-3.8.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A Behaviour Driven Development (BDD) framework for Ruby"
+HOMEPAGE="https://github.com/rspec/rspec-support;
+SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz"
+
+LICENSE="MIT"
+SLOT="3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE=""
+
+ruby_add_bdepend "test? ( >=dev-ruby/rspec-3.8.0:3 
>=dev-ruby/thread_order-1.1.0 )"
+
+all_ruby_prepare() {
+   sed -i -e '/git ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Remove spec that, by following symlinks, tries to scan pretty much
+   # the whole filesystem.
+   rm spec/rspec/support/caller_filter_spec.rb || die
+
+   # Avoid spec that requires a dependency on git
+   sed -i -e '/library wide checks/,/]/ s:^:#:' spec/rspec/support_spec.rb 
|| die
+
+   # Avoid a spec requiring a specific locale
+   sed -i -e '/copes with encoded strings/ 
s/RSpec::Support::OS.windows?/true/' spec/rspec/support/differ_spec.rb || die
+}



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

2018-08-05 Thread Hans de Graaff
commit: 2a492853eb61cf2c348ae148d2dcd4e7c2794806
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Aug  5 06:40:10 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Aug  5 06:41:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a492853

dev-ruby/rspec: add 3.8.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/rspec/Manifest   |  1 +
 dev-ruby/rspec/rspec-3.8.0.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-ruby/rspec/Manifest b/dev-ruby/rspec/Manifest
index 7b6a65ef364..2470cc62785 100644
--- a/dev-ruby/rspec/Manifest
+++ b/dev-ruby/rspec/Manifest
@@ -2,3 +2,4 @@ DIST rspec-2.99.0.gem 5632 BLAKE2B 
eba837aeebcb0d65dc18a644fd935f241a67039988854
 DIST rspec-3.5.0.gem 10752 BLAKE2B 
8c28574420f7beea0a8ff2a2c0237ea84c83dadee14edba229e8215e8620d801be941d5474cfd53357552f4210907cb15ba853bb88e3ad9b72d35b86c617c3f4
 SHA512 
0500f09e46244746967f5efebcfbc96d4cef14c5f68e6ad3d510e151ed83c865a3478ae6e42dec0f0793db7db52ae2394768b6b331ea5ca8d30bc19523cad5b0
 DIST rspec-3.6.0.gem 10240 BLAKE2B 
334fb89dcc8926b264999dcdae231916dcf9c45515192b9a053a22a240a2da3830b46cb87430bc3f4a7368bbd0788e987f992e0f4dac3872233ad7d0e7f3fc6b
 SHA512 
ff0208209fffe205038e75ea410d0a0c140d35f9dcf46b699d9359bb17b8d6e92c4c3643b8f99d741921dd4a4b9bc62e639f5d48f46e4e9c656dcab0f62fdbb2
 DIST rspec-3.7.0.gem 10752 BLAKE2B 
a0e15d557b0d9089a886d04c917feda80c7a8e5eb70a50f4635947689215c0c560d313a6728ccea751697ead97c01fa1e3b7217f202ad18d4ddecf62c4dfa4ab
 SHA512 
5c10a878e9697030783c987ee9a6244b36cf85a2a3fb8c28bf9771900a3259da4f19c7f159180b5ff9140ab715b38b5d90cd5e0014ac1862f478c32a95e7edfd
+DIST rspec-3.8.0.gem 10752 BLAKE2B 
14b1710fb64fb2ab46d59ac692ceb95dbe7f5e2f5c54e4f97170bd99c2b0d32e1977250f69160ab191367c8016663ecf5cd4e0c89941ff12c727ed52e6118551
 SHA512 
aa3ecee499240a26866797c00461c7e63915bb84a9a29afce75bd4e7864027588bafde05b108aa7b6d988c1a123265587db807567a8e0f3d03527b0f2d8329ba

diff --git a/dev-ruby/rspec/rspec-3.8.0.ebuild 
b/dev-ruby/rspec/rspec-3.8.0.ebuild
new file mode 100644
index 000..17f8f7cf8ca
--- /dev/null
+++ b/dev-ruby/rspec/rspec-3.8.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_TASK_TEST=""
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="A Behaviour Driven Development (BDD) framework for Ruby"
+HOMEPAGE="https://github.com/rspec/rspec;
+
+LICENSE="MIT"
+SLOT="3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+SUBVERSION="$(ver_cut 1-2)"
+
+ruby_add_rdepend "
+   =dev-ruby/rspec-core-${SUBVERSION}*
+   =dev-ruby/rspec-expectations-${SUBVERSION}*
+   =dev-ruby/rspec-mocks-${SUBVERSION}*"



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

2018-08-05 Thread Hans de Graaff
commit: 814e13213f211822b2c7ce4c07cd8b281a4c9e2c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Aug  5 06:40:38 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Aug  5 06:41:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=814e1321

dev-ruby/rspec-rails: add 3.8.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/rspec-rails/Manifest |  1 +
 dev-ruby/rspec-rails/rspec-rails-3.8.0.ebuild | 54 +++
 2 files changed, 55 insertions(+)

diff --git a/dev-ruby/rspec-rails/Manifest b/dev-ruby/rspec-rails/Manifest
index 26f4bb02050..c90c5481a1b 100644
--- a/dev-ruby/rspec-rails/Manifest
+++ b/dev-ruby/rspec-rails/Manifest
@@ -1,3 +1,4 @@
 DIST rspec-rails-3.5.2.tar.gz 123642 BLAKE2B 
7580846be34bfdf542f2c15f83e4dcdea98929b5d2feb04c645b905497522f5ee050ada800ceab975204c9671e8833b9c3fb978e4b55d6cc75b2291a96a1fd60
 SHA512 
4f7f03c740d7215591f9ac4fc9fb77f8d747b6446a831580518db2974b07806eab8ed29ade78afbdd981236f3c64b0d933f04be7cccf72c5e57fb85795dc7df4
 DIST rspec-rails-3.6.1.tar.gz 127123 BLAKE2B 
9dd03d8483c1ef94ca7c7e561ca2a6aad82fb8400cfd5a48f40e3feff7597aaaf2a877d72d356ffca2455e6f3069a2d60c23ebf2ff3bdb8e95d954ff88832a3d
 SHA512 
4d83f04ab640fdee6da5d6eab2c2a3bf8e04ad2f55e1a31f1dffc3a85ea3e731f1a0ffa586825e12972120568226d52fd6c26ce261412ad69dcc73ed879e763f
 DIST rspec-rails-3.7.2.tar.gz 129851 BLAKE2B 
b37619b4a953fa44ef402a0dea1531837932dc7bc147c08b29bf85dcad61c7ca72b30f28edc391ae05d5040dcc902d6571342bb51559de84ed0c93244deffbec
 SHA512 
a1dbbde3539b09c33d85c9307126df09c508fcf39abc25a6438fb0582ec19049ee1888d7d17d256d33bba08c29792a0ec30dabc37d870a369580a58cb7ef03df
+DIST rspec-rails-3.8.0.tar.gz 134290 BLAKE2B 
2d148a62fb92bf73728da5a18d5d8263bbd38e2036d1c47a2bdc2823ff72cc2c4a1fafee1c66d89665b21ce9b9a907a9bdaf726cafa7345b84ab49d0d3053426
 SHA512 
810dd372d6889847fd5d47a29d359a72fcbc4fdca5d1b35bfbe75fefc293b208ff062d88e2159783eda152a5ab1657d3a55619a9a11dd8bde5993cd807ca37da

diff --git a/dev-ruby/rspec-rails/rspec-rails-3.8.0.ebuild 
b/dev-ruby/rspec-rails/rspec-rails-3.8.0.ebuild
new file mode 100644
index 000..da3c48eee35
--- /dev/null
+++ b/dev-ruby/rspec-rails/rspec-rails-3.8.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="RSpec's official Ruby on Rails plugin"
+HOMEPAGE="http://rspec.info/;
+SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="3"
+KEYWORDS="~amd64"
+IUSE=""
+
+SUBVERSION="$(ver_cut 1-2)"
+
+ruby_add_rdepend ">=dev-ruby/activesupport-3.0:*
+   >=dev-ruby/actionpack-3.0:*
+   >=dev-ruby/railties-3.0:*
+   =dev-ruby/rspec-${SUBVERSION}*"
+
+# Depend on the package being already installed for tests, because
+# requiring ammeter will load it, and we need a consistent set of rspec
+# and rspec-rails for that to work.
+ruby_add_bdepend "test? (
+   >=dev-ruby/capybara-2.2.0
+   >=dev-ruby/ammeter-1.1.2
+   ~dev-ruby/rspec-rails-${PV}
+)"
+
+all_ruby_prepare() {
+   # Remove .rspec options to avoid dependency on newer rspec when
+   # bootstrapping.
+   rm -f .rspec || die
+
+   # Avoid bundler-specific specs.
+   rm -f spec/sanity_check_spec.rb || die
+
+   # Avoid broken controller generator specs for now.
+   rm -fr spec/generators/rspec || die
+
+   # Avoid loading rspec/rails explicitly since ammeter/init will also
+   # do this and loading it twice causes an error
+   sed -i -e '/rspec\/rails/ s:^:#:' spec/spec_helper.rb || die
+}



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

2018-08-05 Thread Hans de Graaff
commit: 54e0641396c8e504a149d34ef8f4a6efefc3e228
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Aug  5 06:38:34 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Aug  5 06:41:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54e06413

dev-ruby/rspec-core: add 3.8.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/rspec-core/Manifest|  1 +
 dev-ruby/rspec-core/rspec-core-3.8.0.ebuild | 87 +
 2 files changed, 88 insertions(+)

diff --git a/dev-ruby/rspec-core/Manifest b/dev-ruby/rspec-core/Manifest
index 9b0420a5364..0155835aba0 100644
--- a/dev-ruby/rspec-core/Manifest
+++ b/dev-ruby/rspec-core/Manifest
@@ -2,3 +2,4 @@ DIST rspec-core-2.99.2-git.tgz 212935 BLAKE2B 
37195012f79aca3a1959f9143e2f5cbab6
 DIST rspec-core-3.5.4-git.tgz 369170 BLAKE2B 
c95fa7740bcc1b586b4e26be1db4cb52bb470cb23c9ef74dc644d0ea7c4ca769ab62e587ecff2a16cd6f656e9f3bbdc81b199765f9397dddbe28a8cdce6a1945
 SHA512 
c672381e9233b6f8c6e92ed70d084ff7a558edd6ca7d5a09a28fff1554975b952b6fab94483324b5bd6a62ff7aac576e7a216dbb3972749ef0210fe1cd05411d
 DIST rspec-core-3.6.0-git.tgz 375590 BLAKE2B 
e8b4987ea3d5cc3a403eaec98243e4c4be6c9eace798bc97599020543401ecd036c6121a6736995fb716aabd1a2016393506bee1e3076c61b0c49173d991d990
 SHA512 
cecd3885652e18ba1ffed45e40d12c932ba0d880e96b2f1d264709f55dbda8d6b0c78c3bf4bb940d246b84261d1b80038618735f65302ff62646165b2e932be1
 DIST rspec-core-3.7.1-git.tgz 376819 BLAKE2B 
6747ffd8f2d426718376b51356d8838a7db0d0246ee619e8edef30bd9f7aeeb80bd0488e4fc73b0a00d119074c35055f6b9d0cbbe6160ae78d0727ce9848a710
 SHA512 
1561d044281c1b8b97cc89033ad991548fa74abbc5f20d3951d3f3de754c581a027f9ccb2bd0107c05e744d3b2804555cf4cf207e72adf365b28fc7ce052dab8
+DIST rspec-core-3.8.0-git.tgz 386022 BLAKE2B 
e827f006fe9f05f93b741d021bbb108ae3e98cd23f3388c1fdf2a87d8be349c04e91c810cbb7c47cc99ce99a00f62e13eb01a927b8b89d54dfa437ed46b1d24f
 SHA512 
6d3f431a1f9485009f5029bea967f36cb789be8cf33722b36c40df44e12a2284674c6c8af333bfe8ba8825e032576569fd42c92f798988faad732ac3a720c5e6

diff --git a/dev-ruby/rspec-core/rspec-core-3.8.0.ebuild 
b/dev-ruby/rspec-core/rspec-core-3.8.0.ebuild
new file mode 100644
index 000..c3b7ec4a3d5
--- /dev/null
+++ b/dev-ruby/rspec-core/rspec-core-3.8.0.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_TASK_TEST="none"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+# Also install this custom path since internal paths depend on it.
+RUBY_FAKEGEM_EXTRAINSTALL="exe"
+
+RUBY_FAKEGEM_GEMSPEC="rspec-core.gemspec"
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="A Behaviour Driven Development (BDD) framework for Ruby"
+HOMEPAGE="https://github.com/rspec/rspec-core;
+SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz"
+
+LICENSE="MIT"
+SLOT="3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="highlight"
+
+SUBVERSION="$(ver_cut 1-2)"
+
+ruby_add_rdepend "
+   =dev-ruby/rspec-support-${SUBVERSION}*
+   !!=dev-ruby/coderay-1.1.1 )
+"
+
+ruby_add_bdepend "test? (
+   >=dev-ruby/nokogiri-1.5.2
+   >=dev-ruby/coderay-1.1.1
+   dev-ruby/syntax
+   >=dev-ruby/thread_order-1.1.0
+   >=dev-ruby/rspec-expectations-3.8.0:3
+   >=dev-ruby/rspec-mocks-2.99.0:3
+   )"
+
+all_ruby_prepare() {
+   # Don't set up bundler: it doesn't understand our setup.
+   sed -i -e '/[Bb]undler/d' Rakefile || die
+
+   # Avoid dependency on cucumber since we can't run the features anyway.
+   sed -i -e '/[Cc]ucumber/ s:^:#:' Rakefile || die
+
+   # Duplicate exe also in bin. We can't change it since internal stuff
+   # also depends on this and fixing that is going to be fragile. This
+   # way we can at least install proper bin scripts.
+   cp -R exe bin || die
+
+   # Avoid unneeded dependency on git.
+   sed -i -e 's/git ls-files --/find/' rspec-core.gemspec || die
+
+   # Avoid aruba dependency so that we don't end up in dependency hell.
+   sed -i -e '/ArubaLoader/,/^end/ s:^:#:' -e '/Aruba/ s:^:#:' 
spec/spec_helper.rb || die
+   rm -f spec/support/aruba_support.rb || die
+   rm -f 
spec/integration/{bisect_runners,failed_line_detection,filtering,order,persistence_failures,suite_hooks_errors}_spec.rb
 || die
+   rm -f 
spec/integration/{spec_file_load_errors,output_stream,fail_if_no_examples}_spec.rb
 || die
+
+   # Avoid a spec failing due to path issues
+   sed -i -e '/does not load files in the default path when run by 
ruby/,/end/ s:^:#:' \
+   spec/rspec/core/configuration_spec.rb || die
+
+   # Avoid a spec that 

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

2018-08-05 Thread Hans de Graaff
commit: 27a53397a4e5eaafe29c6dd0a7fe842068b6023f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Aug  5 06:36:02 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Aug  5 06:40:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27a53397

dev-ruby/rspec-mocks: add 3.8.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/rspec-mocks/Manifest |  1 +
 dev-ruby/rspec-mocks/rspec-mocks-3.8.0.ebuild | 46 +++
 2 files changed, 47 insertions(+)

diff --git a/dev-ruby/rspec-mocks/Manifest b/dev-ruby/rspec-mocks/Manifest
index 1f44c622ea7..8edad66a47f 100644
--- a/dev-ruby/rspec-mocks/Manifest
+++ b/dev-ruby/rspec-mocks/Manifest
@@ -2,3 +2,4 @@ DIST rspec-mocks-2.99.2-git.tgz 101731 BLAKE2B 
27ae180381d427b642c53c351e7b53602
 DIST rspec-mocks-3.5.0-git.tgz 186806 BLAKE2B 
e412feafba03cfe8c0efb68dc778885f0603c3b5fa415568c11e7b31168c57ea11245048fb78c34688b65d5cca95bc0a90aeb18afa19fef0a575219441fbaccd
 SHA512 
b7dcb4ce0eac894d6652be45fea981cb7ade47a739ad926a87aa41d8a34fa9deffc45f5718d1634f03fbedaba82a77005466fa83155dc433fed6a19f8a897c4d
 DIST rspec-mocks-3.6.0-git.tgz 189000 BLAKE2B 
d8fcc25983eeeafdba69bce80bccac2ff9b1e269b739bbd41a87f4839468fe5e4bd3298d2a63aa315d87422a9f30aaf1a776cb9b90ee1fd58ca05b5a08ea032e
 SHA512 
42cc4870fde8eba0a6da7df4ab07e4d59c6447bb8f52e0172e7f231d47304c20c6e2edfceee698d5d344bb78384acbe3df4bb67de784cc24a63fae02ed1d4a7b
 DIST rspec-mocks-3.7.0-git.tgz 189170 BLAKE2B 
a0a622ac593660c673cd80b3f3caddd2ac389000f42a7ed1745e1fcfd28d1986e61e83c265d736f3ad0649531973719bc9c5f6ab07e289cb2da89c4482e64184
 SHA512 
8673726571ccf8a901281e44faeb25ffcb59579dc380138f0557cd9310192cd340081e5e8ad65ae28127b502cca2f6877134b0fb48f2e0ea40b133002aff
+DIST rspec-mocks-3.8.0-git.tgz 191102 BLAKE2B 
a8dc3794245e4508fb57874ba11a753db5622abda2d34a022c6f01b2e95bf43dd2df8612abcb84c32cff632f70083ea9d76171de73720d00dd929d562fa5993d
 SHA512 
0649c3722479013aa1a20f750b3a83a9b426e5f79cb0edff995b09d1e2fa674fb8e91c0c94e7f9513f338c3c2e9c5b824a9473e91955cf928542324b8b1463ba

diff --git a/dev-ruby/rspec-mocks/rspec-mocks-3.8.0.ebuild 
b/dev-ruby/rspec-mocks/rspec-mocks-3.8.0.ebuild
new file mode 100644
index 000..ea1c4635388
--- /dev/null
+++ b/dev-ruby/rspec-mocks/rspec-mocks-3.8.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="A Behaviour Driven Development (BDD) framework for Ruby"
+HOMEPAGE="https://github.com/rspec/rspec-mocks;
+SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz"
+
+LICENSE="MIT"
+SLOT="3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE=""
+
+SUBVERSION="$(ver_cut 1-2)"
+
+ruby_add_rdepend "=dev-ruby/rspec-support-${SUBVERSION}*
+   >=dev-ruby/diff-lcs-1.2.0 =dev-ruby/diff-lcs-1*"
+
+ruby_add_bdepend "
+   test? (
+   >=dev-ruby/rspec-core-3.3.0:3
+   >=dev-ruby/rspec-expectations-2.99.0:3
+   )"
+
+all_ruby_prepare() {
+   # Don't set up bundler: it doesn't understand our setup.
+   sed -i -e '/[Bb]undler/d' Rakefile || die
+
+   # Remove the Gemfile to avoid running through 'bundle exec'
+   rm Gemfile || die
+
+   # Remove .rspec options to avoid dependency on newer rspec when
+   # bootstrapping.
+   rm .rspec || die
+
+   sed -i -e '1irequire "spec_helper"' 
spec/rspec/mocks/any_instance_spec.rb || die
+}



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

2018-08-05 Thread Hans de Graaff
commit: 2fa0992d7443a3804b27ddeb07aa717672330565
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Aug  5 05:54:19 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Aug  5 06:40:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fa0992d

dev-ruby/rspec-support: cleanup

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/rspec-support/Manifest   |  1 -
 dev-ruby/rspec-support/rspec-support-3.7.0.ebuild | 39 ---
 2 files changed, 40 deletions(-)

diff --git a/dev-ruby/rspec-support/Manifest b/dev-ruby/rspec-support/Manifest
index fbc916baad7..7dbf1de05f2 100644
--- a/dev-ruby/rspec-support/Manifest
+++ b/dev-ruby/rspec-support/Manifest
@@ -1,4 +1,3 @@
 DIST rspec-support-3.5.0-git.tgz 59824 BLAKE2B 
8e970af2f060344f842664e3afad7ba18d6884ef4a0e5b47ca3f2544f27a80df7227b98e853fea5a1091a6727d075d6a033e23dae930bbad854a181f8aa1662a
 SHA512 
246d86c131dae12d6ca9040dba800ea5e378cfce083b1840492cc2c968e4d17fe67617332aa77d46817356113f81d8d9584698e4fe9e4873291d18ebe04eacbc
 DIST rspec-support-3.6.0-git.tgz 64987 BLAKE2B 
9337da63047a1b33e8534a74a6dd4004287f0f057278b78160465ad66d43d5b543b9039d68e3488752e963308764b74a1343868f692b0ff26559b0c90cd3b674
 SHA512 
550e23ad2da53b445fa5e496eab243ad8c00db69949e50fe9e6c391b77166bbdc94261aae3a2b49c7f2f598abefe40ea4e93940cb493017fcdcc501675c8476e
-DIST rspec-support-3.7.0-git.tgz 65675 BLAKE2B 
abc204f641014b16cbb433c10b5d5953c8fb1f94491bec359febb627ce1864776ab59e0b706ca908d00c79e75d8c95dc5c8673937c4bb24a2c7c90e6ec5f4e7e
 SHA512 
a4a3fc705d4c31d760777513f86d8b0ca4c9e540b0a6f4b6d1152676f252e1276fedebe7cd259f0dbbb60b447cc179eea194f3a3e5bb023907923cbf16fc8033
 DIST rspec-support-3.7.1-git.tgz 65831 BLAKE2B 
8595c496bc8d13e36fdfd4a8be8e055db4ac1e85af63f99158d191c9ef9e0a6ba0a2972ad7661a63eeda959e2969139a99ded71219777fd493544b711b6fea53
 SHA512 
a5760d696048897d76c665a756474bbb1a1995891e577c989cf68a205644c8608c538bf3d87c558428e2c412e02d3552d47567a0679cd4f8793c06f43eccf459

diff --git a/dev-ruby/rspec-support/rspec-support-3.7.0.ebuild 
b/dev-ruby/rspec-support/rspec-support-3.7.0.ebuild
deleted file mode 100644
index 859e41514bf..000
--- a/dev-ruby/rspec-support/rspec-support-3.7.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby22 ruby23 ruby24"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-
-RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A Behaviour Driven Development (BDD) framework for Ruby"
-HOMEPAGE="https://github.com/rspec/rspec-support;
-SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz"
-
-LICENSE="MIT"
-SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
-IUSE=""
-
-ruby_add_bdepend "test? ( >=dev-ruby/rspec-3.7.0:3 dev-ruby/thread_order )"
-
-all_ruby_prepare() {
-   sed -i -e '/git ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
-
-   # Remove spec that, by following symlinks, tries to scan pretty much
-   # the whole filesystem.
-   rm spec/rspec/support/caller_filter_spec.rb || die
-
-   # Avoid spec that requires a dependency on git
-   sed -i -e '/library wide checks/,/]/ s:^:#:' spec/rspec/support_spec.rb 
|| die
-
-   # Avoid a spec requiring a specific locale
-   sed -i -e '/copes with encoded strings/ 
s/RSpec::Support::OS.windows?/true/' spec/rspec/support/differ_spec.rb || die
-}



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

2018-08-05 Thread Zac Medico
commit: 30f4616c81f1dcabe73450d5ddd5fd1ce2fdba42
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Aug  5 06:01:41 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Aug  5 06:06:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30f4616c

sys-apps/portage: drop sync-depth upgrade message

The sync-depth option is supported in portage-2.3.42 and later.

See: 
https://gitweb.gentoo.org/proj/portage.git/commit/?id=903c4b1a67689c4b8cc59113a56d58575cf7db8e
Package-Manager: Portage-2.3.44, Repoman-2.3.10

 sys-apps/portage/portage-2.3.43-r1.ebuild | 12 
 sys-apps/portage/portage-2.3.44.ebuild| 12 
 2 files changed, 24 deletions(-)

diff --git a/sys-apps/portage/portage-2.3.43-r1.ebuild 
b/sys-apps/portage/portage-2.3.43-r1.ebuild
index 54096df31b3..b8599eb7a73 100644
--- a/sys-apps/portage/portage-2.3.43-r1.ebuild
+++ b/sys-apps/portage/portage-2.3.43-r1.ebuild
@@ -273,21 +273,9 @@ pkg_preinst() {
if chown portage:portage "${ED}"var/log/portage{,/elog} 2>/dev/null ; 
then
chmod g+s,ug+rwx "${ED}"var/log/portage{,/elog}
fi
-
-   if has_version ">=${CATEGORY}/${PN}-2.3.1" && \
-   has_version "<${CATEGORY}/${PN}-2.3.3"; then
-   SYNC_DEPTH_UPGRADE=true
-   else
-   SYNC_DEPTH_UPGRADE=false
-   fi
 }
 
 pkg_postinst() {
-   if ${SYNC_DEPTH_UPGRADE}; then
-   ewarn "Please note that this release no longer respects 
sync-depth for"
-   ewarn "git repositories.  There have been too many problems and"
-   ewarn "performance issues.  See bugs 552814, 559008"
-   fi
einfo ""
einfo "This release of portage NO LONGER contains the repoman code 
base."
einfo "Repoman has its own ebuild and release package."

diff --git a/sys-apps/portage/portage-2.3.44.ebuild 
b/sys-apps/portage/portage-2.3.44.ebuild
index 4cf0b294edb..7b73603f636 100644
--- a/sys-apps/portage/portage-2.3.44.ebuild
+++ b/sys-apps/portage/portage-2.3.44.ebuild
@@ -261,21 +261,9 @@ pkg_preinst() {
if chown portage:portage "${ED}"var/log/portage{,/elog} 2>/dev/null ; 
then
chmod g+s,ug+rwx "${ED}"var/log/portage{,/elog}
fi
-
-   if has_version ">=${CATEGORY}/${PN}-2.3.1" && \
-   has_version "<${CATEGORY}/${PN}-2.3.3"; then
-   SYNC_DEPTH_UPGRADE=true
-   else
-   SYNC_DEPTH_UPGRADE=false
-   fi
 }
 
 pkg_postinst() {
-   if ${SYNC_DEPTH_UPGRADE}; then
-   ewarn "Please note that this release no longer respects 
sync-depth for"
-   ewarn "git repositories.  There have been too many problems and"
-   ewarn "performance issues.  See bugs 552814, 559008"
-   fi
einfo ""
einfo "This release of portage NO LONGER contains the repoman code 
base."
einfo "Repoman has its own ebuild and release package."



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

2018-08-05 Thread Thomas Beierlein
commit: 75ad47ec2124ff3e8d4ddd010e89b65958b3a4d9
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Sun Aug  5 07:45:12 2018 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Sun Aug  5 07:46:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75ad47ec

app-backup/bacula: Add patch to work with >=dev-libs/libressl-2.7

Apply different patches according to dev-libs/libressl version (<2.7 and
>=2.7) installed.

Reported-by:  Toralf Förster  gentoo.org>
Closes: https://bugs.gentoo.org/655520
Package-Manager: Portage-2.3.44, Repoman-2.3.10

 app-backup/bacula/bacula-9.0.6-r3.ebuild  |  8 +++-
 ...ula-9.0.6-libressl.patch => bacula-9.0.6-libressl26.patch} |  0
 app-backup/bacula/files/9.0.6/bacula-9.0.6-libressl27.patch   | 11 +++
 3 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/app-backup/bacula/bacula-9.0.6-r3.ebuild 
b/app-backup/bacula/bacula-9.0.6-r3.ebuild
index f30acaa0b53..0c4d61e2a76 100644
--- a/app-backup/bacula/bacula-9.0.6-r3.ebuild
+++ b/app-backup/bacula/bacula-9.0.6-r3.ebuild
@@ -169,7 +169,13 @@ src_prepare() {
chmod 755 src/qt-console/.libs/bat || die
 
# fix wrong handling of libressl version
-   eapply -p0 "${FILESDIR}"/9.0.6/${PN}-9.0.6-libressl.patch
+   # needs separate handling for =libressl2.7
+   # (see bug #655520)
+   if has_version "= 0x1010L)
++#if ( (OPENSSL_VERSION_NUMBER >= 0x1010L) && 
!defined(LIBRESSL_VERSION_NUMBER) )
+ DEFINE_STACK_OF(SignerInfo);
+ DEFINE_STACK_OF(RecipientInfo);
+ #else



[gentoo-commits] proj/gnome:master commit in: www-client/epiphany/, www-client/epiphany/files/

2018-08-05 Thread Mart Raudsepp
commit: 88e03c00aba960ab4b8d6abb32a336d34ae16a91
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 08:34:30 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 08:34:30 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=88e03c00

www-client/epiphany-: sync in fixes from main tree

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 www-client/epiphany/epiphany-.ebuild   | 29 +++---
 .../files/epiphany-3.14.0-unittest-2.patch | 45 --
 2 files changed, 14 insertions(+), 60 deletions(-)

diff --git a/www-client/epiphany/epiphany-.ebuild 
b/www-client/epiphany/epiphany-.ebuild
index 4ee03e5d..0cfc5875 100644
--- a/www-client/epiphany/epiphany-.ebuild
+++ b/www-client/epiphany/epiphany-.ebuild
@@ -2,7 +2,6 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-GNOME2_LA_PUNT="yes"
 
 inherit gnome-meson virtualx
 if [[ ${PV} =  ]]; then
@@ -24,54 +23,54 @@ else
 fi
 
 COMMON_DEPEND="
-   >=dev-libs/glib-2.52.0:2[dbus]
-   >=dev-libs/json-glib-1.2.4
+   >=dev-libs/glib-2.52.0:2
>=x11-libs/gtk+-3.22.13:3
+   >=dev-libs/nettle-3.2:=
>=net-libs/webkit-gtk-2.17.4:4=
>=x11-libs/cairo-1.2
>=app-crypt/gcr-3.5.5:=[gtk]
>=x11-libs/gdk-pixbuf-2.36.5:2
>=gnome-base/gnome-desktop-2.91.2:3=
dev-libs/icu:=
-   >=x11-libs/libnotify-0.5.1:=
+   >=app-text/iso-codes-0.35
+   >=dev-libs/json-glib-1.2.4
+   >=x11-libs/libnotify-0.5.1
>=app-crypt/libsecret-0.14
>=net-libs/libsoup-2.48:2.4
>=dev-libs/libxml2-2.6.12:2
>=dev-libs/libxslt-1.1.7
-   >=dev-libs/nettle-3.2
dev-db/sqlite:3
-   dev-libs/gmp:0
-   >=app-text/iso-codes-0.35
+   dev-libs/gmp:0=
>=gnome-base/gsettings-desktop-schemas-0.0.1
 "
-# epiphany-extensions support was removed in 3.7; let's not pretend it still 
works
 RDEPEND="${COMMON_DEPEND}
x11-themes/adwaita-icon-theme
-   !www-client/epiphany-extensions
 "
 # paxctl needed for bug #407085
 DEPEND="${COMMON_DEPEND}
app-text/yelp-tools
-   dev-libs/appstream-glib
+   dev-util/gdbus-codegen
sys-apps/paxctl
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
 "
 
 PATCHES=(
-   # https://bugzilla.gnome.org/show_bug.cgi?id=751593
-   "${FILESDIR}"/${PN}-3.14.0-unittest-2.patch
+   # https://bugzilla.gnome.org/show_bug.cgi?id=751591
+   # ephy-file-helpers tests are currently disabled due to 
https://gitlab.gnome.org/GNOME/epiphany/issues/419
+   # So this patch is currently without effect. Retest with 
PORTAGE_TMPDIR=/var/tmp once re-enabled upstream.
+   #"${FILESDIR}"/${PN}-3.16.0-unittest-1.patch
 )
 
-# FIXME: it seems it can't use newer libhttpseverywhere
 src_configure() {
+   # https_everywhere removed in 3.28
gnome-meson_src_configure \
+   -Ddeveloper_mode=false \
-Ddistributor_name=Gentoo \
-Dhttps_everywhere=false \
$(meson_use test unit_tests)
 }
 
 src_test() {
-   "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
-   GSETTINGS_SCHEMA_DIR="${S}/data" virtx meson_src_test
+   virtx meson_src_test
 }

diff --git a/www-client/epiphany/files/epiphany-3.14.0-unittest-2.patch 
b/www-client/epiphany/files/epiphany-3.14.0-unittest-2.patch
deleted file mode 100644
index 36dcb30c..
--- a/www-client/epiphany/files/epiphany-3.14.0-unittest-2.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From 3d2ca8dfb33f9dd658293d14d6b75983d1d2f57d Mon Sep 17 00:00:00 2001
-From: Gilles Dartiguelongue 
-Date: Sun, 19 Oct 2014 23:06:29 +0200
-Subject: [PATCH 3/3] Disable broken tests
-
-Not the first time these are failing even though issue was reported
-upstream.

- tests/ephy-file-helpers-test.c | 4 ++--
- tests/ephy-migration-test.c| 4 ++--
- 2 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/tests/ephy-file-helpers-test.c b/tests/ephy-file-helpers-test.c
-index bdf7455..718fa29 100644
 a/tests/ephy-file-helpers-test.c
-+++ b/tests/ephy-file-helpers-test.c
-@@ -341,8 +341,8 @@ main (int argc, char *argv[])
-   g_test_add_func ("/lib/ephy-file-helpers/get_downloads_dir",
-test_ephy_file_get_downloads_dir);
- 
--  g_test_add_func ("/lib/ephy-file-helpers/create_delete_dir",
--   test_ephy_file_create_delete_dir);
-+  /*g_test_add_func ("/lib/ephy-file-helpers/create_delete_dir",
-+   test_ephy_file_create_delete_dir);*/
- 
-   g_test_add_func ("/lib/ephy-file-helpers/desktop_dir",
-test_ephy_file_desktop_dir);
-diff --git a/tests/ephy-migration-test.c b/tests/ephy-migration-test.c
-index fab9ee7..64cdd65 100644
 a/tests/ephy-migration-test.c
-+++ b/tests/ephy-migration-test.c
-@@ -65,8 +65,8 @@ main (int argc, char *argv[])
- 
-   g_test_add_func 

[gentoo-commits] proj/gnome:master commit in: www-client/epiphany/

2018-08-05 Thread Mart Raudsepp
commit: 399cfe36f4b13852e0653d08f872bf0b2aeffe5c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 08:30:06 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 08:30:06 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=399cfe36

www-client/epiphany-3.26.7: remove, available with fixes in ::gentoo

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 www-client/epiphany/epiphany-3.26.7.ebuild | 68 --
 1 file changed, 68 deletions(-)

diff --git a/www-client/epiphany/epiphany-3.26.7.ebuild 
b/www-client/epiphany/epiphany-3.26.7.ebuild
deleted file mode 100644
index 8000e3bb..
--- a/www-client/epiphany/epiphany-3.26.7.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome-meson virtualx
-
-DESCRIPTION="GNOME webbrowser based on Webkit"
-HOMEPAGE="https://wiki.gnome.org/Apps/Web;
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="test"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.52.0:2[dbus]
-   >=dev-libs/json-glib-1.2.4
-   >=x11-libs/gtk+-3.22.13:3
-   >=net-libs/webkit-gtk-2.17.4:4=
-   >=x11-libs/cairo-1.2
-   >=app-crypt/gcr-3.5.5:=[gtk]
-   >=x11-libs/gdk-pixbuf-2.36.5:2
-   >=gnome-base/gnome-desktop-2.91.2:3=
-   dev-libs/icu:=
-   >=x11-libs/libnotify-0.5.1:=
-   >=app-crypt/libsecret-0.14
-   >=net-libs/libsoup-2.48:2.4
-   >=dev-libs/libxml2-2.6.12:2
-   >=dev-libs/libxslt-1.1.7
-   >=dev-libs/nettle-3.2
-   dev-db/sqlite:3
-   dev-libs/gmp:0
-   >=app-text/iso-codes-0.35
-   >=gnome-base/gsettings-desktop-schemas-0.0.1
-"
-# epiphany-extensions support was removed in 3.7; let's not pretend it still 
works
-RDEPEND="${COMMON_DEPEND}
-   x11-themes/adwaita-icon-theme
-   !www-client/epiphany-extensions
-"
-# paxctl needed for bug #407085
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   dev-libs/appstream-glib
-   sys-apps/paxctl
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-"
-
-PATCHES=(
-   # https://bugzilla.gnome.org/show_bug.cgi?id=751593
-   "${FILESDIR}"/${PN}-3.14.0-unittest-2.patch
-)
-
-# FIXME: it seems it can't use newer libhttpseverywhere
-src_configure() {
-   gnome-meson_src_configure \
-   -Ddistributor_name=Gentoo \
-   -Dhttps_everywhere=false \
-   $(meson_use test unit_tests)
-}
-
-src_test() {
-   "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
-   GSETTINGS_SCHEMA_DIR="${S}/data" virtx meson_src_test
-}



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

2018-08-05 Thread Andreas Hüttel
commit: 42c5a87f91540e6926cdd858ca700700a2794fea
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Aug  5 09:29:55 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sun Aug  5 09:30:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42c5a87f

sys-libs/glibc: 2.27 revision bump (patchlevel 3)

Tests pass here

Package-Manager: Portage-2.3.44, Repoman-2.3.10

 sys-libs/glibc/Manifest |1 +
 sys-libs/glibc/glibc-2.27-r6.ebuild | 1418 +++
 2 files changed, 1419 insertions(+)

diff --git a/sys-libs/glibc/Manifest b/sys-libs/glibc/Manifest
index 72c3b5ac244..69619572243 100644
--- a/sys-libs/glibc/Manifest
+++ b/sys-libs/glibc/Manifest
@@ -18,6 +18,7 @@ DIST glibc-2.25.tar.xz 13873900 BLAKE2B 
73ef792fff059f6ad154c9af2155ea15b7869ec1
 DIST glibc-2.26-patches-7.tar.bz2 413976 BLAKE2B 
18263201cf33abf911eb7b802ed539b217391156f897a8db50f65a69627d8f8cceded78414168986ee98eba038364a6b2f3599b23f95e7b0ad2643481c399718
 SHA512 
0c812a343fcc68c10d92117cb2a0cf1c255470e81f0a7a04d6db2fe35445e410ef37f15162f145c2eb772b08ab55af246f5b52f5e57c2e91038181f6f027abc3
 DIST glibc-2.26.tar.xz 14682748 BLAKE2B 
c1c9dbec110dd4e25b2f463a96d8afc43b8e3ebfe3c958107032beaa879710252be3bc4122bb62166408725d43785f233544df6159d29cce0fc5b2c08f45adbe
 SHA512 
6ed368523bc55f00976f96c5177f114e3f714b27273d7bffc252812c8b98fb81970403c1f5b5f0a61da678811532fb446530745492d2b49bfefc0d5bd71ce8c0
 DIST glibc-2.27-patches-2.tar.bz2 129983 BLAKE2B 
fad8d14f5330bc301804913f92f48051583f122cc83ab44813dc13498f59e97b38d1b276353eed9df3fde427b669cf9168632bbed8d006a3d4995c1df79575a4
 SHA512 
b05e34dbb45aaadfdcc079888ef2b2f70b181ba31edf2e2bbd18fa666375f5c6c48993830a305de0706b4a562db6403b6287bcab4789c1c37bc535216ee9f4cd
+DIST glibc-2.27-patches-3.tar.bz2 166511 BLAKE2B 
1dc54bef6e82112935c7411f7a5cd07c1edb24c3edaa1e0243b846b3832a40af1ba3a7b77aef04c54a173388156b464ea442fa8310a02e6f44e2ed5b78994286
 SHA512 
12496e9b0c60630dbec4c2febdd6d20df1f3d7a2c243cc55b595202b27f682b9208e16cd8c387687c0cc9e18b36c3caeef8d1b1148eb3ee8081431997270db5e
 DIST glibc-2.27.tar.xz 15395316 BLAKE2B 
ea206d304c8c9aa86d69db981a14bea008602cea06a6c151c4971a8df059949ffe5632b42a67ab0ffcd7c4d7ce1ec02ac48815dac4dade1c4dd41eaee8a6ed33
 SHA512 
7c5581154487d38d173ce1feb944e60207139cca148bccf066eaae322c0c2d219423bdcfa15c7f9be1b5e45dfc43c641cc5d80d3c3c65837d08a83cdb4e2a147
 DIST glibc-2.28-patches-1.tar.bz2 15028 BLAKE2B 
4b2bcb4123a2a6d5df9c5bdf6bda29a4b7633159917d3e385bfe00d6685b71a3e42e8739a791a4ae5d88280a82227531cc6cd42536e5bd6b795f391cbcc62783
 SHA512 
6b9451df7a0e83e93b06ae97c564653ac17c8e0d9c78f8a0ed42750bd6e3e58938491acb018681341eb57898811dc6020fa42287e408dfd6e8189cb362e393f1
 DIST glibc-2.28.tar.xz 16484344 BLAKE2B 
9aa8cbd5a145c2a6fde3a60b3d0a14b12b46ed79333ad1ca3e73464adcfe700277a17a9e7fd0ca36e355a0c5b0b27decfa091da320ba802741ad75cc955bbcc8
 SHA512 
521f820953ff07c69ece4c2186f59fc061a7f9747932cd70ef2995c2b2deee76eeb6de700d85071cdca5949179aa8ccee75eda7feca1394121ec7b821ad0a3f3

diff --git a/sys-libs/glibc/glibc-2.27-r6.ebuild 
b/sys-libs/glibc/glibc-2.27-r6.ebuild
new file mode 100644
index 000..080b20ae25c
--- /dev/null
+++ b/sys-libs/glibc/glibc-2.27-r6.ebuild
@@ -0,0 +1,1418 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit prefix eutils versionator toolchain-funcs flag-o-matic gnuconfig \
+   multilib systemd multiprocessing
+
+DESCRIPTION="GNU libc C library"
+HOMEPAGE="https://www.gnu.org/software/libc/;
+LICENSE="LGPL-2.1+ BSD HPND ISC inner-net rc PCRE"
+RESTRICT="strip" # Strip ourself #46186
+SLOT="2.2"
+
+EMULTILIB_PKG="true"
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://sourceware.org/git/glibc.git;
+   inherit git-r3
+else
+   # KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc 
~ppc64 ~s390 ~sh ~sparc ~x86"
+   SRC_URI="mirror://gnu/glibc/${P}.tar.xz"
+fi
+
+RELEASE_VER=${PV}
+
+GCC_BOOTSTRAP_VER=20180511
+
+# Gentoo patchset
+PATCH_VER=3
+
+SRC_URI+=" 
https://dev.gentoo.org/~dilfridge/distfiles/${P}-patches-${PATCH_VER}.tar.bz2;
+SRC_URI+=" multilib? ( 
https://dev.gentoo.org/~dilfridge/distfiles/gcc-multilib-bootstrap-${GCC_BOOTSTRAP_VER}.tar.xz
 )"
+
+IUSE="audit caps compile-locales doc gd hardened headers-only +multiarch 
multilib nscd profile selinux suid systemtap vanilla"
+
+# Minimum kernel version that glibc requires
+MIN_KERN_VER="3.2.0"
+
+# Here's how the cross-compile logic breaks down ...
+#  CTARGET - machine that will target the binaries
+#  CHOST   - machine that will host the binaries
+#  CBUILD  - machine that will build the binaries
+# If CTARGET != CHOST, it means you want a libc for cross-compiling.
+# If CHOST != CBUILD, it means you want to cross-compile the libc.
+#  CBUILD = CHOST = CTARGET- native build/install
+#  CBUILD != (CHOST = CTARGET) - cross-compile a native build
+#  (CBUILD = CHOST) != CTARGET - libc for 

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

2018-08-05 Thread Hans de Graaff
commit: 8cf361fcb5369a2bd09bf90be8d619e5472c6900
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Aug  5 06:49:45 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Aug  5 06:49:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cf361fc

dev-ruby/ammeter: add ruby25

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-ruby/ammeter/ammeter-1.1.4-r1.ebuild 
b/dev-ruby/ammeter/ammeter-1.1.4-r1.ebuild
index c27bb706e50..f6a76334fcc 100644
--- a/dev-ruby/ammeter/ammeter-1.1.4-r1.ebuild
+++ b/dev-ruby/ammeter/ammeter-1.1.4-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2018-08-05 Thread Hans de Graaff
commit: 129de64205100ac1be3c6463f674df204e3fe330
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Aug  5 06:49:26 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Aug  5 06:49:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=129de642

dev-ruby/rspec-rails: add ruby25

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/rspec-rails/rspec-rails-3.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rspec-rails/rspec-rails-3.8.0.ebuild 
b/dev-ruby/rspec-rails/rspec-rails-3.8.0.ebuild
index da3c48eee35..a3f9572b001 100644
--- a/dev-ruby/rspec-rails/rspec-rails-3.8.0.ebuild
+++ b/dev-ruby/rspec-rails/rspec-rails-3.8.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-USE_RUBY="ruby23 ruby24"
+USE_RUBY="ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2018-08-05 Thread Manuel Rüger
commit: a765c7549a421d115f207f66ac668f62c6a02348
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Aug  5 10:22:06 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug  5 10:22:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a765c754

sys-cluster/kubelet: Version bump to 1.9.10

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 sys-cluster/kubelet/Manifest  |  1 +
 sys-cluster/kubelet/kubelet-1.9.10.ebuild | 43 +++
 2 files changed, 44 insertions(+)

diff --git a/sys-cluster/kubelet/Manifest b/sys-cluster/kubelet/Manifest
index cb24597f6fc..a9be5888e2c 100644
--- a/sys-cluster/kubelet/Manifest
+++ b/sys-cluster/kubelet/Manifest
@@ -1,5 +1,6 @@
 DIST kubernetes-1.10.4.tar.gz 24773451 BLAKE2B 
8ee589b12a9e594dc5858473f543ef704ba772d48d565bfe3095cf9fb0588cd1ab602f092cc0fdba533cdf6c50c12f18431416640ad55867590940f34ebf5987
 SHA512 
cf1ea11fd721a800a6fdb51ed795f7a225577f1d93661ad98929c00a57ba55f31ac3b3d34e6276da997665734375455668b396289badaaed9825a48f33bdace3
 DIST kubernetes-1.10.5.tar.gz 25046108 BLAKE2B 
4e3d85e872e13a11d7f1fe030d9c6ba62c56b37788c31d6460c7d149c47a59a18a9cbfc791092183977089f4d612b690138faee46383c1b3b7e65adfdd3a0276
 SHA512 
55ac294297385cf6a69a48193c691744b886a5fa5d22b7a3a601d39aacd4cd898edccfcdc186bb1845e257f0f177d330af15d29d1419caab03f863bfa095eddf
 DIST kubernetes-1.11.1.tar.gz 24774820 BLAKE2B 
2b4ffda2258fbdf7f05eeea57f7fad8ca2eb574895d016475ceae35d8506d9c09d5874e689c0f25c806d0b0b957fca166a8930a8fc5aca98cbe3174dfd217653
 SHA512 
4afb54ae389aa414c7e64a7ab60d586c8f3c75afe4da00bcf2221b4b273e164a09548e61c24a0cdaf9d0e52394c3421e6c70f4fbfc80ed62c40ba7816b03afcf
+DIST kubernetes-1.9.10.tar.gz 23592498 BLAKE2B 
021ffbb933a5b541d43617fe36967b91cb1895d4fb6ce7f3651b682976699288646b45d5d0a5698131eedc19f4aa7a125d353971d2ecd44a2fd8510a95fac423
 SHA512 
621a2c1c76f993ad61087916fc5946aa3f1b3dec93c7024e518de613063a605500d38e763ed55a35967acb8548d63b65a7d8482f68695dc7600c23d3c38187e9
 DIST kubernetes-1.9.8.tar.gz 23559610 BLAKE2B 
ef384dd9a06cb00c5a095b05a4b304b08a97c3eac9c40b1b06664bfffb5e5b7c71505d50c4f7c3b594975df1013030788c8cee40acbce5c9ccd34ee5b44dc4fe
 SHA512 
45e65d7a1f0950f2fb8fc923bdcaf1d607960be096a98fbfe187ef117da02ce7bf430cdc4c6d7e707557ef54f3239025e442be08729e86dabba624f3aa7503d1
 DIST kubernetes-1.9.9.tar.gz 23588721 BLAKE2B 
0fdf1d934692df14d519b23ca3c5ff4fb887eefd7cc56a7ca51dde384e713f65fd48049a9b3376a7c36e0e32da05c472a704521ce8a66a0987e9e49c26f84b58
 SHA512 
0203fce2646c0221be95b22315f7f62340043542d7213f3020f1012ab016ee47b958d69399b4eaa36bdc219c1c3d3916a7fcff6fbd1975e2a91087bc866b3135

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



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

2018-08-05 Thread Manuel Rüger
commit: cb9b9fbf4a2745f6380b3f5a98dfd16edf605802
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Aug  5 10:22:40 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug  5 10:22:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb9b9fbf

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

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 sys-cluster/kube-proxy/Manifest |  1 +
 sys-cluster/kube-proxy/kube-proxy-1.9.10.ebuild | 41 +
 2 files changed, 42 insertions(+)

diff --git a/sys-cluster/kube-proxy/Manifest b/sys-cluster/kube-proxy/Manifest
index cb24597f6fc..a9be5888e2c 100644
--- a/sys-cluster/kube-proxy/Manifest
+++ b/sys-cluster/kube-proxy/Manifest
@@ -1,5 +1,6 @@
 DIST kubernetes-1.10.4.tar.gz 24773451 BLAKE2B 
8ee589b12a9e594dc5858473f543ef704ba772d48d565bfe3095cf9fb0588cd1ab602f092cc0fdba533cdf6c50c12f18431416640ad55867590940f34ebf5987
 SHA512 
cf1ea11fd721a800a6fdb51ed795f7a225577f1d93661ad98929c00a57ba55f31ac3b3d34e6276da997665734375455668b396289badaaed9825a48f33bdace3
 DIST kubernetes-1.10.5.tar.gz 25046108 BLAKE2B 
4e3d85e872e13a11d7f1fe030d9c6ba62c56b37788c31d6460c7d149c47a59a18a9cbfc791092183977089f4d612b690138faee46383c1b3b7e65adfdd3a0276
 SHA512 
55ac294297385cf6a69a48193c691744b886a5fa5d22b7a3a601d39aacd4cd898edccfcdc186bb1845e257f0f177d330af15d29d1419caab03f863bfa095eddf
 DIST kubernetes-1.11.1.tar.gz 24774820 BLAKE2B 
2b4ffda2258fbdf7f05eeea57f7fad8ca2eb574895d016475ceae35d8506d9c09d5874e689c0f25c806d0b0b957fca166a8930a8fc5aca98cbe3174dfd217653
 SHA512 
4afb54ae389aa414c7e64a7ab60d586c8f3c75afe4da00bcf2221b4b273e164a09548e61c24a0cdaf9d0e52394c3421e6c70f4fbfc80ed62c40ba7816b03afcf
+DIST kubernetes-1.9.10.tar.gz 23592498 BLAKE2B 
021ffbb933a5b541d43617fe36967b91cb1895d4fb6ce7f3651b682976699288646b45d5d0a5698131eedc19f4aa7a125d353971d2ecd44a2fd8510a95fac423
 SHA512 
621a2c1c76f993ad61087916fc5946aa3f1b3dec93c7024e518de613063a605500d38e763ed55a35967acb8548d63b65a7d8482f68695dc7600c23d3c38187e9
 DIST kubernetes-1.9.8.tar.gz 23559610 BLAKE2B 
ef384dd9a06cb00c5a095b05a4b304b08a97c3eac9c40b1b06664bfffb5e5b7c71505d50c4f7c3b594975df1013030788c8cee40acbce5c9ccd34ee5b44dc4fe
 SHA512 
45e65d7a1f0950f2fb8fc923bdcaf1d607960be096a98fbfe187ef117da02ce7bf430cdc4c6d7e707557ef54f3239025e442be08729e86dabba624f3aa7503d1
 DIST kubernetes-1.9.9.tar.gz 23588721 BLAKE2B 
0fdf1d934692df14d519b23ca3c5ff4fb887eefd7cc56a7ca51dde384e713f65fd48049a9b3376a7c36e0e32da05c472a704521ce8a66a0987e9e49c26f84b58
 SHA512 
0203fce2646c0221be95b22315f7f62340043542d7213f3020f1012ab016ee47b958d69399b4eaa36bdc219c1c3d3916a7fcff6fbd1975e2a91087bc866b3135

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



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

2018-08-05 Thread Manuel Rüger
commit: b92bad3749a68c8f322673c991c3ba563de1c2c8
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Aug  5 10:21:54 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug  5 10:21:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b92bad37

app-misc/go-jira: Version bump to 1.0.20

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-misc/go-jira/Manifest  |  1 +
 app-misc/go-jira/go-jira-1.0.20.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/app-misc/go-jira/Manifest b/app-misc/go-jira/Manifest
index 4777177926b..3cb2a61efdf 100644
--- a/app-misc/go-jira/Manifest
+++ b/app-misc/go-jira/Manifest
@@ -1,2 +1,3 @@
 DIST go-jira-1.0.17.tar.gz 1382832 BLAKE2B 
17cada8407b5136ec3b84d9f43c67cb25a893bdfeae7309bc15eb479954ba3ce7df4bc1248782a0bd1874b08b48a68a8e69a1651960c10d6260b22c63a0a8147
 SHA512 
8abbe6233413d12495399446adbb02d6a37aedf2a2b1a860c403b6e210f5e1f44fa01dfe937d86241486cb4a56c52530eff1c582d59f5ddde4b466a6908fd020
 DIST go-jira-1.0.19.tar.gz 1292750 BLAKE2B 
2377b5d677878e83d764d65fe3ef9c3388aa5999004adce956549b327e00554142f7fc82c724593652fd5b5a2d23e161b926bb3c34285f971df0bdac90c94a0a
 SHA512 
42fb89f0886df19eac6cc7098da1e03a0e091876777de896a1b035b6f9d0cb5b546b8fb4c8d4469450da11e2a52b158256f959a63fc57ffeb4541cf792bf3b0f
+DIST go-jira-1.0.20.tar.gz 1292990 BLAKE2B 
788dada892809df730988193e50bd1033b2efe4398cf1374c7c2a08c197e10215aa83feeb2b0573a04c7de72badf83089cd45da85d0e60a31d0fbf41615debae
 SHA512 
f07e1fa6e24fa29a50e348490b0ebf6f3dfa1c1bcbc8420320f3c87b3fac74e6ff1d9acb8936fefb25debed2411508689f832eb19ce09f1c39657942c092220e

diff --git a/app-misc/go-jira/go-jira-1.0.20.ebuild 
b/app-misc/go-jira/go-jira-1.0.20.ebuild
new file mode 100644
index 000..513090c2a8f
--- /dev/null
+++ b/app-misc/go-jira/go-jira-1.0.20.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGO_PN="gopkg.in/Netflix-Skunkworks/go-jira.v1"
+
+inherit golang-build golang-vcs-snapshot
+
+KEYWORDS="~amd64"
+
+DESCRIPTION="A simple JIRA commandline client in Go"
+HOMEPAGE="https://github.com/Netflix-Skunkworks/go-jira;
+SRC_URI="https://github.com/Netflix-Skunkworks/go-jira/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   GOPATH="${WORKDIR}/${P}" go build -v -o jira  cmd/jira/main.go || die
+   popd || die
+}
+
+src_install() {
+   dobin src/${EGO_PN}/jira
+   dodoc src/${EGO_PN}/{CHANGELOG,README}.md
+}



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

2018-08-05 Thread Manuel Rüger
commit: 3acbd46386aa68f85dfe8d50667680703a5703eb
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Aug  5 11:05:34 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug  5 11:05:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3acbd463

dev-python/dnspython: Snapshot that supports pycryptodome

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 dev-python/dnspython/Manifest  |  1 +
 .../dnspython/dnspython-1.16.0_pre20180731.ebuild  | 43 ++
 2 files changed, 44 insertions(+)

diff --git a/dev-python/dnspython/Manifest b/dev-python/dnspython/Manifest
index f547dd89ee4..23080a5bc5f 100644
--- a/dev-python/dnspython/Manifest
+++ b/dev-python/dnspython/Manifest
@@ -1 +1,2 @@
 DIST dnspython-1.15.0.zip 252157 BLAKE2B 
6766c1e69bc4225b08f3b1b3871fac2aba7ae707de5f16718798ce4d6846308500c5341f9ace1b48d3858ffc965a7295ee42cc2c35ff23ac38d71927dcaecfe9
 SHA512 
942f7cf083d1b0a9f03f040ceca194c38777f2e40862c388051986112b3f2a4a8426733ff46ec5a155319776e4a856412c3430b052b2f92f251f0e3260eb9bc1
+DIST dnspython-1.16.0_pre20180731.tar.gz 182538 BLAKE2B 
3a472091fccc4f37d65681727643677472837fd6be0c4fd6aaa13afd1fd4362eb27a5ba4ff6babca46fe15c2f5318ddbba22ce058b522f763baa797e1e2d1ab9
 SHA512 
67d17ab7cb48c370c3c2dd5cb935eec5ab7e3ac0c912e179931f395899ad186ba869edd8b870c043ba9fb3545bace18549d2a377f2ae2c278660fc488e68a20d

diff --git a/dev-python/dnspython/dnspython-1.16.0_pre20180731.ebuild 
b/dev-python/dnspython/dnspython-1.16.0_pre20180731.ebuild
new file mode 100644
index 000..1d9163245a6
--- /dev/null
+++ b/dev-python/dnspython/dnspython-1.16.0_pre20180731.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1 vcs-snapshot
+
+GIT_COMMIT="be7e71e54a6edc87ead1b15af8981b8921e0e83d"
+
+DESCRIPTION="DNS toolkit for Python"
+HOMEPAGE="http://www.dnspython.org/ https://pypi.org/project/dnspython/;
+SRC_URI="https://github.com/rthalley/dnspython/archive/${GIT_COMMIT}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
+IUSE="examples test"
+
+RDEPEND="dev-python/pycryptodome[${PYTHON_USEDEP}]
+   >=dev-python/ecdsa-0.13[${PYTHON_USEDEP}]
+   >=dev-python/idna-2.1[${PYTHON_USEDEP}]
+   !dev-python/dnspython:py2
+   !dev-python/dnspython:py3"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+# For testsuite
+DISTUTILS_IN_SOURCE_BUILD=1
+
+python_test() {
+   cd tests || die
+   "${PYTHON}" utest.py || die "tests failed under ${EPYTHON}"
+   einfo "Testsuite passed under ${EPYTHON}"
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+}



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

2018-08-05 Thread Sergei Trofimovich
commit: 41dbe46a1901f42d5301c8d49bf0677cf4c8e4be
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:19:14 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:19:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41dbe46a

x11-terms/terminator: keyworded 1.91 for ppc, bug #656248

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"

 x11-terms/terminator/terminator-1.91.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/terminator/terminator-1.91.ebuild 
b/x11-terms/terminator/terminator-1.91.ebuild
index d37e37e1458..ee1a1f1e021 100644
--- a/x11-terms/terminator/terminator-1.91.ebuild
+++ b/x11-terms/terminator/terminator-1.91.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://launchpad.net/${PN}/gtk3/${PV}/+download/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="dbus +libnotify"
 
 RDEPEND="



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

2018-08-05 Thread Sergei Trofimovich
commit: fc0c52cfe8b01c64ccc1b3037f1097a2edb86f94
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:27:49 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:27:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc0c52cf

x11-misc/nitrogen: keyworded 1.6.1 for ppc, bug #657218

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"

 x11-misc/nitrogen/nitrogen-1.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/nitrogen/nitrogen-1.6.1.ebuild 
b/x11-misc/nitrogen/nitrogen-1.6.1.ebuild
index 90955390f26..aee77e158ce 100644
--- a/x11-misc/nitrogen/nitrogen-1.6.1.ebuild
+++ b/x11-misc/nitrogen/nitrogen-1.6.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://projects.l3ib.org/${PN}/files/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="nls xinerama"
 
 RDEPEND="



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

2018-08-05 Thread Sergei Trofimovich
commit: d5f61c61c2c0d33430bb98fb5038187859b0eb9e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:31:42 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:31:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5f61c61

dev-python/olefile: keyworded 0.45.1 for ppc64, bug #659320

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-python/olefile/olefile-0.45.1.ebuild 
b/dev-python/olefile/olefile-0.45.1.ebuild
index 243f264d315..f26085310c9 100644
--- a/dev-python/olefile/olefile-0.45.1.ebuild
+++ b/dev-python/olefile/olefile-0.45.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/decalage2/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND=""



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

2018-08-05 Thread Sergei Trofimovich
commit: 5bf7edc3f30afcde925f36140f66d8394ca6d8bc
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:30:14 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:30:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bf7edc3

dev-libs/ell: keyworded 0.6 for ppc64, bug #657616

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-libs/ell/ell-0.6.ebuild b/dev-libs/ell/ell-0.6.ebuild
index 6289d4e1b4e..5c7f1002ae5 100644
--- a/dev-libs/ell/ell-0.6.ebuild
+++ b/dev-libs/ell/ell-0.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://mirrors.edge.kernel.org/pub/linux/libs/${PN}/${P}.tar.xz;
 LICENSE="LGPL-2.1"
 SLOT="0"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc64 ~x86"
 IUSE="glib pie"
 
 RDEPEND="



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

2018-08-05 Thread Sergei Trofimovich
commit: d7d630fe3f4e947bef8914b969adb7ac70e631c8
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:30:26 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:30:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7d630fe

net-wireless/bluez: keyworded 5.50 for ppc64, bug #657616

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc64"

 net-wireless/bluez/bluez-5.50.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-wireless/bluez/bluez-5.50.ebuild 
b/net-wireless/bluez/bluez-5.50.ebuild
index 542b0577699..ff75c0b319b 100644
--- a/net-wireless/bluez/bluez-5.50.ebuild
+++ b/net-wireless/bluez/bluez-5.50.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz"
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0/3"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc64 ~x86"
 IUSE="alsa +btpclient cups doc debug deprecated extra-tools experimental +mesh 
+obex +readline selinux systemd test test-programs +udev user-session"
 
 # Since this release all remaining extra-tools need readline support, but this 
could



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

2018-08-05 Thread Sergei Trofimovich
commit: 3182f1ae6059c653c8b46e4ffeddf94305d897cc
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:31:08 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:31:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3182f1ae

media-gfx/libimagequant: keyworded 2.11.7 for ppc64, bug #659320

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/media-gfx/libimagequant/libimagequant-2.11.7.ebuild 
b/media-gfx/libimagequant/libimagequant-2.11.7.ebuild
index 67f0e32593a..1c7d79aad13 100644
--- a/media-gfx/libimagequant/libimagequant-2.11.7.ebuild
+++ b/media-gfx/libimagequant/libimagequant-2.11.7.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/ImageOptim/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="GPL-3"
 SLOT="0/0"
-KEYWORDS="amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="cpu_flags_x86_sse2 debug openmp static-libs"
 
 DEPEND=""



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

2018-08-05 Thread Sergei Trofimovich
commit: 8382586c99e5a63d31b9eef832297d76b60fea92
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:26:34 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:26:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8382586c

dev-python/psutil: keyworded 5.4.3 for ppc, bug #657104

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-python/psutil/psutil-5.4.3.ebuild 
b/dev-python/psutil/psutil-5.4.3.ebuild
index 6241bc775c7..a72c036d600 100644
--- a/dev-python/psutil/psutil-5.4.3.ebuild
+++ b/dev-python/psutil/psutil-5.4.3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm arm64 ia64 ~ppc ppc64 sparc x86 ~amd64-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-fonts/inconsolata/

2018-08-05 Thread Sergei Trofimovich
commit: 83c89cc433622f5e5fd510b21a6e7091f7d5077c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:25:25 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:25:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83c89cc4

media-fonts/inconsolata: keyworded 20140821 for ppc, bug #657078

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"

 media-fonts/inconsolata/inconsolata-20140821.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/inconsolata/inconsolata-20140821.ebuild 
b/media-fonts/inconsolata/inconsolata-20140821.ebuild
index 5b6d596891c..43eeae2fcb7 100644
--- a/media-fonts/inconsolata/inconsolata-20140821.ebuild
+++ b/media-fonts/inconsolata/inconsolata-20140821.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://dev.gentoo.org/~jstein/dist/${P}.tar.xz;
 
 LICENSE="OFL-1.1"
 SLOT="0"
-KEYWORDS="amd64 x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~ppc x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos"
 IUSE=""
 
 FONT_SUFFIX="ttf"



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

2018-08-05 Thread Sergei Trofimovich
commit: 0145ed48450fd5905f1acd82ea69cc799eef7b30
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:27:04 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:27:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0145ed48

dev-python/pysendfile: keyworded 2.0.1 for ppc, bug #657104

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-python/pysendfile/pysendfile-2.0.1.ebuild 
b/dev-python/pysendfile/pysendfile-2.0.1.ebuild
index a0130066813..f1cdccae5d3 100644
--- a/dev-python/pysendfile/pysendfile-2.0.1.ebuild
+++ b/dev-python/pysendfile/pysendfile-2.0.1.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="A python interface to the sendfile(2) system 
call"
 HOMEPAGE="https://github.com/giampaolo/pysendfile;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
-KEYWORDS="amd64 ~arm ia64 ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ia64 ~ppc ppc64 sparc x86"
 IUSE=""
 LICENSE="MIT"
 SLOT="0"



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

2018-08-05 Thread Sergei Trofimovich
commit: 9745519ceae8ac8e8ad46e7957d954a9a2ab64a2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:28:19 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:28:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9745519c

dev-python/pyftpdlib: keyworded 1.5.4 for ppc, bug #657104

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-python/pyftpdlib/pyftpdlib-1.5.4.ebuild 
b/dev-python/pyftpdlib/pyftpdlib-1.5.4.ebuild
index 42917afc6ff..aa9e67dd059 100644
--- a/dev-python/pyftpdlib/pyftpdlib-1.5.4.ebuild
+++ b/dev-python/pyftpdlib/pyftpdlib-1.5.4.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ia64 ~m68k ~mips ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris"
+KEYWORDS="amd64 ~arm ~hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris"
 IUSE="doc examples ssl test"
 
 RDEPEND="



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

2018-08-05 Thread Sergei Trofimovich
commit: a603dd52d9e91d97c89be9468469611ada8f974a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:30:18 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:30:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a603dd52

dev-libs/ell: keyworded 0.6-r1 for ppc64, bug #657616

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-libs/ell/ell-0.6-r1.ebuild b/dev-libs/ell/ell-0.6-r1.ebuild
index 937ba6d0dec..c3776ce019c 100644
--- a/dev-libs/ell/ell-0.6-r1.ebuild
+++ b/dev-libs/ell/ell-0.6-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://mirrors.edge.kernel.org/pub/linux/libs/${PN}/${P}.tar.xz;
 LICENSE="LGPL-2.1"
 SLOT="0"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc64 ~x86"
 IUSE="glib pie"
 
 RDEPEND="



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

2018-08-05 Thread Sergei Trofimovich
commit: 9716ddea7a430937c07138fa8407ecea1226764b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:27:13 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:27:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9716ddea

dev-python/pysendfile: keyworded 2.0.1-r1 for ppc, bug #657104

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"

 dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild 
b/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild
index 6add938cfba..ee659460f47 100644
--- a/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild
+++ b/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="A python interface to the sendfile(2) system 
call"
 HOMEPAGE="https://github.com/giampaolo/pysendfile;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE=""
 LICENSE="MIT"
 SLOT="0"



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

2018-08-05 Thread Manuel Rüger
commit: 25349eb412fbf63f4f4e2a11a55888eb3aa5a183
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Aug  5 11:11:41 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug  5 13:07:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25349eb4

net-fs/minio: Update snapshot

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 net-fs/minio/Manifest |  1 +
 net-fs/minio/minio-2018.08.02.23.11.36.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/net-fs/minio/Manifest b/net-fs/minio/Manifest
index a78a48895e2..b330c2f31b6 100644
--- a/net-fs/minio/Manifest
+++ b/net-fs/minio/Manifest
@@ -1,2 +1,3 @@
 DIST minio-0_pre20180516.tar.gz 7795495 BLAKE2B 
d14fcbcbf4fa3b9a85bfa1f42d1069b14d4eceb4b99c2e7619d463a1fcdb941183146102da7ac38351fdf332b4bf7a141ede5469b57fc2157be19ff7ecde3e73
 SHA512 
6f5811500010f6e309e3918883c2127a46ba003dc43ece2c6d8a5da9e8d5aa6c2e6e4ca9dfdb4128b11327e035dcdde607b5e4ace045df1fa073d674d8b97e5a
 DIST minio-2018.07.23.18.34.49.tar.gz 8390586 BLAKE2B 
57eecb767e67bdfe52259ed9ee111548c0d41313e0bd0fd60676cb910f8ec7b5f22aaf54055147b440295384df96e0a709bb4c1e7bc6d65d07f3d7e633a444b5
 SHA512 
7d49fb8ece251eb8672d60ac69d0ba4b1ad61901fc5707a9d3c45736c89f5cb313255d7e5c006c5682fb88fcc61c7e638350b76f8b534655bd0a8af20ec51ea8
+DIST minio-2018.08.02.23.11.36.tar.gz 8381976 BLAKE2B 
4081dcb34af05e6643ac64648b2cf6dfeff7119441f79c0958b02ff7a9229ba0f46d63e3922afbb4286702a9f86dbcfb6bf1268d6a1bb4df651618ddbeb95f15
 SHA512 
edc1178825aa50d93dfccbeebf9370c54c61c10f0046b13ec5b25a2ae727f6520496dcfa3e42fd9b2fcaa767210db3138e0ac604ef9c87278be9e3aa4a1f78ff

diff --git a/net-fs/minio/minio-2018.08.02.23.11.36.ebuild 
b/net-fs/minio/minio-2018.08.02.23.11.36.ebuild
new file mode 100644
index 000..0cc7045b5ef
--- /dev/null
+++ b/net-fs/minio/minio-2018.08.02.23.11.36.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user golang-build golang-vcs-snapshot eapi7-ver
+
+EGO_PN="github.com/minio/minio"
+MY_PV="$(ver_cut 1-3)T$(ver_cut 4-7)Z"
+MY_PV=${MY_PV//./-}
+EGIT_COMMIT="a091b1a3eefbaea07499bef9a5462280ec9d2a7a"
+ARCHIVE_URI="https://${EGO_PN}/archive/RELEASE.${MY_PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="An Amazon S3 compatible object storage server"
+HOMEPAGE="https://github.com/minio/minio;
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+RESTRICT="test"
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
+}
+
+src_prepare() {
+   default
+   sed -i -e "s/time.Now().UTC().Format(time.RFC3339)/\"${MY_PV}\"/"\
+   -e "s/-s //"\
+   -e "/time/d"\
+   -e "s/+ commitID()/+ \"${EGIT_COMMIT}\"/"\
+   src/${EGO_PN}/buildscripts/gen-ldflags.go || die
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   MINIO_RELEASE="${MY_PV}"
+   go run buildscripts/gen-ldflags.go
+   GOPATH="${S}" go build --ldflags "$(go run 
buildscripts/gen-ldflags.go)" -o ${PN} || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dodoc -r README.md CONTRIBUTING.md MAINTAINERS.md docs
+   dobin minio
+   popd  || die
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   keepdir /var/{lib,log}/${PN}
+   fowners ${PN}:${PN} /var/{lib,log}/${PN}
+}



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

2018-08-05 Thread Manuel Rüger
commit: 90ea1989c17862b560e4b514343c82a08d5a7739
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Aug  5 13:07:03 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug  5 13:07:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90ea1989

www-apps/hugo: Version bump to 0.46

Closes: https://bugs.gentoo.org/662690
Package-Manager: Portage-2.3.43, Repoman-2.3.10

 www-apps/hugo/Manifest |   2 +
 www-apps/hugo/hugo-0.46.ebuild | 101 +
 2 files changed, 103 insertions(+)

diff --git a/www-apps/hugo/Manifest b/www-apps/hugo/Manifest
index 3876732b94d..0528ec68740 100644
--- a/www-apps/hugo/Manifest
+++ b/www-apps/hugo/Manifest
@@ -5,6 +5,7 @@ DIST 
github.com-PuerkitoBio-urlesc-de5bf2ad457846296e2031421a34e2568e304e35.tar.
 DIST 
github.com-alecthomas-assert-405dbfeb8e38effee6e723317226e93fff912d06.tar.gz 
71099 BLAKE2B 
2894bc0568c3d114aff71724dade89c604d9f0528cbe8f5c644c4a850941f146eec9a862886cb3241b75212c6f2272efc50a6923166eeb571be26c8aded40e0d
 SHA512 
182f141d83bb9b1d7d94cf3b1beb2e7c4074f9be3bd0250e3423fe64e6182f34b54b36e517397aa88440e42fe116973ed435bde6b8343df299db6ebb32591331
 DIST 
github.com-alecthomas-chroma-1b755a90bd109f170385cb3964f0abdfd3451145.tar.gz 
301047 BLAKE2B 
8d14d121cdeb160d3ed10d6b60a8d97897b0344c7c42e5a6546ef1996d32bc163ff650f0d74b9085635ac179fe14a672dff87fb4b3ae43093fd06ba660fc4faf
 SHA512 
67f0d6f741fa07e9d6c3fdc92d0235ed70927b6fa85a346c8b7ecbf9b709e2b7810aaa8f625f5d528bb20d9f7118b4af1cb52fc7f4a5d3e7d1dbf05c0430d7ef
 DIST 
github.com-alecthomas-chroma-85c342e3e3d715ad780edd0ba8728161e99cce24.tar.gz 
298009 BLAKE2B 
e2c8e9e72c06d389c43f4040d652b8de27e9480d3dec27f1b76cee14e657aa10196cf42f42bb4a19d2982198e8a566598104fa14328f06bb12916f382e8bff26
 SHA512 
38d5c391aa9ec4b8c24bd18ec7bb9bd1dab9eb968689ca91635b9964e62d1c0b74c6d102071e48e461440e3f30f201a63bc3a8eaa9e200521c77d35ef4d8c655
+DIST 
github.com-alecthomas-chroma-e4dff9a08cad984e9cf8eaa39fb80f2beae10484.tar.gz 
316451 BLAKE2B 
8025aba0ccd83bbfdce3eeaf9031f00db9555f851729605a625d5ed698b8edf2d24e9efdfd54ed2bfeee1f560fb5f9e9772e4ded5d2164ad4c1254df8f27a3fd
 SHA512 
74da7b6b28b3e838ab8f0fb72ca66de54d0e8f28086a1e6a3509c6bf9435344a8f2e8437597e1d5d56c5ebf424f9ca0cf4dce82f3e77b0ad4fb85888e4ee0487
 DIST 
github.com-alecthomas-colour-60882d9e27213e8552dcff6328914fe4c2b44bc9.tar.gz 
3483 BLAKE2B 
e4ecc9503cc8c6053adb66f87ddaf1e9fb66fa18060c07a0e26c1fd8fa1b143d48345ea73c399571f787b8104a7522672a945d885f5e24dcf0718a995d6567f0
 SHA512 
e428ba9fdc2fcf097ec9892241cbca65631924dfe66a08ec4131e7cfba24125145600f03b753b7bc4452b06f0c7380560d9165ebeb7dddb30d35db512c825796
 DIST 
github.com-alecthomas-repr-f49988b46e025398b9f834f7c726afe001ec481f.tar.gz 4609 
BLAKE2B 
4407439779e981b39d1926437aa67a8922bad0eeed8858b0888c53ee819c8551367e8f74d6d04854ce57dc45a477060461ebb79b30be6b8f6880dbc94f5d53c2
 SHA512 
f07fda8ecd0c653dfd0024eee9e33851572ee21a6aaa196d453825bc28bb92b3c80c0dc0aad38ec4e2158e7f22d7aa1166e4ea7aead713fa834c686cb98dc02d
 DIST github.com-bep-debounce-844797fa1dd9ba969d71b62797ff19d1e49d4eac.tar.gz 
3494 BLAKE2B 
3f8103b07b4d37c060d48739c6a6cfc9b585ea3fcf1b87aa9bfee44245b8f4067763567864903b488070a3ae43a30b7ed95dcaa12517d119af0c4bc6cf73303b
 SHA512 
2636d6ef6cdb5334da0e6ca560e64e2e1880ed749b7abdbc6ac6f2eff125c7c40e4eda549273d68097789234dc7e4bba3cd5d07ea5147e9d28ee390c2fd0216d
@@ -71,3 +72,4 @@ DIST hugo-0.42.1.tar.gz 16529961 BLAKE2B 
b9b16de707a1d9a17a42147451ce365453a927b
 DIST hugo-0.44.tar.gz 17634657 BLAKE2B 
6f21af5003b6a082df3cc3a64a6013c78f7c9fc5f81d56c1925d8ee3092f3381129599e008c1c9ca752cb6b40f405a6893664bee508cf55c700f59e5a9461ce5
 SHA512 
0cfd399a18e21c0596095c8e6817cf953b142624a1661e0e95944fccd74ca8e93072694e6a340300fbc93a739e744276893f42fafa44983beb5f6e5b60437cfe
 DIST hugo-0.45.1.tar.gz 17987572 BLAKE2B 
4227fd2e2c01b649d39d569ed24af67768de591ff98fd3cc0e0853f6ff374e05dffbbee4fafe66f1990767984cedc9e9b7a6b57d88e923ef1fa1d82ac0437891
 SHA512 
277c97f3ca66eed1ce705741194da44e9e96f35e58cad377846e22dda4afdce355caeecc29ed9386425c3a6c62c0c439cd91a03452e7641f494ec360dc0b168e
 DIST hugo-0.45.tar.gz 17989581 BLAKE2B 
8813eefd07c0858458abb12f9fc91f22bb183ecdafe9eea86cb80f191c000b21a72dd1f22f6a47e0dc4c3046a74922b6cbbb8dfc5883b40244da2d503dbed97b
 SHA512 
1f6d0139b2606dfe6c86d581390f76fa7989b70dd2cbc69c9ffef0fed8a7bef367af207cd2c5d9ad3558b97abc85381fd65025eb29b85dc59bb522f45be84ec0
+DIST hugo-0.46.tar.gz 17855569 BLAKE2B 
6e33f963f0e8c1f90b1416857ad552145dcc2a165f9f0e7732546625afb190988756916dc181f0e0de5c214f75fb8a20d6fb982eb1e33926684e0639c5cf0f02
 SHA512 
b197a44b13df607cb6761d77a3f5ea3a40ec279151075ce0ec0db38797c7aef7d26689699d5a3aaa9e35405d388989d3a5da15227b06652ebed01aa5d6fa916c

diff --git a/www-apps/hugo/hugo-0.46.ebuild b/www-apps/hugo/hugo-0.46.ebuild
new file mode 100644
index 000..e8cd6a0e9e1
--- /dev/null
+++ b/www-apps/hugo/hugo-0.46.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of 

[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-08-05 Thread Jason Zaman
commit: 505276a3b27b8b9de21df855c22cd4d56dd7a50c
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Aug  5 13:00:31 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Aug  5 13:00:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=505276a3

xfce-base/xfwm4: bump to 4.13.1

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.13.1.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 9a7a65bf9d1..9fb8e8a907b 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,3 +1,4 @@
 DIST xfwm4-4.12.4.tar.bz2 1208874 BLAKE2B 
60b584d71bc4696bae83897d80cd90d9c13233d1971c823eea6417c8020a0440dc0d648df4e11b27947915ca57130ea3bc7b588e902dc7db74945349ff9ac514
 SHA512 
a33530b08f094456c45ad7c627ba34d3772eaeacdc9f422a3a54a16194d494cb1d6798122398d917fb8bc970db7e1184d9dc8edefc365dacc86de22be397b43d
 DIST xfwm4-4.12.5.tar.bz2 1215450 BLAKE2B 
3a156af589ec7391245edbedbc6e10ac9c746121f68e4bd0c64e30b9b0c11abfe13c1fb77321249edd4e5c8d3051f62f135093fabfd8ba215573d330fd3745c2
 SHA512 
b723638b9cd858beb75232a251471cfb2d01ddb412b536c3f0b432e1f894014e1ad51c77d208d5439ae8a8d970344d0146d5f9475106c1b66d22715af7af42d9
 DIST xfwm4-4.13.0.tar.bz2 1229878 BLAKE2B 
9d7f3d6121a1d1522294a659204d391e120b971cbca00f53f0a0d37f256f2ad65dc6ac1cfd5355d78fa5bd811ed8f7d4013081a10470f18e3edb9fcc0395e218
 SHA512 
01c6cc31dc179ccb51f9881f64ee9e4e16320ab888381d0b203ca0b2a46097048c30eabe7083aaec869c80e8e358c287896d6a1965a36ed6f2f981c27cfb2dce
+DIST xfwm4-4.13.1.tar.bz2 1224120 BLAKE2B 
983b12775ba8998598efb22a2a7ab6f539cb1c6074c3fbaa882b9627e5ad0ff3b96ed0d4352c31dd04451c37dd706404147b87bd899f6b6f1b38df0162b82a15
 SHA512 
2ac5acdefff3a89b8525719b345dfeb2dc71104b4da341afe99d7c57c049753c4cdb81a512d1f344e5fb463c7143673e83316b63888777bdcf254c4a07ca8320

diff --git a/xfce-base/xfwm4/xfwm4-4.13.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.1.ebuild
new file mode 100644
index 000..6c5cc896fae
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.13.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite xpresent"
+
+RDEPEND="dev-libs/dbus-glib:=
+   >=dev-libs/glib-2.20:=
+   >=x11-libs/gtk+-3.20:3=
+   x11-libs/libX11:=
+   x11-libs/libXext:=
+   x11-libs/libXinerama:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/pango:=
+   >=x11-libs/libwnck-3.14:3=
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification:= )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite:=
+   x11-libs/libXdamage:=
+   x11-libs/libXfixes:=
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



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

2018-08-05 Thread Manuel Rüger
commit: ac183c5ef29e5df50c4e8a3b3b56ec5bf4e5edee
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Aug  2 14:39:25 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug  5 13:56:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac183c5e

app-misc/elasticsearch: bump to 6.3.2

Closes: https://bugs.gentoo.org/661312
Package-Manager: Portage-2.3.44, Repoman-2.3.10

 app-misc/elasticsearch/Manifest   |  2 +
 app-misc/elasticsearch/elasticsearch-6.3.2.ebuild | 91 +++
 app-misc/elasticsearch/metadata.xml   | 27 ---
 3 files changed, 108 insertions(+), 12 deletions(-)

diff --git a/app-misc/elasticsearch/Manifest b/app-misc/elasticsearch/Manifest
index 98b53a2a15b..d48921f66c4 100644
--- a/app-misc/elasticsearch/Manifest
+++ b/app-misc/elasticsearch/Manifest
@@ -1,3 +1,5 @@
 DIST elasticsearch-5.6.10.tar.gz 33796721 BLAKE2B 
4e9d1d910a70acf32ca63cec811b711f692f3cf32dcec084a07f92d281eed07c067740bb5c5447055a6d0b6126e55a635edcd08c105dc59985db72bcd031a8a5
 SHA512 
17bd5710cfc3efa455428a79c74e63aacc9b9481d59a0b0df07ad4e4c25ef32dd41b3dbbde464a2801363b6d428a23eb52cc935640ce86bbc4d8a01dca8a1585
 DIST elasticsearch-6.2.4.tar.gz 29056810 BLAKE2B 
121be27ac1db4fa6bbe285161b3f2b2dd889859b50f46b57b68ed43514568c4aa9629b5ca32edcc2328a6e7245256d64901c8acc8b2dd91337f8ca97b87c46e1
 SHA512 
9e6c0de8ed0d9e27fdd18ef7bada376af5a8680bb7a4f4d805926da456b349cee731ba90328b5eda5f0e62fa3f00f34646bf1c2b6c662d055f4be338d0690941
+DIST elasticsearch-6.3.2.tar.gz 91452574 BLAKE2B 
c422990fabad70e6e77e8f59f6fb9e9bf5a84eb7e6b8b67dfd91f53e474b1b501b3a1d5ea8f54f0793631504f194a116e816eb3558782b67c8dadecbc2711ee5
 SHA512 
954cd1e16a5f2e0b0efaeb7e6b19c708d1588d30814a31defb09037c3b90f78c5e9dbd1ca9af9c700d517145a4279bacc1d8ce7cc6894fbe7bf71eec9ed3110d
 DIST elasticsearch-oss-6.3.1.tar.gz 29417012 BLAKE2B 
356665cde2f12ae5813d95302398f5fced07c53d25e6e1dc7ad41c8dc8ad42cd3d5bd4ffa6cab24af8088c29800f6ec59a483710272b756af2f76b5967d4b932
 SHA512 
3df0f7f35e150198f7ff660cf4d90fbd1c2ca587287c6340d427f968711b6390123bfafd09a744c9bdf328d57423bcb75f6e4701ce14a7257388611abea62545
+DIST elasticsearch-oss-6.3.2.tar.gz 29418577 BLAKE2B 
152640dc01a10f44ba43f87f68361cc0dd5e1cf54d0ff92377f3acd1a12a247f002ffe2d003cc53760e891278249c10b1d6d4eb978b0bb1c1ebf8879a2cfcb9a
 SHA512 
3c51a860414f7e55900b1d9a350bdbc3e673c8445e316454c2480315b4b9fc08df58090c6281cecc3ae63d12d78d6bd58e228b3371aa325db799ce18758a21f4

diff --git a/app-misc/elasticsearch/elasticsearch-6.3.2.ebuild 
b/app-misc/elasticsearch/elasticsearch-6.3.2.ebuild
new file mode 100644
index 000..e022c71854f
--- /dev/null
+++ b/app-misc/elasticsearch/elasticsearch-6.3.2.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit systemd user
+
+DESCRIPTION="Open Source, Distributed, RESTful, Search Engine"
+HOMEPAGE="https://www.elastic.co/products/elasticsearch;
+SRC_URI="x-pack? ( https://artifacts.elastic.co/downloads/${PN}/${P}.tar.gz )
+   !x-pack? ( 
https://artifacts.elastic.co/downloads/${PN}/${PN}-oss-${PV}.tar.gz )"
+LICENSE="Apache-2.0 BSD-2 LGPL-3 MIT public-domain x-pack? ( Elastic )"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="x-pack"
+
+RDEPEND="virtual/jre:1.8"
+
+QA_PRESTRIPPED="usr/share/elasticsearch/modules/x-pack/x-pack-ml/platform/linux-x86_64/\(bin\|lib\)/.*"
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 /bin/bash /usr/share/${PN} ${PN}
+}
+
+src_prepare() {
+   default
+
+   rm bin/*.{bat,exe} LICENSE.txt NOTICE.txt || die
+   rmdir logs || die
+
+   if use x-pack; then
+   rm bin/x-pack/*.bat || die
+   rm -r modules/x-pack/x-pack-ml/platform/{darwin,windows}-x86_64 
|| die
+   fi
+}
+
+src_install() {
+   keepdir /etc/${PN}
+   keepdir /etc/${PN}/scripts
+
+   insinto /etc/${PN}
+   doins -r config/.
+   rm -r config || die
+
+   fowners root:${PN} /etc/${PN}
+   fperms 2750 /etc/${PN}
+
+   insinto /usr/share/${PN}
+   doins -r .
+
+   exeinto /usr/share/${PN}/bin
+   doexe "${FILESDIR}/elasticsearch-systemd-pre-exec"
+
+   chmod +x "${ED}"/usr/share/${PN}/bin/* || die
+
+   if use x-pack; then
+   chmod +x 
"${ED}"/usr/share/${PN}/modules/x-pack/x-pack-ml/platform/linux-x86_64/bin/* || 
die
+   fi
+
+   keepdir /var/{lib,log}/${PN}
+   fowners ${PN}:${PN} /var/{lib,log}/${PN}
+   fperms 0750 /var/{lib,log}/${PN}
+   dodir /usr/share/${PN}/plugins
+
+   insinto /etc/sysctl.d
+   newins "${FILESDIR}/${PN}.sysctl.d" ${PN}.conf
+
+   newconfd "${FILESDIR}/${PN}.conf.3" ${PN}
+   newinitd "${FILESDIR}/${PN}.init.5" ${PN}
+
+   systemd_install_serviced "${FILESDIR}/${PN}.service.conf"
+   systemd_newtmpfilesd "${FILESDIR}/${PN}.tmpfiles.d" ${PN}.conf
+   systemd_newunit "${FILESDIR}"/${PN}.service.3 ${PN}.service
+}
+

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

2018-08-05 Thread Manuel Rüger
commit: 251881ce1efc231605b31673caf6d5bd38c83b7e
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Aug  2 14:37:40 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug  5 13:56:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=251881ce

licenses/Elastic: add license for app-misc/elasticsearch

 licenses/Elastic | 223 +++
 1 file changed, 223 insertions(+)

diff --git a/licenses/Elastic b/licenses/Elastic
new file mode 100644
index 000..7376ffc3ff1
--- /dev/null
+++ b/licenses/Elastic
@@ -0,0 +1,223 @@
+ELASTIC LICENSE AGREEMENT
+
+PLEASE READ CAREFULLY THIS ELASTIC LICENSE AGREEMENT (THIS "AGREEMENT"), WHICH
+CONSTITUTES A LEGALLY BINDING AGREEMENT AND GOVERNS ALL OF YOUR USE OF ALL OF
+THE ELASTIC SOFTWARE WITH WHICH THIS AGREEMENT IS INCLUDED ("ELASTIC SOFTWARE")
+THAT IS PROVIDED IN OBJECT CODE FORMAT, AND, IN ACCORDANCE WITH SECTION 2 
BELOW,
+CERTAIN OF THE ELASTIC SOFTWARE THAT IS PROVIDED IN SOURCE CODE FORMAT. BY
+INSTALLING OR USING ANY OF THE ELASTIC SOFTWARE GOVERNED BY THIS AGREEMENT, YOU
+ARE ASSENTING TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT 
AGREE
+WITH SUCH TERMS AND CONDITIONS, YOU MAY NOT INSTALL OR USE THE ELASTIC SOFTWARE
+GOVERNED BY THIS AGREEMENT. IF YOU ARE INSTALLING OR USING THE SOFTWARE ON
+BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE ACTUAL
+AUTHORITY TO AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT ON BEHALF OF
+SUCH ENTITY.
+
+Posted Date: April 20, 2018
+
+This Agreement is entered into by and between Elasticsearch BV ("Elastic") and
+You, or the legal entity on behalf of whom You are acting (as applicable,
+"You").
+
+1. OBJECT CODE END USER LICENSES, RESTRICTIONS AND THIRD PARTY OPEN SOURCE
+SOFTWARE
+
+  1.1 Object Code End User License. Subject to the terms and conditions of
+  Section 1.2 of this Agreement, Elastic hereby grants to You, AT NO CHARGE and
+  for so long as you are not in breach of any provision of this Agreement, a
+  License to the Basic Features and Functions of the Elastic Software.
+
+  1.2 Reservation of Rights; Restrictions. As between Elastic and You, Elastic
+  and its licensors own all right, title and interest in and to the Elastic
+  Software, and except as expressly set forth in Sections 1.1, and 2.1 of this
+  Agreement, no other license to the Elastic Software is granted to You under
+  this Agreement, by implication, estoppel or otherwise. You agree not to: (i)
+  reverse engineer or decompile, decrypt, disassemble or otherwise reduce any
+  Elastic Software provided to You in Object Code, or any portion thereof, to
+  Source Code, except and only to the extent any such restriction is prohibited
+  by applicable law, (ii) except as expressly permitted in this Agreement,
+  prepare derivative works from, modify, copy or use the Elastic Software 
Object
+  Code or the Commercial Software Source Code in any manner; (iii) except as
+  expressly permitted in Section 1.1 above, transfer, sell, rent, lease,
+  distribute, sublicense, loan or otherwise transfer, Elastic Software Object
+  Code, in whole or in part, to any third party; (iv) use Elastic Software
+  Object Code for providing time-sharing services, any software-as-a-service,
+  service bureau services or as part of an application services provider or
+  other service offering (collectively, "SaaS Offering") where obtaining access
+  to the Elastic Software or the features and functions of the Elastic Software
+  is a primary reason or substantial motivation for users of the SaaS Offering
+  to access and/or use the SaaS Offering ("Prohibited SaaS Offering"); (v)
+  circumvent the limitations on use of Elastic Software provided to You in
+  Object Code format that are imposed or preserved by any License Key, or (vi)
+  alter or remove any Marks and Notices in the Elastic Software. If You have 
any
+  question as to whether a specific SaaS Offering constitutes a Prohibited SaaS
+  Offering, or are interested in obtaining Elastic's permission to engage in
+  commercial or non-commercial distribution of the Elastic Software, please
+  contact elastic_lice...@elastic.co.
+
+  1.3 Third Party Open Source Software. The Commercial Software may contain or
+  be provided with third party open source libraries, components, utilities and
+  other open source software (collectively, "Open Source Software"), which Open
+  Source Software may have applicable license terms as identified on a website
+  designated by Elastic. Notwithstanding anything to the contrary herein, use 
of
+  the Open Source Software shall be subject to the license terms and conditions
+  applicable to such Open Source Software, to the extent required by the
+  applicable licensor (which terms shall not restrict the license rights 
granted
+  to You hereunder, but may contain additional rights). To the extent any
+  condition of this Agreement conflicts with any 

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

2018-08-05 Thread Patrice Clement
commit: 08ba8294ca26eeff0e4f6ac3078639fef82369aa
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Aug  5 15:02:00 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 15:04:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08ba8294

dev-java/jopt-simple: add back version 4.6 with a SLOT.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-java/jopt-simple/Manifest   |  1 +
 dev-java/jopt-simple/jopt-simple-4.6.ebuild | 32 +
 2 files changed, 33 insertions(+)

diff --git a/dev-java/jopt-simple/Manifest b/dev-java/jopt-simple/Manifest
index bff29c0fedd..5e45f7495c7 100644
--- a/dev-java/jopt-simple/Manifest
+++ b/dev-java/jopt-simple/Manifest
@@ -1 +1,2 @@
+DIST jopt-simple-4.6.tar.gz 107082 BLAKE2B 
622144647b24049861398cc99ca3cc268baae045f8ca23cdd5bddb2e656bc97d17397ae752ca9a6edc91b8486e1e55ce19ba335d2afadf6c6df4f858faf43a1e
 SHA512 
c2f467521f6419f91206f6036d420671b02106beadff3fc51d1893e6f3f6302b8fcbb31957327b9e40cbfd7a7d55030e0c999d9570d7e29fe7a4375bab10ed76
 DIST jopt-simple-5.0.tar.gz 119502 BLAKE2B 
975a0d338fa3154963954fd3b218c944dded023b3a2da59ee2671c73450a578dbf1aee8e52b9f715839e15c1937e0a493c4b37518b73038aa017e1d0ec1ca06a
 SHA512 
f440c62cb307aad7cab64f091c82f78e11a117e60aaadf71883c149a622576531272de3d67859f6df093df658bb0bfb435d9bb33bc729bcda24dcc99d27369ff

diff --git a/dev-java/jopt-simple/jopt-simple-4.6.ebuild 
b/dev-java/jopt-simple/jopt-simple-4.6.ebuild
new file mode 100644
index 000..496fbd46f1c
--- /dev/null
+++ b/dev-java/jopt-simple/jopt-simple-4.6.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2018 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="A Java library for parsing command line options"
+HOMEPAGE="https://pholser.github.com/jopt-simple/;
+SRC_URI="https://github.com/pholser/${PN}/tarball/${P} -> ${P}.tar.gz"
+LICENSE="MIT"
+SLOT="4.6"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+
+RDEPEND=">=virtual/jre-1.6"
+DEPEND=">=virtual/jdk-1.6"
+
+JAVA_SRC_DIR="src/main/java"
+
+S="${WORKDIR}/${PN}-${PN}-8808a39"
+
+src_prepare() {
+   default
+   rm -v pom.xml || die
+}
+
+src_install() {
+   default
+   java-pkg-simple_src_install
+}



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

2018-08-05 Thread Alexis Ballier
commit: 8af443cd80298bb568034af6296609432d88a391
Author: Nils Freydank  posteo  de>
AuthorDate: Sun Aug  5 14:22:38 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Aug  5 15:06:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8af443cd

dev-tex/latexmk: Bump to 456 and EAPI=7.

Package-Manager: Portage-2.3.44, Repoman-2.3.10

 dev-tex/latexmk/Manifest   |  1 +
 dev-tex/latexmk/latexmk-456.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/dev-tex/latexmk/Manifest b/dev-tex/latexmk/Manifest
index 47cfdd94aef..3e4cb0f74da 100644
--- a/dev-tex/latexmk/Manifest
+++ b/dev-tex/latexmk/Manifest
@@ -6,3 +6,4 @@ DIST latexmk-445.zip 447045 BLAKE2B 
16caa95f1331468a0e535899b9e5c8fb1e3bcd6b7ee1
 DIST latexmk-448.zip 452245 BLAKE2B 
4b033a6eecdb366e4e5e4b8accfc839e7638c1fa79091eb9888bfdb393e6df01edec5ac11cbff5b0c9dbf28c1783f0108372c240f45305329189abedc211af8d
 SHA512 
cfa5c4a95a902baf1d4c56303500e5d54369b68abaa52e904a62bbeaeeb356bfe711ea040f0f02067a40e3fc88a12b46136a3a6d9708a34c177a4bae0bb6b986
 DIST latexmk-452c.zip 391327 BLAKE2B 
1cde3f3005382958bba10c6bd513e3887eefeff5114bc5ed327a528c56b3b77bf9a1b51907c8bab0d50817f6bee63d15b4373e83799231a815000f6b797c0053
 SHA512 
164837066a285e3ffca938eb735c35b253b2dba2addf1ae2b2db5155b0586f6f4e626faf86eb630f97ce296c03c5c1c2f0f3c61445a75b9132aff009d683aeba
 DIST latexmk-453a.zip 368805 BLAKE2B 
5bca05dd0196c43a1cc1e58e8036b66d8ce5825e2fc53e824cf6028c47ab4c420f0cff6b9e2ca205377d1784ce955bd24ba1be1a89f304b296550b5ca76d40c3
 SHA512 
401789383f75ecd78820dadf968e60ede762be0d9a781488e07a0a8239e213ae04959777a6ea87fc6b2bb64315ce00bdda25f7f25542370b5edf2ae5af9ba46e
+DIST latexmk-456.zip 425179 BLAKE2B 
1cd2fcaff070bb9809a263763164f364f13146ba4a5115494824dfe422b2b58906aa9e9ee7ce02238961c77da2e828e6a73a56e7397efa77003b8237fa949fe5
 SHA512 
ff169ff677367125b32e7641e9fabc66d9fb015e6cf1433d39c598baf17a926e0d29c975c4a8fa8ed482b4bc57ff177cfedc058ebdc83a3abadde50f9a490d91

diff --git a/dev-tex/latexmk/latexmk-456.ebuild 
b/dev-tex/latexmk/latexmk-456.ebuild
new file mode 100644
index 000..19b2d48eef8
--- /dev/null
+++ b/dev-tex/latexmk/latexmk-456.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit bash-completion-r1
+
+DESCRIPTION="Perl script for automatically building LaTeX documents"
+HOMEPAGE="http://www.phys.psu.edu/~collins/software/latexmk/;
+SRC_URI="http://www.phys.psu.edu/~collins/software/latexmk/${P}.zip;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+RDEPEND="virtual/latex-base
+   dev-lang/perl"
+DEPEND="${RDEPEND}
+   app-arch/unzip"
+
+S="${WORKDIR}/${PN}"
+
+src_install() {
+   newbin latexmk.pl latexmk
+   doman latexmk.1
+   dodoc CHANGES README latexmk.pdf latexmk.txt
+   dodoc -r example_rcfiles extra-scripts
+   newbashcomp "${FILESDIR}"/completion.bash-2 ${PN}
+}



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

2018-08-05 Thread Manuel Rüger
commit: ee7170f928d0d51828f14a3ce74233004f10de02
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Aug  5 13:47:32 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug  5 13:47:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee7170f9

dev-vcs/gitolite: Version bump to 3.6.8

Closes: https://bugs.gentoo.org/661176
Package-Manager: Portage-2.3.44, Repoman-2.3.10

 dev-vcs/gitolite/Manifest  |   1 +
 dev-vcs/gitolite/gitolite-3.6.8.ebuild | 102 +
 2 files changed, 103 insertions(+)

diff --git a/dev-vcs/gitolite/Manifest b/dev-vcs/gitolite/Manifest
index ef0898c10e7..c1091cc999e 100644
--- a/dev-vcs/gitolite/Manifest
+++ b/dev-vcs/gitolite/Manifest
@@ -6,4 +6,5 @@ DIST gitolite-3.6.4.tar.gz 180619 BLAKE2B 
183769c8dce0d4fcba10ad57b29b56913493b3
 DIST gitolite-3.6.5.tar.gz 182496 BLAKE2B 
478bed0642886ee8b79b1e6c2091482a43663a644c46758ef3c9c55308b10bfa4c4608456e24214bad04607c49487df213e5bff84abb5529c9b0759c39f9288b
 SHA512 
60796663a87c2b169c08e4e26edfb76408428887d3e932677f4ca95a8c7f82e9e300a7400d3d900c371628b23972be063444b7c036218f6ff0ab13626a886f90
 DIST gitolite-3.6.6.tar.gz 183469 BLAKE2B 
91b1b04820f8abe427c7d6a81131a9fce1ff3df8d06c3f1d7515ead91b654048ef24b391fc28f2fe9c6dd0e502e24064a55b5fee8c1da34e3d07974c8f203c26
 SHA512 
1529330ed2afa315fcb650c55d515e5d4b61921f46b4d763a759537434492959f100d2219ab7673e568d46f397a25a45d4388fe3827ea988333fc8719820f8bc
 DIST gitolite-3.6.7.tar.gz 186298 BLAKE2B 
32ccedce5cfe877d69f66ccc354300b1b363de0ac16bf8ec6d97010441d1e5a95e63252c833604d7e4e5b90dd4d84b4e262ee5ed092df80631e7478500e3da97
 SHA512 
d22bf5c34834f82df771e6d4527496a302da312f7f78dfe81c1284f5a1ea05de90ec217e03e94918d69a006a72fa16dc0006b1f555826ad6183d9dce2dd9d425
+DIST gitolite-3.6.8.tar.gz 197551 BLAKE2B 
9788c06885fc7fc8edf422080628f465b33dea2aec8090daf330206041e4776bbae7189b343fc604b0959be556a15016d656b4df133f784d55bc7a6b701ad8ef
 SHA512 
f65d4e4354079f868c9f9a943efb84ad4e29f96c69a3792c13dda383dac0133baa3d93925967c6be71e923b27e0ad91b57b5f1245cf64eeec0f0b719cbda4270
 DIST gitolite-3.6.tar.gz 156481 BLAKE2B 
4cb36e631c458c529d51689bb9612ede34b352d523b62afefed70ab90fadbda1c1d954400c5ddf407ef57a3df8371814c73fdcc526bf3750dad9bfa10f1e7747
 SHA512 
91606a5fed202f0da2194310bc7da8e5d35cdfa2924b009ed3447ba41e2fd856b9043f1b57d16600ec44f17d640e9ee988b4086bea032827bf5fca83e5ff024f

diff --git a/dev-vcs/gitolite/gitolite-3.6.8.ebuild 
b/dev-vcs/gitolite/gitolite-3.6.8.ebuild
new file mode 100644
index 000..8d75699aad7
--- /dev/null
+++ b/dev-vcs/gitolite/gitolite-3.6.8.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+[[ ${PV} == * ]] && SCM="git-2"
+EGIT_REPO_URI="https://github.com/sitaramc/${PN}.git;
+EGIT_MASTER=master
+
+inherit perl-module user versionator ${SCM}
+
+DESCRIPTION="Highly flexible server for git directory version tracker"
+HOMEPAGE="https://github.com/sitaramc/gitolite;
+if [[ ${PV} != * ]]; then
+   SRC_URI="https://github.com/sitaramc/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~x86"
+else
+   SRC_URI=""
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="selinux tools"
+
+DEPEND="dev-lang/perl
+   virtual/perl-File-Path
+   virtual/perl-File-Temp
+   >=dev-vcs/git-1.6.6"
+RDEPEND="${DEPEND}
+   !app-vim/gitolite-syntax
+   !dev-vcs/gitolite-gentoo
+   selinux? ( sec-policy/selinux-gitosis )
+   dev-perl/JSON"
+
+PATCHES=( )
+
+pkg_setup() {
+   enewgroup git
+   enewuser git -1 /bin/sh /var/lib/gitolite git
+}
+
+src_prepare() {
+   default
+   echo $PF > src/VERSION || die
+}
+
+src_install() {
+   local uexec=/usr/libexec/${PN}
+
+   rm -rf src/lib/Gitolite/Test{,.pm}
+   insinto $VENDOR_LIB
+   doins -r src/lib/Gitolite
+
+   dodoc README.markdown CHANGELOG
+   # These are meant by upstream as examples, you are strongly recommended 
to
+   # customize them for your needs.
+   dodoc contrib/utils/ipa_groups.pl contrib/utils/ldap_groups.sh
+
+   insinto /usr/share/vim/vimfiles
+   doins -r contrib/vim/*
+
+   insopts -m0755
+   insinto $uexec
+   doins -r src/{commands,syntactic-sugar,triggers,VREF}/
+   doins -r contrib/{commands,triggers,hooks}
+
+   insopts -m0644
+   doins src/VERSION
+
+   exeinto $uexec
+   doexe src/gitolite{,-shell}
+
+   dodir /usr/bin
+   for bin in gitolite{,-shell}; do
+   dosym /usr/libexec/${PN}/${bin} /usr/bin/${bin}
+   done
+
+   if use tools; then
+   dobin check-g2-compat convert-gitosis-conf
+   dobin contrib/utils/rc-format-v3.4
+   fi
+
+   keepdir /var/lib/gitolite
+   fowners git:git /var/lib/gitolite
+   fperms 750 /var/lib/gitolite
+
+   fperms 0644 ${uexec}/VREF/MERGE-CHECK # It's meant as example only
+}
+

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

2018-08-05 Thread Manuel Rüger
commit: 6508e8b6d1ead2ad6e4636f6a33a684f00bf65d0
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Aug  3 08:59:33 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug  5 13:57:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6508e8b6

www-apps/kibana-bin: bump to 6.3.2

 www-apps/kibana-bin/Manifest|  2 +
 www-apps/kibana-bin/kibana-bin-6.3.2.ebuild | 71 +
 www-apps/kibana-bin/metadata.xml| 25 +-
 3 files changed, 87 insertions(+), 11 deletions(-)

diff --git a/www-apps/kibana-bin/Manifest b/www-apps/kibana-bin/Manifest
index 8bcd8492254..2384eeb6707 100644
--- a/www-apps/kibana-bin/Manifest
+++ b/www-apps/kibana-bin/Manifest
@@ -1,3 +1,5 @@
 DIST kibana-5.6.10-linux-x86_64.tar.gz 52586941 BLAKE2B 
cb4e1716c640c80be980541e5496a96fc6baa04152e11f754b46dc71a9995809038b8a82c3404d9d86d1bd0381e9fc55fca44c66f046cb41e005c760aa077092
 SHA512 
c56c600c79bf2f5d2991d6c1442db300c78dd4135bf8dec5b9f500d609e2f041d09649195cfdae2f6d30cf8de2c2c865ac607283f865c4aa8ec1d400af84c270
 DIST kibana-6.2.4-linux-x86_64.tar.gz 85348919 BLAKE2B 
ce062a5a7d96c0266143f1091f7dbe5ade6236068a73f6fedbe253957f7ddf2d00b441d985f72e9936aa3bfa7ecd9e7b7672b301b726a7d78c3e2b71d52c3b24
 SHA512 
125c2002e1a3b197f9f0d6200f2979f2e5974a902bfec2baa4b34a0c8d55babccafdb87b8a7b69c61ca4c02b8ae97e69b9b2743f7d445f0e53e31c69288296d5
+DIST kibana-6.3.2-linux-x86_64.tar.gz 205331616 BLAKE2B 
17273e641a9f146943cc4aebbce1114706dcf5d4c5f4d865a79d5b576a845c40268ea4389c358d555ca278c0bed4a68baef661472f80f7957dd013f0ce2e9835
 SHA512 
35eb97ca2f8d0bd80dc7dcdc5bc03f8ab21d1280d11d892f12eda5a173a951dfe88718d45c94ff0a748bb324e44f243cda0ba314c6dcd249cd960928f7c7b7ea
 DIST kibana-oss-6.3.1-linux-x86_64.tar.gz 89617065 BLAKE2B 
bdadf0ddecb060d64ed07f4f3f62934b4ae686f00d1dafbe8030acf95431b13049f53ffe7a6f8eb695d9cb1dc45151110f430c1953e1c0e1edd3656819ee0cb8
 SHA512 
6be02af23878dae1d48b81e8a46704f35a0bc136dd0952d997ba1f00d080868960fc3fc86d37e1e1fad5acb74dc2345e09ccc7d27862575d5783708d058c6831
+DIST kibana-oss-6.3.2-linux-x86_64.tar.gz 89561513 BLAKE2B 
37031653e171d683a18f25c957545b6b143c2f0d8c07da6c02ea61c8296657d190540f4ffee2c6a62a9146800971041d7e4e30767892ba2bbff0486aef31cda5
 SHA512 
87236fa1a45a5c5e0ecdc033f864e9a1f74cb148e350b83c6c024b37eb71e3c16236fe52525898532f286f816cb6d03de23cba3d97e0cc0c4d622cdd18c7defb

diff --git a/www-apps/kibana-bin/kibana-bin-6.3.2.ebuild 
b/www-apps/kibana-bin/kibana-bin-6.3.2.ebuild
new file mode 100644
index 000..e6790f0a74f
--- /dev/null
+++ b/www-apps/kibana-bin/kibana-bin-6.3.2.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eapi7-ver systemd user
+
+MY_PN="${PN%-bin}"
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Analytics and search dashboard for Elasticsearch"
+HOMEPAGE="https://www.elastic.co/products/kibana;
+SRC_URI="x-pack? ( 
https://artifacts.elastic.co/downloads/${MY_PN}/${MY_P}-linux-x86_64.tar.gz )
+   !x-pack? ( 
https://artifacts.elastic.co/downloads/${MY_PN}/${MY_PN}-oss-${PV}-linux-x86_64.tar.gz
 )"
+
+# source: LICENSE.txt and NOTICE.txt
+LICENSE="Apache-2.0 Artistic-2 BSD BSD-2 CC-BY-3.0 CC-BY-4.0 icu ISC MIT 
MPL-2.0 OFL-1.1 openssl public-domain Unlicense WTFPL-2 ZLIB x-pack? ( Elastic 
)"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="x-pack"
+
+RDEPEND="net-libs/nodejs"
+
+S="${WORKDIR}/${MY_P}-linux-x86_64"
+
+pkg_setup() {
+   enewgroup ${MY_PN}
+   enewuser ${MY_PN} -1 -1 /opt/${MY_PN} ${MY_PN}
+}
+
+src_prepare() {
+   default
+
+   # remove bundled nodejs
+   rm -r node || die
+
+   # remove empty unused directory
+   rmdir data || die
+}
+
+src_install() {
+   insinto /etc/${MY_PN}
+   doins -r config/.
+   rm -r config || die
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${MY_PN}.logrotate ${MY_PN}
+
+   newconfd "${FILESDIR}"/${MY_PN}.confd ${MY_PN}
+   newinitd "${FILESDIR}"/${MY_PN}.initd ${MY_PN}
+   systemd_dounit "${FILESDIR}"/${MY_PN}.service
+
+   insinto /opt/${MY_PN}
+   doins -r .
+
+   chmod +x "${ED%/}"/opt/${MY_PN}/bin/* || die
+
+   diropts -m 0750 -o ${MY_PN} -g ${MY_PN}
+   keepdir /var/log/${MY_PN}
+}
+
+pkg_postinst() {
+   elog "This version of Kibana is compatible with Elasticsearch $(ver_cut 
1-2) and"
+   elog "Node.js 8. Some plugins may fail with other versions of Node.js 
(Bug #656008)."
+   elog
+   elog "To set a customized Elasticsearch instance:"
+   elog "  OpenRC: set ES_INSTANCE in /etc/conf.d/${MY_PN}"
+   elog "  systemd: set elasticsearch.url in /etc/${MY_PN}/kibana.yml"
+   elog
+   elog "Elasticsearch can run local or remote."
+}

diff --git a/www-apps/kibana-bin/metadata.xml b/www-apps/kibana-bin/metadata.xml
index 235a4590e78..8a7e9b80fe5 100644
--- a/www-apps/kibana-bin/metadata.xml
+++ b/www-apps/kibana-bin/metadata.xml
@@ -1,15 +1,18 @@
 

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

2018-08-05 Thread Manuel Rüger
commit: c9bf549a2787f463a8cb3f1fdc5b8ddf22fb933e
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Aug  5 14:24:56 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug  5 14:29:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9bf549a

net-misc/felix: Version bump to 3.1.3

Package-Manager: Portage-2.3.44, Repoman-2.3.10

 net-misc/felix/Manifest   |  15 +
 net-misc/felix/felix-3.1.3.ebuild | 131 ++
 2 files changed, 146 insertions(+)

diff --git a/net-misc/felix/Manifest b/net-misc/felix/Manifest
index 65efd3ba4e5..ef162c611c0 100644
--- a/net-misc/felix/Manifest
+++ b/net-misc/felix/Manifest
@@ -1,5 +1,6 @@
 DIST felix-2.5.1.tar.gz 331705 BLAKE2B 
b8ed9b2355fd7ed6af95421d863f52f0553db5b2b7043095075231fe79d7500ce94c1ceb33614cdcdf715ba275ec254c605622eeae83486d8861a6449ba0c2bd
 SHA512 
60bea2115164b0c75b08ee5011e6754a5173c5e360215b71483fac2f26f1a57223df6ccfcd226e542335be5aec886d9e4f379353f3d57f11f9ec0098b98b393c
 DIST felix-3.1.0.tar.gz 465717 BLAKE2B 
07df31c230a377cc8f9f46a5c6d49ff98fb4292bada3713aaa71a73b309d2a661c9a0904cb67897ceafa767fc38ad8fc53cfdb6048e4d92a02ea08c005e8f88a
 SHA512 
1633b9748334bb7e9044554c258130037bbffea5ca132235cb63cb061c3fd5b17f143cb85b815e321c936f31e501e2b4e089c896b1a9a5b5765e3cf354041170
+DIST felix-3.1.3.tar.gz 467553 BLAKE2B 
80fc599d5b2d6f57a251b6d679cd7b3ea461827e8f37fd3c798f1b8bbfd319449d037c0a5a6b7dcc77594a8f557897f7a228567fca8f95c00c028a8c4433e425
 SHA512 
2ba79babd27016a83ad525611917f1ed43707ccbdfda80bf40973698ac343255896aa978a38be58b58e13ecf6956a028caa5c2d0f1cbbef8a088961f449646ff
 DIST 
github.com-Azure-go-autorest-58f6f26e200fa5dfb40c9cd1c83f3e2c860d779d.tar.gz 
84538 BLAKE2B 
0b97625db8735a99fbb8b125dd275026bbb913617a55e225dd79118d480b8163db6f309de92e23f88cad886d84c1bc34072305036f5656a31f9e98d494c0f73c
 SHA512 
05ce1eff741673e6c50beece51a4974ad375cfc78eb493f9dea9a8b0f5d23ff30a5a21824d8e42e49993eab267ca5fca2264473dfae2f2c65f990ce7a663c536
 DIST 
github.com-GoogleCloudPlatform-gcloud-golang-3b1ae45394a234c385be014e9a488f2bb6eef821.tar.gz
 709308 BLAKE2B 
89cfa383556809ed58de8ab3db951ddc74250c1bcf2d8ff751c935d4be69c39d287fa4a2bff52799e368a22fadd791b8a2903264496a996d4ae756701af97454
 SHA512 
d13d22a4407aff047d4711d5d6f862a01e22373583f15ab513155e57a4f05968d20c4421c989a015a02f2e39b833b7d880cc301aea959416e44ed37586c3c14b
 DIST 
github.com-Microsoft-go-winio-78439966b38d69bf38227fbf57ac8a6fee70f69a.tar.gz 
78903 BLAKE2B 
b2480753213e2c387d969c8dc68994cb6d107ebc970ecb986d4bf22b542d460814d0ba0e40b82e9022072142b201cd794fc8dc7bcfcb1531c9613f2c3408b7a3
 SHA512 
192b544268bd10048ca877d70b35faceb9c648e7298124678b21d727a27d569e61536f42a7030b7e40610ea5822c0bc2264cac03c340ecc90e43f9120b6734d9
@@ -21,6 +22,7 @@ DIST 
github.com-emicklei-go-restful-swagger12-dcef7f55730566d41eae5db10e7d698182
 DIST github.com-gavv-monotime-47d58efa69556a936a3c15eb2ed42706d968ab01.tar.gz 
5945 BLAKE2B 
c57ad94b089601faeaab532e503a73fe1868cc5d165c7594e96bad34b5e2ee474ba9ff59418ab8b4c7e877cb3ec59d54114711304a797c712468a20f14aa8e4d
 SHA512 
b736e2f99b44ecf3876faf1243374885048084ea61786e77bc17a866f2f27ac14dc3b4d032e5968489a08044321ef32b0bca020db453a6315e3696e063b6bf11
 DIST github.com-ghodss-yaml-0ca9ea5df5451ffdf184b4428c902747c2c11cd7.tar.gz 
11776 BLAKE2B 
bef19eeb755e2711ca293fa759ff98e39e17ef5679bef7b73592da7d44f1212dbe4812aafdfd63e585337623161074464a42f255873901e26091fd56f100b454
 SHA512 
a6848eeda7a6066b3df7582f681aa3382dc4e6d3c4579b4a13d8b31af317be56529a8ebf5c396b85490c0cddcfbe08872db8d747fedd212ff035678b9dfa9e0e
 DIST github.com-go-inf-inf-3887ee99ecf07df5b447e9b00d9c0b2adaa9f3e4.tar.gz 
13080 BLAKE2B 
3dbd873e29a74847c0c19d743ac3ab7be243022c0bd4ff8b5eb3d130a4e8acf71fe27d3c4c8e93282077496600590e6c0c46dfebe751fc6cb92131236df2b762
 SHA512 
4508783b29a6ac4e0fd42d15df772294506775e590fc0ba74fff3da654d118e50ee47b827cadfbe8b0b001904705d1108ace744b90e47152099ff3b3caa177cb
+DIST github.com-go-ini-ini-06f5f3d67269ccec1fe5fe4134ba6e982984f7f5.tar.gz 
34203 BLAKE2B 
8eda5e022be1507d92f17ef3d2ca9f02df7a63d4bdae14d3486af05981d4007be0f32d1930341d5a724d20fd6f37d19dbfa9f1a703c14a86923f2940a5b3e2a6
 SHA512 
fdeb9b80afb13697b9b3084ea17e92fe2c528fec57bc4a18beafa18160201c94a9e31f85751d8eac836f2e41f818e547f5f2038c3a001c3f91a1187e1ba7846f
 DIST github.com-go-ini-ini-20b96f641a5ea98f2f8619ff4f3e061cff4833bd.tar.gz 
38030 BLAKE2B 
b7fd1f9a6f028a68b07ad71c2edaae3050dda90585053273ac8112e9fbcbc66af7cfe675687ff52dc5dbe16c3567b4cbae8ea902066ad4122b9f7e4e36a17a78
 SHA512 
9de56f22a8b4ffcc8d64ebba79e2a4aac796f4d2edf475dc506a45e155a3a5bd27bf4dc7c7b5745be585ae69f3ba1394d1f6f14812b7c3a338125a5b0c315b40
 DIST github.com-go-ini-ini-5e9692864e22d02ac79e2fa499cffb00520b4fea.tar.gz 
31516 BLAKE2B 
25846eeaaac2c159820aec06fb0a270d5099b7f0950cd6cfa8611e449fd5a961b3a72d6ee4ae5a03a86a7638c41dc61c287fa15abe87a24f72323a4880f7f546
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: app-xemacs/edt/

2018-08-05 Thread Mats Lidell
commit: 1188f0d626630b203d79a27918af32240a859375
Author: Mats Lidell  gentoo  org>
AuthorDate: Sun Aug  5 14:54:19 2018 +
Commit: Mats Lidell  gentoo  org>
CommitDate: Sun Aug  5 14:54:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1188f0d6

app-xemacs/edt: version bump

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-xemacs/edt/Manifest|  1 +
 app-xemacs/edt/edt-1.16.ebuild | 14 ++
 2 files changed, 15 insertions(+)

diff --git a/app-xemacs/edt/Manifest b/app-xemacs/edt/Manifest
index 33f202d17e5..e6c3bc9fc3d 100644
--- a/app-xemacs/edt/Manifest
+++ b/app-xemacs/edt/Manifest
@@ -1,2 +1,3 @@
 DIST edt-1.13-pkg.tar.gz 62754 BLAKE2B 
f327f44febb3fcca7a79771126ff85716464ce23739b2caf49a95047f2244da706576f80e5ea58125f0c7cd4723262b6d759c77c66581d3393f56f1950465544
 SHA512 
8371dd96b6996d1257c769be4fcc77ae386d187bfb51ccd03c57e09b12a2b193c575f15b8fce29380a59f795adaf02a3528fa80f3b24536c349fc10ab54f808a
 DIST edt-1.14-pkg.tar.gz 62824 BLAKE2B 
9ab1cc9e55364b901ee51d16b97ea8a72a935e10d2aec5ef4f1757954a5f3e0c36132686225bb64e47227e2c83171632b004621f14b1508a9bfc07c8ad4cfc04
 SHA512 
8179652766eeffdd12b673e453f4dbe0117bc8f2ad743943c5f613dd217c80d3433b7cbe3a2d8b55604eaff489416edc5afd3e5bafafcec8782dd471688555c2
+DIST edt-1.16-pkg.tar.gz 62865 BLAKE2B 
22f62a7ab87a723339693fcd6351263b1347b464db1f2f15ad79543505faf837154d95efa03f9401a03d7838452cab72484251c80a517cb3337ea8e3bf2f595b
 SHA512 
46a0452b9d926a3d612acdbefec37731ac60a86b207e125c7ca6dcd962b419173d4a5cb96117a8f0afb29b9c8173a5bbdc69e8d8ae09276829a6dc44c931

diff --git a/app-xemacs/edt/edt-1.16.ebuild b/app-xemacs/edt/edt-1.16.ebuild
new file mode 100644
index 000..1951947dcd6
--- /dev/null
+++ b/app-xemacs/edt/edt-1.16.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+SLOT="0"
+DESCRIPTION="DEC EDIT/EDT emulation"
+XEMACS_PKG_CAT="standard"
+
+RDEPEND="app-xemacs/xemacs-base
+"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+
+inherit xemacs-packages



[gentoo-commits] repo/gentoo:master commit in: app-xemacs/egg-its/

2018-08-05 Thread Mats Lidell
commit: cc5c418a9e1f20da97c5a93fb808cba0d173aa36
Author: Mats Lidell  gentoo  org>
AuthorDate: Sun Aug  5 15:10:14 2018 +
Commit: Mats Lidell  gentoo  org>
CommitDate: Sun Aug  5 15:10:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc5c418a

app-xemacs/egg-its: version bump

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-xemacs/egg-its/Manifest|  1 +
 app-xemacs/egg-its/egg-its-1.29.ebuild | 17 +
 2 files changed, 18 insertions(+)

diff --git a/app-xemacs/egg-its/Manifest b/app-xemacs/egg-its/Manifest
index e13d9924df5..303fbd062ad 100644
--- a/app-xemacs/egg-its/Manifest
+++ b/app-xemacs/egg-its/Manifest
@@ -1 +1,2 @@
 DIST egg-its-1.27-pkg.tar.gz 261339 BLAKE2B 
8e0fb9cf66d373ccdee6d54c0eb0d996d5ebc03a5d85e1ae8c43b66ae53b7a9ee97a90526b70d52232397ef2982baefc3d4bb327bdebe60aa79bb77ffe4a785a
 SHA512 
f5a2a9412175cc4a825de907f566df0228a1838b082a20f9f11164fb76b7f87db2f4f4e337a8d58f7e0479ffb498c32ac0a7413a70f047a10ecc631edebd4ded
+DIST egg-its-1.29-pkg.tar.gz 261073 BLAKE2B 
cc5c515f4ae3918954ad4fedb21b5262b29fe3cbfcb43faabbefb7882f16583b53b8a68cc943af77471fc4431898db6de1dd38f1146150050f5d422308ef241f
 SHA512 
9457e69c652f13309616ffaa97bfbe64bb0699c958442a0b0bd5f9f215951688a77d7d689567b1fb09d74229460c2a7687b661bcd21a68646a01283929ef764f

diff --git a/app-xemacs/egg-its/egg-its-1.29.ebuild 
b/app-xemacs/egg-its/egg-its-1.29.ebuild
new file mode 100644
index 000..e6d72a6e844
--- /dev/null
+++ b/app-xemacs/egg-its/egg-its-1.29.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+SLOT="0"
+DESCRIPTION="MULE: Wnn (4.2 and 6) support.  SJ3 support"
+XEMACS_PKG_CAT="mule"
+
+RDEPEND="app-xemacs/leim
+app-xemacs/mule-base
+app-xemacs/fsf-compat
+app-xemacs/xemacs-base
+"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+
+inherit xemacs-packages



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

2018-08-05 Thread Mart Raudsepp
commit: bafe23e26b9425982cb10251908b8a8b1d243724
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 09:42:48 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 09:43:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bafe23e2

app-arch/file-roller: bump to 3.26.2

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-arch/file-roller/Manifest  |  1 +
 app-arch/file-roller/file-roller-3.26.2.ebuild | 91 ++
 2 files changed, 92 insertions(+)

diff --git a/app-arch/file-roller/Manifest b/app-arch/file-roller/Manifest
index 9a13997145f..32b758a5f54 100644
--- a/app-arch/file-roller/Manifest
+++ b/app-arch/file-roller/Manifest
@@ -1 +1,2 @@
 DIST file-roller-3.24.1.tar.xz 1428216 BLAKE2B 
7a74ac56fba36a60ba1f7cc0fb905b92336a349f786963a65ea2442fb078704c6e00b46686334f56cf270c861abe7ca252e0ee39f66349f6a4cc3b769a9e7dde
 SHA512 
bd8750b8ffe3e7d3c74492e2ffdde519e7879d46f16c559d06042bac60c8ee63f492aeeaa66b4aff7c997150f4f2955e02a3b0565edf4bd7641a089ed052f268
+DIST file-roller-3.26.2.tar.xz 1436760 BLAKE2B 
a563f77dcc8d61e90e4e42fa4f08aded657d677b319b39f4c9fd16670a2309e81f142b7b8528e52db0be3f454efca15ccd7e9e25754a95b45800a9ca02969e12
 SHA512 
3572446081f931ce7cfd7eccdc9450d798164426a68bc332f9340b7c06b79ce4f1589b817c27322a0c1681d7f2cb8cf93462cde1e3df13ad40789faec1decc9f

diff --git a/app-arch/file-roller/file-roller-3.26.2.ebuild 
b/app-arch/file-roller/file-roller-3.26.2.ebuild
new file mode 100644
index 000..b7717363afe
--- /dev/null
+++ b/app-arch/file-roller/file-roller-3.26.2.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+
+inherit gnome2 readme.gentoo-r1
+
+DESCRIPTION="Archive manager for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Apps/FileRoller;
+
+LICENSE="GPL-2+ CC-BY-SA-3.0"
+SLOT="0"
+IUSE="libnotify nautilus packagekit"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
+
+# gdk-pixbuf used extensively in the source
+# cairo used in eggtreemultidnd.c
+# pango used in fr-window
+RDEPEND="
+   >=app-arch/libarchive-3:=
+   >=dev-libs/glib-2.36:2
+   >=dev-libs/json-glib-0.14
+   >=x11-libs/gtk+-3.13.2:3
+   sys-apps/file
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   x11-libs/pango
+   libnotify? ( >=x11-libs/libnotify-0.4.3:= )
+   nautilus? ( >=gnome-base/nautilus-2.22.2 )
+   packagekit? ( app-admin/packagekit-base )
+"
+# libxml2 required for glib-compile-resources
+DEPEND="${RDEPEND}
+   dev-libs/libxml2:2
+   >=dev-util/intltool-0.50.1
+   dev-util/itstool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+# eautoreconf needs:
+#  gnome-base/gnome-common
+
+DISABLE_AUTOFORMATTING="yes"
+DOC_CONTENTS="
+${PN} is a frontend for several archiving utilities. If you want a
+particular archive format support, see ${HOMEPAGE}
+and install the relevant package. For example:
+7-zip   - app-arch/p7zip
+ace - app-arch/unace
+arj - app-arch/arj
+cpio- app-arch/cpio
+deb - app-arch/dpkg
+iso - app-cdr/cdrtools
+jar,zip - app-arch/zip and app-arch/unzip
+lha - app-arch/lha
+lzop- app-arch/lzop
+lz4 - app-arch/lz4
+rar - app-arch/unrar or app-arch/unar
+rpm - app-arch/rpm
+unstuff - app-arch/stuffit
+zoo - app-arch/zoo"
+
+src_prepare() {
+   # File providing Gentoo package names for various archivers
+   cp -v "${FILESDIR}"/3.22-packages.match data/packages.match || die
+   gnome2_src_prepare
+}
+
+src_configure() {
+   # --disable-debug because enabling it adds -O0 to CFLAGS
+   gnome2_src_configure \
+   --disable-run-in-place \
+   --disable-static \
+   --disable-debug \
+   --enable-magic \
+   --enable-libarchive \
+   $(use_enable libnotify notification) \
+   $(use_enable nautilus nautilus-actions) \
+   $(use_enable packagekit)
+}
+
+src_install() {
+   gnome2_src_install
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   gnome2_pkg_postinst
+   readme.gentoo_print_elog
+}



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/five-or-more/

2018-08-05 Thread Mart Raudsepp
commit: b280780056f07d891416494b336468fb4605365c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 09:51:57 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 09:51:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2807800

games-puzzle/five-or-more: bump to 3.28.0

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 games-puzzle/five-or-more/Manifest |  1 +
 .../five-or-more/five-or-more-3.28.0.ebuild| 29 ++
 2 files changed, 30 insertions(+)

diff --git a/games-puzzle/five-or-more/Manifest 
b/games-puzzle/five-or-more/Manifest
index b4db78546c4..7129ec66e96 100644
--- a/games-puzzle/five-or-more/Manifest
+++ b/games-puzzle/five-or-more/Manifest
@@ -1 +1,2 @@
 DIST five-or-more-3.22.2.tar.xz 3297904 BLAKE2B 
d727f18946b9ce26351db1b98c9396b9b4d79db0c412ca48c8a08266f162c47639af1612a27bb2ba0b513719a88574126c54da856df35c9e80bb01fbbb763cf0
 SHA512 
a809e227f7ec59912915f4808676c25777a0264268a06dcc7524d121b943e32fc95cfb815f2153aa0960aa0cdd0b3fed054c15d9d0c12d89ed155f0352fcb6f3
+DIST five-or-more-3.28.0.tar.xz 1507188 BLAKE2B 
992bc75847b7e51cb5b5a23c3d3aad89a6daee00546711cf1d273663d2ebf8c2801c7a42f2aae1154114715d56ab1395def074beb30944762e9c560311880377
 SHA512 
33bf396426401dde2b326af8e7d137c23679589568e78f8b7e0020c074169318ba7925ecbd23bc18a2cfe0abecfca05c3090b78f1f86801c84e6fa385ca23f8b

diff --git a/games-puzzle/five-or-more/five-or-more-3.28.0.ebuild 
b/games-puzzle/five-or-more/five-or-more-3.28.0.ebuild
new file mode 100644
index 000..c10bdf876e0
--- /dev/null
+++ b/games-puzzle/five-or-more/five-or-more-3.28.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2
+
+DESCRIPTION="Five or More Game for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Apps/Five%20or%20more;
+
+LICENSE="GPL-2+ CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+COMMON_DEPEND="
+   >=dev-libs/glib-2.32:2
+   >=gnome-base/librsvg-2.32:2
+   >=x11-libs/gtk+-3.20:3
+"
+RDEPEND="${COMMON_DEPEND}
+   !

[gentoo-commits] proj/gnome:master commit in: app-text/evince/

2018-08-05 Thread Mart Raudsepp
commit: 48f858e82de2dc9b0b92d9e62e72db44e34e14b5
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 09:49:11 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 09:49:11 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=48f858e8

app-text/evince: sync, needs newer libarchive

Package-Manager: Portage-2.3.43, Repoman-2.3.10

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

diff --git a/app-text/evince/evince-.ebuild 
b/app-text/evince/evince-.ebuild
index 3ecb6a1f..938fd88a 100644
--- a/app-text/evince/evince-.ebuild
+++ b/app-text/evince/evince-.ebuild
@@ -36,7 +36,7 @@ COMMON_DEPEND="
gnome-base/gsettings-desktop-schemas
>=x11-libs/cairo-1.10:=
>=app-text/poppler-0.33[cairo]
-   >=app-arch/libarchive-3.1.2
+   >=app-arch/libarchive-3.2.0
djvu? ( >=app-text/djvu-3.5.22:= )
dvi? (
virtual/tex-base



[gentoo-commits] proj/gnome:master commit in: app-arch/file-roller/

2018-08-05 Thread Mart Raudsepp
commit: 405303ea8a3af39fdcb1a17fd63c0c5de256a171
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 09:56:42 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 09:56:42 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=405303ea

app-arch/file-roller-: sync in fixes

* Add missing libxml2 slot into dep
* Remove wrong comment about gdk-pixbuf being needed
  for glib-compile-resources (no to-pixdata usage)
* cp with -v instead of -f; doesn't make much sense to
  "|| die" otherwise and we don't have a reason to --force

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-arch/file-roller/file-roller-.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-arch/file-roller/file-roller-.ebuild 
b/app-arch/file-roller/file-roller-.ebuild
index a6ec9188..fae6a69a 100644
--- a/app-arch/file-roller/file-roller-.ebuild
+++ b/app-arch/file-roller/file-roller-.ebuild
@@ -37,9 +37,9 @@ RDEPEND="
nautilus? ( >=gnome-base/nautilus-2.22.2 )
packagekit? ( app-admin/packagekit-base )
 "
-# libxml2+gdk-pixbuf required for glib-compile-resources
+# libxml2 required for glib-compile-resources
 DEPEND="${RDEPEND}
-   dev-libs/libxml2
+   dev-libs/libxml2:2
>=dev-util/intltool-0.50.1
dev-util/itstool
sys-devel/gettext
@@ -75,7 +75,7 @@ zoo - app-arch/zoo"
 
 src_prepare() {
# File providing Gentoo package names for various archivers
-   cp -f "${FILESDIR}"/3.22-packages.match data/packages.match || die
+   cp -v "${FILESDIR}"/3.22-packages.match data/packages.match || die
gnome2_src_prepare
 }
 



[gentoo-commits] proj/gnome:master commit in: app-arch/file-roller/

2018-08-05 Thread Mart Raudsepp
commit: 0689a67f8915a78f42b93c0420652df09f3f2aca
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 09:54:40 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 09:54:40 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=0689a67f

app-arch/file-roller-3.26.2: remove, available in ::gentoo

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-arch/file-roller/file-roller-3.26.2.ebuild | 91 --
 1 file changed, 91 deletions(-)

diff --git a/app-arch/file-roller/file-roller-3.26.2.ebuild 
b/app-arch/file-roller/file-roller-3.26.2.ebuild
deleted file mode 100644
index d06306b4..
--- a/app-arch/file-roller/file-roller-3.26.2.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2 readme.gentoo-r1
-
-DESCRIPTION="Archive manager for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/FileRoller;
-
-LICENSE="GPL-2+ CC-BY-SA-3.0"
-SLOT="0"
-IUSE="libnotify nautilus packagekit"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
-
-# gdk-pixbuf used extensively in the source
-# cairo used in eggtreemultidnd.c
-# pango used in fr-window
-RDEPEND="
-   >=app-arch/libarchive-3:=
-   >=dev-libs/glib-2.36:2
-   >=dev-libs/json-glib-0.14
-   >=x11-libs/gtk+-3.13.2:3
-   sys-apps/file
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   x11-libs/pango
-   libnotify? ( >=x11-libs/libnotify-0.4.3:= )
-   nautilus? ( >=gnome-base/nautilus-2.22.2 )
-   packagekit? ( app-admin/packagekit-base )
-"
-# libxml2+gdk-pixbuf required for glib-compile-resources
-DEPEND="${RDEPEND}
-   dev-libs/libxml2
-   >=dev-util/intltool-0.50.1
-   dev-util/itstool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-# eautoreconf needs:
-#  gnome-base/gnome-common
-
-DISABLE_AUTOFORMATTING="yes"
-DOC_CONTENTS="
-${PN} is a frontend for several archiving utilities. If you want a
-particular archive format support, see ${HOMEPAGE}
-and install the relevant package. For example:
-7-zip   - app-arch/p7zip
-ace - app-arch/unace
-arj - app-arch/arj
-cpio- app-arch/cpio
-deb - app-arch/dpkg
-iso - app-cdr/cdrtools
-jar,zip - app-arch/zip and app-arch/unzip
-lha - app-arch/lha
-lzop- app-arch/lzop
-lz4 - app-arch/lz4
-rar - app-arch/unrar or app-arch/unar
-rpm - app-arch/rpm
-unstuff - app-arch/stuffit
-zoo - app-arch/zoo"
-
-src_prepare() {
-   # File providing Gentoo package names for various archivers
-   cp -f "${FILESDIR}"/3.22-packages.match data/packages.match || die
-   gnome2_src_prepare
-}
-
-src_configure() {
-   # --disable-debug because enabling it adds -O0 to CFLAGS
-   gnome2_src_configure \
-   --disable-run-in-place \
-   --disable-static \
-   --disable-debug \
-   --enable-magic \
-   --enable-libarchive \
-   $(use_enable libnotify notification) \
-   $(use_enable nautilus nautilus-actions) \
-   $(use_enable packagekit)
-}
-
-src_install() {
-   gnome2_src_install
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   gnome2_pkg_postinst
-   readme.gentoo_print_elog
-}



[gentoo-commits] proj/gnome:master commit in: app-text/evince/

2018-08-05 Thread Mart Raudsepp
commit: 9180e90a3fe7db08c8f79ecd71b6a82200506063
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 09:48:50 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 09:48:50 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=9180e90a

app-text/evince-3.26.0: remove, 3.28.2 available in ::gentoo

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-text/evince/evince-3.26.0.ebuild | 100 ---
 1 file changed, 100 deletions(-)

diff --git a/app-text/evince/evince-3.26.0.ebuild 
b/app-text/evince/evince-3.26.0.ebuild
deleted file mode 100644
index d3aa7d3e..
--- a/app-text/evince/evince-3.26.0.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2 systemd
-
-DESCRIPTION="Simple document viewer for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Evince;
-
-LICENSE="GPL-2+ CC-BY-SA-3.0"
-# subslot = evd3.(suffix of libevdocument3)-evv3.(suffix of libevview3)
-SLOT="0/evd3.4-evv3.3"
-IUSE="djvu dvi gstreamer gnome gnome-keyring +introspection nautilus nsplugin 
+postscript t1lib tiff xps"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris"
-
-# atk used in libview
-# gdk-pixbuf used all over the place
-# bundles unarr library. It does not seem to exist standalone.
-COMMON_DEPEND="
-   dev-libs/atk
-   >=dev-libs/glib-2.36:2[dbus]
-   >=dev-libs/libxml2-2.5:2
-   sys-libs/zlib:=
-   >=x11-libs/gdk-pixbuf-2.36.5:2
-   >=x11-libs/gtk+-3.16.0:3[introspection?]
-   gnome-base/gsettings-desktop-schemas
-   >=x11-libs/cairo-1.10:=
-   >=app-text/poppler-0.33[cairo]
-   >=app-arch/libarchive-3.1.2
-   djvu? ( >=app-text/djvu-3.5.22:= )
-   dvi? (
-   virtual/tex-base
-   dev-libs/kpathsea:=
-   t1lib? ( >=media-libs/t1lib-5:= ) )
-   gstreamer? (
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   media-libs/gst-plugins-good:1.0 )
-   gnome? ( gnome-base/gnome-desktop:3= )
-   gnome-keyring? ( >=app-crypt/libsecret-0.5 )
-   introspection? ( >=dev-libs/gobject-introspection-1:= )
-   nautilus? ( >=gnome-base/nautilus-2.91.4[introspection?] )
-   postscript? ( >=app-text/libspectre-0.2:= )
-   tiff? ( >=media-libs/tiff-3.6:0= )
-   xps? ( >=app-text/libgxps-0.2.1:= )
-"
-RDEPEND="${COMMON_DEPEND}
-   gnome-base/gvfs
-   gnome-base/librsvg
-   || (
-   >=x11-themes/adwaita-icon-theme-2.17.1
-   >=x11-themes/hicolor-icon-theme-0.10 )
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.3
-   app-text/yelp-tools
-   dev-util/gdbus-codegen
-   >=dev-util/gtk-doc-am-1.13
-   >=dev-util/intltool-0.35
-   dev-util/itstool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-# eautoreconf needs:
-#  app-text/yelp-tools
-
-src_prepare() {
-   gnome2_src_prepare
-
-   # Do not depend on adwaita-icon-theme, bug #326855, #391859
-   # https://bugs.freedesktop.org/show_bug.cgi?id=29942
-   sed -e 's/adwaita-icon-theme >= $ADWAITA_ICON_THEME_REQUIRED//g' \
-   -i configure || die "sed failed"
-}
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-static \
-   --enable-pdf \
-   --enable-comics \
-   --enable-thumbnailer \
-   --with-platform=gnome \
-   --enable-dbus \
-   $(use_enable djvu) \
-   $(use_enable dvi) \
-   $(use_enable gstreamer multimedia) \
-   $(use_enable gnome libgnome-desktop) \
-   $(use_with gnome-keyring keyring) \
-   $(use_enable introspection) \
-   $(use_enable nautilus) \
-   $(use_enable nsplugin browser-plugin) \
-   $(use_enable postscript ps) \
-   $(use_enable t1lib) \
-   $(use_enable tiff) \
-   $(use_enable xps) \
-   
BROWSER_PLUGIN_DIR="${EPREFIX}"/usr/$(get_libdir)/nsbrowser/plugins \
-   --with-systemduserunitdir="$(systemd_get_userunitdir)"
-}



[gentoo-commits] proj/gnome:master commit in: app-arch/file-roller/files/

2018-08-05 Thread Mart Raudsepp
commit: 8a9f361a5711f54dd1ad45d5fbe4c46452bf594b
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 09:53:44 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 09:53:44 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=8a9f361a

app-arch/file-roller: remove redundant files

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-arch/file-roller/files/3.6.0-packages.match| 30 --
 .../files/file-roller-2.10.3-use_bin_tar.patch | 12 -
 2 files changed, 42 deletions(-)

diff --git a/app-arch/file-roller/files/3.6.0-packages.match 
b/app-arch/file-roller/files/3.6.0-packages.match
deleted file mode 100644
index 4085b191..
--- a/app-arch/file-roller/files/3.6.0-packages.match
+++ /dev/null
@@ -1,30 +0,0 @@
-[Package Matches]
-arj=app-arch/arj
-binutils=sys-devel/binutils
-bzip2=app-arch/bzip2
-cpio=app-arch/cpio
-dpkg=app-arch/dpkg
-genisoimage=virtual/cdrtools
-gzip=app-arch/gzip
-lha=app-arch/lha
-lrzip=app-arch/lrzip
-lzip=app-arch/lzip
-lzma=app-arch/xz-utils
-lzop=app-arch/lzop
-ncompress=app-arch/ncompress
-p7zip=app-arch/p7zip
-p7zip-full=
-p7zip-rar=
-rar=app-arch/rar
-rpm=app-arch/rpm
-rzip=app-arch/rzip
-tar=app-arch/tar
-unace=app-arch/unace
-unalz=
-unarchiver=app-arch/unar
-unrar=app-arch/unrar
-unstaff=
-unzip=app-arch/unzip
-xz=app-arch/xz-utils
-zip=app-arch/zip
-zoo=app-arch/zoo

diff --git a/app-arch/file-roller/files/file-roller-2.10.3-use_bin_tar.patch 
b/app-arch/file-roller/files/file-roller-2.10.3-use_bin_tar.patch
deleted file mode 100644
index edaa16c1..
--- a/app-arch/file-roller/files/file-roller-2.10.3-use_bin_tar.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -uNr file-roller-2.10.3/src/fr-command-tar.c 
file-roller-2.10.3.patched/src/fr-command-tar.c
 file-roller-2.10.3/src/fr-command-tar.c2005-04-22 18:39:22.0 
+0200
-+++ file-roller-2.10.3.patched/src/fr-command-tar.c2005-06-06 
14:29:45.0 +0200
-@@ -225,7 +225,7 @@
-   if (command != NULL)
-   fr_process_begin_command (comm->process, command);
-   else
--  fr_process_begin_command (comm->process, "tar");
-+  fr_process_begin_command (comm->process, "/bin/tar");
-   g_free (command);
- }
- 



[gentoo-commits] proj/gnome:master commit in: games-puzzle/five-or-more/

2018-08-05 Thread Mart Raudsepp
commit: 193f43421f9c0398a9674b6aea82ecc3f7ebbbc3
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 09:57:24 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 09:57:24 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=193f4342

games-puzzle/five-or-more: remove, available in ::gentoo

 .../five-or-more/five-or-more-3.26.0.ebuild| 29 --
 games-puzzle/five-or-more/metadata.xml |  8 --
 2 files changed, 37 deletions(-)

diff --git a/games-puzzle/five-or-more/five-or-more-3.26.0.ebuild 
b/games-puzzle/five-or-more/five-or-more-3.26.0.ebuild
deleted file mode 100644
index c10bdf87..
--- a/games-puzzle/five-or-more/five-or-more-3.26.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Five or More Game for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Five%20or%20more;
-
-LICENSE="GPL-2+ CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.32:2
-   >=gnome-base/librsvg-2.32:2
-   >=x11-libs/gtk+-3.20:3
-"
-RDEPEND="${COMMON_DEPEND}
-   !
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-



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

2018-08-05 Thread Sergei Trofimovich
commit: 5a86282e9424d0261efb52c61b57685464a08643
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:23:41 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:23:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a86282e

x11-misc/parcellite: keyworded 1.2.1 for ppc, bug #657070

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"

 x11-misc/parcellite/parcellite-1.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/parcellite/parcellite-1.2.1.ebuild 
b/x11-misc/parcellite/parcellite-1.2.1.ebuild
index e70e339d09f..b89ab441c54 100644
--- a/x11-misc/parcellite/parcellite-1.2.1.ebuild
+++ b/x11-misc/parcellite/parcellite-1.2.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="nls"
 
 RDEPEND=">=dev-libs/glib-2.14



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

2018-08-05 Thread Sergei Trofimovich
commit: ba2dfee6ebe1a8bee5e3e9c454a963996e6d6e71
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:31:48 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:31:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba2dfee6

dev-python/pillow: keyworded 5.2.0 for ppc64, bug #659320

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-python/pillow/pillow-5.2.0.ebuild 
b/dev-python/pillow/pillow-5.2.0.ebuild
index b4f435d0425..76aa787e1a4 100644
--- a/dev-python/pillow/pillow-5.2.0.ebuild
+++ b/dev-python/pillow/pillow-5.2.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples imagequant jpeg jpeg2k lcms test tiff tk truetype webp zlib"
 
 REQUIRED_USE="test? ( jpeg tiff )"



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

2018-08-05 Thread Sergei Trofimovich
commit: 230f10ef3e755a5f5264819b73c11787bc196dc4
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:30:58 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:30:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=230f10ef

dev-python/olefile: keyworded 0.44 for ppc64, bug #659320

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-python/olefile/olefile-0.44.ebuild 
b/dev-python/olefile/olefile-0.44.ebuild
index 38302eb2bd3..e48572bd0a3 100644
--- a/dev-python/olefile/olefile-0.44.ebuild
+++ b/dev-python/olefile/olefile-0.44.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/decalage2/${PN}/releases/download/v${PV}/${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-notifyd/

2018-08-05 Thread Sergei Trofimovich
commit: ac4d56670ce20678df5a7a079d3f4b013ba2dd88
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:29:07 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:29:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac4d5667

xfce-extra/xfce4-notifyd: keyworded 0.4.2 for ppc, bug #657310

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"

 xfce-extra/xfce4-notifyd/xfce4-notifyd-0.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.4.2.ebuild 
b/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.4.2.ebuild
index 17648282041..2c5ce4cc2f3 100644
--- a/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.4.2.ebuild
+++ b/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.4.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc x86"
 IUSE=""
 
 RDEPEND=">=dev-libs/glib-2.42:2=



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

2018-08-05 Thread Patrice Clement
commit: 7fbe2ac301c726dd6b9903aac3735af6826fe487
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Aug  4 15:03:39 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:52:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fbe2ac3

dev-python/json-rpc: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/json-rpc/Manifest   |  1 +
 dev-python/json-rpc/json-rpc-1.11.0.ebuild | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/json-rpc/Manifest b/dev-python/json-rpc/Manifest
index 672f7ec0c4f..93316d2f9fc 100644
--- a/dev-python/json-rpc/Manifest
+++ b/dev-python/json-rpc/Manifest
@@ -1 +1,2 @@
 DIST json-rpc-1.10.1.tar.gz 25410 BLAKE2B 
bb543dc9987d7aa4880d1981fad888ae9374f51958a2b7934e2779fc835705c03946cb3378ca60a914a130ae78741cda75da40ee8ce76e6b4af17a2e98498089
 SHA512 
bb69cbb12c0a64286fb1e98db21ca75cb19daf20c6d6f5721f82891a17e44d2cda172e73bd389a02077d094b8f6deb0959952b0498b0c1b4a0acfaa5e3ba3922
+DIST json-rpc-1.11.0.tar.gz 29442 BLAKE2B 
b2a77bdcc2f5efe64527feb29b28c0add90b9fdbd5aa73dce18c33e9a10342c1e6b04ed5d53c110e3f1b6287cf1fdca9db77e38a04651e0a522b76c0351ec993
 SHA512 
aa5a467ef0e6e556612f77855d38f0dfb76b22556490fac5f0989d27b7608aed8389042ded1a0d8fcbee1f20294c78a6af3c030f41c4e30ec1effae8e51530fb

diff --git a/dev-python/json-rpc/json-rpc-1.11.0.ebuild 
b/dev-python/json-rpc/json-rpc-1.11.0.ebuild
new file mode 100644
index 000..b46a3f9f107
--- /dev/null
+++ b/dev-python/json-rpc/json-rpc-1.11.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="JSON-RPC transport implementation for python"
+HOMEPAGE="https://github.com/pavlov99/json-rpc;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+
+DEPEND="
+   ${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/flask[${PYTHON_USEDEP}]
+   )"
+
+python_prepare_all() {
+   cat > jsonrpc/six.py <<- EOF
+   from __future__ import absolute_import
+   from six import *
+   EOF
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   esetup.py test
+}



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

2018-08-05 Thread Patrice Clement
commit: e899a0dacc1d32144b22330922d8e15200cdd4ed
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Aug  4 15:02:36 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:52:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e899a0da

dev-python/pytrie: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/pytrie/Manifest|  1 +
 dev-python/pytrie/pytrie-0.3.1.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-python/pytrie/Manifest b/dev-python/pytrie/Manifest
index bea1151a8d1..68f7c5f1845 100644
--- a/dev-python/pytrie/Manifest
+++ b/dev-python/pytrie/Manifest
@@ -1 +1,2 @@
+DIST pytrie-0.3.1.tar.gz 94678 BLAKE2B 
12631652ea33d2f1575f86bc8c42982543f8fa146debc9cb86e1139ff089f0657e04e50bad97b9bc344f4a270d102ee98e03fd389eb2c56ba3baac32b2288670
 SHA512 
72cb453d01545658b27b6c0b798736404f95013bfe34586c51c8823cc923ac4b3a8e874a938b26e3045784ce98ce2d8e51ab70dc435ff50075ffaf9d6c51
 DIST pytrie-0.3.tar.gz 228709 BLAKE2B 
84c415722a724ac668624b3da29bfe29998c2ec8662ad21ab0035bb2a694e94759e9d09de980842887972b5c1690d699e43de41bf9f62e84ef3fbee86477d0a2
 SHA512 
f1dc6f810e51385fa4dcf2cbec76cf7fe5c184208f8d6dccf6212d43260591580126095e68d28ab6c8b01a631e6e16b275fa088643ae81568493ca231dcc6161

diff --git a/dev-python/pytrie/pytrie-0.3.1.ebuild 
b/dev-python/pytrie/pytrie-0.3.1.ebuild
new file mode 100644
index 000..8ebd37d7530
--- /dev/null
+++ b/dev-python/pytrie/pytrie-0.3.1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+MY_PN="PyTrie"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="A pure Python implementation of the trie data structure"
+HOMEPAGE="https://github.com/gsakkis/pytrie/ https://pypi.org/project/PyTrie/;
+SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+
+DEPEND="dev-python/sortedcontainers[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"



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

2018-08-05 Thread Patrice Clement
commit: 5f229171722d6a87280097d87a715048b455a74f
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Aug  4 16:07:58 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:52:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f229171

dev-python/scandir: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/scandir/Manifest   |  1 +
 dev-python/scandir/scandir-1.8.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-python/scandir/Manifest b/dev-python/scandir/Manifest
index b9f6a616c87..bef789c7644 100644
--- a/dev-python/scandir/Manifest
+++ b/dev-python/scandir/Manifest
@@ -1,2 +1,3 @@
 DIST scandir-1.6.tar.gz 29670 BLAKE2B 
ad8c231783c14246341cd23bd79185ee10894bb29107ba7c0bfdf51982bda99fd8ce45ea52ff42687371d56b3e6d43cf1d6cc65bdaecf43da9059e524a801e6d
 SHA512 
d01e0551696787caded787a430eea787a69a27c725505277420fd607b3fcc892218377bb340651fd906bdeb3a57e99879df3c86aeadd2399fcbe45cb2118b9db
 DIST scandir-1.7.tar.gz 32812 BLAKE2B 
ed80775b5acca85d8829e2fb46df33fdda08d9dad6cc0e175d1270dc51b6eb4d381a5bd813e2dfd2072ac0af0d642d20ae818e569688ffbe5decaf4421f5e979
 SHA512 
47c6d9642938f374eb03228cdb6c8d77aa2af01a84b7efc518d223851562a615b616e92100bbeb38c4fa7455ef5f7ae4af8d406f5148d1a26a403708b4a27023
+DIST scandir-1.8.tar.gz 33065 BLAKE2B 
020789b939f347de49dba6eb35cf53733a34b283a4226d91746dca4f26b0fdcbe708cb48a795085c8887921bdad77c3fd054c15dcf83b1f4624ee81f1735f2da
 SHA512 
9c2c578cc736887e7d1ebe51f62569599e386deeac55363a84cd1abe4f73c60a43ae9849b3570ed99079016908ceab5e3755b014256d1cab535c1677255690f3

diff --git a/dev-python/scandir/scandir-1.8.ebuild 
b/dev-python/scandir/scandir-1.8.ebuild
new file mode 100644
index 000..f355a307197
--- /dev/null
+++ b/dev-python/scandir/scandir-1.8.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="A better directory iterator and faster os.walk()"
+HOMEPAGE="https://github.com/benhoyt/scandir;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="test"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_test() {
+   ${EPYTHON} test/run_tests.py -v || die "tests failed under ${EPYTHON}"
+}



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

2018-08-05 Thread Patrice Clement
commit: 67a9a1c6f99bc960ee7f744d47d668db8e18
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Aug  4 15:48:47 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:52:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67a9a1c6

dev-python/jsonfield: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/jsonfield/Manifest   |  1 +
 dev-python/jsonfield/jsonfield-2.0.2.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-python/jsonfield/Manifest b/dev-python/jsonfield/Manifest
index d8e7efe9105..ae288af7f36 100644
--- a/dev-python/jsonfield/Manifest
+++ b/dev-python/jsonfield/Manifest
@@ -1 +1,2 @@
 DIST jsonfield-1.0.3.tar.gz 7950 BLAKE2B 
fefaa4f2d3b6abbcb291394baf6147444a6829b15303795856156668a4dc86d4df7a31f7d684783c81467f30de6ca3313b5a86845d088cbbf0ed00bb1cb5a30e
 SHA512 
b69b783266f593d40b588f8deb42828b36fe31f62aba0a80286a24fd788bbea543c74b0566a70fb336fb80105f488a16932bab417a01d3730fa89201f542deb0
+DIST jsonfield-2.0.2.tar.gz 10806 BLAKE2B 
67638b380f3356390d93a10b2bd432016ca46d525cbac17c4cc4d1ec901b92d7de00e7ddb6610a97e547728e2c60ddab757e705348b8a8f66ff443b34550f0d5
 SHA512 
9d4a8a483ea7be4c13c272a959666ca73fdf662ca91373ca5787fc86c0366d074e90fccd61d371898f85e5bf6a1a265820bd9b971e5056c800a27c099835eebf

diff --git a/dev-python/jsonfield/jsonfield-2.0.2.ebuild 
b/dev-python/jsonfield/jsonfield-2.0.2.ebuild
new file mode 100644
index 000..4ea2a180e0b
--- /dev/null
+++ b/dev-python/jsonfield/jsonfield-2.0.2.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Reusable Django field that allows you to store validated JSON in 
your model"
+HOMEPAGE="https://pypi.org/project/jsonfield/ 
https://github.com/bradjasper/django-jsonfield;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+DEPEND="test? ( dev-python/django[${PYTHON_USEDEP}] )"
+
+python_test() {
+   esetup.py test
+}



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

2018-08-05 Thread Patrice Clement
commit: b0d832a0002f9fb6c8c9e2f36e041703044d2183
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Aug  2 22:00:17 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:52:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0d832a0

dev-python/fs: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/fs/Manifest |  1 +
 dev-python/fs/fs-2.0.26.ebuild | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/dev-python/fs/Manifest b/dev-python/fs/Manifest
index 26a30a587fd..58f02a50ae4 100644
--- a/dev-python/fs/Manifest
+++ b/dev-python/fs/Manifest
@@ -1,2 +1,3 @@
 DIST fs-0.5.4.tar.gz 231333 BLAKE2B 
2211aedf02a3eab809b7bfeabe346ed147465db52ef6a069ab3cea6f62e3b420d52b9a58868c3eaab55bd9a6c8c071c5c090e28e9dbfccd182385beee3e246c8
 SHA512 
d67c85f2816cf1a84c25664a6cf71dac551c3eec4eb34154bc92d52eb0efa9739adca6d0ec86b9978ff6af408cfa17b913ee8fd4c143cd2adf862ca0a1dd4c5d
 DIST fs-2.0.21.tar.gz 115844 BLAKE2B 
0f7b3fa087c89a68c27d350233e3e73fa54b761bad7799a895fd79fb5a7df898df381e82bd160ccb782e7e814b00041d3cd309860c96b4ea5dc3078e6d33430b
 SHA512 
d16e02a6ed78a26229b12e71f6286db0243774ae13f6f3d0a6c4fb9240fe65656e4f10cb2b385342fb48d12a163ca33a0b746854ab5ee240eae0ff8f6644ed13
+DIST fs-2.0.26.tar.gz 118831 BLAKE2B 
ce9be9d52882916cd73262556936d55c78fd245f20bea7e7cfbe314d6b1e7a43970ed3758bbd781736b344b65ca03c53ef7b3b5957e93c390b733b7e6ad5bc70
 SHA512 
2efd77ed968a6d711f6020c84a4418aee32f2273dc246fc4cdbf5daed9d4b5ff86b1c22d2726b637031c398bd1d3b03216c70a47248c793fa3b72c678c007d6f

diff --git a/dev-python/fs/fs-2.0.26.ebuild b/dev-python/fs/fs-2.0.26.ebuild
new file mode 100644
index 000..c657c5f97cf
--- /dev/null
+++ b/dev-python/fs/fs-2.0.26.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy )
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="Filesystem abstraction layer"
+HOMEPAGE="
+   https://pypi.org/project/fs/
+   https://docs.pyfilesystem.org
+   https://www.willmcgugan.com/tag/fs/;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   dev-python/dexml[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/mako[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   )"
+
+# Tries to access FUSE
+RESTRICT=test
+
+python_test() {
+   nosetests --verbose || die
+}
+
+pkg_postinst() {
+   optfeature "S3 support" dev-python/boto
+   optfeature "SFTP support" dev-python/paramiko
+   optfeature "Browser support" dev-python/wxpython
+}



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

2018-08-05 Thread Patrice Clement
commit: 8fbbedeed2c3fc951b0cb6d6a83f2b44bc25262c
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Aug  4 15:00:58 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:52:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fbbedee

dev-python/ipaddr: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/ipaddr/Manifest|  1 +
 dev-python/ipaddr/ipaddr-2.2.0.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/dev-python/ipaddr/Manifest b/dev-python/ipaddr/Manifest
index a3fe3ad450e..0ff11febdd8 100644
--- a/dev-python/ipaddr/Manifest
+++ b/dev-python/ipaddr/Manifest
@@ -1 +1,2 @@
 DIST ipaddr-2.1.11.tar.gz 29046 BLAKE2B 
8196898209d580ce25bc2ccb05b2e772c42c053116749bb5137a87b6648472c4fab522d76405510cb2304859b4179c593b213739e9294a1af1d9894cac7040ab
 SHA512 
a97b0f760f0d7fac549e5edf17b644c966a8858c145b8f9472ddc8bf4805c9d537f6f8755e3716d78b729b87e84149f8b73c7f98c0deee4fbf266ccb7a206bc6
+DIST ipaddr-2.2.0.tar.gz 26266 BLAKE2B 
f12807beb52c5cb3c7da2afa4b61b264fb58f0100900e5ca062127ce218f9f5710f38ac7c7183a7aa08b77757c39866d169e6e39c3bc5c6c55df003a9b414ec0
 SHA512 
5adb117c44e6e5dbdb9e96543aa7a34f35b4a4ec9baa163a25448058c34091bf4019d24f0250928291e4d4bc97dcdf75865daef739e2d94f98cc584e6e6c50dd

diff --git a/dev-python/ipaddr/ipaddr-2.2.0.ebuild 
b/dev-python/ipaddr/ipaddr-2.2.0.ebuild
new file mode 100644
index 000..ed6a948969e
--- /dev/null
+++ b/dev-python/ipaddr/ipaddr-2.2.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Python IP address manipulation library"
+HOMEPAGE="https://github.com/google/ipaddr-py https://pypi.org/project/ipaddr/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_prepare() {
+   if python_is_python3; then
+   2to3 -n -w --no-diffs *.py || die
+   fi
+}
+
+python_test() {
+   distutils_install_for_testing
+   "${EPYTHON}" ipaddr_test.py || die "Tests fail with ${EPYTHON}"
+}



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

2018-08-05 Thread Patrice Clement
commit: 4b5f1a2b1535b8850d40273f6c381e240438dac0
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Aug  2 21:59:28 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:52:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b5f1a2b

dev-python/empy: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/empy/Manifest  |  1 +
 dev-python/empy/empy-3.3.3.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/dev-python/empy/Manifest b/dev-python/empy/Manifest
index a74ceda613c..068725a042c 100644
--- a/dev-python/empy/Manifest
+++ b/dev-python/empy/Manifest
@@ -1,2 +1,3 @@
 DIST empy-3.3.2.tar.gz 138168 BLAKE2B 
0afbe6f7939898013770e18a0296d45a7a4121a3b8deb66a40b6fe37a311f9c4df1f864f4d975549cf4f198494f6f069d7ec186dfa5b99e19960b0c52a7aff2e
 SHA512 
d9098823bbb26e4447aae9042e389e000f893615117512f9b786eedbc6875dee6b7f6be50021f68a4bd6e200b364852206b36bff5c48ae1754c8f0d49682d5f2
+DIST empy-3.3.3.tar.gz 138429 BLAKE2B 
ed2ea352161bcd141620253e059255c6d6437d72d8e72075e1abc01efc496715ff07eb1e9baef70a631e752761f828f2f4750087da154c0a6df1434e47a8f0b7
 SHA512 
74c091d6dac39ad9ddb6f46963066dab1f8846565f77b1b0ad4352eda3534d4312b0e95d3682387d75c2f5553d678c6d3112471eec032e2bdea0e891dd8217b1
 DIST empy-3.3.tar.gz 137144 BLAKE2B 
393f9033125459d6f3d5e9484d174980a00627508d083a32582f85eca9a294394ff028ee9df85ed73b8ff61174ae2068b0b943583fc86efa741bd2def63c215d
 SHA512 
36304577839f5e6b2fb9bb2c2d72880e1f16886b2afadbcb38fd31a85620bb0369e837b8a1d74eab09a074bfe1f7be199b38842673106e0d26f1d9abc53987a7

diff --git a/dev-python/empy/empy-3.3.3.ebuild 
b/dev-python/empy/empy-3.3.3.ebuild
new file mode 100644
index 000..650a3ba60f9
--- /dev/null
+++ b/dev-python/empy/empy-3.3.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+
+inherit distutils-r1
+
+DESCRIPTION="A powerful and robust templating system for Python"
+HOMEPAGE="http://www.alcyone.com/software/empy/;
+SRC_URI="http://www.alcyone.com/software/${PN}/${P}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86"
+IUSE="doc"
+
+python_test() {
+   "${PYTHON}" em.py sample.em | diff sample.bench -
+   if [[ ${PIPESTATUS[0]} -ne 0 || ${PIPESTATUS[1]} -ne 0 ]]; then
+   die "Testing failed with ${EPYTHON}"
+   fi
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   if use doc; then
+   dodir /usr/share/doc/"${PF}"/examples
+   insinto /usr/share/doc/"${PF}"/examples
+   doins sample.em sample.bench
+   #3.3 has the html in this funny place. Fix in later version:
+   dohtml doc/home/max/projects/empy/doc/em/*
+   dohtml doc/home/max/projects/empy/doc/em.html
+   dohtml doc/index.html
+   fi
+}



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

2018-08-05 Thread Patrice Clement
commit: 4f9b4f47214948f6094e72e1ff87c9cf9eea3ca4
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Aug  4 16:05:56 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:52:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f9b4f47

dev-python/schedule: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/schedule/Manifest  |  1 +
 dev-python/schedule/schedule-0.5.0.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-python/schedule/Manifest b/dev-python/schedule/Manifest
index 620c763bf9e..b4bda9f3e0d 100644
--- a/dev-python/schedule/Manifest
+++ b/dev-python/schedule/Manifest
@@ -1 +1,2 @@
 DIST schedule-0.4.2.tar.gz 10104 BLAKE2B 
84089e7dde29587f4044097b85ddf4b9e3639c59c63da2268d6e2c94e94192271a6d0d65c385c9492cefac49d7abee681ebb0f56ff78965b67402306124ede40
 SHA512 
f088f82a0449350658028b2035c5fbc71bda4d019856fe6ab3363798e9d8d940cce603be544401ecf5f844606e5891ab560c390f5c334a825bf611e6ebfb00ac
+DIST schedule-0.5.0.tar.gz 10850 BLAKE2B 
b79ceb77d0149cccad4bd12c6fe8f3524a33898039319c411bf202928316d74586626d84e6921595d0c0a79f87115cbc27beb03919c4252b8468dcddf469c95a
 SHA512 
0d89afa3c9d986c53a8c61a92bfda08e23290c6556100d63f2c647003806398b8913c4bfa75a57617aeeda73f8f2eb26490c224ab70d621873453ca5dec35b0b

diff --git a/dev-python/schedule/schedule-0.5.0.ebuild 
b/dev-python/schedule/schedule-0.5.0.ebuild
new file mode 100644
index 000..c75611808a4
--- /dev/null
+++ b/dev-python/schedule/schedule-0.5.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python{3_4,3_5,3_6} )
+inherit distutils-r1
+
+DESCRIPTION="Python job scheduling for humans"
+HOMEPAGE="https://github.com/dbader/schedule;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( >=dev-python/mock-2.0.0
+   >=dev-python/pytest-3.0.3 )"
+
+python_test() {
+   py.test test_schedule.py || die
+}



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

2018-08-05 Thread Patrice Clement
commit: 71ab28393fb707639b5bc57e23d8835a78bcf1e6
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Aug  5 13:31:28 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:53:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71ab2839

dev-java/xz-java: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-java/xz-java/Manifest   |  1 +
 dev-java/xz-java/xz-java-1.7.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-java/xz-java/Manifest b/dev-java/xz-java/Manifest
index ce9a39e40a4..5723d7bbe6b 100644
--- a/dev-java/xz-java/Manifest
+++ b/dev-java/xz-java/Manifest
@@ -1,2 +1,3 @@
 DIST xz-java-1.5.zip 131544 BLAKE2B 
3984cf1e20bbf1d5f2508766e3ef4aff87f0bef774cb6f7a3f6e6b4bf7b744e74f1640330a4278b70006b7ec05e9d758bb55d63f247cc7afb1c2f4a4e64591aa
 SHA512 
8f425b86b216927490c1ab7303ae9db7faf2c27565ec7d10c4acd4717d2ecf76068afe9a81d099ea0941c05c517cd5e7fe1b4e8bfec804fd3355dd064f41
 DIST xz-java-1.6.zip 138434 BLAKE2B 
015074e64f8b354b617cd2519f83cf4a7aa491a7229e54fecb012eabe80d3ff65394a433b88eb58b5c2eadf1855aeefa0eb4c0e904f34ab36d0c430c04a7ba90
 SHA512 
a1a6a2da05d51695e58b8e91503106bae6030cb83853df32bc7b8a23db4189c4afef01544c21de91ee3df9ad11e065059c758f121c52e6b6a319b93b2136f666
+DIST xz-java-1.7.zip 151864 BLAKE2B 
6fc952d8f5ff7f75eecf64c8a26ca1a0cff78f5fe8cc71b7cf12d516d702a92b503e5e7e9ef2a3980922f2bcbc57fc95df475b612fe2f19e49969ef1c873a85e
 SHA512 
6909d4c6bcf0479a5c1a6178c56971517dbb2a923ce6e05b3d21bd5dd1e1ead7d06f3f533276279f440f129607b89e6eb9ba909bad94340d67b16d83cf72b445

diff --git a/dev-java/xz-java/xz-java-1.7.ebuild 
b/dev-java/xz-java/xz-java-1.7.ebuild
new file mode 100644
index 000..0be4079e7b1
--- /dev/null
+++ b/dev-java/xz-java/xz-java-1.7.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 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
+
+DESCRIPTION="Implementation of xz data compression in pure java"
+HOMEPAGE="https://tukaani.org/xz/java.html;
+SRC_URI="https://tukaani.org/xz/${P}.zip;
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND=">=virtual/jre-1.6"
+DEPEND=">=virtual/jdk-1.6"
+
+S="${WORKDIR}"
+
+JAVA_SRC_DIR="src/org"
+
+DOCS=( README NEWS COPYING THANKS )
+
+src_install() {
+   java-pkg-simple_src_install
+   use examples && java-pkg_doexamples src/*Demo.java
+   einstalldocs
+}



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

2018-08-05 Thread Patrice Clement
commit: 9b7679b04b51b6dfd027524e2eacba83a0f6dbd0
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Aug  4 15:59:53 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:52:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b7679b0

dev-python/jsonpointer: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/jsonpointer/Manifest   |  1 +
 dev-python/jsonpointer/jsonpointer-2.0.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/jsonpointer/Manifest b/dev-python/jsonpointer/Manifest
index 8f366ef6494..eb75991d155 100644
--- a/dev-python/jsonpointer/Manifest
+++ b/dev-python/jsonpointer/Manifest
@@ -1 +1,2 @@
 DIST jsonpointer-1.10.tar.gz 7577 BLAKE2B 
b4472cd9ead51fe75f2e53690d4c0378cb6b5dccae240bc1bf264bff9df15bdfab379b1043221e66074e08c3393ecf729e4f95721fcb324fe8b710cd49d7f064
 SHA512 
b2df5f19b14b670825b18f7da4ca50b089beb2ccbb1c69acfc904eed82b5315ad19940b4aaa8f8504c2fc7d48d65e31f492dd30ee8b5ba95ccfd0eaeb9b1
+DIST jsonpointer-2.0.tar.gz 8699 BLAKE2B 
7b52955aa691a1bba327df6674704503b009101d0dd94587620a684ca9310128e3afcc62cedabd92106deffc3a6a3434a72123fc804224ae68ade8751462bf14
 SHA512 
e8e2b03c12c3fc5f65816fc71d1c07135ef74a0c912286f5b8bef2d9e21b8ae6e766d1aa2104b3eeb0e53928034321f25b203386ac3f5641b54b0641f6a08137

diff --git a/dev-python/jsonpointer/jsonpointer-2.0.ebuild 
b/dev-python/jsonpointer/jsonpointer-2.0.ebuild
new file mode 100644
index 000..7a038f0fa5b
--- /dev/null
+++ b/dev-python/jsonpointer/jsonpointer-2.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Identify specific nodes in a JSON document (according to draft 
08)"
+HOMEPAGE="https://github.com/stefankoegl/python-json-pointer 
https://pypi.org/project/jsonpointer/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_test() {
+   "${PYTHON}" tests.py || die "Tests fail with ${EPYTHON}"
+}



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

2018-08-05 Thread Patrice Clement
commit: 9ca4035036b99db0604da88f0939b6eb21c1a138
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Aug  2 21:59:21 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:52:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ca40350

dev-python/dpkt: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/dpkt/Manifest  |  1 +
 dev-python/dpkt/dpkt-1.9.1.ebuild | 15 +++
 2 files changed, 16 insertions(+)

diff --git a/dev-python/dpkt/Manifest b/dev-python/dpkt/Manifest
index 45e67a2323a..560b4626e89 100644
--- a/dev-python/dpkt/Manifest
+++ b/dev-python/dpkt/Manifest
@@ -1,2 +1,3 @@
 DIST dpkt-1.8.8.tar.gz 102074 BLAKE2B 
71e33118675b8e2fa6aa59a207a78d96affaaf6c9642849059a3021d68ee92477d07cbc8a4c261bd4af0b1a55ed2f2342691611c6d5f50ac0e5b98d7c6234147
 SHA512 
c557b3b22462273ce40119ef045a2b15df1b87538de13de9b2183545e16cc4200545e08f2efe42a5af01d820cc48fde28e1155cc78b1d06a44482706ab485392
 DIST dpkt-1.8.tar.gz 76311 BLAKE2B 
daf3f02ae1954ce0861c35ee43c8cf58c4f9ab9c4387a34a37560815944d72c2ade43bb64caf754283c0238a0317ad5e53e59bb76dbf751575d53782a02a2f6f
 SHA512 
25af49a7b79d192382103e056e762e2933f37b6c72f490c9c6740883e18fdde6c983d640aa27514f15f77ac27e2f037b1943adcaa6046872f53d92e08de73cb3
+DIST dpkt-1.9.1.tar.gz 115253 BLAKE2B 
981bea849e088f12dde4091e84331373d6f6655f1399027efa84d58b567f3d0cf0c234b4e8f5093da3ec272534ef9e51d118da624dea788e23cbdd57827c7a0b
 SHA512 
fc18907e4420249c5e8da21f630a24af6bee3e96545a58866170811c15802591a3bd6f7cf816ccb65e3437c0f451a1dc321fc46ac8a63cb8e8a06e0021e15f7f

diff --git a/dev-python/dpkt/dpkt-1.9.1.ebuild 
b/dev-python/dpkt/dpkt-1.9.1.ebuild
new file mode 100644
index 000..2bd9de036d1
--- /dev/null
+++ b/dev-python/dpkt/dpkt-1.9.1.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+DESCRIPTION="Fast, simple packet creation / parsing"
+HOMEPAGE="https://github.com/kbandla/dpkt;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"



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

2018-08-05 Thread Patrice Clement
commit: 3849ec47b0eabb3b62d5fde33c97b013061f06ae
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Aug  5 13:37:20 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:53:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3849ec47

dev-java/jopt-simple: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-java/jopt-simple/Manifest   |  1 +
 dev-java/jopt-simple/jopt-simple-5.0.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-java/jopt-simple/Manifest b/dev-java/jopt-simple/Manifest
index 17c911b6299..31ca474d083 100644
--- a/dev-java/jopt-simple/Manifest
+++ b/dev-java/jopt-simple/Manifest
@@ -1,3 +1,4 @@
 DIST jopt-simple-4.6.tar.gz 107066 BLAKE2B 
469ff2c3d6359b14ec95dd6b25639f01d681d72b492d28061e0ecaac729d6a1520202691da619be274e8412af88905afe93c44b3026dccaa126bd91c4d3fd67b
 SHA512 
33c7e111312c46376d46195cdc659f011af688d4078316a2b8dcc0dfdee480a658a331902b53bb53d1b952978623e012ed595fee269e24680cffeb6c04b40f8b
 DIST jopt-simple-4.8.tar.gz 110173 BLAKE2B 
75fa9659ba772ffa4d4acbbba6524c0719a0a5af8afbbd9dec0a5f9225ec75971907be3edbbbf73f320b67da8c7b3075be45380ef821913518b8e4b1917eb37b
 SHA512 
cc5360cf97446117849f93397c41734a9a001ea623e9ea4223b8d760f36897c62103ab9d2dabfcf0fa032db8e33f7bc51759d626d7bd76dda3adc61fa6622984
 DIST jopt-simple-4.9.tar.gz 114636 BLAKE2B 
c694ab5fe373de6baad8789346aa763bea946da766c8123c6576616f0a081768e364c4b012772c8da0e8961f10bcefff60807ffc45f94d04921df4e5065fd58d
 SHA512 
28b95ac9a508251b80b0283fc57422fef3f36676ad9160974386faf7f02eb7a0cda00ca1970046ed66863d49e784efba955695fcfd8b5b2535cfaefcb1035360
+DIST jopt-simple-5.0.tar.gz 119502 BLAKE2B 
975a0d338fa3154963954fd3b218c944dded023b3a2da59ee2671c73450a578dbf1aee8e52b9f715839e15c1937e0a493c4b37518b73038aa017e1d0ec1ca06a
 SHA512 
f440c62cb307aad7cab64f091c82f78e11a117e60aaadf71883c149a622576531272de3d67859f6df093df658bb0bfb435d9bb33bc729bcda24dcc99d27369ff

diff --git a/dev-java/jopt-simple/jopt-simple-5.0.ebuild 
b/dev-java/jopt-simple/jopt-simple-5.0.ebuild
new file mode 100644
index 000..2e1b2b874ec
--- /dev/null
+++ b/dev-java/jopt-simple/jopt-simple-5.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 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="A Java library for parsing command line options"
+HOMEPAGE="https://pholser.github.com/jopt-simple;
+SRC_URI="https://github.com/pholser/${PN}/tarball/${P} -> ${P}.tar.gz"
+LICENSE="MIT"
+SLOT="0"
+
+KEYWORDS="~amd64 ~ppc64 ~x86"
+
+RDEPEND=">=virtual/jre-1.8"
+DEPEND=">=virtual/jdk-1.8"
+
+S="${WORKDIR}/${PN}-${PN}-01719a6"
+
+JAVA_SRC_DIR="src/main/java"
+
+src_prepare() {
+   default
+   rm -v pom.xml || die
+}
+
+src_install() {
+   einstalldocs
+   java-pkg-simple_src_install
+}



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

2018-08-05 Thread Patrice Clement
commit: b4a5a49c49214af4c87e79ee9fd34d42dcdebad7
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Aug  4 16:01:08 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:52:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4a5a49c

dev-python/simplejson: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/simplejson/Manifest |  1 +
 dev-python/simplejson/simplejson-3.16.0.ebuild | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/simplejson/Manifest b/dev-python/simplejson/Manifest
index 5a94ac5b8ac..44ec4b3abbf 100644
--- a/dev-python/simplejson/Manifest
+++ b/dev-python/simplejson/Manifest
@@ -1,3 +1,4 @@
 DIST simplejson-3.13.2.tar.gz 79735 BLAKE2B 
5feb87611451054ad8e856e55a4a6bca50470f7f72692de9ce5abddf9eb214e29505124634d4d5a4f825366afe9a97614c66cbe14a73a4e57a5f2f62cac876e8
 SHA512 
ea29bc615de7fd0eb2a98f5dbeea74ee49b6fed6602396e77baf4480c86f975eff7fd868ac44f62a1c2f3721d4fa5b807b74109e5e28810df70dbad758110f41
 DIST simplejson-3.14.0.tar.gz 80112 BLAKE2B 
5866adeba886b4b4f526d4d7fb7ac65f12fa8cfe593a0ac40419c6f04e2f6b776adea49fdee861be54047666b7275bf229db7f7815515a9273878bf0eb68c5f5
 SHA512 
a81b20a75840566d5985803f35c56ee6957a433f0a9a6fc2f0fb2d46f978925cff0edc2f2c06fe85e7155c8301fbadc962152671c29310c6306f63afede75f98
 DIST simplejson-3.15.0.tar.gz 80963 BLAKE2B 
affa7da859bc2b2426389d881b53abdd086a2f7082decc9f8968859f54354d50747eb6f1cb8c4cc0151ef1e2cb8ecfb8aabd9f2151eaff2f39c4d08b9430f432
 SHA512 
601d575a5b8be66a33df28f27292ed12e5aeec39c74aa5a5108d82890dfb45a086e7a3a5072e012031209465c5c518909b4c1fb261fc055e6b9b1523a6bc39b4
+DIST simplejson-3.16.0.tar.gz 81203 BLAKE2B 
84b465cad6d78814b13ecf5e75b09cc63a912b1412567feabdfa02f9c0e83bbcf8191425c517cea38f6bfccbd691442fae4322957dc6ead6565d23393d6b
 SHA512 
c90da313b21ab862b6132e7bbe4883830c8a26fd36224f307859042852cdb900e36e41cc7c6773a1d4cf89476cdb68e1136642f38864ad6ed398716390122968

diff --git a/dev-python/simplejson/simplejson-3.16.0.ebuild 
b/dev-python/simplejson/simplejson-3.16.0.ebuild
new file mode 100644
index 000..9004215f6c2
--- /dev/null
+++ b/dev-python/simplejson/simplejson-3.16.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy pypy3 )
+
+inherit distutils-r1 flag-o-matic
+
+DESCRIPTION="Simple, fast, extensible JSON encoder/decoder for Python"
+HOMEPAGE="https://github.com/simplejson/simplejson 
https://pypi.org/project/simplejson/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="|| ( MIT AFL-2.1 )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+DOCS=( README.rst CHANGES.txt )
+
+python_compile() {
+   if ! python_is_python3; then
+   local CFLAGS=${CFLAGS}
+   append-cflags -fno-strict-aliasing
+   fi
+   distutils-r1_python_compile
+}
+
+python_test() {
+   esetup.py test
+}



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

2018-08-05 Thread Patrice Clement
commit: 3240d50f2d21c34f6165c5904bccce7bd4960429
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Aug  5 13:37:55 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:53:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3240d50f

dev-java/jopt-simple: mark stable using the ALLARCHES policy.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-java/jopt-simple/jopt-simple-5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jopt-simple/jopt-simple-5.0.ebuild 
b/dev-java/jopt-simple/jopt-simple-5.0.ebuild
index 2e1b2b874ec..763a855732f 100644
--- a/dev-java/jopt-simple/jopt-simple-5.0.ebuild
+++ b/dev-java/jopt-simple/jopt-simple-5.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/pholser/${PN}/tarball/${P} -> 
${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
 
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ppc64 x86"
 
 RDEPEND=">=virtual/jre-1.8"
 DEPEND=">=virtual/jdk-1.8"



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

2018-08-05 Thread Patrice Clement
commit: e24fb3e758b6fac9d616731248aef0a8a2ca6c9f
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Aug  4 15:01:23 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:52:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e24fb3e7

dev-python/intelhex: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/intelhex/Manifest  |  1 +
 dev-python/intelhex/intelhex-2.2.1.ebuild | 15 +++
 2 files changed, 16 insertions(+)

diff --git a/dev-python/intelhex/Manifest b/dev-python/intelhex/Manifest
index 2505678ae9f..233c358a3f7 100644
--- a/dev-python/intelhex/Manifest
+++ b/dev-python/intelhex/Manifest
@@ -1 +1,2 @@
 DIST intelhex-2.0.tar.gz 69410 BLAKE2B 
190ee5c4cedb8bd84983ea9534dbe7c07b9c536f86e2033f4496a8df0275ea86904cf6c3d0a5b602c8f19bfaace8f3abe7e69e008442224e6bed203780215acb
 SHA512 
3b3d70bd758e5780922277a8f153467568d7d7d2517528848c7f6d8c137ef5e75612f0b0653f89b277c68e421785611c9a0c924061780279f1fec2319c86
+DIST intelhex-2.2.1.tar.gz 41191 BLAKE2B 
2c35ec5fcc9d4fa99f7ab3c76f2d0d6055ca0b1812dbb77c6bbc33a1d48df77e8477db6cabd61afeaaa41503cb93d919b0fcb47ceb247409e2163c3f101b611b
 SHA512 
50a08ab65d7d7d6d6aa49c92ac0c339a71d62d546cc922b006eacabb04630b74bc1538f2e461982d0ef1d613ebe43bc25a3424934d84029cd713773c08f57ed8

diff --git a/dev-python/intelhex/intelhex-2.2.1.ebuild 
b/dev-python/intelhex/intelhex-2.2.1.ebuild
new file mode 100644
index 000..89ef9408b5b
--- /dev/null
+++ b/dev-python/intelhex/intelhex-2.2.1.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library for Intel HEX files manipulations"
+HOMEPAGE="https://pypi.org/project/IntelHex/ 
https://github.com/bialix/intelhex;
+SRC_URI="mirror://pypi/I/IntelHex/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~x86"



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

2018-08-05 Thread Patrice Clement
commit: 00d3e4b41bb798af73fc6b9e1290b48591075899
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Aug  5 13:52:01 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:53:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00d3e4b4

dev-java/cssparser: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-java/cssparser/Manifest|  1 +
 dev-java/cssparser/cssparser-0.9.26.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-java/cssparser/Manifest b/dev-java/cssparser/Manifest
index e6b42fb42ac..b0680c3eeb8 100644
--- a/dev-java/cssparser/Manifest
+++ b/dev-java/cssparser/Manifest
@@ -1 +1,2 @@
 DIST cssparser-0.9.25.jar 256517 BLAKE2B 
5281f70dd4e293aaf4aad44efc46107372756b03962057df8701947ec71478c40ace0728099122a0166e902a00075d7d89e6e93b50d8bc16d7f563a3553ad9c2
 SHA512 
94dffa2ff1edc01c183d2de4f77f106a9409ec5d1e68e9af4f3cd427b76c9d80c942a4d312c3e40ef5c8bd444975eedba173bf0eb730cf517a818dd69421a7bb
+DIST cssparser-0.9.26.jar 256518 BLAKE2B 
9f92aa366711b91ca90e1efa48e05c15e9ed877f8ae5346506bb727373ea334c6fec58b67f5df4e7e01467b4d1aa571ef47c8f2ae83e7fada4bc6d9d100e1d78
 SHA512 
c8e9c3c1cdf8d6fc29227693f28a11397b63cc46cf88083298e0613cc7f79c558dbc71760799fc214aecc5ed8ccdd966f0518085abe08deacf088b445579a8b8

diff --git a/dev-java/cssparser/cssparser-0.9.26.ebuild 
b/dev-java/cssparser/cssparser-0.9.26.ebuild
new file mode 100644
index 000..6b38a3223d5
--- /dev/null
+++ b/dev-java/cssparser/cssparser-0.9.26.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 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="API for parsing CSS 2 in Java"
+HOMEPAGE="http://cssparser.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}-sources.jar -> ${P}.jar"
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+CDEPEND="dev-java/sac:0"
+
+DEPEND="
+   ${CDEPEND}
+   >=virtual/jdk-1.6"
+
+RDEPEND="
+   ${CDEPEND}
+   >=virtual/jre-1.6"
+
+JAVA_GENTOO_CLASSPATH="sac"



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

2018-08-05 Thread Patrice Clement
commit: 1655c4f083d67661fc115eb48d3cbdf6ecac54d9
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Aug  5 13:38:15 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:53:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1655c4f0

dev-java/jopt-simple: clean up old.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-java/jopt-simple/Manifest   |  3 ---
 dev-java/jopt-simple/jopt-simple-4.6.ebuild | 33 -
 dev-java/jopt-simple/jopt-simple-4.8.ebuild | 33 -
 dev-java/jopt-simple/jopt-simple-4.9.ebuild | 32 
 4 files changed, 101 deletions(-)

diff --git a/dev-java/jopt-simple/Manifest b/dev-java/jopt-simple/Manifest
index 31ca474d083..bff29c0fedd 100644
--- a/dev-java/jopt-simple/Manifest
+++ b/dev-java/jopt-simple/Manifest
@@ -1,4 +1 @@
-DIST jopt-simple-4.6.tar.gz 107066 BLAKE2B 
469ff2c3d6359b14ec95dd6b25639f01d681d72b492d28061e0ecaac729d6a1520202691da619be274e8412af88905afe93c44b3026dccaa126bd91c4d3fd67b
 SHA512 
33c7e111312c46376d46195cdc659f011af688d4078316a2b8dcc0dfdee480a658a331902b53bb53d1b952978623e012ed595fee269e24680cffeb6c04b40f8b
-DIST jopt-simple-4.8.tar.gz 110173 BLAKE2B 
75fa9659ba772ffa4d4acbbba6524c0719a0a5af8afbbd9dec0a5f9225ec75971907be3edbbbf73f320b67da8c7b3075be45380ef821913518b8e4b1917eb37b
 SHA512 
cc5360cf97446117849f93397c41734a9a001ea623e9ea4223b8d760f36897c62103ab9d2dabfcf0fa032db8e33f7bc51759d626d7bd76dda3adc61fa6622984
-DIST jopt-simple-4.9.tar.gz 114636 BLAKE2B 
c694ab5fe373de6baad8789346aa763bea946da766c8123c6576616f0a081768e364c4b012772c8da0e8961f10bcefff60807ffc45f94d04921df4e5065fd58d
 SHA512 
28b95ac9a508251b80b0283fc57422fef3f36676ad9160974386faf7f02eb7a0cda00ca1970046ed66863d49e784efba955695fcfd8b5b2535cfaefcb1035360
 DIST jopt-simple-5.0.tar.gz 119502 BLAKE2B 
975a0d338fa3154963954fd3b218c944dded023b3a2da59ee2671c73450a578dbf1aee8e52b9f715839e15c1937e0a493c4b37518b73038aa017e1d0ec1ca06a
 SHA512 
f440c62cb307aad7cab64f091c82f78e11a117e60aaadf71883c149a622576531272de3d67859f6df093df658bb0bfb435d9bb33bc729bcda24dcc99d27369ff

diff --git a/dev-java/jopt-simple/jopt-simple-4.6.ebuild 
b/dev-java/jopt-simple/jopt-simple-4.6.ebuild
deleted file mode 100644
index d0cb07818b3..000
--- a/dev-java/jopt-simple/jopt-simple-4.6.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-JAVA_PKG_IUSE="doc source"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="A Java library for parsing command line options"
-HOMEPAGE="https://pholser.github.com/jopt-simple/;
-SRC_URI="https://github.com/pholser/${PN}/tarball/${P} -> ${P}.tar.gz"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-
-IUSE=""
-
-RDEPEND=">=virtual/jre-1.6"
-DEPEND=">=virtual/jdk-1.6"
-
-S="${WORKDIR}/pholser-jopt-simple-8808a39"
-
-JAVA_SRC_DIR="src/main/java"
-
-java_prepare() {
-   # Easier to use java-pkg-simple.
-   rm -v pom.xml || die
-}
-
-src_install() {
-   java-pkg-simple_src_install
-   dodoc README.md
-}

diff --git a/dev-java/jopt-simple/jopt-simple-4.8.ebuild 
b/dev-java/jopt-simple/jopt-simple-4.8.ebuild
deleted file mode 100644
index 688255a6465..000
--- a/dev-java/jopt-simple/jopt-simple-4.8.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-JAVA_PKG_IUSE="doc source"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="A Java library for parsing command line options"
-HOMEPAGE="https://pholser.github.com/jopt-simple/;
-SRC_URI="https://github.com/pholser/${PN}/tarball/${P} -> ${P}.tar.gz"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ppc64 x86"
-
-IUSE=""
-
-RDEPEND=">=virtual/jre-1.6"
-DEPEND=">=virtual/jdk-1.6"
-
-S="${WORKDIR}/pholser-${PN}-587d4ee"
-
-JAVA_SRC_DIR="src/main/java"
-
-java_prepare() {
-   # Easier to use java-pkg-simple.
-   rm -v pom.xml || die
-}
-
-src_install() {
-   java-pkg-simple_src_install
-   dodoc README.md
-}

diff --git a/dev-java/jopt-simple/jopt-simple-4.9.ebuild 
b/dev-java/jopt-simple/jopt-simple-4.9.ebuild
deleted file mode 100644
index e8d3065f34c..000
--- a/dev-java/jopt-simple/jopt-simple-4.9.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-JAVA_PKG_IUSE="doc source"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="A Java library for parsing command line options"
-HOMEPAGE="https://pholser.github.com/jopt-simple/;
-SRC_URI="https://github.com/pholser/${PN}/tarball/${P} -> ${P}.tar.gz"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-
-IUSE=""
-
-RDEPEND=">=virtual/jre-1.6"
-DEPEND=">=virtual/jdk-1.6"
-
-S="${WORKDIR}/pholser-${PN}-94ad77a"
-
-JAVA_SRC_DIR="src/main/java"
-
-java_prepare() {
-   rm -v 

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

2018-08-05 Thread Patrice Clement
commit: 3013a2a62742bb31924f93561933b2af3ba6e1ad
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Aug  5 13:27:10 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:53:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3013a2a6

dev-python/batinfo: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/batinfo/Manifest |  1 +
 dev-python/batinfo/batinfo-0.4.2.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-python/batinfo/Manifest b/dev-python/batinfo/Manifest
index c2c8e10f1ff..b07b8fe2095 100644
--- a/dev-python/batinfo/Manifest
+++ b/dev-python/batinfo/Manifest
@@ -1 +1,2 @@
 DIST batinfo-0.3.tar.gz 3951 BLAKE2B 
11360a3322866b084294b930569d3c2e424b8bb56e0484aba81085b68707287ad7be9a65b0bf5188c030384d70fbbefd30886ef73d03e7c29801a0e5ce49a3d8
 SHA512 
822e8e70f14a7f08713028ebc8b41aef6d9256984a6a381af11e5b36980a355636bc21d8b21753f4dabd20e38becf6152c623134a65109593ccba019afe3f3f3
+DIST batinfo-0.4.2.tar.gz 6497 BLAKE2B 
24efbd63f25bbd743e02ea04bf656d24b3132b6ce7e2754359a84648c357fb40967c3bb2a0aa27a3938489f2fb64c9b712718c8a5ede0869f83a19eaa82a74e1
 SHA512 
c45232cdd79d2d10d814019bbfc167ef54c3d970c74320a5a007d3b603e62fbdfeaf53f88074cf53a7865293181707e2e63e5a565219c094a77be2adc5d53876

diff --git a/dev-python/batinfo/batinfo-0.4.2.ebuild 
b/dev-python/batinfo/batinfo-0.4.2.ebuild
new file mode 100644
index 000..28cd559c9ba
--- /dev/null
+++ b/dev-python/batinfo/batinfo-0.4.2.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A simple Python lib to retreive battery information"
+HOMEPAGE="https://github.com/nicolargo/batinfo 
https://pypi.org/project/batinfo/;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND=""
+DEPEND="
+   ${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"



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

2018-08-05 Thread Patrice Clement
commit: 4eaaed8d918e55afd25f3ff19c58c7912dfb04c7
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Aug  4 14:59:21 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:52:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eaaed8d

dev-python/roman: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/roman/Manifest |  1 +
 dev-python/roman/roman-3.0.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/dev-python/roman/Manifest b/dev-python/roman/Manifest
index 3a8b639e6ed..d27b3ecb660 100644
--- a/dev-python/roman/Manifest
+++ b/dev-python/roman/Manifest
@@ -1 +1,2 @@
 DIST roman-2.0.0.zip 7590 BLAKE2B 
c733a4e905ebf4ef526afb5088744bde8558314b059a4d8e9f86e914af2657f99b5c4364e9e8f9a11d9a1e4470ba9b1919b19951aab7dc06b55539d27b89ab30
 SHA512 
d62a95e835232821dbf7a81d0c6b7df63f18c4116cfc7eee0c691a0b31d3d7b69d2dc2e4ea26e0a169a8e24bf080e8bb1e195b853be4adf1491335a5b4d5702c
+DIST roman-3.0.tar.gz 5184 BLAKE2B 
0951e15a1fbf0feecc98c4318fa631a535d24d9559d21e800f065923c71d094c387b18c5926ad55322ad8417a2db97626ada1e110549938d73243ca410e3ab87
 SHA512 
468a4ac7188cdf3155698f260de5ecc5bb2072c120c79d046618ac07b6de6f777cfc69661f2e0df4ca66359bb20169d22599b3f342edaa48f8575bdc17b40c08

diff --git a/dev-python/roman/roman-3.0.ebuild 
b/dev-python/roman/roman-3.0.ebuild
new file mode 100644
index 000..deedd46e8b5
--- /dev/null
+++ b/dev-python/roman/roman-3.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="An Integer to Roman numerals converter"
+HOMEPAGE="https://pypi.org/project/roman/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="PSF-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   !

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

2018-08-05 Thread Patrice Clement
commit: b159d3f9268bd77e7ab821c8336c967f5413dadc
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Aug  5 13:23:59 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 13:53:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b159d3f9

dev-python/pysmi: version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/pysmi/Manifest   |  1 +
 dev-python/pysmi/pysmi-0.3.1.ebuild | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/dev-python/pysmi/Manifest b/dev-python/pysmi/Manifest
index f040ccaaf23..126301ba410 100644
--- a/dev-python/pysmi/Manifest
+++ b/dev-python/pysmi/Manifest
@@ -1 +1,2 @@
 DIST pysmi-0.1.3.tar.gz 78325 BLAKE2B 
8f82d86e096a47944eccbd4b7ef846f3d9ca155f3f6e0790eecad88cf872c20a725a4071c8c2b9295fc348fa20efbd41ae7d0479cbd4ffe054e9956a6b6784f1
 SHA512 
d321fbbc68e4b6b2b18de5c1215dc450ad2ba2ea6c70cbeee9d981d2e2106b59582eae42b09da72bc02af789f7f58a6fc97712869b74f0137d8f7fd7238b2211
+DIST pysmi-0.3.1.tar.gz 93003 BLAKE2B 
91fa382aa693d8849299baf27a2fe10116441cc0661aa553321d9b5584e64751df547172f185e207a7eb0c6438ded60a0acef5aa51263cc1f29219dd8cdef2fc
 SHA512 
b785689a1f99c53fdfecaed3d9dc1b5c3685388695e715cde9b42eb8511aac8a47b04dcce243c0fb09a4823a799d80a0033ed576637356b991c71bc660c8

diff --git a/dev-python/pysmi/pysmi-0.3.1.ebuild 
b/dev-python/pysmi/pysmi-0.3.1.ebuild
new file mode 100644
index 000..c583f95f237
--- /dev/null
+++ b/dev-python/pysmi/pysmi-0.3.1.ebuild
@@ -0,0 +1,18 @@
+# Copyright 2017-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+inherit distutils-r1
+
+DESCRIPTION="Python Lex & Yacc"
+HOMEPAGE="https://github.com/etingof/pysmi;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+
+RDEPEND="dev-python/ply[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-db/percona-xtrabackup-bin/

2018-08-05 Thread Thomas Deutschmann
commit: 8a3df68b2e60d5994721d55117c642e114b2a300
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug  5 14:31:21 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug  5 14:36:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a3df68b

dev-db/percona-xtrabackup-bin: bump to v2.4.12

Package-Manager: Portage-2.3.44, Repoman-2.3.10

 dev-db/percona-xtrabackup-bin/Manifest |  2 +
 .../percona-xtrabackup-bin-2.4.12.ebuild   | 64 ++
 2 files changed, 66 insertions(+)

diff --git a/dev-db/percona-xtrabackup-bin/Manifest 
b/dev-db/percona-xtrabackup-bin/Manifest
index 36665861a95..b65296bbe64 100644
--- a/dev-db/percona-xtrabackup-bin/Manifest
+++ b/dev-db/percona-xtrabackup-bin/Manifest
@@ -2,5 +2,7 @@ DIST percona-xtrabackup-2.4.10-Linux-i686.libgcrypt20.tar.gz 
84004091 BLAKE2B 0f
 DIST percona-xtrabackup-2.4.10-Linux-x86_64.libgcrypt20.tar.gz 86736776 
BLAKE2B 
b55915b1ad34bb55668b90de2441502491e98d2a685932848e756ea61562592416a05eba33d0c6df2bcad9f113b867b64eca39813a3683b25c18574535ba2b70
 SHA512 
1293e9511e09cd8cac2ef2a117282d3f79573974b7b7c3ffe6e80fe1c57edb27f32fe19e14c0ea643084c62ad83f6e5e25b5f01671628735fae940fcfb7795f1
 DIST percona-xtrabackup-2.4.11-Linux-i686.libgcrypt20.tar.gz 85158090 BLAKE2B 
3d6565542208d1a9c74154d0a7e23610a34416f4840bcff240a262958fe4e4b0f489883349760934469619d225dccc7a2d531919e716dfdc3c2f10b1f98263e2
 SHA512 
bd6419f1b2e79e8e41817c677209a0d08912b247314f611689e0208028d4870e1e2a2b559fe8d60a3a369704aaee57e300643d9d355f083bb89c950f13d724bb
 DIST percona-xtrabackup-2.4.11-Linux-x86_64.libgcrypt20.tar.gz 87975988 
BLAKE2B 
850b06d3e063b2884f0731ada7ad20e09816e38f60ee5eef2b1150c2b1f0cd59082d26fa026bf7e80ccebdf6b513ab8af6c7d228ade96d532ef41a74490093e9
 SHA512 
dc412e3ad65a5d3aed6053e107a79094760b868f008171c9aaee190c97e666a38716b0c7d3e7f3db74eecff98b35c114be29114d50630f554a0c2cb0b1b71cfe
+DIST percona-xtrabackup-2.4.12-Linux-i686.libgcrypt20.tar.gz 85181957 BLAKE2B 
b066ff9efa8c57829a441c2e416ac1eeeff60cb0839ccdab4cd685bff9b2ead552ba9b7105541e0a824ca8aaeeb47d89d66180fe428842470c4743dfd149f31d
 SHA512 
adbaae8ad3347e15b13fe360dd5d4721330d6b17e75696128dfe770d03ad85056abeb861ffcbfe1d08020c8b9d726dd9e5650f63b7199804fe4d3cd9806debe2
+DIST percona-xtrabackup-2.4.12-Linux-x86_64.libgcrypt20.tar.gz 87975175 
BLAKE2B 
b21ab8dd4fac27ae8c731b5fbd816dfc39572bc52a9273255a4c89ddf99ee490cc66ed4f92945b18f4ec58e731ae036a16e08674cb9837544ca5150cb6b91c7b
 SHA512 
355b9f7f052a1242e502ddcbdc26cb931d16366be4db405730a2bb04de3030e0d0e6d4d15eb87f68fe232648dd435c85505a6d895b7c27b3baea0cb851214766
 DIST percona-xtrabackup-2.4.9-Linux-i686.tar.gz 79816483 BLAKE2B 
0fd97ee14c97f66edf629fa0300bfa2d6b333ac5942f5cee46dd9d0ad04ef2fe12750209971ff8f6a8ca225a85deaa42ca64c484e12e60c85789153689e55c42
 SHA512 
014921b0ea9fec783adbdd4556301e8df77f801729faae5b2b7245c349df069fc3af33ebef5ec65ef0e020c7b0ec8ebf4aa7a7acc0e9936c6f4a90b721a5de19
 DIST percona-xtrabackup-2.4.9-Linux-x86_64.tar.gz 90282874 BLAKE2B 
2c4cdb8c6da443baf01857fbe4b27be002df370b67687f417a9fde6b08a5e72482552b165a9f27fda305787b42089fb138a4fca2f1d683afbd42efa23746b13c
 SHA512 
24138c098d8e674de291dc494c38f2fce52f4d6a5a2552a62b34ea801b867431917449656f990043c7bbbc1e18a8806c4343eadbe1fea17e36ff1b10109e5047

diff --git a/dev-db/percona-xtrabackup-bin/percona-xtrabackup-bin-2.4.12.ebuild 
b/dev-db/percona-xtrabackup-bin/percona-xtrabackup-bin-2.4.12.ebuild
new file mode 100644
index 000..29a995636cf
--- /dev/null
+++ b/dev-db/percona-xtrabackup-bin/percona-xtrabackup-bin-2.4.12.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+MY_PN="${PN%-bin}"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="MySQL hot backup software. non-blocking backups for InnoDB/XtraDB 
databases"
+HOMEPAGE="https://www.percona.com/software/percona-xtrabackup;
+SRC_URI="
+   amd64? (
+   
https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PV}/binary/tarball/${MY_P}-Linux-x86_64.libgcrypt20.tar.gz
+   )
+   x86? (
+   
https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PV}/binary/tarball/${MY_P}-Linux-i686.libgcrypt20.tar.gz
+   )"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# NOTE: dev-perl/DBD-mysql still necessary, now for bin/xtrabackup?
+DEPEND=""
+RDEPEND="dev-libs/libaio
+   dev-libs/libgcrypt:0/20
+   dev-libs/libgpg-error
+   dev-perl/DBD-mysql
+   sys-libs/zlib
+   sys-process/numactl"
+
+QA_PREBUILT="usr/bin/*"
+
+src_unpack() {
+   default
+
+   if use amd64; then
+   S="${WORKDIR}/${MY_P}-Linux-x86_64"
+   elif use x86; then
+   S="${WORKDIR}/${MY_P}-Linux-i686"
+   fi
+}
+
+src_install() {
+   # Two new tools with an old libcurl.so.3 dep...
+   # TODO: Wait for a new release using libcurl.so.4
+   # net-misc/curl 

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

2018-08-05 Thread Thomas Deutschmann
commit: eba636376f66f6efeee164806f965124bb21bf83
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug  5 14:34:51 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug  5 14:36:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eba63637

dev-db/percona-toolkit: bump to v3.0.11

Package-Manager: Portage-2.3.44, Repoman-2.3.10

 dev-db/percona-toolkit/Manifest|  1 +
 .../percona-toolkit/percona-toolkit-3.0.11.ebuild  | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/dev-db/percona-toolkit/Manifest b/dev-db/percona-toolkit/Manifest
index 9b82189100d..eb6b5801ac0 100644
--- a/dev-db/percona-toolkit/Manifest
+++ b/dev-db/percona-toolkit/Manifest
@@ -3,6 +3,7 @@ DIST percona-toolkit-2.2.17.tar.gz 1420968 BLAKE2B 
886634cb4f1ed196595c0ebe9d2d5
 DIST percona-toolkit-2.2.19.tar.gz 1425623 BLAKE2B 
fe9b363ec924b1af9110ea7e7dab70ad4471ddf30868391f9e02a2f6d5a5698a2cb0238dd1cca81428adcac2f21262f10ea2da272ffd881dee1b8b88be1405e0
 SHA512 
8da35e2ee4d81465131623e5b423c2c49c0bf0faf01862952dd5ca72c2ffea64fabcaf88dda883e633e23de8ae4a6c75a095a751708bac6a8136fc8daaae2383
 DIST percona-toolkit-2.2.20.tar.gz 1431840 BLAKE2B 
76565662b4037010f7e8de98316f568c2994f55d042ae3a21b80dc3b839444a11014b61db675cc21c149f26c3b7df52013d7b06c9c1127ec325dae2942a4e4c0
 SHA512 
f7a5f47e9ca05c43dcb80866a1eacd13066e1f036f4f58d51145fc6354ddc86dd6515a9aa33c8f736029800bf4c80f7ba5fcb9f1e6ac41653b3351597885f679
 DIST percona-toolkit-3.0.10.tar.gz 17335242 BLAKE2B 
c24103576c537eb9afbdcedc6acf51671853c8e0764092f76d3ee4a1de338a521d91b956b13665ca92a06a70726b92cb9d530ab04b50ed30990868305bd0a7a0
 SHA512 
e9477f908bbcc5c975f11d42fe9b2b61adebe823657e23a2c74c639767c73f3f71ebdf2bec1d839ad14f2d5080c5f1f9620db07c6bf9694bd7623e86f390e902
+DIST percona-toolkit-3.0.11.tar.gz 18254993 BLAKE2B 
a6c582bdda96bf5c74e7b5340c465d71f4f119d8364c1d36fc02c650d741972e706bb5eee86fd5bc22ed4f7298a45f0d5c5d9e4438230a8b7b09a58498dda7e8
 SHA512 
f722ccc8b0fde8f61d4cf269ec89df410f656153da06cf396d222cbb817e88b50e23c0ace383429acf39ddec0501e75d6d3e358fb5ed53ee50a0162eaed9a717
 DIST percona-toolkit-3.0.7.tar.gz 79294306 BLAKE2B 
e3a556c823d355e5af504210dfb360e6fcf217ca6bfb7ba729e83e66cfdd09231c09d05fb51df1eac6bee0c6615620ac96ffce47c4f0473394d9c008ce8bdabe
 SHA512 
e5a23ce6f4fd74f0956187679810de23a9d60f8073609289d641411c9f397f49b02c05cbcd0a68d78992849f17b70fb3ae411ac967e25c7be45f95ec374414fe
 DIST percona-toolkit-3.0.8.tar.gz 79316265 BLAKE2B 
5d6efdbaa4fd3ac914c059c9240f6dcd0de89c6b2ea444c407b115b380bb676c51266f907f6e37a62a40032fd5aa6e1816752c8ec08150dddf71c7568f42c739
 SHA512 
d5380395b052aebe651806649ff22f259d1af9401112b7ffe86b10664b87f917fecfe91bdc72b401d00471fc9c141391006cd322c9464fca1343f704ecaa8623
 DIST percona-toolkit-3.0.9.tar.gz 15197340 BLAKE2B 
095d8c0b26853caa6d2515de1d8fb8ff13b3084caa46498c8c789cd4e7b18473d41992701e393ad91cd7fdda8b3e56a099600285aeb4ba788110d36a028f76b6
 SHA512 
56a8732cfdbd58d0602e482d7bf049d2049104b7ae203d756db81a052cd837f16d2a35f75def4f23748534d0d2eb6441cb9fe49175a931fbcdbb6adeb42f1c53

diff --git a/dev-db/percona-toolkit/percona-toolkit-3.0.11.ebuild 
b/dev-db/percona-toolkit/percona-toolkit-3.0.11.ebuild
new file mode 100644
index 000..4a54323f433
--- /dev/null
+++ b/dev-db/percona-toolkit/percona-toolkit-3.0.11.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit perl-module
+
+DESCRIPTION="Advanced command-line tools to perform a variety of MySQL and 
system tasks"
+HOMEPAGE="https://www.percona.com/software/mysql-tools/percona-toolkit;
+SRC_URI="https://www.percona.com/downloads/${PN}/${PV}/source/tarball/${P}.tar.gz;
+
+LICENSE="|| ( GPL-2 Artistic )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+# Package warrants IUSE doc
+IUSE=""
+
+COMMON_DEPEND="dev-perl/DBI
+   dev-perl/DBD-mysql
+   virtual/perl-Time-HiRes"
+RDEPEND="${COMMON_DEPEND}
+   dev-perl/JSON
+   dev-perl/libwww-perl
+   dev-perl/Role-Tiny
+   virtual/perl-File-Path
+   virtual/perl-Getopt-Long
+   virtual/perl-Time-Local
+   virtual/perl-Digest-MD5
+   virtual/perl-IO-Compress
+   virtual/perl-File-Temp
+   virtual/perl-File-Spec
+   virtual/perl-Scalar-List-Utils
+   dev-perl/TermReadKey"
+DEPEND="${COMMON_DEPEND}
+   virtual/perl-ExtUtils-MakeMaker"
+
+# Bug #501904 - CVE-2014-2029
+# sed -i -e '/^=item --\[no\]version-check/,/^default: yes/{/^default: yes/d}' 
bin/*
+# ^ is *-no-versioncheck.patch
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.0.7-no-versioncheck.patch
+   "${FILESDIR}"/${PN}-3.0.10-slave-delay-fix.patch
+)
+
+src_prepare() {
+   default
+
+   sed -i \
+   -e "s/=> 'percona-toolkit',/=> 'Percona::Toolkit',/g" \
+   Makefile.PL || die
+}



[gentoo-commits] repo/gentoo:master commit in: app-xemacs/efs/

2018-08-05 Thread Mats Lidell
commit: cb0845d74a2e0cf3675edc9a0af049116cb4b7fc
Author: Mats Lidell  gentoo  org>
AuthorDate: Sun Aug  5 15:08:27 2018 +
Commit: Mats Lidell  gentoo  org>
CommitDate: Sun Aug  5 15:08:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb0845d7

app-xemacs/efs: version bump

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-xemacs/efs/Manifest|  1 +
 app-xemacs/efs/efs-1.37.ebuild | 15 +++
 2 files changed, 16 insertions(+)

diff --git a/app-xemacs/efs/Manifest b/app-xemacs/efs/Manifest
index d410dbd005a..f0bf8e8b516 100644
--- a/app-xemacs/efs/Manifest
+++ b/app-xemacs/efs/Manifest
@@ -1,2 +1,3 @@
 DIST efs-1.33-pkg.tar.gz 375842 BLAKE2B 
61e7751d5571a57ed0781773a6f26d476cc63a86a82ff9f381f4221e82c6731287c138e66326cb7881fab5656e04be1cb5de4f2a0fe09cb71cc82526c390efb0
 SHA512 
d588b8885ec659a78b4b64dadf10e75d08766e1cdfbd03dda9fc822081552dd8f27ed77dbff6be28a8f52fcb6f6747d27b7dea5ed3c7defd704639d49d7d4ae1
 DIST efs-1.34-pkg.tar.gz 376920 BLAKE2B 
c441fb03cebb97f845d3767001312a99d505c3fb7af4ae7d1902a67ba27633f18952136fdcfda442608034bc843a0a1754d3db829da967aa816a484f21a2f67e
 SHA512 
44550090f4b122d995c10fa4e82972adeb4261bb27a431f7ac40a61773252fff1024a0f6a480cc7f35705aaa90781aed8473b96b5468d0ed18d2f5b3f59cb9fd
+DIST efs-1.37-pkg.tar.gz 377188 BLAKE2B 
88c4d38e174cb1afe56db3148348e3b33a985692160e28ffa1db39b7da521ee2057bb709608c8c692c512b9acc9663bcf13105cc5e7ed531c4f9d5dedbad1873
 SHA512 
f66dce45470654dc4d47fecec10648db2e2940972f4f03540e4006e585f88379da90b6ef3fd6ecbff6517226b596520e129389a06df42a4bffb1b0b2d01b3676

diff --git a/app-xemacs/efs/efs-1.37.ebuild b/app-xemacs/efs/efs-1.37.ebuild
new file mode 100644
index 000..85118905d8a
--- /dev/null
+++ b/app-xemacs/efs/efs-1.37.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+SLOT="0"
+DESCRIPTION="Treat files on remote systems the same as local files"
+XEMACS_PKG_CAT="standard"
+
+RDEPEND="app-xemacs/xemacs-base
+app-xemacs/dired
+"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+
+inherit xemacs-packages



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

2018-08-05 Thread Mart Raudsepp
commit: 65855f8e16947111973613123c0fcb826c244738
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 09:25:07 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 09:43:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65855f8e

app-text/evince: bump to 3.28.2

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-text/evince/Manifest |  1 +
 app-text/evince/evince-3.28.2.ebuild | 99 
 app-text/evince/metadata.xml |  1 +
 3 files changed, 101 insertions(+)

diff --git a/app-text/evince/Manifest b/app-text/evince/Manifest
index 4fda50ef273..39c9e0eb224 100644
--- a/app-text/evince/Manifest
+++ b/app-text/evince/Manifest
@@ -1 +1,2 @@
 DIST evince-3.24.2.tar.xz 3509216 BLAKE2B 
3bcb9e15a6576650d17d6ea1df638c4b16759ddd2353ca47b425c1fec04f90b85ff7f338472e5e18defc01ab066ef241eff40e8f493fa2238814933703636e7b
 SHA512 
77e099ff60188f982a49f5c8287eb2ed8d42402a15a54ccf8367b3814e7e16ba31354363d3f101117153792daa96f653f24bb06193b5e749d0ebfaac7d7c1e0f
+DIST evince-3.28.2.tar.xz 3379552 BLAKE2B 
64f77f2c19649f74291d34f6a0dfc49348d2a8e80cf2b37ef40b2c3bbfbd1198c40a47dd56ca6b04166e9981ebade3b8f74eeefa9234246968fd1e7fb4babcdd
 SHA512 
6deeefc5ed52d79627ae892b227bcf023c6ea45ac02c6a3a7c9fa1004f5da2e36051bfea73f6838cb8f9aed8cadfd145173a5d3b2be405f1d1f06bd4fdadae23

diff --git a/app-text/evince/evince-3.28.2.ebuild 
b/app-text/evince/evince-3.28.2.ebuild
new file mode 100644
index 000..38a32708ad4
--- /dev/null
+++ b/app-text/evince/evince-3.28.2.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+
+inherit gnome2 systemd
+
+DESCRIPTION="Simple document viewer for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Apps/Evince;
+
+LICENSE="GPL-2+ CC-BY-SA-3.0"
+# subslot = evd3.(suffix of libevdocument3)-evv3.(suffix of libevview3)
+SLOT="0/evd3.4-evv3.3"
+IUSE="djvu dvi gstreamer gnome gnome-keyring +introspection nautilus nsplugin 
+postscript t1lib tiff xps"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris"
+
+# atk used in libview
+# bundles unarr
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/glib-2.36:2[dbus]
+   >=dev-libs/libxml2-2.5:2
+   sys-libs/zlib:=
+   >=x11-libs/gdk-pixbuf-2.36.5:2
+   >=x11-libs/gtk+-3.16.0:3[introspection?]
+   gnome-base/gsettings-desktop-schemas
+   >=x11-libs/cairo-1.10:=
+   >=app-text/poppler-0.33[cairo]
+   >=app-arch/libarchive-3.2.0
+   djvu? ( >=app-text/djvu-3.5.22:= )
+   dvi? (
+   virtual/tex-base
+   dev-libs/kpathsea:=
+   t1lib? ( >=media-libs/t1lib-5:= ) )
+   gstreamer? (
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   media-libs/gst-plugins-good:1.0 )
+   gnome? ( gnome-base/gnome-desktop:3= )
+   gnome-keyring? ( >=app-crypt/libsecret-0.5 )
+   introspection? ( >=dev-libs/gobject-introspection-1:= )
+   nautilus? ( >=gnome-base/nautilus-2.91.4[introspection?] )
+   postscript? ( >=app-text/libspectre-0.2:= )
+   tiff? ( >=media-libs/tiff-3.6:0= )
+   xps? ( >=app-text/libgxps-0.2.1:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   gnome-base/gvfs
+   gnome-base/librsvg
+   || (
+   >=x11-themes/adwaita-icon-theme-2.17.1
+   >=x11-themes/hicolor-icon-theme-0.10 )
+"
+DEPEND="${COMMON_DEPEND}
+   app-text/docbook-xml-dtd:4.3
+   app-text/yelp-tools
+   dev-util/gdbus-codegen
+   >=dev-util/gtk-doc-am-1.13
+   >=dev-util/intltool-0.35
+   dev-util/itstool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+# eautoreconf needs:
+#  app-text/yelp-tools
+
+src_prepare() {
+   gnome2_src_prepare
+
+   # Do not depend on adwaita-icon-theme, bug #326855, #391859
+   # https://bugs.freedesktop.org/show_bug.cgi?id=29942
+   sed -e 's/adwaita-icon-theme >= $ADWAITA_ICON_THEME_REQUIRED//g' \
+   -i configure || die "sed failed"
+}
+
+src_configure() {
+   gnome2_src_configure \
+   --disable-static \
+   --enable-pdf \
+   --enable-comics \
+   --enable-thumbnailer \
+   --with-platform=gnome \
+   --enable-dbus \
+   $(use_enable djvu) \
+   $(use_enable dvi) \
+   $(use_enable gstreamer multimedia) \
+   $(use_enable gnome libgnome-desktop) \
+   $(use_with gnome-keyring keyring) \
+   $(use_enable introspection) \
+   $(use_enable nautilus) \
+   $(use_enable nsplugin browser-plugin) \
+   $(use_enable postscript ps) \
+   $(use_enable t1lib) \
+   $(use_enable tiff) \
+   $(use_enable xps) \
+   

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

2018-08-05 Thread Mart Raudsepp
commit: 0572fc024cdeb402d7a2e8a60179e4462a845da7
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 10:08:11 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 10:09:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0572fc02

app-editors/gedit: bump to 3.28.1

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-editors/gedit/Manifest|  1 +
 app-editors/gedit/gedit-3.28.1.ebuild | 91 +++
 2 files changed, 92 insertions(+)

diff --git a/app-editors/gedit/Manifest b/app-editors/gedit/Manifest
index b02decd5a28..275928c8d66 100644
--- a/app-editors/gedit/Manifest
+++ b/app-editors/gedit/Manifest
@@ -1 +1,2 @@
 DIST gedit-3.22.1.tar.xz 2948048 BLAKE2B 
aa23b261bc0a463febf5affbd0dca647df8d1db9553356f145784b1ebed43ed15dfede12f62b3fcb6f00aac59e2d3a84c31627be32000830523a805d46d2e4ab
 SHA512 
7251732f353b1d9dab0fe447fe90b2259df34ff0694d8731ce3be531c21ac82ab6e7f4a07090aeef364640154f4ba6103539a253bc7942952dcf1e331418f0eb
+DIST gedit-3.28.1.tar.xz 3149684 BLAKE2B 
6afedcc5de0bd249af3d0fd02339acc2d993aae083dcbfda9212745ab810b81cdb9da655273cb7ccc556644c29d69429d3587fcc9e1faf7aa1c2cee57af09a4b
 SHA512 
f5931ac562cb5005a83eec43048b718ef431e6006b72470fea54ad0e94bd64940ebdec160ee0459ceb5adb235ab111711a2f9fbdc74104d2edd8f287d7474815

diff --git a/app-editors/gedit/gedit-3.28.1.ebuild 
b/app-editors/gedit/gedit-3.28.1.ebuild
new file mode 100644
index 000..e9119e64f70
--- /dev/null
+++ b/app-editors/gedit/gedit-3.28.1.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+GNOME2_LA_PUNT="yes" # plugins are dlopened
+PYTHON_COMPAT=( python3_{4,5,6} )
+VALA_MIN_API_VERSION="0.26"
+VALA_USE_DEPEND="vapigen"
+
+inherit eutils gnome2 multilib python-single-r1 vala virtualx
+
+DESCRIPTION="A text editor for the GNOME desktop"
+HOMEPAGE="https://wiki.gnome.org/Apps/Gedit;
+
+LICENSE="GPL-2+ CC-BY-SA-3.0"
+SLOT="0"
+
+IUSE="+introspection +python spell vala"
+REQUIRED_USE="python? ( introspection ${PYTHON_REQUIRED_USE} )"
+
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+
+# X libs are not needed for OSX (aqua)
+COMMON_DEPEND="
+   >=dev-libs/libxml2-2.5.0:2
+   >=dev-libs/glib-2.44:2[dbus]
+   >=x11-libs/gtk+-3.22.0:3[introspection?]
+   >=x11-libs/gtksourceview-3.22.0:3.0[introspection?]
+   >=dev-libs/libpeas-1.14.1[gtk]
+
+   gnome-base/gsettings-desktop-schemas
+   gnome-base/gvfs
+
+   x11-libs/libX11
+
+   introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
+   python? (
+   ${PYTHON_DEPS}
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   >=dev-python/pygobject-3:3[cairo,${PYTHON_USEDEP}]
+   dev-libs/libpeas[python,${PYTHON_USEDEP}] )
+   spell? ( >=app-text/gspell-0.2.5:0= )
+"
+RDEPEND="${COMMON_DEPEND}
+   x11-themes/adwaita-icon-theme
+"
+DEPEND="${COMMON_DEPEND}
+   ${vala_depend}
+   app-text/docbook-xml-dtd:4.1.2
+   app-text/yelp-tools
+   >=dev-util/gtk-doc-am-1
+   >=dev-util/intltool-0.50.1
+   >=sys-devel/gettext-0.18
+   virtual/pkgconfig
+"
+# yelp-tools, gnome-common needed to eautoreconf
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   vala_src_prepare
+   gnome2_src_prepare
+}
+
+src_configure() {
+   DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
+
+   gnome2_src_configure \
+   --disable-deprecations \
+   --disable-updater \
+   --enable-gvfs-metadata \
+   $(use_enable introspection) \
+   $(use_enable spell) \
+   $(use_enable python) \
+   $(use_enable vala)
+}
+
+src_test() {
+   "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
+   GSETTINGS_SCHEMA_DIR="${S}/data" virtx emake check
+}
+
+src_install() {
+   local args=()
+   # manually set pyoverridesdir due to bug #524018 and AM_PATH_PYTHON 
limitations
+   use python && args+=( 
pyoverridesdir="$(python_get_sitedir)/gi/overrides" )
+
+   gnome2_src_install "${args[@]}"
+}



[gentoo-commits] proj/gnome:master commit in: app-editors/gedit/

2018-08-05 Thread Mart Raudsepp
commit: 1b48f02945263ec42141898f31e65e03acdaa6b3
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  5 10:11:20 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  5 10:11:20 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=1b48f029

app-editors/gedit: sync with main tree changes

* Newer gtk+ and gtksourceview deps (just stable release instead of dev)
* python 3.6 support

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-editors/gedit/gedit-.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-editors/gedit/gedit-.ebuild 
b/app-editors/gedit/gedit-.ebuild
index 1f26bc5e..47d3a49a 100644
--- a/app-editors/gedit/gedit-.ebuild
+++ b/app-editors/gedit/gedit-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
 GNOME2_LA_PUNT="yes" # plugins are dlopened
-PYTHON_COMPAT=( python3_{4,5} )
+PYTHON_COMPAT=( python3_{4,5,6} )
 VALA_MIN_API_VERSION="0.26"
 VALA_USE_DEPEND="vapigen"
 
@@ -32,8 +32,8 @@ fi
 COMMON_DEPEND="
>=dev-libs/libxml2-2.5.0:2
>=dev-libs/glib-2.44:2[dbus]
-   >=x11-libs/gtk+-3.21.3:3[introspection?]
-   >=x11-libs/gtksourceview-3.21.2:3.0[introspection?]
+   >=x11-libs/gtk+-3.22.0:3[introspection?]
+   >=x11-libs/gtksourceview-3.22.0:3.0[introspection?]
>=dev-libs/libpeas-1.14.1[gtk]
 
gnome-base/gsettings-desktop-schemas



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/racket/

2018-08-05 Thread Amy Liffey
commit: 937daff14b1cb7929e53e49b4d4a9ad235e47b85
Author: Amy Liffey  gentoo  org>
AuthorDate: Sun Aug  5 10:23:42 2018 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Sun Aug  5 11:08:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=937daff1

dev-scheme/racket: remove old 6.11

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-scheme/racket/Manifest  |  2 -
 dev-scheme/racket/racket-6.11-r1.ebuild | 89 -
 2 files changed, 91 deletions(-)

diff --git a/dev-scheme/racket/Manifest b/dev-scheme/racket/Manifest
index 2d8f4b303f1..4d60880650a 100644
--- a/dev-scheme/racket/Manifest
+++ b/dev-scheme/racket/Manifest
@@ -1,6 +1,4 @@
-DIST racket-6.11-src-builtpkgs.tgz 122307703 BLAKE2B 
395b14c15b73dfda7b6e863a83530b5266ec2f132b3b8ee23ee60bea0083b42e1dd67c60cbdfca2cac93c343e3a4edf132677c707aed62d85c43ae27edb2de74
 SHA512 
2b9f6b478880a9ec176018f34a3015f5e84ceb11e61519d9ab9f7df8d4b8dc664fa9103ca787664ffcd86909410fbf6812838a59d899f3487dea278e39eb597b
 DIST racket-6.12-src-builtpkgs.tgz 119736428 BLAKE2B 
ca462e69c29c33e56e8e92dfc88e18c0643e045a52d50b288139b2d439dac9e10c3a5d0226236a2e2103b9d0c74871b97c3edfb242b49822d92893acc9ea42d7
 SHA512 
31f3f9b3f69a80601569cfdeee1610a49a2931c2c11a9daf9ff14eb8828dc48cb0befd05fc1b0cc53cc1477a04841e850f2dc89614dff58dc8e9e5da7b717716
 DIST racket-6.7-src-builtpkgs.tgz 116773863 BLAKE2B 
786552b296449cd105450450f7232ba5468aba0ed6d96aa6db058cc3eb655808f031259ee69d1ab8abb9a751151e28e923d4388860ed37d74a1f6a637f740f0f
 SHA512 
63fdc18e72fa152434d0fb83e926c28d2b2d16c93a0a2be0c14d445671c1bff5daf500e9917e41fa2f60454377de0cc10d226c321402abf4bad55a15ac74f127
-DIST racket-minimal-6.11-src-builtpkgs.tgz 11208413 BLAKE2B 
17e979ab6e4c99f781994d48ca90e206618835e2ecfa875d0966efe2909a440c509fe9706cccb7f377675a0bb4d76971ed4dd73de2c088ae40660df50b6cf7cc
 SHA512 
f197a645e7da04c120f1cb61d98a1cd47824576467a2fa12753576b72f258d1229cc99243f91ed87cf37be63062c26844b44469987d7ac4bfeee853aa7cb6e66
 DIST racket-minimal-6.12-src-builtpkgs.tgz 11251582 BLAKE2B 
c8ed5c562241f37297e0e88d1c8d60ceaf35c2a7010ca68a8b8ee007819822149cbda4f3b5c0ec93093901593b2722a22b9f8e46a083b207022877ce45f5
 SHA512 
6eb23ec16c710c661171f545b8dc5a53666e8a16d1db7edf1a0713693c99b79a779c4d7c6765dc3107f699c31e29238ddbb3e08b1eb62832292af0d4a1b5f465
 DIST racket-minimal-6.7-src-builtpkgs.tgz 11213736 BLAKE2B 
1661fe1818d0b2c0d2c058aead61e25c5df01201d3ccdb31fccca14e9c1f2f822c18bfad6be3c1b7446d692c252129b63340b37e0311848269a914197416eee9
 SHA512 
59c885b535ed8e91a3b2a524bbc38661a5c19848ded935cc9f068c3fd6c8da39fc0755ef8df3a69cce3d50b96ee30d91972d6a4f6d5414eefb80bdc1ede6a285

diff --git a/dev-scheme/racket/racket-6.11-r1.ebuild 
b/dev-scheme/racket/racket-6.11-r1.ebuild
deleted file mode 100644
index 0ce238ca01b..000
--- a/dev-scheme/racket/racket-6.11-r1.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit pax-utils
-
-DESCRIPTION="General purpose, multi-paradigm Lisp-Scheme programming language"
-HOMEPAGE="http://racket-lang.org/;
-SRC_URI="minimal? ( 
http://download.racket-lang.org/installers/${PV}/${PN}-minimal-${PV}-src-builtpkgs.tgz
 ) !minimal? ( 
http://download.racket-lang.org/installers/${PV}/${P}-src-builtpkgs.tgz )"
-LICENSE="GPL-3+ LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
-IUSE="doc +futures +jit minimal +places +readline +threads +X"
-REQUIRED_USE="futures? ( jit )"
-
-RDEPEND="dev-db/sqlite:3
-   media-libs/libpng:0
-   x11-libs/cairo[X?]
-   x11-libs/pango[X?]
-   virtual/libffi
-   virtual/jpeg:0
-   readline? ( dev-libs/libedit )
-   X? ( x11-libs/gtk+[X?] )"
-RDEPEND="${RDEPEND} !dev-tex/slatex"
-
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${P}/src"
-
-src_prepare() {
-   default
-   rm -r foreign/libffi || die 'failed to remove bundled libffi'
-}
-
-src_configure() {
-   # According to vapier, we should use the bundled libtool
-   # such that we don't preclude cross-compile. Thus don't use
-   # --enable-lt=/usr/bin/libtool
-   econf \
-   --enable-shared \
-   --enable-float \
-   --enable-libffi \
-   --enable-foreign \
-   --disable-libs \
-   --disable-strip \
-   $(use_enable X gracket) \
-   $(use_enable doc docs) \
-   $(use_enable jit) \
-   $(use_enable places) \
-   $(use_enable futures) \
-   $(use_enable threads pthread)
-}
-
-src_compile() {
-   if use jit; then
-   # When the JIT is enabled, a few binaries need to be pax-marked
-   # on hardened systems (bug 613634). The trick is to pax-mark
-   # them before they're used later in the build system. The
-   # following order for racketcgc and racket3m was determined by
-   # 

[gentoo-commits] repo/gentoo:master commit in: dev-scheme/racket/

2018-08-05 Thread Amy Liffey
commit: 1ec909d35aa19feb51d83c26c64643a9531d6260
Author: Amy Liffey  gentoo  org>
AuthorDate: Sun Aug  5 10:23:03 2018 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Sun Aug  5 11:08:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ec909d3

dev-scheme/racket: uncompress doc files for raco

- raco pkg manager needs the doc files uncompressed

Suggested-by: Winston Weinert  ml1.net>
Closes: https://bugs.gentoo.org/662424
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-scheme/racket/{racket-6.12-r1.ebuild => racket-6.12-r2.ebuild} | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-scheme/racket/racket-6.12-r1.ebuild 
b/dev-scheme/racket/racket-6.12-r2.ebuild
similarity index 94%
rename from dev-scheme/racket/racket-6.12-r1.ebuild
rename to dev-scheme/racket/racket-6.12-r2.ebuild
index 0ce238ca01b..42b90a44cdb 100644
--- a/dev-scheme/racket/racket-6.12-r1.ebuild
+++ b/dev-scheme/racket/racket-6.12-r2.ebuild
@@ -86,4 +86,8 @@ src_install() {
 
use X && pax-mark m "${D}/usr/$(get_libdir)/racket/gracket"
fi
+   # raco needs decompressed files for packages doc installation bug 662424
+   if use doc; then
+   docompress -x /usr/share/doc/${PF}
+   fi
 }



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

2018-08-05 Thread Sergei Trofimovich
commit: 8530dc97df5ebd2b619649f2ed4c9ba60f4f1770
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:21:49 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:21:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8530dc97

dev-util/catfish: keyworded 1.4.6 for ppc, bug #657068

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-util/catfish/catfish-1.4.6.ebuild 
b/dev-util/catfish/catfish-1.4.6.ebuild
index 034f5d1e462..62bc7cee54e 100644
--- a/dev-util/catfish/catfish-1.4.6.ebuild
+++ b/dev-util/catfish/catfish-1.4.6.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://archive.xfce.org/src/apps/catfish/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc ~x86"
 
 RDEPEND="
dev-python/pexpect[${PYTHON_USEDEP}]



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

2018-08-05 Thread Sergei Trofimovich
commit: c3d601961ed68889a15da26d0f98ca603b04e037
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Aug  5 11:21:40 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Aug  5 11:21:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3d60196

dev-util/catfish: keyworded 1.2.2 for ppc, bug #657068

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.44, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-util/catfish/catfish-1.2.2.ebuild 
b/dev-util/catfish/catfish-1.2.2.ebuild
index 5c88f81f855..42bde6bcd26 100644
--- a/dev-util/catfish/catfish-1.2.2.ebuild
+++ b/dev-util/catfish/catfish-1.2.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ 
SRC_URI="https://launchpad.net/${PN}-search/${PV%.*}/${PV}/+download/${P}.tar.bz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~ppc x86"
 
 COMMON_DEPEND="
${PYTHON_DEPS}



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

2018-08-05 Thread Manuel Rüger
commit: 341385843b99f3f930616290046370c19cea1110
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Aug  5 13:38:04 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug  5 13:38:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34138584

www-apps/gitea: Version bump to 1.4.3

Closes: https://bugs.gentoo.org/661420
Package-Manager: Portage-2.3.44, Repoman-2.3.10

 www-apps/gitea/Manifest   |  1 +
 www-apps/gitea/gitea-1.4.3.ebuild | 61 +++
 2 files changed, 62 insertions(+)

diff --git a/www-apps/gitea/Manifest b/www-apps/gitea/Manifest
index 2359161d3fc..0cc62b2e77a 100644
--- a/www-apps/gitea/Manifest
+++ b/www-apps/gitea/Manifest
@@ -1 +1,2 @@
 DIST gitea-1.4.1.tar.gz 14978598 BLAKE2B 
8fde79291b745750e79c944e7fcf938d2476ddaa386c1277f54bf315831eeb749507e270ca0a8a8351dd8fa60656bb98eb7c478a5c99f2ac20d350b6054339d5
 SHA512 
3b812bd61215230035ec9241e953f239981d04580d931f379aa550e11d2f7facd56bf70ac9e2d866224d341570a238bcc5c2fa71fd1432cfb95b8c8b703784e6
+DIST gitea-1.4.3.tar.gz 14985783 BLAKE2B 
d2f141a036406c92e7900ce073066ff5024f308c24a2705eb5da229c48a1b6c772d3148222aafd5c0d6608830670badb2a102149f58a134cc32b5175e1ae306e
 SHA512 
24498b418b9ddb14da5568a206e1fa0831c5789e0b64207f413c3b86e2a855052f7af80d3cb80549eaae6944e22af271c00f6308c66487c3be0dccf55a17976a

diff --git a/www-apps/gitea/gitea-1.4.3.ebuild 
b/www-apps/gitea/gitea-1.4.3.ebuild
new file mode 100644
index 000..41abc1c912b
--- /dev/null
+++ b/www-apps/gitea/gitea-1.4.3.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user systemd golang-build golang-vcs-snapshot
+
+EGO_PN="code.gitea.io/gitea"
+KEYWORDS="~amd64 ~arm"
+
+DESCRIPTION="A painless self-hosted Git service, written in Go"
+HOMEPAGE="https://github.com/go-gitea/gitea;
+SRC_URI="https://github.com/go-gitea/gitea/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-go/go-bindata"
+RDEPEND="dev-vcs/git"
+
+pkg_setup() {
+   enewgroup git
+   enewuser git -1 /bin/bash /var/lib/gitea git
+}
+
+src_prepare() {
+   default
+   sed -i -e "s/\"main.Version.*$/\"main.Version=${PV}\"/"\
+   -e "s/-ldflags '-s/-ldflags '/" src/${EGO_PN}/Makefile || die
+}
+
+src_compile() {
+   GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" emake -C src/${EGO_PN} 
generate
+   TAGS="bindata pam sqlite" LDFLAGS="" CGO_LDFLAGS="-fno-PIC" 
GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" emake -C src/${EGO_PN} build
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin gitea
+   insinto /var/lib/gitea/conf
+   newins custom/conf/app.ini.sample app.ini.example
+   popd || die
+   newinitd "${FILESDIR}"/gitea.initd-r1 gitea
+   newconfd "${FILESDIR}"/gitea.confd gitea
+   keepdir /var/log/gitea /var/lib/gitea/data
+   fowners -R git:git /var/log/gitea /var/lib/gitea/
+   systemd_dounit "${FILESDIR}/gitea.service"
+}
+
+pkg_postinst() {
+   if [[ ! -e "${EROOT}/var/lib/gitea/conf/app.ini" ]]; then
+   elog "No app.ini found, copying initial config over"
+   cp "${FILESDIR}"/app.ini "${EROOT}"/var/lib/gitea/conf/ || die
+   chown git:git /var/lib/gitea/conf/app.ini
+   else
+   elog "app.ini found, please check example file for possible 
changes"
+   ewarn "Please note that environment variables have been 
changed:"
+   ewarn "GITEA_WORK_DIR is set to /var/lib/gitea (previous value: 
unset)"
+   ewarn "GITEA_CUSTOM is set to '\$GITEA_WORK_DIR/custom' 
(previous: /var/lib/gitea)"
+   fi
+}



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

2018-08-05 Thread Manuel Rüger
commit: 1057eda90473cd5f799e2b11638ae8de36c9a5dd
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Aug  5 13:49:48 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Aug  5 13:49:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1057eda9

app-admin/helm: Remove old

Package-Manager: Portage-2.3.44, Repoman-2.3.10

 app-admin/helm/Manifest   |   1 -
 app-admin/helm/helm-2.10.0_rc1.ebuild | 147 --
 2 files changed, 148 deletions(-)

diff --git a/app-admin/helm/Manifest b/app-admin/helm/Manifest
index 322fbeef813..4b775362797 100644
--- a/app-admin/helm/Manifest
+++ b/app-admin/helm/Manifest
@@ -95,6 +95,5 @@ DIST 
github.com-spf13-pflag-9ff6c6923cfffbcd502984b8e0c80539a94968b7.tar.gz 3892
 DIST github.com-square-go-jose-f8f38de21b4dcd69d0413faf231983f5fd6634b1.tar.gz 
278276 BLAKE2B 
dfb467b318f0a6661c5ae910f32bc5337d9677ff60b55dea4706193b4acb815f7e087debc92cf9347ae54db13f512c4a2dc1cc05ea031201bf119caaffa6c6e7
 SHA512 
4230ba34fe8f45ed7e4a0f7ffc60781b1b4fbaa6877212a8d5ab5a8b088d0d3151f76868929e270c5ca71769ae366976a25de65716e8c0e6289a4f720055f02f
 DIST 
github.com-technosophos-moniker-a5dbd03a2245d554160e3ae6bfdcf969fe58b431.tar.gz 
7860 BLAKE2B 
947a33bd0363cfa5333e4e41b59c8c758fab173bb9e0eef5560caca74f4321041ca69f6c2c5fe02ab36c8946038866033d8df9b7f9ed36be9f3fb1eff6dad182
 SHA512 
8b372ceba1a16acc8553c74d4872b042ca352d4128abc1e9f4aeb90f8489b7871d7fa7f97a6c4e8f472779d3a082f00e6d2ea30048a7b1bf4eb07fb544e45613
 DIST 
github.com-technosophos-moniker-ab470f5e105a44d0c87ea21bacd6a335c4816d83.tar.gz 
7897 BLAKE2B 
a2b6f62fea8cb724ebbc9658e37985ed27fd1c395a838b6f8f89bc3e05106cd3e89b86753223bccc50de210461c89b01d8e3095ae1c6dcb6bc9a655c462981f0
 SHA512 
460b1cbef7d5236b099a67b27e902f9077fd42d6aa3772c13c1c3ab20fca87719a770478a068bf150e1224612fe4e1eadb1ec7cdfa60ca9cc81e3f6de62ee9c4
-DIST helm-2.10.0_rc1.tar.gz 1151238 BLAKE2B 
a33fa6c547824ae1497e04110e9f3d74b1ab4bb6e7e1b7a598e8756ed76993bf969ae3d066d5d006393ea095e75c06b3ea5d8ef360111a2804bd5ee63b8b1bff
 SHA512 
05b40169c0c0920cdb339a17526f080db25bde095c89415d0229220c0e19fca05e60cbddc7d3f66f5e701c52417d76251266bceb7293327985912510bb03b2b7
 DIST helm-2.10.0_rc2.tar.gz 1158443 BLAKE2B 
012d38a7f565a43ba852fbd5b4958d154e818f2acdbcf269894dfad6f097bff89bb847df5fa6624b2a93771058c543c958a8aa46c65f91468d803e48f774eca1
 SHA512 
ff51c29b048f7a0360f498724153e58406b1accbd01f1dc92d23ea706fe24757990b59e23e2988e7b1d8ce67f31672559a1f2ef1d0e002fedd0b831d9fe77831
 DIST helm-2.9.1.tar.gz 1136941 BLAKE2B 
57e319df56d60b1285df99ee6c0213e9700b80aa4117f11ab3e37493d552481875a42acd200d2183c2e587dc13130b9c47cbacee7dd7bfeaaf4dc9bb0a17dcc5
 SHA512 
c9830ae3de76e219dc4effad749fa6f80d24f47f034bd7150afc5817700947b678db64a0889fe1e3c3c69ed0932933ebf9bb893c065d7d77c2953190ab15b033

diff --git a/app-admin/helm/helm-2.10.0_rc1.ebuild 
b/app-admin/helm/helm-2.10.0_rc1.ebuild
deleted file mode 100644
index dc1a3fec1ac..000
--- a/app-admin/helm/helm-2.10.0_rc1.ebuild
+++ /dev/null
@@ -1,147 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGO_PN="k8s.io/helm"
-
-MY_PV=${PV/_rc/-rc.}
-
-EGO_VENDOR=(
-"cloud.google.com/go 3b1ae45394a234c385be014e9a488f2bb6eef821 
github.com/GoogleCloudPlatform/gcloud-golang"
-"github.com/aokoli/goutils 9c37978a95bd5c709a15883b6242714ea6709e64"
-"github.com/asaskevich/govalidator 7664702784775e51966f0885f5cd27435916517b"
-"github.com/Azure/go-ansiterm 19f72df4d05d31cbe1c56bfc8045c96babff6c7e"
-"github.com/Azure/go-autorest d4e6b95c12a08b4de2d48b45d5b4d594e5d32fab"
-"github.com/beorn7/perks 3ac7bf7a47d159a033b107610db8a1b6575507a4"
-"github.com/BurntSushi/toml b26d9c308763d68093482582cea63d69be07a0f0"
-"github.com/cpuguy83/go-md2man 71acacd42f85e5e82f70a55327789582a5200a90"
-"github.com/cyphar/filepath-securejoin 
06bda8370f45268db985f7af15732444d94ed51c"
-"github.com/davecgh/go-spew 782f4967f2dc4564575ca782fe2d04090b5faca8"
-"github.com/dgrijalva/jwt-go 01aeca54ebda6e0fbfafd0a524d234159c05ec20"
-"github.com/docker/distribution edc3ab29cdff8694dd6feb85cfeb4b5f1b38ed9c"
-"github.com/docker/docker 4f3616fb1c112e206b88cb7a9922bf49067a7756"
-"github.com/docker/go-connections 3ede32e2033de7505e6500d6c868c2b9ed9f169d"
-"github.com/docker/go-units 9e638d38cf6977a37a8ea0078f3ee75a7cdb2dd1"
-"github.com/docker/spdystream 449fdfce4d962303d702fec724ef0ad181c92528"
-"github.com/evanphx/json-patch 94e38aa1586e8a6c8a75770bddf5ff84c48a106b"
-"github.com/exponent-io/jsonpath d6023ce2651d8eafb5c75bb0c7167536102ec9f5"
-"github.com/fatih/camelcase f6a740d52f961c60348ebb109adde9f4635d7540"
-"github.com/ghodss/yaml 73d445a93680fa1a78ae23a5839bad48f32ba1ee"
-"github.com/go-openapi/jsonpointer 46af16f9f7b149af66e5d1bd010e3574dc06de98"
-"github.com/go-openapi/jsonreference 13c6e3589ad90f49bd3e3bbe2c2cb3d7a4142272"
-"github.com/go-openapi/spec 1de3e0542de65ad8d75452a595886fdd0befb363"
-"github.com/go-openapi/swag 

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

2018-08-05 Thread Thomas Deutschmann
commit: e9360be7fd1b18bf2c23497c579fa301ae7bf224
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug  5 14:09:18 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug  5 14:09:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9360be7

dev-python/pytest-describe: disable pytest-capturelog plugin

Closes: https://bugs.gentoo.org/662820
Package-Manager: Portage-2.3.44, Repoman-2.3.10

 dev-python/pytest-describe/pytest-describe-0.11.1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/pytest-describe/pytest-describe-0.11.1.ebuild 
b/dev-python/pytest-describe/pytest-describe-0.11.1.ebuild
index 33283659c14..a875b33d9f8 100644
--- a/dev-python/pytest-describe/pytest-describe-0.11.1.ebuild
+++ b/dev-python/pytest-describe/pytest-describe-0.11.1.ebuild
@@ -24,7 +24,7 @@ DEPEND="
test? ( >=dev-python/pytest-2.6.0[${PYTHON_USEDEP}] )"
 
 python_test() {
-   # We need to disable flaky plugin because test_custom_prefix test 
validates
-   # pytest output and output from flaky plugin would appear unexpectedly
-   PYTEST_ADDOPTS="-p no:flaky" pytest -vv || die "Tests failed under 
${EPYTHON}"
+   # We need to disable some plugins because tests don't like unexpected
+   # output
+   PYTEST_ADDOPTS="-p no:flaky -p no:capturelog" pytest -vv || die "Tests 
failed under ${EPYTHON}"
 }



[gentoo-commits] repo/gentoo:master commit in: dev-db/percona-xtrabackup-bin/

2018-08-05 Thread Thomas Deutschmann
commit: 0e3fbd9766cdbf7261cb2f60951738c4fd438795
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug  5 14:38:51 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug  5 14:38:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e3fbd97

dev-db/percona-xtrabackup-bin: drop old

Package-Manager: Portage-2.3.44, Repoman-2.3.10

 dev-db/percona-xtrabackup-bin/Manifest |  2 -
 .../percona-xtrabackup-bin-2.4.10.ebuild   | 64 --
 2 files changed, 66 deletions(-)

diff --git a/dev-db/percona-xtrabackup-bin/Manifest 
b/dev-db/percona-xtrabackup-bin/Manifest
index 7174ce280a7..035bb7c8e3a 100644
--- a/dev-db/percona-xtrabackup-bin/Manifest
+++ b/dev-db/percona-xtrabackup-bin/Manifest
@@ -1,5 +1,3 @@
-DIST percona-xtrabackup-2.4.10-Linux-i686.libgcrypt20.tar.gz 84004091 BLAKE2B 
0fde32a53aaba54d71e34b729ba4d3dc94c21d8852a4c87da221b6967b6e9c6b59c7fc4966724cbdf3fd474082b3e14717dc34b30b3f235b2271c0f7fdbf52e8
 SHA512 
07e75c0770736f2566d44395a5ed455b5f90a64244754e621e9c90d8e7a0ad3fe1d7a05037b9f0ecba53b821a8f1ad4d51914ef0b414ae470091ccd489379b19
-DIST percona-xtrabackup-2.4.10-Linux-x86_64.libgcrypt20.tar.gz 86736776 
BLAKE2B 
b55915b1ad34bb55668b90de2441502491e98d2a685932848e756ea61562592416a05eba33d0c6df2bcad9f113b867b64eca39813a3683b25c18574535ba2b70
 SHA512 
1293e9511e09cd8cac2ef2a117282d3f79573974b7b7c3ffe6e80fe1c57edb27f32fe19e14c0ea643084c62ad83f6e5e25b5f01671628735fae940fcfb7795f1
 DIST percona-xtrabackup-2.4.11-Linux-i686.libgcrypt20.tar.gz 85158090 BLAKE2B 
3d6565542208d1a9c74154d0a7e23610a34416f4840bcff240a262958fe4e4b0f489883349760934469619d225dccc7a2d531919e716dfdc3c2f10b1f98263e2
 SHA512 
bd6419f1b2e79e8e41817c677209a0d08912b247314f611689e0208028d4870e1e2a2b559fe8d60a3a369704aaee57e300643d9d355f083bb89c950f13d724bb
 DIST percona-xtrabackup-2.4.11-Linux-x86_64.libgcrypt20.tar.gz 87975988 
BLAKE2B 
850b06d3e063b2884f0731ada7ad20e09816e38f60ee5eef2b1150c2b1f0cd59082d26fa026bf7e80ccebdf6b513ab8af6c7d228ade96d532ef41a74490093e9
 SHA512 
dc412e3ad65a5d3aed6053e107a79094760b868f008171c9aaee190c97e666a38716b0c7d3e7f3db74eecff98b35c114be29114d50630f554a0c2cb0b1b71cfe
 DIST percona-xtrabackup-2.4.12-Linux-i686.libgcrypt20.tar.gz 85181957 BLAKE2B 
b066ff9efa8c57829a441c2e416ac1eeeff60cb0839ccdab4cd685bff9b2ead552ba9b7105541e0a824ca8aaeeb47d89d66180fe428842470c4743dfd149f31d
 SHA512 
adbaae8ad3347e15b13fe360dd5d4721330d6b17e75696128dfe770d03ad85056abeb861ffcbfe1d08020c8b9d726dd9e5650f63b7199804fe4d3cd9806debe2

diff --git a/dev-db/percona-xtrabackup-bin/percona-xtrabackup-bin-2.4.10.ebuild 
b/dev-db/percona-xtrabackup-bin/percona-xtrabackup-bin-2.4.10.ebuild
deleted file mode 100644
index 2e9e7ddc752..000
--- a/dev-db/percona-xtrabackup-bin/percona-xtrabackup-bin-2.4.10.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-MY_PN="${PN%-bin}"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="MySQL hot backup software. non-blocking backups for InnoDB/XtraDB 
databases"
-HOMEPAGE="https://www.percona.com/software/percona-xtrabackup;
-SRC_URI="
-   amd64? (
-   
https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PV}/binary/tarball/${MY_P}-Linux-x86_64.libgcrypt20.tar.gz
-   )
-   x86? (
-   
https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PV}/binary/tarball/${MY_P}-Linux-i686.libgcrypt20.tar.gz
-   )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-# NOTE: dev-perl/DBD-mysql still necessary, now for bin/xtrabackup?
-DEPEND=""
-RDEPEND="dev-libs/libaio
-   dev-libs/libgcrypt:0/20
-   dev-libs/libgpg-error
-   dev-perl/DBD-mysql
-   sys-libs/zlib
-   sys-process/numactl"
-
-QA_PREBUILT="usr/bin/*"
-
-src_unpack() {
-   default
-
-   if use amd64; then
-   S="${WORKDIR}/${MY_P}-Linux-x86_64"
-   elif use x86; then
-   S="${WORKDIR}/${MY_P}-Linux-i686"
-   fi
-}
-
-src_install() {
-   # Two new tools with an old libcurl.so.3 dep...
-   # TODO: Wait for a new release using libcurl.so.4
-   # net-misc/curl dev-libs/libev
-   # dobin bin/xbcloud{,_osenv}
-
-   for tool in xbcrypt xbstream xtrabackup; do
-   dobin bin/${tool}
-   done
-
-   for man in innobackupex xbcrypt xbstream xtrabackup; do
-   doman man/man1/${man}.1
-   done
-
-   dosym xtrabackup /usr/bin/innobackupex
-}
-
-pkg_postinst() {
-   ewarn "innobackupex got deprecated in 2.3.x series and is just a 
symlink to xtrabackup"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-db/percona-xtrabackup-bin/

2018-08-05 Thread Thomas Deutschmann
commit: 4de471a1a76d718fa5458f17f49b6d64a922db40
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug  5 14:38:31 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug  5 14:38:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4de471a1

dev-db/percona-xtrabackup-bin: drop version requiring libgcrypt:11

Closes: https://bugs.gentoo.org/656376
Package-Manager: Portage-2.3.44, Repoman-2.3.10

 dev-db/percona-xtrabackup-bin/Manifest |  2 -
 .../percona-xtrabackup-bin-2.4.9.ebuild| 61 --
 2 files changed, 63 deletions(-)

diff --git a/dev-db/percona-xtrabackup-bin/Manifest 
b/dev-db/percona-xtrabackup-bin/Manifest
index b65296bbe64..7174ce280a7 100644
--- a/dev-db/percona-xtrabackup-bin/Manifest
+++ b/dev-db/percona-xtrabackup-bin/Manifest
@@ -4,5 +4,3 @@ DIST percona-xtrabackup-2.4.11-Linux-i686.libgcrypt20.tar.gz 
85158090 BLAKE2B 3d
 DIST percona-xtrabackup-2.4.11-Linux-x86_64.libgcrypt20.tar.gz 87975988 
BLAKE2B 
850b06d3e063b2884f0731ada7ad20e09816e38f60ee5eef2b1150c2b1f0cd59082d26fa026bf7e80ccebdf6b513ab8af6c7d228ade96d532ef41a74490093e9
 SHA512 
dc412e3ad65a5d3aed6053e107a79094760b868f008171c9aaee190c97e666a38716b0c7d3e7f3db74eecff98b35c114be29114d50630f554a0c2cb0b1b71cfe
 DIST percona-xtrabackup-2.4.12-Linux-i686.libgcrypt20.tar.gz 85181957 BLAKE2B 
b066ff9efa8c57829a441c2e416ac1eeeff60cb0839ccdab4cd685bff9b2ead552ba9b7105541e0a824ca8aaeeb47d89d66180fe428842470c4743dfd149f31d
 SHA512 
adbaae8ad3347e15b13fe360dd5d4721330d6b17e75696128dfe770d03ad85056abeb861ffcbfe1d08020c8b9d726dd9e5650f63b7199804fe4d3cd9806debe2
 DIST percona-xtrabackup-2.4.12-Linux-x86_64.libgcrypt20.tar.gz 87975175 
BLAKE2B 
b21ab8dd4fac27ae8c731b5fbd816dfc39572bc52a9273255a4c89ddf99ee490cc66ed4f92945b18f4ec58e731ae036a16e08674cb9837544ca5150cb6b91c7b
 SHA512 
355b9f7f052a1242e502ddcbdc26cb931d16366be4db405730a2bb04de3030e0d0e6d4d15eb87f68fe232648dd435c85505a6d895b7c27b3baea0cb851214766
-DIST percona-xtrabackup-2.4.9-Linux-i686.tar.gz 79816483 BLAKE2B 
0fd97ee14c97f66edf629fa0300bfa2d6b333ac5942f5cee46dd9d0ad04ef2fe12750209971ff8f6a8ca225a85deaa42ca64c484e12e60c85789153689e55c42
 SHA512 
014921b0ea9fec783adbdd4556301e8df77f801729faae5b2b7245c349df069fc3af33ebef5ec65ef0e020c7b0ec8ebf4aa7a7acc0e9936c6f4a90b721a5de19
-DIST percona-xtrabackup-2.4.9-Linux-x86_64.tar.gz 90282874 BLAKE2B 
2c4cdb8c6da443baf01857fbe4b27be002df370b67687f417a9fde6b08a5e72482552b165a9f27fda305787b42089fb138a4fca2f1d683afbd42efa23746b13c
 SHA512 
24138c098d8e674de291dc494c38f2fce52f4d6a5a2552a62b34ea801b867431917449656f990043c7bbbc1e18a8806c4343eadbe1fea17e36ff1b10109e5047

diff --git a/dev-db/percona-xtrabackup-bin/percona-xtrabackup-bin-2.4.9.ebuild 
b/dev-db/percona-xtrabackup-bin/percona-xtrabackup-bin-2.4.9.ebuild
deleted file mode 100644
index 061d2fc6a0c..000
--- a/dev-db/percona-xtrabackup-bin/percona-xtrabackup-bin-2.4.9.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-MY_PN="${PN%-bin}"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="MySQL hot backup software. non-blocking backups for InnoDB/XtraDB 
databases"
-HOMEPAGE="https://www.percona.com/software/percona-xtrabackup;
-SRC_URI="
-   amd64? (
-   
https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PV}/binary/tarball/${MY_P}-Linux-x86_64.tar.gz
-   )
-   x86? (
-   
https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PV}/binary/tarball/${MY_P}-Linux-i686.tar.gz
-   )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-# NOTE: dev-perl/DBD-mysql still necessary, now for bin/xtrabackup?
-DEPEND=""
-RDEPEND="dev-libs/libaio
-   dev-libs/libgcrypt:11/11
-   dev-libs/libgpg-error
-   dev-perl/DBD-mysql
-   sys-libs/zlib"
-
-src_unpack() {
-   default
-
-   if use amd64; then
-   S="${WORKDIR}/${MY_P}-Linux-x86_64"
-   elif use x86; then
-   S="${WORKDIR}/${MY_P}-Linux-i686"
-   fi
-}
-
-src_install() {
-   # Two new tools with an old libcurl.so.3 dep...
-   # TODO: Wait for a new release using libcurl.so.4
-   # net-misc/curl dev-libs/libev
-   # dobin bin/xbcloud{,_osenv}
-
-   for tool in xbcrypt xbstream xtrabackup; do
-   dobin bin/${tool}
-   done
-
-   for man in innobackupex xbcrypt xbstream xtrabackup; do
-   doman man/man1/${man}.1
-   done
-
-   dosym xtrabackup /usr/bin/innobackupex
-}
-
-pkg_postinst() {
-   ewarn "innobackupex got deprecated in 2.3.x series and is just a 
symlink to xtrabackup"
-}



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

2018-08-05 Thread Mats Lidell
commit: 926d9bbdfab03ebb48e5a894a3b105feeb4f9da1
Author: Mats Lidell  gentoo  org>
AuthorDate: Sun Aug  5 14:44:52 2018 +
Commit: Mats Lidell  gentoo  org>
CommitDate: Sun Aug  5 14:45:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=926d9bbd

app-xemacs/edit-utils: version bump

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-xemacs/edit-utils/Manifest   |  1 +
 app-xemacs/edit-utils/edit-utils-2.58.ebuild | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/app-xemacs/edit-utils/Manifest b/app-xemacs/edit-utils/Manifest
index 8c44206cc20..8d175934372 100644
--- a/app-xemacs/edit-utils/Manifest
+++ b/app-xemacs/edit-utils/Manifest
@@ -1,3 +1,4 @@
 DIST edit-utils-2.39-pkg.tar.gz 962340 BLAKE2B 
58fd356da23467c29976f39642d5aeac0898418deb60edc909b79d76e0e196bdf3757a672a12bebfd258014c495a8c43cc177dc00b5da5877905fe991814c41e
 SHA512 
dcd6634ec0eb9cb71336ac445fa063a3fabf34d5bfe47f417c00b111a82c42f10679ab6512e1bfcb80596cacb532fa14cb3f5675fb36a5e6258696bb7491fb51
 DIST edit-utils-2.43-pkg.tar.gz 958798 BLAKE2B 
276bc16f5e7dbf29fcc78ed05da80976262dd48b1a088e8070192dd414240389da08a737dc6fb8c8459552d9c5ae491e248196ba8e7bf30d49cd7c74d0070cae
 SHA512 
e42e416002f0f0c580f241ce4753c3868494025b4bfd087f5654e3c238a4b5c99d56f01db6b0fa47d1142085d5b4183625248266d76381387030a89e47a9e68f
 DIST edit-utils-2.44-pkg.tar.gz 958866 BLAKE2B 
826d508304a2b08b76b7f358e7629184ef5d441d5a728e4943158b6e5c37cd128a5353f4b760a1a460f7f6487b51f10882462859388618587a984b298dc92b98
 SHA512 
fcb37c24304756e83cd273497cedf671e62ddce78f7bc460052cd3725948e35d87ce9d3108938483cd2ab8fb2d663ffb1df033b47b6e4b7e73f3a71d6d0ae886
+DIST edit-utils-2.58-pkg.tar.gz 1159051 BLAKE2B 
4eb07e163863724431e2b2692014db84b0aa3926f1a40e3ef958285f692107fc00c132b30e6b74bd68fd90e916d1602dbc98b29c13d3c1e59e2f4f58b387c3a9
 SHA512 
42fa35bf31a0941186ceeb89afd138604cfc9903ad2feeaa7623e8d2343660368cb57b89104182eb314a3641b0a7a9f8ee8fa525cff88a6b071c96820b5d

diff --git a/app-xemacs/edit-utils/edit-utils-2.58.ebuild 
b/app-xemacs/edit-utils/edit-utils-2.58.ebuild
new file mode 100644
index 000..efcece0b1fc
--- /dev/null
+++ b/app-xemacs/edit-utils/edit-utils-2.58.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+SLOT="0"
+DESCRIPTION="Miscellaneous editor extensions, you probably need this"
+XEMACS_PKG_CAT="standard"
+
+RDEPEND="app-xemacs/xemacs-base
+app-xemacs/xemacs-devel
+app-xemacs/fsf-compat
+app-xemacs/dired
+app-xemacs/mail-lib
+"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+
+inherit xemacs-packages



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

2018-08-05 Thread Amy Liffey
commit: 1c3fb21c517009fddde44fa3b68cf4b38ef92a25
Author: Amy Liffey  gentoo  org>
AuthorDate: Sun Aug  5 15:02:02 2018 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Sun Aug  5 15:02:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c3fb21c

x11-misc/tint2: version bump 16.6

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 x11-misc/tint2/Manifest  |  1 +
 x11-misc/tint2/tint2-16.6.ebuild | 60 
 2 files changed, 61 insertions(+)

diff --git a/x11-misc/tint2/Manifest b/x11-misc/tint2/Manifest
index 7ca307b94e2..2fd4826ff46 100644
--- a/x11-misc/tint2/Manifest
+++ b/x11-misc/tint2/Manifest
@@ -3,3 +3,4 @@ DIST tint2-0.14.6.tar.gz 466533 BLAKE2B 
c7308771e8a5a7d49410d99779ee54fd19b7d5b7
 DIST tint2-15.3.tar.gz 500301 BLAKE2B 
b8b405f1c56c3de41f672dc02acef893b0650fadca9a4823c7b249661e8675e01c92c9c1588d32c2836596f34c4dbc1e5d2608cff3c75590d7eeac9e925eb874
 SHA512 
41ae8f8e3aac6fe55539c531889ec2883534072ad398f0693e4bfd39c80dd4c64d635a36e063f741fe89fd461f66f92adf6acdde553e0f8b169992d94dc0e344
 DIST tint2-16.1.tar.gz 534354 BLAKE2B 
540287bd952ba8b54372d45055efe216dc4d9d192e33d6f83f2c734e97b9e350c7be0cb3e19d414f4e11c0bb7b505307899dea9c10ac382737a2507f7df4fdcc
 SHA512 
c6319d5692d53e56c150906c32c794ee4237e06455efb68527b379b4ae00c48d996c63ea02ee6aefc70266335eb4cb08b4731556075c46d435b7861de6eefd3c
 DIST tint2-16.2.tar.gz 537236 BLAKE2B 
b8ff236f4c21465603c3cdf1e3d9f62e238cfbd05fbb7976e4f90ac054566eb433d8be78ee657421b94465dceeb8461ace202090b08585693f13003d401e4faf
 SHA512 
0e267d59aef3d812ab41c1e5904e3e96162afd8d98c76dc697fe8c2815707f34a31e392f68260311bdc66fcb4c0b1766ad549ff30d4314e6ab2e2debf069cafe
+DIST tint2-16.6.tar.gz 546960 BLAKE2B 
083e29d754c1faa9eff50dc480d18df99d64f44a2f88673f06e659d55de13c074eacf4614a57211d5b5aeec3a10f3d68471212d24a7280020b52fe91777d305d
 SHA512 
f81770f330d3f2462292f726a6a90ac0182c518b2db7d79f098babe52863e5ceaf4293f975708f83fbc26735c79fdfefd110102ef0f4be45ae242b4f664d72b1

diff --git a/x11-misc/tint2/tint2-16.6.ebuild b/x11-misc/tint2/tint2-16.6.ebuild
new file mode 100644
index 000..f7cbd25ca6f
--- /dev/null
+++ b/x11-misc/tint2/tint2-16.6.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils gnome2-utils vcs-snapshot
+
+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 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[X]
+   x11-libs/pango
+   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}"
+
+src_configure() {
+   local mycmakeargs=(
+   -Ddocdir="${EPREFIX}/usr/share/doc/${PF}"
+   -DENABLE_BATTERY="$(usex battery)"
+   -DENABLE_TINT2CONF="$(usex tint2conf)"
+   -DENABLE_SN="$(usex startup-notification)"
+   -DENABLE_RSVG="$(usex svg)"
+   )
+
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+}
+
+pkg_preinst() {
+   gnome2_icon_savelist
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



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

2018-08-05 Thread Patrice Clement
commit: ee854ca33fd36a7a418868c279c21b9acc683f75
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Aug  5 15:03:47 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Aug  5 15:04:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee854ca3

dev-java/jmh-core: fix jopt-simple dependency.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-java/jmh-core/jmh-core-1.4.1.ebuild | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/dev-java/jmh-core/jmh-core-1.4.1.ebuild 
b/dev-java/jmh-core/jmh-core-1.4.1.ebuild
index ea497f21447..7cc5df2b780 100644
--- a/dev-java/jmh-core/jmh-core-1.4.1.ebuild
+++ b/dev-java/jmh-core/jmh-core-1.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -21,11 +21,10 @@ KEYWORDS="~amd64 ~x86"
 # jopt *must* be 4.6, see 
http://mail.openjdk.java.net/pipermail/jmh-dev/2016-October/002395.html
 CDEPEND="
dev-java/asm:4
-   dev-java/commons-math:3
-   =dev-java/jopt-simple-4.6:0
dev-java/junit:4
-   source? ( app-arch/zip )
-"
+   dev-java/commons-math:3
+   dev-java/jopt-simple:4.6
+   source? ( app-arch/zip )"
 
 DEPEND=">=virtual/jdk-1.7
${CDEPEND}"



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

2018-08-05 Thread Amy Liffey
commit: 0553c73ec423b80b07df52b87db616d17a2f00eb
Author: Amy Liffey  gentoo  org>
AuthorDate: Sun Aug  5 15:34:43 2018 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Sun Aug  5 15:37:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0553c73e

sci-geosciences/merkaartor: fix plugins path

Closes: https://bugs.gentoo.org/621826
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 .../merkaartor-0.18.3-sharedir-pluginsdir.patch| 28 +++
 .../merkaartor/merkaartor-0.18.3-r3.ebuild | 91 ++
 2 files changed, 119 insertions(+)

diff --git 
a/sci-geosciences/merkaartor/files/merkaartor-0.18.3-sharedir-pluginsdir.patch 
b/sci-geosciences/merkaartor/files/merkaartor-0.18.3-sharedir-pluginsdir.patch
new file mode 100644
index 000..46f5964e17c
--- /dev/null
+++ 
b/sci-geosciences/merkaartor/files/merkaartor-0.18.3-sharedir-pluginsdir.patch
@@ -0,0 +1,28 @@
+--- a/src/src.pro  2018-08-05 13:25:02.761849538 +0100
 b/src/src.pro  2018-08-05 13:25:55.935846789 +0100
+@@ -155,8 +155,10 @@
+ isEmpty( LIBDIR ) {
+ LIBDIR = $${PREFIX}/lib${LIB_SUFFIX}
+ }
+-
+-DEFINES += PLUGINS_DIR=$${LIBDIR}/merkaartor/plugins
++isEmpty( PLUGINS_DIR ){
++  PLUGINS_DIR=$${LIBDIR}/merkaartor/plugins
++}
++DEFINES += PLUGINS_DIR=$${PLUGINS_DIR}
+ 
+ target.path = $${PREFIX}/bin
+ SHARE_DIR = $${PREFIX}/share/merkaartor
+
+--- a/src/src.pro  2018-08-05 16:20:33.759305219 +0100
 b/src/src.pro  2018-08-05 16:20:53.094304220 +0100
+@@ -181,7 +181,7 @@
+ 
+ 
+ 
+-DEFINES += SHARE_DIR=$${SHARE_DIR}
++DEFINES += SHARE_DIR=$${SHARE_DIR_PATH}
+ INSTALLS += target
+ 
+ win32-msvc* {
+

diff --git a/sci-geosciences/merkaartor/merkaartor-0.18.3-r3.ebuild 
b/sci-geosciences/merkaartor/merkaartor-0.18.3-r3.ebuild
new file mode 100644
index 000..19e627bdad4
--- /dev/null
+++ b/sci-geosciences/merkaartor/merkaartor-0.18.3-r3.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar cs de en es et fr hr hu id_ID it ja nl pl pt_BR pt ru sk sv uk vi 
zh_CN zh_TW"
+
+inherit gnome2-utils l10n qmake-utils xdg-utils
+
+DESCRIPTION="Qt based map editor for the openstreetmap.org project"
+HOMEPAGE="http://www.merkaartor.be https://github.com/openstreetmap/merkaartor;
+SRC_URI="https://github.com/openstreetmap/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug exif gps libproxy"
+
+RDEPEND="
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwebkit:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   dev-qt/qtsingleapplication[X,qt5(+)]
+   >=sci-libs/gdal-1.6.0
+   >=sci-libs/proj-4.6
+   sys-libs/zlib
+   exif? ( media-gfx/exiv2:= )
+   gps? ( >=sci-geosciences/gpsd-3.17-r2 )
+   libproxy? ( net-libs/libproxy )
+"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
+   virtual/pkgconfig
+"
+PATCHES=( "${FILESDIR}/${P}-sharedir-pluginsdir.patch" ) # bug 621826
+DOCS=( AUTHORS CHANGELOG )
+
+src_prepare() {
+   default
+
+   my_rm_loc() {
+   sed -i -e "s:../translations/${PN}_${1}.\(ts\|qm\)::" 
src/src.pro || die
+   rm "translations/${PN}_${1}.ts" || die
+   }
+
+   if [[ -n "$(l10n_get_locales)" ]]; then
+   l10n_for_each_disabled_locale_do my_rm_loc
+   $(qt5_get_bindir)/lrelease src/src.pro || die
+   fi
+
+   # build system expects to be building from git
+   sed -i "${S}"/src/Config.pri -e "s:SION = .*:SION = \"${PV}\":g" || die
+}
+
+src_configure() {
+   # TRANSDIR_SYSTEM is for bug #385671
+   eqmake5 \
+   PREFIX="${ED%/}/usr" \
+   LIBDIR="${ED%/}/usr/$(get_libdir)" \
+   PLUGINS_DIR="/usr/$(get_libdir)/plugins" \
+   SHARE_DIR_PATH="/usr/share/${PN}" \
+   TRANSDIR_MERKAARTOR="${ED%/}/usr/share/${PN}/translations" \
+   TRANSDIR_SYSTEM="${EPREFIX}/usr/share/qt5/translations" \
+   SYSTEM_QTSA=1 \
+   RELEASE=1 \
+   NODEBUG="$(usex debug '0' '1')" \
+   GEOIMAGE="$(usex exif '1' '0')" \
+   GPSDLIB="$(usex gps '1' '0')" \
+   LIBPROXY="$(usex libproxy '1' '0')" \
+   ZBAR=0 \
+   Merkaartor.pro
+}
+
+pkg_preinst() {
+   gnome2_icon_savelist
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   gnome2_icon_cache_update
+}



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

2018-08-05 Thread Amy Liffey
commit: df9c050629bdfd591ad676df5f9d968c8f6716b6
Author: Amy Liffey  gentoo  org>
AuthorDate: Sun Aug  5 16:18:07 2018 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Sun Aug  5 16:19:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df9c0506

dev-python/serverfiles: Initial commit dep for Orange

Bug: https://bugs.gentoo.org/661018
Suggested-by: Nils Freydank  posteo.de>
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/serverfiles/Manifest |  1 +
 dev-python/serverfiles/metadata.xml |  7 +++
 dev-python/serverfiles/serverfiles-0.2.1.ebuild | 26 +
 3 files changed, 34 insertions(+)

diff --git a/dev-python/serverfiles/Manifest b/dev-python/serverfiles/Manifest
new file mode 100644
index 000..82de8390c5f
--- /dev/null
+++ b/dev-python/serverfiles/Manifest
@@ -0,0 +1 @@
+DIST serverfiles-0.2.1.tar.gz 10506 BLAKE2B 
b653248261f05b20fa65a566e29065e97679383e44d3e8c05d10d1601376de2c39e1690a7ec1b1b3c680f407086294ea0769e030702fd01bff8833cc32889b8e
 SHA512 
80512dfd8381f12aa143a88fb656bc7dca99fbc3c07a0b6cd9c7be8477de984a5121ffdb2f4cfe0f2150b83100b68ee478cfa7f26ea2f29e4a6fb7fe4eb0c18e

diff --git a/dev-python/serverfiles/metadata.xml 
b/dev-python/serverfiles/metadata.xml
new file mode 100644
index 000..007aaf442ea
--- /dev/null
+++ b/dev-python/serverfiles/metadata.xml
@@ -0,0 +1,7 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   amy...@gentoo.org
+
+

diff --git a/dev-python/serverfiles/serverfiles-0.2.1.ebuild 
b/dev-python/serverfiles/serverfiles-0.2.1.ebuild
new file mode 100644
index 000..5c126357093
--- /dev/null
+++ b/dev-python/serverfiles/serverfiles-0.2.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6})
+inherit distutils-r1
+
+DESCRIPTION="Utility for accessing HTTP server and storing files locally for 
reuse"
+HOMEPAGE="https://github.com/biolab/serverfiles;
+SRC_URI="https://github.com/biolab/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=">=dev-python/requests-2.11.1[${PYTHON_USEDEP}]"
+DEPEND="${DEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_test(){
+   py.test -v || die "Tests fail with ${EPYTHON}"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ros/image_transport/

2018-08-05 Thread Alexis Ballier
commit: 3fa715f41a99b7bbe4cd75af936647fc31e5897a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Aug  5 16:56:48 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Aug  5 16:57:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fa715f4

dev-ros/image_transport: add := dep on class loader

Package-Manager: Portage-2.3.44, Repoman-2.3.10

 ...e_transport-1.11.13-r1.ebuild => image_transport-1.11.13-r2.ebuild} | 3 ++-
 dev-ros/image_transport/image_transport-.ebuild| 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-ros/image_transport/image_transport-1.11.13-r1.ebuild 
b/dev-ros/image_transport/image_transport-1.11.13-r2.ebuild
similarity index 89%
rename from dev-ros/image_transport/image_transport-1.11.13-r1.ebuild
rename to dev-ros/image_transport/image_transport-1.11.13-r2.ebuild
index d77bc019e97..2be6354ffbb 100644
--- a/dev-ros/image_transport/image_transport-1.11.13-r1.ebuild
+++ b/dev-ros/image_transport/image_transport-1.11.13-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -23,5 +23,6 @@ RDEPEND="
dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
dev-libs/boost:=
dev-libs/console_bridge:=
+   dev-ros/class_loader:=
 "
 DEPEND="${RDEPEND}"

diff --git a/dev-ros/image_transport/image_transport-.ebuild 
b/dev-ros/image_transport/image_transport-.ebuild
index d77bc019e97..2be6354ffbb 100644
--- a/dev-ros/image_transport/image_transport-.ebuild
+++ b/dev-ros/image_transport/image_transport-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -23,5 +23,6 @@ RDEPEND="
dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
dev-libs/boost:=
dev-libs/console_bridge:=
+   dev-ros/class_loader:=
 "
 DEPEND="${RDEPEND}"



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

2018-08-05 Thread Amy Liffey
commit: 2a176db61970861ebd75e075d82ad1afdf1a9e27
Author: Amy Liffey  gentoo  org>
AuthorDate: Sun Aug  5 15:45:36 2018 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Sun Aug  5 15:45:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a176db6

dev-python/vdirsyncer: version bump 0.16.7

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/vdirsyncer/Manifest |  1 +
 dev-python/vdirsyncer/vdirsyncer-0.16.7.ebuild | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/dev-python/vdirsyncer/Manifest b/dev-python/vdirsyncer/Manifest
index a272504034e..a687685b9fa 100644
--- a/dev-python/vdirsyncer/Manifest
+++ b/dev-python/vdirsyncer/Manifest
@@ -1,3 +1,4 @@
 DIST vdirsyncer-0.16.3.tar.gz 113327 BLAKE2B 
9d293562962bb121b7dc48d7bd7585cd660fd368b70bd7a33d226cbef4a5a5135794d0a3e999202a40b710e7338fb55f5616680dcd4885832643565a3d9ed386
 SHA512 
8f71cc71527d68836405722b4be03695b9010f72729c1c9b6d016bcf6821628a26297ff2d3a45047910618d570566e00edefccc428d29ba9fc9033caddff
 DIST vdirsyncer-0.16.4.tar.gz 113368 BLAKE2B 
6d3419456cb16dd10b9af19f7912a2a1e95af6d45e8fb3898f40f3c140ad26023556dd579de236850056cc6b78ffcbb95a45cfb427dc48f5425d0a40863f7aca
 SHA512 
c01bf6bc5144629b82a3a60934fa6b89b0c24c55b09b98c54cba0a85d1e97f1c2ea157e159221ddfe4f11309cd5944eb2696ebc40b9d3ee95ea0801aa1eb9709
 DIST vdirsyncer-0.16.6.tar.gz 113249 BLAKE2B 
51b12631c1847d68c5e9839cf8a69d09941a96b2907683246bd200271d6cd49041cb104ed59d01040724d4423cf1695a11dcf28a59c5affbf5fb8aa314e73a8e
 SHA512 
b96467da4aeedbf6c582dfcc31cc6fbb88f8031e0e3c7c2fffc2e921cb927c6fcc937ac0da5ab74861bef34959dc05bd15208ec0380d83e727b3f55a5872404a
+DIST vdirsyncer-0.16.7.tar.gz 112786 BLAKE2B 
19b9ce6e3e9de0a626b9562b4d54b270c1532d93169fe2d872f15c6bf6e1ac94bc623c171e51e871082422116636b4945b58dd172cfca527a010906737f1b6a3
 SHA512 
218c6781139a9e979077308dc732756cc27ecb67966e4b52be31cb1ebf04d224443036102d5c4bad253b9dcf533939f0b72082166f0fe94e042a7e946b8fad0e

diff --git a/dev-python/vdirsyncer/vdirsyncer-0.16.7.ebuild 
b/dev-python/vdirsyncer/vdirsyncer-0.16.7.ebuild
new file mode 100644
index 000..4f92360de59
--- /dev/null
+++ b/dev-python/vdirsyncer/vdirsyncer-0.16.7.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="Synchronize calendars and contacts"
+HOMEPAGE="https://github.com/pimutils/vdirsyncer;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="test"
+
+RDEPEND=">=dev-python/click-5.0[${PYTHON_USEDEP}]
+   >=dev-python/click-log-0.3.0[${PYTHON_USEDEP}]
+   =dev-python/click-threading-0.2[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.4.1[${PYTHON_USEDEP}]
+   !=dev-python/requests-2.9.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-toolbelt-0.4.0[${PYTHON_USEDEP}]
+   >=dev-python/atomicwrites-0.1.7[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/hypothesis-3.1[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-localserver[${PYTHON_USEDEP}]
+   dev-python/pytest-subtesthack[${PYTHON_USEDEP}]
+   )"
+
+DOCS=( AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst README.rst config.example )
+
+python_test() {
+   # skip tests needing servers running
+   local -x DAV_SERVER=skip
+   local -x REMOTESTORAGE_SERVER=skip
+   # pytest dies hard if the envvars do not have any value...
+   local -x CI=false
+   local -x DETERMINISTIC_TESTS=false
+   py.test -v || die "Tests fail with ${EPYTHON}"
+}



  1   2   >