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

2018-07-26 Thread Hans de Graaff
commit: 9221190bb5a3bd25e72facd428384abf98e9cf9f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul 27 04:25:57 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul 27 05:22:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9221190b

app-misc/sphinx: cleanup

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-misc/sphinx/Manifest |   2 -
 app-misc/sphinx/sphinx-2.0.10.ebuild | 103 ---
 2 files changed, 105 deletions(-)

diff --git a/app-misc/sphinx/Manifest b/app-misc/sphinx/Manifest
index 2e5519e7a36..311a7412d3d 100644
--- a/app-misc/sphinx/Manifest
+++ b/app-misc/sphinx/Manifest
@@ -1,4 +1,2 @@
-DIST libstemmer_c-20091122.tgz 129207 BLAKE2B 
8ebf49f4d2b7dd5d0e56e5a032f16e807cc7c400b4c4a0e73601ace17908b441789ceca87c0258c17b4201b43751df5fad890fecc3a1aaeba60f83c80beecf32
 SHA512 
d1b2203dcc3d0f421526d3ec2f7e04889f93221222efe50501b4a1c7e74dfc51905141d4ada5a76feab5cec8dbc64f55dd55b53f6e89f658c67e72dc6667091d
-DIST sphinx-2.0.10-release.tar.gz 2016687 BLAKE2B 
176a14c2e1ecc859f5499eab2b2ee9cb9047ec6d07b407c0dbd3a405a9ca6198e1480166a245f7f523e3c3555bf8fe7ad7f0733bce5371f1b35ce6894dfafa6c
 SHA512 
d22a0ce261cd6decda2e9e91fc9806699c818bb45a9c9c5e11a0944a698d47b5862c577eb55e7b57dd208db982e7f8bfc7163af37aaedc1c537841aff1409952
 DIST sphinx-2.1.9-release.tar.gz 2443797 BLAKE2B 
d741d0bc915ece01c3ddcbfacd44f34ef5d772d2bdf07aecb3a704dc0c5ef551e9d3829af200b1c96e41be2a037552c28a83647af78e827d7a9627f1d9d536a8
 SHA512 
7f4538011db5d68bd00c00978d476f780fc2d355113bd2819996bacbaef90b0de5b14c946a9aad83157b818d9b6b01ee0a26bc72862cfd151067ad9967c18f56
 DIST sphinx-2.2.11-release.tar.gz 3061998 BLAKE2B 
63abdf3d08046ebafcdfd67d3445325b9b127e4dd66ba9d36b3b7053ba80f1f3308b74fd1e01caae6174850e1db22c743454894584bad4a4bec78d533a002668
 SHA512 
cf1a262a5b0fbf0bd2827ec6ec629edeaf709ce855a6e7b509b65342baaeb26c02717ca63f1578d32c83d21e2fd6d1e92dceb34660e6351b93cd96fd4e623689

diff --git a/app-misc/sphinx/sphinx-2.0.10.ebuild 
b/app-misc/sphinx/sphinx-2.0.10.ebuild
deleted file mode 100644
index b33e16db846..000
--- a/app-misc/sphinx/sphinx-2.0.10.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-WANT_AUTOMAKE=1.15
-
-inherit eutils autotools toolchain-funcs
-
-#MY_P=${P/_/-}
-MY_P=${P}-release
-
-# This has been added by Gentoo, to explicitly version libstemmer.
-# It is the date that http://snowball.tartarus.org/dist/libstemmer_c.tgz was
-# fetched.
-STEMMER_PV="20091122"
-DESCRIPTION="Full-text search engine with support for MySQL and PostgreSQL"
-HOMEPAGE="http://www.sphinxsearch.com/;
-SRC_URI="http://sphinxsearch.com/files/${MY_P}.tar.gz
-   stemmer? ( mirror://gentoo/libstemmer_c-${STEMMER_PV}.tgz )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 
~amd64-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
-IUSE="debug id64 mysql odbc postgres stemmer test"
-
-RDEPEND="mysql? ( virtual/mysql )
-   postgres? ( dev-db/postgresql:* )
-   odbc? ( dev-db/unixODBC )
-   virtual/libiconv"
-DEPEND="${RDEPEND}
-   test? ( dev-lang/php )"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
-   unpack ${MY_P}.tar.gz
-   if use stemmer; then
-   cd "${S}"
-   unpack libstemmer_c-${STEMMER_PV}.tgz
-   fi
-}
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-2.0.1_beta-darwin8.patch
-
-   # drop nasty hardcoded search path breaking Prefix
-   # We patch configure directly since otherwise we need to run
-   # eautoreconf twice and that causes problems, bug 425380
-   sed -i -e 's/\/usr\/local\//\/someplace\/nonexisting\//g' configure || 
die
-
-   # Fix QA compilation warnings.
-   sed -i -e '19i#include ' api/libsphinxclient/test.c || die
-
-   pushd api/libsphinxclient || die
-   eautoreconf
-   popd || die
-}
-
-src_configure() {
-   # fix libiconv detection
-   use !elibc_glibc && export ac_cv_search_iconv=-liconv
-
-   econf \
-   --sysconfdir="${EPREFIX}/etc/${PN}" \
-   $(use_enable id64) \
-   $(use_with debug) \
-   $(use_with mysql) \
-   $(use_with odbc unixodbc) \
-   $(use_with postgres pgsql) \
-   $(use_with stemmer libstemmer)
-
-   cd api/libsphinxclient || die
-   econf STRIP=:
-}
-
-src_compile() {
-   emake AR="$(tc-getAR)" || die "emake failed"
-
-   emake -j 1 -C api/libsphinxclient || die "emake libsphinxclient failed"
-}
-
-src_test() {
-   elog "Tests require access to a live MySQL database and may require 
configuration."
-   elog "You will find them in /usr/share/${PN}/test and they require 
dev-lang/php"
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die "install failed"
-   emake DESTDIR="${D}" -C 

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

2018-07-26 Thread Hans de Graaff
commit: 5a1fde69591c721fad86009bda19acbceb5f449f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul 27 05:20:42 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul 27 05:22:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a1fde69

dev-ruby/mysql2: add mariadb and mysql USE flag

Compile against the mysql or mariadb C Connectors.
Add mariadb and mysql USE flags to determine which connector is used.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/mysql2/metadata.xml|  3 +++
 dev-ruby/mysql2/mysql2-0.4.10-r1.ebuild | 44 +
 dev-ruby/mysql2/mysql2-0.5.2-r1.ebuild  | 44 +
 3 files changed, 91 insertions(+)

diff --git a/dev-ruby/mysql2/metadata.xml b/dev-ruby/mysql2/metadata.xml
index 91fbcba571b..9ee135bb6b8 100644
--- a/dev-ruby/mysql2/metadata.xml
+++ b/dev-ruby/mysql2/metadata.xml
@@ -8,4 +8,7 @@
   
 brianmario/mysql2
   
+  
+Use mariadb bindings
+  
 

diff --git a/dev-ruby/mysql2/mysql2-0.4.10-r1.ebuild 
b/dev-ruby/mysql2/mysql2-0.4.10-r1.ebuild
new file mode 100644
index 000..0c94423e474
--- /dev/null
+++ b/dev-ruby/mysql2/mysql2-0.4.10-r1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+# Tests require a live MySQL database but should all pass.
+RUBY_FAKEGEM_TASK_TEST=""
+
+RUBY_FAKEGEM_TASK_DOC=""
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="A modern, simple and very fast Mysql library for Ruby - binding 
to libmysql"
+HOMEPAGE="https://github.com/brianmario/mysql2;
+
+LICENSE="MIT"
+SLOT="0.4"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86"
+IUSE="mysql mariadb"
+REQUIRED_USE="mysql? ( !mariadb ) mariadb? ( !mysql )"
+
+MDEPEND="mysql? ( dev-db/mysql-connector-c ) mariadb? ( 
dev-db/mariadb-connector-c )"
+DEPEND="${DEPEND} ${MDEPEND}"
+RDEPEND="${RDEPEND} ${MDEPEND}"
+
+each_ruby_configure() {
+   local config
+   if use mysql ; then
+   config="${EPREFIX}/usr/bin/mysql_config"
+   fi
+   if use mariadb ; then
+   config="${EPREFIX}/usr/bin/mariadb_config"
+   fi
+
+   ${RUBY} -Cext/mysql2 extconf.rb --with-mysql-config=${config} || die
+}
+
+each_ruby_compile() {
+   emake V=1 -Cext/mysql2
+   cp ext/mysql2/mysql2$(get_modname) lib/mysql2/ || die
+}

diff --git a/dev-ruby/mysql2/mysql2-0.5.2-r1.ebuild 
b/dev-ruby/mysql2/mysql2-0.5.2-r1.ebuild
new file mode 100644
index 000..3772cc9b80f
--- /dev/null
+++ b/dev-ruby/mysql2/mysql2-0.5.2-r1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+# Tests require a live MySQL database but should all pass.
+RUBY_FAKEGEM_TASK_TEST=""
+
+RUBY_FAKEGEM_TASK_DOC=""
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="A modern, simple and very fast Mysql library for Ruby - binding 
to libmysql"
+HOMEPAGE="https://github.com/brianmario/mysql2;
+
+LICENSE="MIT"
+SLOT="0.5"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86"
+IUSE="mysql mariadb"
+REQUIRED_USE="mysql? ( !mariadb ) mariadb? ( !mysql )"
+
+MDEPEND="mysql? ( dev-db/mysql-connector-c ) mariadb? ( 
dev-db/mariadb-connector-c )"
+DEPEND="${DEPEND} ${MDEPEND}"
+RDEPEND="${RDEPEND} ${MDEPEND}"
+
+each_ruby_configure() {
+   local config
+   if use mysql ; then
+   config="${EPREFIX}/usr/bin/mysql_config"
+   fi
+   if use mariadb ; then
+   config="${EPREFIX}/usr/bin/mariadb_config"
+   fi
+
+   ${RUBY} -Cext/mysql2 extconf.rb --with-mysql-config="${config}" || die
+}
+
+each_ruby_compile() {
+   emake V=1 -Cext/mysql2
+   cp ext/mysql2/mysql2$(get_modname) lib/mysql2/ || die
+}



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

2018-07-26 Thread Hans de Graaff
commit: 8226d9c021c5eecd2845f40bea31ba3ccd7dc82c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul 27 05:22:10 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul 27 05:22:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8226d9c0

dev-ruby/mysql2: fix REQUIRED_USE

One of mariadb or mysql must be selected.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/mysql2/mysql2-0.4.10-r1.ebuild | 2 +-
 dev-ruby/mysql2/mysql2-0.5.2-r1.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/mysql2/mysql2-0.4.10-r1.ebuild 
b/dev-ruby/mysql2/mysql2-0.4.10-r1.ebuild
index 0c94423e474..bdeffdfd19b 100644
--- a/dev-ruby/mysql2/mysql2-0.4.10-r1.ebuild
+++ b/dev-ruby/mysql2/mysql2-0.4.10-r1.ebuild
@@ -20,7 +20,7 @@ LICENSE="MIT"
 SLOT="0.4"
 KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86"
 IUSE="mysql mariadb"
-REQUIRED_USE="mysql? ( !mariadb ) mariadb? ( !mysql )"
+REQUIRED_USE="^^ ( mariadb mysql )"
 
 MDEPEND="mysql? ( dev-db/mysql-connector-c ) mariadb? ( 
dev-db/mariadb-connector-c )"
 DEPEND="${DEPEND} ${MDEPEND}"

diff --git a/dev-ruby/mysql2/mysql2-0.5.2-r1.ebuild 
b/dev-ruby/mysql2/mysql2-0.5.2-r1.ebuild
index 3772cc9b80f..a0b5b7bc3cc 100644
--- a/dev-ruby/mysql2/mysql2-0.5.2-r1.ebuild
+++ b/dev-ruby/mysql2/mysql2-0.5.2-r1.ebuild
@@ -20,7 +20,7 @@ LICENSE="MIT"
 SLOT="0.5"
 KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86"
 IUSE="mysql mariadb"
-REQUIRED_USE="mysql? ( !mariadb ) mariadb? ( !mysql )"
+REQUIRED_USE="^^ ( mariadb mysql )"
 
 MDEPEND="mysql? ( dev-db/mysql-connector-c ) mariadb? ( 
dev-db/mariadb-connector-c )"
 DEPEND="${DEPEND} ${MDEPEND}"



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

2018-07-26 Thread Hans de Graaff
commit: 02951365a6fbefd3f05f64a8929c1588ff15d0e2
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul 27 05:06:02 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul 27 05:22:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02951365

app-misc/sphinx: add mariadb USE flag

Update mysql dependency to use mysql-connector-c and add USE flag for
mariadb to use mariadb-connector-c. These options are mutually
exclusive.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-misc/sphinx/metadata.xml|   1 +
 app-misc/sphinx/sphinx-2.2.11-r1.ebuild | 111 
 2 files changed, 112 insertions(+)

diff --git a/app-misc/sphinx/metadata.xml b/app-misc/sphinx/metadata.xml
index 80a8842e3c9..397dd2466c7 100644
--- a/app-misc/sphinx/metadata.xml
+++ b/app-misc/sphinx/metadata.xml
@@ -6,6 +6,7 @@
 
 
   use 64-bit document and word IDs
+  Add mariadb database support
   use the dev-libs/re2 regular expression 
library
   Enable language stemming support
 

diff --git a/app-misc/sphinx/sphinx-2.2.11-r1.ebuild 
b/app-misc/sphinx/sphinx-2.2.11-r1.ebuild
new file mode 100644
index 000..32f06578cd7
--- /dev/null
+++ b/app-misc/sphinx/sphinx-2.2.11-r1.ebuild
@@ -0,0 +1,111 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+WANT_AUTOMAKE=1.15
+
+inherit eutils autotools toolchain-funcs
+
+#MY_P=${P/_/-}
+MY_P=${P}-release
+
+DESCRIPTION="Full-text search engine with support for MySQL and PostgreSQL"
+HOMEPAGE="http://www.sphinxsearch.com/;
+SRC_URI="http://sphinxsearch.com/files/${MY_P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris"
+IUSE="debug +id64 mariadb mysql odbc postgres re2 stemmer syslog xml"
+
+REQUIRED_USE="mysql? ( !mariadb ) mariadb? ( !mysql )"
+
+RDEPEND="
+   mysql? ( dev-db/mysql-connector-c )
+   mariadb? ( dev-db/mariadb-connector-c )
+   postgres? ( dev-db/postgresql:* )
+   odbc? ( dev-db/unixODBC )
+   re2? ( dev-libs/re2 )
+   stemmer? ( dev-libs/snowball-stemmer )
+   xml? ( dev-libs/expat )
+   virtual/libiconv"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   epatch "${FILESDIR}"/${PN}-2.0.1_beta-darwin8.patch
+
+   # drop nasty hardcoded search path breaking Prefix
+   # We patch configure directly since otherwise we need to run
+   # eautoreconf twice and that causes problems, bug 425380
+   sed -i -e 's/\/usr\/local\//\/someplace\/nonexisting\//g' configure || 
die
+
+   if use mariadb ; then
+   sed -i -e 's/mysql_config/mariadb_config/g' configure || die
+   fi
+
+   # Fix QA compilation warnings.
+   sed -i -e '19i#include ' api/libsphinxclient/test.c || die
+
+   eapply_user
+
+   pushd api/libsphinxclient || die
+   eautoreconf
+   popd || die
+
+   # Drop bundled code to ensure building against system versions. We
+   # cannot remove libstemmer_c since configure updates its Makefile.
+   rm -rf libexpat libre2 || die
+}
+
+src_configure() {
+   # fix libiconv detection
+   use !elibc_glibc && export ac_cv_search_iconv=-liconv
+
+   local mysql_with
+   if use mysql || use mariadb ; then
+   mysql_with="--with-mysql"
+   else
+   mysql_with="--without-mysql"
+   fi
+
+   econf \
+   --sysconfdir="${EPREFIX}/etc/${PN}" \
+   $(use_enable id64) \
+   $(use_with debug) \
+   ${mysql_with} \
+   $(use_with odbc unixodbc) \
+   $(use_with postgres pgsql) \
+   $(use_with re2) \
+   $(use_with stemmer libstemmer) \
+   $(use_with syslog syslog) \
+   $(use_with xml libexpat )
+
+   cd api/libsphinxclient || die
+   econf STRIP=:
+}
+
+src_compile() {
+   emake AR="$(tc-getAR)" || die "emake failed"
+
+   emake -j 1 -C api/libsphinxclient || die "emake libsphinxclient failed"
+}
+
+src_test() {
+   # Tests require a live database and only work from the source
+   # directory.
+   :
+}
+
+src_install() {
+   emake DESTDIR="${D}" install || die "install failed"
+   emake DESTDIR="${D}" -C api/libsphinxclient install || die "install 
libsphinxclient failed"
+
+   dodoc doc/*
+
+   dodir /var/lib/sphinx
+   dodir /var/log/sphinx
+
+   newinitd "${FILESDIR}"/searchd.rc searchd
+}



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

2018-07-26 Thread Erik Mackdanz
commit: 57bee163877d8acafed493cc57cd05a656e915f1
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Fri Jul 27 03:56:47 2018 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Fri Jul 27 03:56:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57bee163

app-emulation/lxd: Stabilize 3.2

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-emulation/lxd/lxd-3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/lxd/lxd-3.2.ebuild b/app-emulation/lxd/lxd-3.2.ebuild
index 1f0f3db33a2..473f52df537 100644
--- a/app-emulation/lxd/lxd-3.2.ebuild
+++ b/app-emulation/lxd/lxd-3.2.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://linuxcontainers.org/lxd/introduction/;
 
 LICENSE="Apache-2.0 BSD BSD-2 LGPL-3 MIT MPL-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 IUSE="+daemon +ipv6 +dnsmasq nls test"
 



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

2018-07-26 Thread Erik Mackdanz
commit: 28d082d1f7a366675651059f7b878afd78f1c67c
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Thu Jul 26 22:22:53 2018 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Thu Jul 26 22:22:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28d082d1

app-emulation/lxd: Bump to 3.3

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-emulation/lxd/Manifest   |   1 +
 app-emulation/lxd/lxd-3.3.ebuild | 183 +++
 2 files changed, 184 insertions(+)

diff --git a/app-emulation/lxd/Manifest b/app-emulation/lxd/Manifest
index e4d4728dc2a..a59667370be 100644
--- a/app-emulation/lxd/Manifest
+++ b/app-emulation/lxd/Manifest
@@ -44,3 +44,4 @@ DIST 
github.com-syndtr-gocapability-db04d3cc01c8b54962a58ec7e491717d06cfcc16.tar
 DIST lxd-2.21.tar.gz 882352 BLAKE2B 
80542bcc03c05667ee0207dfbfd2bf41c5a6ef69178aec06ad62fe3521ed012ed9b82c68c0254e0299e8e1dfd274a0622f32bde730480a950ab6ba15ddae5f4b
 SHA512 
9a8ec3a97e4c861a80311dbdecbf5a485c0af85d6ba6b20680ca17e6ac877de3f27cfdcf0a111ba0db2b7c562dfe2f41336b562b7c13350c4543505b3c17357e
 DIST lxd-3.1.tar.gz 27979442 BLAKE2B 
0b74e3f76a7ab835b042b52b469a6fe11e7077d567e0658d13fab2192fd25d99518d65ba319c981a2e4677319e280cccae26f70ef99e9911264dc028ca5628fd
 SHA512 
61f64d08dd80f7f676f386912f4dfc0d0af38cce0287de7865123b9da667b54ab91d22b76ffe03480e04ae0fbd8dc837d7d519d0e34409377c3d7e6624bf636c
 DIST lxd-3.2.tar.gz 28183660 BLAKE2B 
9aabc9fd0bd66d3b4e0178448a65ca39c69e4e7a14d01309e0e023501de1c17b2b7887a9da5b84fcfde27db3f521cce3451beace9955232da9bd5e5136bc0043
 SHA512 
82c37e87d75e328a29b1f2876a24fedec43a253bb72f3ea55fa9cdb928d11947eda723a01e758f90ef77ed4492f86ec6dd5f1f88240d05e771d926dfdc9888fb
+DIST lxd-3.3.tar.gz 28414680 BLAKE2B 
7f3eecf400761548935e6e3c81d894379cd667ffbe6d8ef67a7dd3ad4f1c13846f524fcefc4cdc306674fb990706bda0b2c4ef390f320c41561fa86cf610586c
 SHA512 
ed5d792c1080f2be7f48f34051fbfa28d138b4ccb5405edb13cd630776ec34312da491a1881f77dddbe1a121e589b44952e73ce1e61f2cba72243f3b8f4c0177

diff --git a/app-emulation/lxd/lxd-3.3.ebuild b/app-emulation/lxd/lxd-3.3.ebuild
new file mode 100644
index 000..16a412be6a9
--- /dev/null
+++ b/app-emulation/lxd/lxd-3.3.ebuild
@@ -0,0 +1,183 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Fast, dense and secure container management"
+HOMEPAGE="https://linuxcontainers.org/lxd/introduction/;
+
+LICENSE="Apache-2.0 BSD BSD-2 LGPL-3 MIT MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="+daemon +ipv6 +dnsmasq nls test"
+
+inherit bash-completion-r1 linux-info systemd user
+
+SRC_URI="https://linuxcontainers.org/downloads/${PN}/${P}.tar.gz;
+
+DEPEND="
+   >=dev-lang/go-1.9.4
+   dev-libs/protobuf
+   nls? ( sys-devel/gettext )
+   test? (
+   app-misc/jq
+   net-misc/curl
+   sys-devel/gettext
+   )
+"
+
+RDEPEND="
+   daemon? (
+   app-arch/xz-utils
+   >=app-emulation/lxc-2.0.7[seccomp]
+   dnsmasq? (
+   net-dns/dnsmasq[dhcp,ipv6?]
+   )
+   net-misc/rsync[xattr]
+   sys-apps/iproute2[ipv6?]
+   sys-fs/squashfs-tools
+   virtual/acl
+   )
+"
+
+CONFIG_CHECK="
+   ~BRIDGE
+   ~DUMMY
+   ~IP6_NF_NAT
+   ~IP6_NF_TARGET_MASQUERADE
+   ~IPV6
+   ~IP_NF_NAT
+   ~IP_NF_TARGET_MASQUERADE
+   ~MACVLAN
+   ~NETFILTER_XT_MATCH_COMMENT
+   ~NET_IPGRE
+   ~NET_IPGRE_DEMUX
+   ~NET_IPIP
+   ~NF_NAT_MASQUERADE_IPV4
+   ~NF_NAT_MASQUERADE_IPV6
+   ~VXLAN
+"
+
+ERROR_BRIDGE="BRIDGE: needed for network commands"
+ERROR_DUMMY="DUMMY: needed for network commands"
+ERROR_IP6_NF_NAT="IP6_NF_NAT: needed for network commands"
+ERROR_IP6_NF_TARGET_MASQUERADE="IP6_NF_TARGET_MASQUERADE: needed for network 
commands"
+ERROR_IPV6="IPV6: needed for network commands"
+ERROR_IP_NF_NAT="IP_NF_NAT: needed for network commands"
+ERROR_IP_NF_TARGET_MASQUERADE="IP_NF_TARGET_MASQUERADE: needed for network 
commands"
+ERROR_MACVLAN="MACVLAN: needed for network commands"
+ERROR_NETFILTER_XT_MATCH_COMMENT="NETFILTER_XT_MATCH_COMMENT: needed for 
network commands"
+ERROR_NET_IPGRE="NET_IPGRE: needed for network commands"
+ERROR_NET_IPGRE_DEMUX="NET_IPGRE_DEMUX: needed for network commands"
+ERROR_NET_IPIP="NET_IPIP: needed for network commands"
+ERROR_NF_NAT_MASQUERADE_IPV4="NF_NAT_MASQUERADE_IPV4: needed for network 
commands"
+ERROR_NF_NAT_MASQUERADE_IPV6="NF_NAT_MASQUERADE_IPV6: needed for network 
commands"
+ERROR_VXLAN="VXLAN: needed for network commands"
+
+EGO_PN="github.com/lxc/lxd"
+
+PATCHES=(
+   "${FILESDIR}/ja-translation-newline.patch"  # 
https://github.com/lxc/lxd/pull/4572
+   "${FILESDIR}/de-translation-newline.patch"
+)
+
+# LXD tarball is packaged with a nice "dist" folder containing all dependencies
+# that were vendored by upstream at release 

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

2018-07-26 Thread Hans de Graaff
commit: b131ecc1536836398ec9f88718eda6a329130280
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul 27 03:02:26 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul 27 03:02:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b131ecc1

dev-ruby/pcaprub: add 0.13.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/pcaprub/Manifest  |  1 +
 dev-ruby/pcaprub/pcaprub-0.13.0.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-ruby/pcaprub/Manifest b/dev-ruby/pcaprub/Manifest
index 2cee5c2f368..8983ed69ca5 100644
--- a/dev-ruby/pcaprub/Manifest
+++ b/dev-ruby/pcaprub/Manifest
@@ -1 +1,2 @@
 DIST pcaprub-0.12.4.gem 36864 BLAKE2B 
c2e86624431cc758059a997ebae716adb1d7de74ba62a375787608f6c68f7b85a614ec5859e251724475e1b68e8e90108f408a2e833f896461a95bda04d4d9ad
 SHA512 
707221429dcdf95eba24076589054dd022ba8a479148c3ec8ce9667016225ee64bed13d3fdf8ebd46027244feec8e77a484c67f040d0439bfa44d9212997645b
+DIST pcaprub-0.13.0.gem 36864 BLAKE2B 
0a0ca07da261de2e8bd7aaa131bbda9f6ee3cd5eb5fa214c552179c707d20345bcedc8db5d49590e69c41220e69f93a6d9f0b1c1b6f768c25ab648d50dead388
 SHA512 
606cca317194582a50ac89769d11ba802a9658c67f707e342b3c345bcaab26fba5ca2dc245a39eeb01f9ff6fdde1ae64a3a1ee4dd0e5243bae2ebed37e5f

diff --git a/dev-ruby/pcaprub/pcaprub-0.13.0.ebuild 
b/dev-ruby/pcaprub/pcaprub-0.13.0.ebuild
new file mode 100644
index 000..d85148c26b6
--- /dev/null
+++ b/dev-ruby/pcaprub/pcaprub-0.13.0.ebuild
@@ -0,0 +1,33 @@
+# 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_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="FAQ.rdoc README.rdoc USAGE.rdoc"
+
+inherit multilib ruby-fakegem eapi7-ver
+
+DESCRIPTION="Libpcap bindings for ruby compat"
+HOMEPAGE="https://rubygems.org/gems/pcaprub;
+
+LICENSE="LGPL-2.1"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~x86"
+
+DEPEND+="net-libs/libpcap"
+RDEPEND+="net-libs/libpcap"
+
+# Tests require live access to a network device as root.
+RESTRICT="test"
+
+each_ruby_configure() {
+   ${RUBY} -Cext/pcaprub_c extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -C ext/pcaprub_c V=1
+   cp ext/pcaprub_c/pcaprub_c$(get_modname) lib || die
+}



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

2018-07-26 Thread Virgil Dupras
commit: 28ecfa178296c73f33305ece57d51346cf70b89f
Author: Virgil Dupras  gentoo  org>
AuthorDate: Fri Jul 27 02:45:39 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Fri Jul 27 02:58:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28ecfa17

dev-python/pillow: Add support for Python 3.7

* Remove spurious eutils inherit
* Add myself as primary maintainer

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

 dev-python/pillow/metadata.xml|  4 
 dev-python/pillow/pillow-5.2.0.ebuild | 13 +++--
 2 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/dev-python/pillow/metadata.xml b/dev-python/pillow/metadata.xml
index c3f74b98266..27028145609 100644
--- a/dev-python/pillow/metadata.xml
+++ b/dev-python/pillow/metadata.xml
@@ -1,6 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+  
+vdup...@gentoo.org
+Virgil Dupras
+  
   
 pyt...@gentoo.org
 Python

diff --git a/dev-python/pillow/pillow-5.2.0.ebuild 
b/dev-python/pillow/pillow-5.2.0.ebuild
index 1476c3915c5..b63542786fe 100644
--- a/dev-python/pillow/pillow-5.2.0.ebuild
+++ b/dev-python/pillow/pillow-5.2.0.ebuild
@@ -3,10 +3,10 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
 PYTHON_REQ_USE='tk?,threads(+)'
 
-inherit distutils-r1 eutils virtualx
+inherit distutils-r1 virtualx
 
 MY_PN=Pillow
 MY_P=${MY_PN}-${PV}
@@ -64,6 +64,15 @@ python_configure_all() {
)
 }
 
+python_compile() {
+   # Pillow monkeypatches distutils to achieve parallel compilation. This
+   # conflicts with distutils' builtin parallel computation (since py35)
+   # and make builds hang. To avoid that, we set MAX_CONCURRENCY=1 to
+   # disable monkeypatching. Can be removed when/if
+   # https://github.com/python-pillow/Pillow/pull/3272 is merged.
+   MAX_CONCURRENCY=1 distutils-r1_python_compile
+}
+
 python_compile_all() {
use doc && emake -C docs html
 }



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

2018-07-26 Thread Virgil Dupras
commit: 1849bbe7d01f7bc9fb0fa115d5d63deaebb23c33
Author: Virgil Dupras  gentoo  org>
AuthorDate: Fri Jul 27 02:58:03 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Fri Jul 27 02:58:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1849bbe7

dev-python/pillow: fix link warnings

Apply patch to remove spurious /usr/lib prepend to linking flags that
generates linking warnings in certain situations.

Reported-By: Alexander Tsoy
Closes: https://bugs.gentoo.org/661830
Package-Manager: Portage-2.3.43, Repoman-2.3.10

 dev-python/pillow/files/pillow-5.2.0-no-usr-lib.patch | 12 
 dev-python/pillow/pillow-5.2.0.ebuild |  4 
 2 files changed, 16 insertions(+)

diff --git a/dev-python/pillow/files/pillow-5.2.0-no-usr-lib.patch 
b/dev-python/pillow/files/pillow-5.2.0-no-usr-lib.patch
new file mode 100644
index 000..4b6cc50eaf5
--- /dev/null
+++ b/dev-python/pillow/files/pillow-5.2.0-no-usr-lib.patch
@@ -0,0 +1,12 @@
+--- a/setup.py 2018-07-22 22:09:23.840195059 +0300
 a/setup.py 2018-07-22 22:11:43.400626135 +0300
+@@ -258,9 +258,8 @@ 
+ _add_directory(library_dirs, d)
+ 
+ prefix = sysconfig.get_config_var("prefix")
+ if prefix:
+-_add_directory(library_dirs, os.path.join(prefix, "lib"))
+ _add_directory(include_dirs, os.path.join(prefix, "include"))
+ 
+ #
+ # add platform directories

diff --git a/dev-python/pillow/pillow-5.2.0.ebuild 
b/dev-python/pillow/pillow-5.2.0.ebuild
index b63542786fe..8e603d65c53 100644
--- a/dev-python/pillow/pillow-5.2.0.ebuild
+++ b/dev-python/pillow/pillow-5.2.0.ebuild
@@ -46,6 +46,10 @@ DEPEND="${RDEPEND}
 
 S="${WORKDIR}/${MY_P}"
 
+PATCHES=(
+   "${FILESDIR}/${PN}-5.2.0-no-usr-lib.patch"
+)
+
 python_configure_all() {
# It's important that these flags are also passed during the install 
phase
# as well. Make sure of that if you change the lines below. See bug 
661308.



[gentoo-commits] repo/gentoo:master commit in: media-radio/qsstv/

2018-07-26 Thread Mikle Kolyada
commit: cf7f0bb6dfcdf11dbaa1b04c5a3e3ffb647ff519
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 27 02:30:31 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 27 02:30:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf7f0bb6

media-radio/qsstv: [QA] Drop needless eutils iherit

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-radio/qsstv/qsstv-9.2.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-radio/qsstv/qsstv-9.2.6.ebuild 
b/media-radio/qsstv/qsstv-9.2.6.ebuild
index 36ac9e91662..5d4268989ec 100644
--- a/media-radio/qsstv/qsstv-9.2.6.ebuild
+++ b/media-radio/qsstv/qsstv-9.2.6.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit eutils qmake-utils
+inherit qmake-utils
 
 MY_P=${P/-/_}
 



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

2018-07-26 Thread Matt Turner
commit: 18ba5016e869a5816db7fee3923a27d6814dee3f
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jul 27 01:07:04 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jul 27 01:33:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18ba5016

app-admin/pass-otp: Fix typo

 app-admin/pass-otp/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/pass-otp/metadata.xml b/app-admin/pass-otp/metadata.xml
index d585cca5c34..79d9aa05f77 100644
--- a/app-admin/pass-otp/metadata.xml
+++ b/app-admin/pass-otp/metadata.xml
@@ -13,7 +13,7 @@
 A pass extension for managing one-time-password (OTP) tokens.
 
 
-   Add support for qtcodes using 
media-gfx/qrencode
+   Add support for qrcodes using 
media-gfx/qrencode
 
 
tadfisher/pass-otp



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

2018-07-26 Thread Matt Turner
commit: 7fe4d88b1ccf31edb8b6f07fbbce1115fc1efcdb
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jul 27 01:28:24 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jul 27 01:33:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fe4d88b

app-admin/pass-otp: Version bump to 1.1.1

 app-admin/pass-otp/Manifest  |  1 +
 app-admin/pass-otp/pass-otp-1.1.1.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/app-admin/pass-otp/Manifest b/app-admin/pass-otp/Manifest
index b0d301d8e8f..ed870d00d72 100644
--- a/app-admin/pass-otp/Manifest
+++ b/app-admin/pass-otp/Manifest
@@ -1 +1,2 @@
 DIST pass-otp-1.1.0.tar.gz 32857 BLAKE2B 
97ca197b251d9748c0ace5b40aca2547cd278e9eee9768b8882cdfbb23bd440792101ab82d2ade276cfc34de1364460a066adc8395336380b1ef6759f51804eb
 SHA512 
3c880bcb7e7e984494796bc7a0c0fb5f70b052938f6ce5c0b1cbb745d0b30febab2ca51c264fac02f884699dc685400076f0065db0c3d08da436e93c27f075ce
+DIST pass-otp-1.1.1.tar.gz 46283 BLAKE2B 
d2448a82b67a685e9df366dbec29fd4a3cedea03b0218714b95d5bc2663ac86b3fa79a4bba5157b6948111aa7bf06d5d48e320d9fecf1b23e71ff73d3b65d861
 SHA512 
8dfaafac08aa17a4ee1ae34bb47d26ca337fe05b69be19a3bcb3521e033631fde9dd559481c1512500775186ca08e26a4589dfc76b4dac718f64a33819c9b5b6

diff --git a/app-admin/pass-otp/pass-otp-1.1.1.ebuild 
b/app-admin/pass-otp/pass-otp-1.1.1.ebuild
new file mode 100644
index 000..c4d4d19aa42
--- /dev/null
+++ b/app-admin/pass-otp/pass-otp-1.1.1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A pass extension for managing one-time-password (OTP) tokens."
+HOMEPAGE="https://github.com/tadfisher/pass-otp;
+SRC_URI="https://github.com/tadfisher/pass-otp/releases/download/v${PV}/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="qrcode test"
+
+DEPEND="test? ( dev-tcltk/expect:* )"
+
+RDEPEND=">=app-admin/pass-1.7
+   sys-auth/oath-toolkit
+   qrcode? ( media-gfx/qrencode )"
+
+src_compile() {
+   :
+}



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

2018-07-26 Thread Matt Turner
commit: 7e07310c51b0be7ced614d14b10df103658d0f49
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jul 27 01:05:37 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jul 27 01:33:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e07310c

app-admin/pass-otp: Fix license

 app-admin/pass-otp/pass-otp-1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/pass-otp/pass-otp-1.1.0.ebuild 
b/app-admin/pass-otp/pass-otp-1.1.0.ebuild
index 40e37ea6799..c314e589f5a 100644
--- a/app-admin/pass-otp/pass-otp-1.1.0.ebuild
+++ b/app-admin/pass-otp/pass-otp-1.1.0.ebuild
@@ -7,7 +7,7 @@ DESCRIPTION="A pass extension for managing one-time-password 
(OTP) tokens."
 HOMEPAGE="https://github.com/tadfisher/pass-otp;
 
SRC_URI="https://github.com/tadfisher/pass-otp/releases/download/v${PV}/${P}.tar.gz;
 
-LICENSE="GPL-3+"
+LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="qrcode test"



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

2018-07-26 Thread Benda XU
commit: 7df145403c61bfec4b4921b7e275e127b8877b37
Author: Benda Xu  gentoo  org>
AuthorDate: Sun Jul  8 14:48:16 2018 +
Commit: Benda XU  gentoo  org>
CommitDate: Fri Jul 27 00:06:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7df14540

eclass/udev.eclass: unconditional udevdir.

  The udevdir variable from pkg-config is prefixed, thus not suitable
  to be used here.

 eclass/udev.eclass | 8 +---
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/eclass/udev.eclass b/eclass/udev.eclass
index b7c6461dd8f..96c723317c9 100644
--- a/eclass/udev.eclass
+++ b/eclass/udev.eclass
@@ -44,13 +44,7 @@ DEPEND="virtual/pkgconfig"
 # @INTERNAL
 # @DESCRIPTION:
 # Get unprefixed udevdir.
-_udev_get_udevdir() {
-   if $($(tc-getPKG_CONFIG) --exists udev); then
-   echo "$($(tc-getPKG_CONFIG) --variable=udevdir udev)"
-   else
-   echo /lib/udev
-   fi
-}
+_udev_get_udevdir() { echo /lib/udev; }
 
 # @FUNCTION: udev_get_udevdir
 # @DESCRIPTION:



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

2018-07-26 Thread Mikle Kolyada
commit: 93ad12b81b953fb125220fdb7dad32ab0903aeeb
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 23:33:31 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 23:34:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93ad12b8

sys-apps/restartd: revision bump (EAPI=7)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-apps/restartd/restartd-0.2.2-r1.ebuild | 30 ++
 1 file changed, 30 insertions(+)

diff --git a/sys-apps/restartd/restartd-0.2.2-r1.ebuild 
b/sys-apps/restartd/restartd-0.2.2-r1.ebuild
new file mode 100644
index 000..dadb97c5f33
--- /dev/null
+++ b/sys-apps/restartd/restartd-0.2.2-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+MY_PV=${PV/_alpha/.a-}
+DESCRIPTION="A daemon for checking your running and not running processes"
+HOMEPAGE="https://packages.debian.org/unstable/utils/restartd;
+SRC_URI="mirror://debian/pool/main/r/restartd/${PN}_${MY_PV}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+src_prepare() {
+   default
+   sed -i Makefile -e 's|-o restartd|$(LDFLAGS) &|g' || die "sed Makefile"
+}
+
+src_compile() {
+   emake CC=$(tc-getCC) C_ARGS="${CFLAGS}"
+}
+
+src_install() {
+   dodir /etc /usr/sbin /usr/share/man/man8 /usr/share/man/fr/man8/
+   default
+}



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

2018-07-26 Thread Mikle Kolyada
commit: 2204826c6a2e2b3cd280edc76a8bcd32cafc6ab4
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 23:34:12 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 23:34:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2204826c

sys-apps/restartd: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-apps/restartd/restartd-0.2.2.ebuild | 29 -
 1 file changed, 29 deletions(-)

diff --git a/sys-apps/restartd/restartd-0.2.2.ebuild 
b/sys-apps/restartd/restartd-0.2.2.ebuild
deleted file mode 100644
index 1de6a97b5fd..000
--- a/sys-apps/restartd/restartd-0.2.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils toolchain-funcs
-
-MY_PV=${PV/_alpha/.a-}
-DESCRIPTION="A daemon for checking your running and not running processes"
-HOMEPAGE="http://packages.debian.org/unstable/utils/restartd;
-SRC_URI="mirror://debian/pool/main/r/restartd/${PN}_${MY_PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-
-src_prepare() {
-   sed -i Makefile -e 's|-o restartd|$(LDFLAGS) &|g' || die "sed Makefile"
-}
-
-src_compile() {
-   emake CC=$(tc-getCC) C_ARGS="${CFLAGS}" || die
-}
-
-src_install() {
-   dodir /etc /usr/sbin /usr/share/man/man8 /usr/share/man/fr/man8/
-   emake DESTDIR="${D}" install || die
-}



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

2018-07-26 Thread Rafael Martins
commit: 0419d576167bb36ef40b74eb1f7bba8bba1e
Author: Rafael G. Martins  gentoo  org>
AuthorDate: Thu Jul 26 22:59:02 2018 +
Commit: Rafael Martins  gentoo  org>
CommitDate: Thu Jul 26 22:59:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0419d576

app-text/blogc: version bump

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-text/blogc/Manifest  | 2 +-
 app-text/blogc/{blogc-0.13.10.ebuild => blogc-0.14.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/blogc/Manifest b/app-text/blogc/Manifest
index 084c79d5353..7cd57cb925a 100644
--- a/app-text/blogc/Manifest
+++ b/app-text/blogc/Manifest
@@ -1 +1 @@
-DIST blogc-0.13.10.tar.xz 319300 BLAKE2B 
884ab9f4a0a35d5aa6ac93274c495c87f57264d3fb7f3a2ea8bdaf42c6f8fa09d8821bee50a7d7afabdc8a4eccc757a61c94a06315dc54aa760d059327d2cdc5
 SHA512 
97dc05f559c267607ee6110e9eb558df36c1741b19798225d3fe04fdca16be5397e89bf1971993c2e2b5a33ffcc898becdfa85e28bbbf2b265bb2c4ca7adec5b
+DIST blogc-0.14.0.tar.xz 321752 BLAKE2B 
b25358c415684a305971945d87d9c21d9da3009ac35756ce501748e1de3824a82d0d855f15c0a5b5423bac775da5361470b32fb51e86b2cb33b28017cad976ff
 SHA512 
e9239a754b80b93ac98241f7ed6c0a962bb6bc2fb02dcc7eafbf5075f81655dc93c7bf0c41eb0c06fb158d60c8a42bf6ede6c7a58761707f2811a0a96d516a25

diff --git a/app-text/blogc/blogc-0.13.10.ebuild 
b/app-text/blogc/blogc-0.14.0.ebuild
similarity index 100%
rename from app-text/blogc/blogc-0.13.10.ebuild
rename to app-text/blogc/blogc-0.14.0.ebuild



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

2018-07-26 Thread Louis Sautier
commit: d9fd0bf6484fc0336ff983b31155d5e17fc55905
Author: Louis Sautier  gentoo  org>
AuthorDate: Thu Jul 26 21:52:04 2018 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Thu Jul 26 21:57:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9fd0bf6

dev-python/inflect: bump to 1.0.0, introduces new dependencies

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 dev-python/inflect/Manifest |  1 +
 dev-python/inflect/inflect-1.0.0.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/inflect/Manifest b/dev-python/inflect/Manifest
index c481e1861e2..97de70ea7d2 100644
--- a/dev-python/inflect/Manifest
+++ b/dev-python/inflect/Manifest
@@ -1,2 +1,3 @@
 DIST inflect-0.2.5.tar.gz 109756 BLAKE2B 
ecb64b0fea04602f112dfba11ade6828eae7a7f3f44d4c4fb15c2300ac18025ea4c51f9c36aae5e7e92bd09e24d08091ce096b888a520fd2d4c40374356333d5
 SHA512 
68371158ac90d9662c19657cbf697f44ee9ceac090286d53e29ee04252efbb7d0bfbd99ae6847e6eec1991ef4ef670eff60693d1f0a301885bab2a09c7ce4616
 DIST inflect-0.3.1.tar.gz 109456 BLAKE2B 
b57009a933f49762da315c55950ca20ad04a53559b1bd1fb7d8395bf4bfbb74b618eb1a0d0a0ca0f2b64adde93665fdf1f643f56299820ffe0c56a20f57237dc
 SHA512 
c832f0f36b56f5f59d8c3a7c0b128c0ae00f7a90c57f303e79a2118657ee7b62ed3db7cd4c3297e41a07c4d2bdbc18d6c754c319a43004af6d35cab3701169a6
+DIST inflect-1.0.0.tar.gz 110186 BLAKE2B 
c9a47237e7fabfbbf512c3c88632e910e1bdc2f6b370f0224f1ae775a63de75c0c5ab25385b44786e349fb7243ef5d22f22d9001dec3c1a6adde3112551bdcb5
 SHA512 
7a82789ebd3db279589844752ab4e6c99a664ad5058778a9049d484c63a391c7e6623e80c07ca6a4845971062a496cb3062e7fc94607c5843b99a92860708b90

diff --git a/dev-python/inflect/inflect-1.0.0.ebuild 
b/dev-python/inflect/inflect-1.0.0.ebuild
new file mode 100644
index 000..bf150255a03
--- /dev/null
+++ b/dev-python/inflect/inflect-1.0.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6,7}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Correctly inflect words and numbers"
+HOMEPAGE="https://github.com/jazzband/inflect;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+BDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests -v tests || die "tests failed with ${EPYTHON}"
+}



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

2018-07-26 Thread Mikle Kolyada
commit: bc80df29951c0a101614416ac0a79fb7c9448e82
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 21:44:29 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 21:44:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc80df29

x11-misc/sddm: amd64 stable wrt bug #661510

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/x11-misc/sddm/sddm-0.18.0.ebuild b/x11-misc/sddm/sddm-0.18.0.ebuild
index 71b170a41f8..f4b731f7432 100644
--- a/x11-misc/sddm/sddm-0.18.0.ebuild
+++ b/x11-misc/sddm/sddm-0.18.0.ebuild
@@ -9,7 +9,7 @@ inherit cmake-utils l10n systemd user
 DESCRIPTION="Simple Desktop Display Manager"
 HOMEPAGE="https://github.com/sddm/sddm;
 SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz;
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~x86"
 
 LICENSE="GPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0 public-domain"
 SLOT="0"



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

2018-07-26 Thread Mikle Kolyada
commit: 1066ee1abde0483c71e8840a70119ac453f2854e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 21:39:27 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 21:39:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1066ee1a

app-admin/apg: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-admin/apg/apg-2.3.0b-r5.ebuild | 51 --
 1 file changed, 51 deletions(-)

diff --git a/app-admin/apg/apg-2.3.0b-r5.ebuild 
b/app-admin/apg/apg-2.3.0b-r5.ebuild
deleted file mode 100644
index 818202c48ce..000
--- a/app-admin/apg/apg-2.3.0b-r5.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Another Password Generator"
-HOMEPAGE="http://www.adel.nursat.kz/apg/;
-SRC_URI="http://www.adel.nursat.kz/apg/download/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 hppa ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="cracklib"
-
-DEPEND="cracklib? ( sys-libs/cracklib )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   chmod -R 0700 "${S}"
-   if use cracklib; then
-   epatch "${FILESDIR}"/${P}-cracklib.patch
-   epatch "${FILESDIR}"/${PN}-glibc-2.4.patch
-   fi
-   epatch "${FILESDIR}"/${P}-crypt_password.patch
-}
-
-src_compile() {
-   sed -i 's,^#\(APG_CS_CLIBS += -lnsl\)$,\1,' Makefile \
-   || die "Sed failed"
-   if [[ ${CHOST} == *-darwin* ]]; then
-   sed -i 's,^APG_CLIBS += -lcrypt,APG_CLIBS += ,' Makefile \
-   || die "Sed failed"
-   fi
-
-   emake \
-   FLAGS="${CFLAGS} ${LDFLAGS}" CFLAGS="${CFLAGS} ${LDFLAGS}" \
-   CC="$(tc-getCC)" \
-   standalone || die "compile problem"
-   emake FLAGS="${CFLAGS} ${LDFLAGS}" CC="$(tc-getCC)" \
-   -C bfconvert || die "compile problem"
-}
-
-src_install() {
-   dobin apg apgbfm bfconvert/bfconvert || die
-   dodoc CHANGES INSTALL README THANKS TODO || die
-   cd doc
-   doman man/apg.1 man/apgbfm.1 || die
-   dodoc APG_TIPS pronun.txt rfc0972.txt rfc1750.txt || die
-}



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

2018-07-26 Thread Mikle Kolyada
commit: 0fd810bb00438b2dd565781fbe7bbbc8cab28b1f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 21:38:59 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 21:39:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fd810bb

app-admin/apg: merge stable keywords

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-admin/apg/apg-2.3.0b-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/apg/apg-2.3.0b-r6.ebuild 
b/app-admin/apg/apg-2.3.0b-r6.ebuild
index 34ea033ebee..00d3fa923a8 100644
--- a/app-admin/apg/apg-2.3.0b-r6.ebuild
+++ b/app-admin/apg/apg-2.3.0b-r6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.adel.nursat.kz/apg/download/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos"
+KEYWORDS="~alpha amd64 hppa ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="cracklib"
 
 DEPEND="cracklib? ( sys-libs/cracklib )"



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

2018-07-26 Thread Sergei Trofimovich
commit: cf042083224309abfdde3f806cc64439412c1bbd
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jul 26 21:21:36 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jul 26 21:23:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf042083

sys-devel/kgcc64: bump up to 8.2.0 (unkeyworded)

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 sys-devel/kgcc64/Manifest|  2 ++
 sys-devel/kgcc64/kgcc64-8.2.0.ebuild | 61 
 2 files changed, 63 insertions(+)

diff --git a/sys-devel/kgcc64/Manifest b/sys-devel/kgcc64/Manifest
index 61f2e3702cf..b69c6a95522 100644
--- a/sys-devel/kgcc64/Manifest
+++ b/sys-devel/kgcc64/Manifest
@@ -34,3 +34,5 @@ DIST gcc-7.1.0-patches-1.1.tar.bz2 6746 BLAKE2B 
29ed4ff1ce6412a0c1a88f613377883e
 DIST gcc-7.2.0.tar.xz 62312628 BLAKE2B 
35e4b732f1a4515fc1a9d4424797177112847588e600dc5531bc9bf72305619d4100e8fd9d945920245e704fc9ac5bc5e3dbd20be6c3af49e689fc5bd1eca10f
 SHA512 
f853cd6530b4055d8d8289da74687cb4c6d5f363598d386332d31852b581bac76c3adb7d61889edec3b779f63d8646f0122840f12965ce4a4389ba535dbbb6e1
 DIST gcc-7.3.0-patches-1.0.tar.bz2 6757 BLAKE2B 
ffe6a69e61dc4379fc77b0bf21971ff6fe482edd315ae1243e55b147ad5794320816fbfc3f85ccebe34de080e2c5b718b60b59064aaf095e905c1b41d7c08168
 SHA512 
a86ffc03940afa12c44b919f861b9459a3cd460cd4680dce8316755021789530640977e90c4cff89be768fc62e0e24d9bee0a1ee76c537ad88c8f4ed07f1a73a
 DIST gcc-7.3.0.tar.xz 62462388 BLAKE2B 
dc8f132b21bd0543c3d9dd17557038aafe65675aa73c540954234a3c972b4c31c939149bd50183d072ab6c8d16919e19daeaaffd619ce2ccd62dbdf9a5bb3302
 SHA512 
ad41a7e4584e40e92cdf860bc0288500fbaf5dfb7e8c3fcabe9eba809c87bcfa85b46c19c19921b0cdf6d05483faede8287bb9ea120c0d1559449a70e602c8d4
+DIST gcc-8.1.0-patches-1.3.tar.bz2 10713 BLAKE2B 
3e5cddf5b0c0b9b2bbd2b0aa546dc3aee9bf0e8421656c9260bb7561baa8bb53f7b6ad651bf12d68102fd9e9f97fa17c3306d52a657a46d2dedd16e9a1a74579
 SHA512 
37c785fbfd801d48c46c65e21d33085c1470942531b8f13c28f933debcec944a1389a50fe0f72afa7dbba25a931959a3ebb1c42911abadd11ee530812f1034bb
+DIST gcc-8.2.0.tar.xz 63460876 BLAKE2B 
c5372b0bdfcd2729577dca287b294623b78c583491998404eb307768c573618bdaaedb7d9ae0e39ba41a62a14b9525dff0e3083285754b7f5bb9987ecf635185
 SHA512 
64898a165f67e136d802a92e7633bf1b06c85266027e52127ea025bf5fc2291b5e858288aac0bdba246e6cdf7c6ec88bc8e0e7f3f6f1985f4297710cafde56ed

diff --git a/sys-devel/kgcc64/kgcc64-8.2.0.ebuild 
b/sys-devel/kgcc64/kgcc64-8.2.0.ebuild
new file mode 100644
index 000..e050de1d571
--- /dev/null
+++ b/sys-devel/kgcc64/kgcc64-8.2.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+case ${CHOST} in
+   hppa*)CTARGET=hppa64-${CHOST#*-};;
+   mips*)CTARGET=${CHOST/mips/mips64};;
+   powerpc*) CTARGET=${CHOST/powerpc/powerpc64};;
+   s390*)CTARGET=${CHOST/s390/s390x};;
+   sparc*)   CTARGET=${CHOST/sparc/sparc64};;
+   i?86*)CTARGET=x86_64-${CHOST#*-};;
+esac
+export CTARGET
+TOOLCHAIN_ALLOWED_LANGS="c"
+GCC_TARGET_NO_MULTILIB=true
+
+PATCH_GCC_VER="8.1.0"
+PATCH_VER="1.3"
+inherit eutils toolchain
+
+DESCRIPTION="64bit kernel compiler"
+
+# Works on hppa and mips; all other archs, refer to bug #228115
+#KEYWORDS="~hppa ~mips"
+
+RDEPEND=">=dev-libs/gmp-4.3.2
+   >=dev-libs/mpfr-2.4.2
+   >=dev-libs/mpc-0.8.1
+   >=sys-devel/gcc-config-1.4"
+# unlike every other target, hppa has not unified the 32/64 bit
+# ports in binutils yet
+DEPEND="${RDEPEND}
+   hppa? ( sys-devel/binutils-hppa64 )
+   !sys-devel/gcc-hppa64
+   !sys-devel/gcc-mips64
+   !sys-devel/gcc-powerpc64
+   !sys-devel/gcc-sparc64
+   >=sys-apps/texinfo-4.8
+   >=sys-devel/bison-1.875"
+
+src_prepare() {
+   # upstreamed patches since 8.1.0
+   EPATCH_EXCLUDE+=" 93_all_arm-arch.patch 96_all_lto-O2-PR85655.patch"
+
+   toolchain_src_prepare
+}
+
+pkg_postinst() {
+   toolchain_pkg_postinst
+
+   cd "${ROOT}"/usr/bin
+   local x
+   for x in gcc cpp ; do
+   cat <<-EOF >${CTARGET%%-*}-linux-${x}
+   #!/bin/sh
+   exec ${CTARGET}-${x} "\$@"
+   EOF
+   chmod a+rx ${CTARGET%%-*}-linux-${x}
+   done
+}



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

2018-07-26 Thread Sergei Trofimovich
commit: 71dcc20a7b328c18c836be662da74d5db5b99b0c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jul 26 19:51:18 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jul 26 21:23:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71dcc20a

dev-lang/elixir: bump up to 1.7.1

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 dev-lang/elixir/Manifest|  1 +
 dev-lang/elixir/elixir-1.7.1.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/dev-lang/elixir/Manifest b/dev-lang/elixir/Manifest
index cd849bf5cdc..d94f2fdb336 100644
--- a/dev-lang/elixir/Manifest
+++ b/dev-lang/elixir/Manifest
@@ -1,3 +1,4 @@
 DIST elixir-1.4.5.tar.gz 1829098 BLAKE2B 
bc8e2beafe53c3af507215d913558e295370ed8d3731c8b013f5d1cd2ad1d8a4fad4b3fe1a7ee3397470916f6f6687436ecbaa06c85c47f4b52aa0331b7dad23
 SHA512 
3fe659a739ded54bfc7d05a96acf3061c860e44cfd7700651d138c7e21997c5703cc62d2bd3b7a258b27064bb222dfdcdc01e4d017451f522f9658a039073611
 DIST elixir-1.6.5.tar.gz 2075889 BLAKE2B 
73586354f3672ef7892b462781e8e94ab913548b4753129a08e4864f222590e95b310c55df628e4e42015bed642569a7183624c2d107cd07dac560ba2b9a57fa
 SHA512 
e2cf9c2d9198da32cefb841cae4ce64bb52eb28239bbffb6d991916cfdee420b242773664efa7381eb4609c67438ab608f5f96ca2c403b54ecdd9bfdddf91a95
 DIST elixir-1.6.6.tar.gz 2078742 BLAKE2B 
4a793ac55db97c1d604d5f0012758d039f4a26eff5866a2ad2b90010f8477a8f62cc8f01a391f93133c927c5da5494b6d10b76f087a4af1206da977b0ec14a17
 SHA512 
62010100274b99423bb6a660e34ef53a702250a09371ef4b49ec03a3afe8761611b3734aea31763afa361560eb74c6d23e022d4d9bc4453c1bdef36bb37f9b4d
+DIST elixir-1.7.1.tar.gz 2139430 BLAKE2B 
71fb91134ec707f254cdc5aa36e9335c2a5855b8d65f5a42a75df7dc7e690b342531748e36cfca051cb751eed5487e39b5ef03fc3af35871ca389033ea79ab14
 SHA512 
f1d5f1f1c5df78673b318d69e1863e2780ad7cd54b050ac6ac9767a07952828a91d749bf16cd6c8d384d3a0c5b6154683d93086121787b5f03783113d8bd3b2c

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



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

2018-07-26 Thread Sergei Trofimovich
commit: 741949ecafefa9f83e207ce772b7cbd80ce04ca3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jul 26 21:09:01 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jul 26 21:23:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=741949ec

sys-devel/gcc: bump up to 8.2.0 (unkeyworded)

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 sys-devel/gcc/Manifest |  1 +
 sys-devel/gcc/gcc-8.2.0.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index b5a369d4205..7809ff6c1cd 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -56,4 +56,5 @@ DIST gcc-7.3.0-patches-1.4.tar.bz2 8238 BLAKE2B 
72a5dcb046558c8f5c3a75040fe24ce1
 DIST gcc-7.3.0.tar.xz 62462388 BLAKE2B 
dc8f132b21bd0543c3d9dd17557038aafe65675aa73c540954234a3c972b4c31c939149bd50183d072ab6c8d16919e19daeaaffd619ce2ccd62dbdf9a5bb3302
 SHA512 
ad41a7e4584e40e92cdf860bc0288500fbaf5dfb7e8c3fcabe9eba809c87bcfa85b46c19c19921b0cdf6d05483faede8287bb9ea120c0d1559449a70e602c8d4
 DIST gcc-8.1.0-patches-1.3.tar.bz2 10713 BLAKE2B 
3e5cddf5b0c0b9b2bbd2b0aa546dc3aee9bf0e8421656c9260bb7561baa8bb53f7b6ad651bf12d68102fd9e9f97fa17c3306d52a657a46d2dedd16e9a1a74579
 SHA512 
37c785fbfd801d48c46c65e21d33085c1470942531b8f13c28f933debcec944a1389a50fe0f72afa7dbba25a931959a3ebb1c42911abadd11ee530812f1034bb
 DIST gcc-8.1.0.tar.xz 63372320 BLAKE2B 
6465809cf90f4c65c0a82d0390de86c98f954e0b910e2f2de2282b828cca8b6aaf0a5243548854048344ec4840046017887fc0b253fb0ced4238da67ef68f946
 SHA512 
c96246f34a7aeb404c4525b754dc7f7708a18e06271aadb2b32fef00e6e0940f584e52430bfe2ab01e699c93e3cb418adc113d2622fa826facbec0ec8ce3eb2c
+DIST gcc-8.2.0.tar.xz 63460876 BLAKE2B 
c5372b0bdfcd2729577dca287b294623b78c583491998404eb307768c573618bdaaedb7d9ae0e39ba41a62a14b9525dff0e3083285754b7f5bb9987ecf635185
 SHA512 
64898a165f67e136d802a92e7633bf1b06c85266027e52127ea025bf5fc2291b5e858288aac0bdba246e6cdf7c6ec88bc8e0e7f3f6f1985f4297710cafde56ed
 DIST gdc-0.24-src.tar.bz2 1012099 BLAKE2B 
2c85058aad09af328719a702f69d655b9aa9655f2a83bb46bd21367cd442ed72c9b471ddaa764753f782dcb2f22fe51b052a965ed08290e0d9415b543481d144
 SHA512 
9aec7e4b102e602dfb61cd09ea4b4a96af637ceb3d726235261d09ebd35dbd416abcbfe0e46918e48474bd241fe9bb29abc145a65aa834669295aaee4fca0686

diff --git a/sys-devel/gcc/gcc-8.2.0.ebuild b/sys-devel/gcc/gcc-8.2.0.ebuild
new file mode 100644
index 000..cf75791e913
--- /dev/null
+++ b/sys-devel/gcc/gcc-8.2.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+PATCH_GCC_VER="8.1.0"
+PATCH_VER="1.3"
+#UCLIBC_VER="1.0"
+
+inherit toolchain
+
+#needs minimal test before unkeywording
+#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   elibc_glibc? ( >=sys-libs/glibc-2.13 )
+   >=${CATEGORY}/binutils-2.20"
+
+if [[ ${CATEGORY} != cross-* ]] ; then
+   PDEPEND="${PDEPEND} elibc_glibc? ( >=sys-libs/glibc-2.13 )"
+fi
+
+src_prepare() {
+   # upstreamed patches since 8.1.0
+   EPATCH_EXCLUDE+=" 93_all_arm-arch.patch 96_all_lto-O2-PR85655.patch"
+
+   toolchain_src_prepare
+}



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

2018-07-26 Thread Virgil Dupras
commit: b20ea41dc5e059a1ffddf85cbfc850e49f33d322
Author: Virgil Dupras  gentoo  org>
AuthorDate: Thu Jul 26 21:00:23 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Thu Jul 26 21:00:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b20ea41d

dev-python/olefile: fix QA warning

Rookie mistake, sorry.

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 dev-python/olefile/Manifest  | 2 +-
 dev-python/olefile/olefile-0.45.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/olefile/Manifest b/dev-python/olefile/Manifest
index 765ba6aebf6..8d80f8dfd6f 100644
--- a/dev-python/olefile/Manifest
+++ b/dev-python/olefile/Manifest
@@ -1,2 +1,2 @@
 DIST olefile-0.44.tar.gz 57903 BLAKE2B 
2df4078c147ff737b845fe4ca57b6520c39776efe6bac399b0b8acb4ca62f946a653f85ad0511f5fa42d8b544d539474d226fe144bc2604737f3b16e5edd5ff2
 SHA512 
92b6ad1bced5b2c8e5332a01e5a2e59527ec2303046d0babd665b0f02fe56966574eff56619de168c50f1ea40df2e61ce589ee61b634222146d049b129514c65
-DIST v0.45.1.tar.gz 97969 BLAKE2B 
246198e69cde316f24a183fdf07872edf9b1db2a168571eedb7efdb91166d4ad2658acaaa90e733950e437ef5c6ab8d1bb275cd1b24283b95497e254a39c9b26
 SHA512 
72d40056cac1d9566aa8e32b7b5484f61958a689130e71fa86bc0b9fed98f27a8cf34b824971357d42ec3dfd2d5bfa86d0f212727ff91d8daa3967969ff576e9
+DIST olefile-0.45.1.tar.gz 97969 BLAKE2B 
246198e69cde316f24a183fdf07872edf9b1db2a168571eedb7efdb91166d4ad2658acaaa90e733950e437ef5c6ab8d1bb275cd1b24283b95497e254a39c9b26
 SHA512 
72d40056cac1d9566aa8e32b7b5484f61958a689130e71fa86bc0b9fed98f27a8cf34b824971357d42ec3dfd2d5bfa86d0f212727ff91d8daa3967969ff576e9

diff --git a/dev-python/olefile/olefile-0.45.1.ebuild 
b/dev-python/olefile/olefile-0.45.1.ebuild
index 73a28b8fd2c..243f264d315 100644
--- a/dev-python/olefile/olefile-0.45.1.ebuild
+++ b/dev-python/olefile/olefile-0.45.1.ebuild
@@ -9,7 +9,7 @@ inherit distutils-r1
 
 DESCRIPTION="Python package to parse, read and write Microsoft OLE2 files"
 HOMEPAGE="https://www.decalage.info/olefile;
-SRC_URI="https://github.com/decalage2/${PN}/archive/v${PV}.tar.gz;
+SRC_URI="https://github.com/decalage2/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="BSD-2"
 SLOT="0"



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

2018-07-26 Thread Mikle Kolyada
commit: 69cdb6268ca495932debea1600011569220e92d2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 20:57:06 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 20:57:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69cdb626

media-sound/taginfo: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-sound/taginfo/taginfo-1.2-r1.ebuild | 26 --
 1 file changed, 26 deletions(-)

diff --git a/media-sound/taginfo/taginfo-1.2-r1.ebuild 
b/media-sound/taginfo/taginfo-1.2-r1.ebuild
deleted file mode 100644
index 47c6440ec43..000
--- a/media-sound/taginfo/taginfo-1.2-r1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-inherit toolchain-funcs
-
-DESCRIPTION="a simple ID3 tag reader for use in shell scripts"
-HOMEPAGE="http://freshmeat.net/projects/taginfo;
-SRC_URI="http://grecni.com/software/taginfo/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="media-libs/taglib"
-DEPEND="${RDEPEND}"
-
-src_compile() {
-   emake CC="$(tc-getCXX) ${LDFLAGS} ${CXXFLAGS}" || die
-}
-
-src_install() {
-   dobin taginfo || die
-   dodoc ChangeLog contrib/mp3-resample.sh README
-}



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

2018-07-26 Thread Mikle Kolyada
commit: 3a1bb07ac44f561cae4fa6ea1adba0ad3761b90e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 20:56:38 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 20:57:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a1bb07a

media-sound/taginfo: revision bump (EAPI=7)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-sound/taginfo/taginfo-1.2-r2.ebuild | 27 +++
 1 file changed, 27 insertions(+)

diff --git a/media-sound/taginfo/taginfo-1.2-r2.ebuild 
b/media-sound/taginfo/taginfo-1.2-r2.ebuild
new file mode 100644
index 000..8c20895d3de
--- /dev/null
+++ b/media-sound/taginfo/taginfo-1.2-r2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="A simple ID3 tag reader for use in shell scripts"
+HOMEPAGE="http://freshmeat.net/projects/taginfo;
+SRC_URI="http://grecni.com/software/taginfo/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE=""
+
+RDEPEND="media-libs/taglib"
+DEPEND="${RDEPEND}"
+
+src_compile() {
+   emake CC="$(tc-getCXX) ${LDFLAGS} ${CXXFLAGS}"
+}
+
+src_install() {
+   dobin taginfo
+   dodoc ChangeLog contrib/mp3-resample.sh README
+}



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

2018-07-26 Thread Michał Górny
commit: 9cd6a5aef46fb519c64f936939b622ed61428363
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 26 20:42:07 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 26 20:42:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cd6a5ae

sys-cluster/teleport: Merged PR #9149

Closes: https://github.com/gentoo/gentoo/pull/9149




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

2018-07-26 Thread Michał Górny
commit: 137c6ece701b2ba359ce3a1cd17fc80bc6fa8f3a
Author: Graeme Lawes  gmail  com>
AuthorDate: Sun Jul  8 17:04:56 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 26 20:39:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=137c6ece

sys-cluster/teleport-: use latest ebuild file

 sys-cluster/teleport/teleport-.ebuild | 28 +++-
 1 file changed, 11 insertions(+), 17 deletions(-)

diff --git a/sys-cluster/teleport/teleport-.ebuild 
b/sys-cluster/teleport/teleport-.ebuild
index a16c3c13370..454a646 100644
--- a/sys-cluster/teleport/teleport-.ebuild
+++ b/sys-cluster/teleport/teleport-.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit eutils golang-build systemd user
+inherit golang-build systemd
 
 DESCRIPTION="Modern SSH server for teams managing distributed infrastructure"
 HOMEPAGE="https://gravitational.com/teleport;
@@ -15,29 +15,23 @@ if [[ ${PV} == "" ]] ; then
 else
inherit golang-vcs-snapshot
SRC_URI="https://github.com/gravitational/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~arm"
 fi
 
+IUSE="pam"
 LICENSE="Apache-2.0"
+RESTRICT="test strip"
 SLOT="0"
-IUSE=""
 
-DEPEND="
-   app-arch/zip
-   >=dev-lang/go-1.7"
-RDEPEND=""
+DEPEND="app-arch/zip"
+RDEPEND="pam? ( sys-libs/pam )"
 
 src_compile() {
-   BUILDFLAGS="" GOPATH="${S}" emake -C src/${EGO_PN%/*}
-   pushd src/${EGO_PN%/*}/web/dist >/dev/null || die
-   zip -qr "${S}/src/${EGO_PN%/*}/build/webassets.zip" . || die
-   popd >/dev/null || die
-   cat "${S}/src/${EGO_PN%/*}/build/webassets.zip" >> 
"src/${EGO_PN%/*}/build/${PN}" || die
-   zip -q -A "${S}/src/${EGO_PN%/*}/build/${PN}" || die
+   BUILDFLAGS="" GOPATH="${S}" emake -j1 -C src/${EGO_PN%/*} full
 }
 
 src_install() {
-   dodir /var/lib/${PN} /etc/${PN}
+   keepdir /var/lib/${PN} /etc/${PN}
dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport}
 
insinto /etc/${PN}
@@ -46,10 +40,10 @@ src_install() {
newinitd "${FILESDIR}"/${PN}.init.d ${PN}
newconfd "${FILESDIR}"/${PN}.conf.d ${PN}
 
-   systemd_dounit "${FILESDIR}"/${PN}.service
+   systemd_newunit "${FILESDIR}"/${PN}.service ${PN}.service
systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service
 }
 
 src_test() {
-   GOPATH="${S}" emake -C src/${EGO_PN%/*} test
+   BUILDFLAGS="" GOPATH="${S}" emake -C src/${EGO_PN%/*} test
 }



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

2018-07-26 Thread Michał Górny
commit: 077e5400247e1f33a76fc287bc63dc4dbbe196a6
Author: Graeme Lawes  gmail  com>
AuthorDate: Sun Jul  8 16:26:47 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 26 20:39:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=077e5400

sys-cluster/teleport: remove v2.5.2

 sys-cluster/teleport/Manifest  |  1 -
 sys-cluster/teleport/teleport-2.5.2.ebuild | 57 --
 2 files changed, 58 deletions(-)

diff --git a/sys-cluster/teleport/Manifest b/sys-cluster/teleport/Manifest
index 9960bd15c1b..64550674d1d 100644
--- a/sys-cluster/teleport/Manifest
+++ b/sys-cluster/teleport/Manifest
@@ -1,4 +1,3 @@
-DIST teleport-2.5.2.tar.gz 16211219 BLAKE2B 
28d0d1bb8d01fba39e79a262744b69a9df27438b9dbb0a25cd23acd57b6004a7f2309e432c0db4188c2e023a0b0299fd64723acfd57c1328d2345bba08fff4a9
 SHA512 
58fad4015824b9077bbd13cc3c6a994e5a54ed367264477854da7b129eea04c4cba44a580650a259b01f390a9f2028d7501df2ac4ab4821d085bbfe1cd887ec5
 DIST teleport-2.5.6.tar.gz 16216649 BLAKE2B 
e5ae8645d59df2684601dab5c222399d89b356592774365ffbca4e3f2d9ed745f2839902ee1e244c7b7eb300230d771daa754e29fc8e79f833715094d4f2
 SHA512 
fae1eb53ff45115551c5002745303cd0e9a044557e6e56cda870a57531700bb68e23b59d2930ac2dd654b200732edc3ed9432e1bc0e9dbf0e7529e980599a323
 DIST teleport-2.5.8.tar.gz 16219666 BLAKE2B 
dd64ef4ca5b26e025e46c88d58e7ec226810b583c4b740416f6cc0caec5ea7d050c732368917ec34c5f8a36c7670d2903baa6c32203a2c5cac972e3a2b4bcbbb
 SHA512 
070eebc889adde017641a833ee0e414c5f56848ac36fa96fb66e83062212307904e8264da758042765ba13d6a0c1b4f5314c1b0e90a2c37723ef1c0aa22889be
 DIST teleport-2.6.7.tar.gz 16655508 BLAKE2B 
a020ab999b7503cb7aec54ed81532baf9d08b98000f2c659f63859d89f7f2b5fb311c41d6fcafb7d9bf72ea1c97eecfc6ac621b7c90d74f5afe2717edb8b0402
 SHA512 
45002dcf7b99108ca6fffae94d6608188eb9b0bea05cd14068618bfb11c496cad5546e261f349fee70f2acb574e7fc44093683dd991001e01406da6982c5c4c3

diff --git a/sys-cluster/teleport/teleport-2.5.2.ebuild 
b/sys-cluster/teleport/teleport-2.5.2.ebuild
deleted file mode 100644
index 4b4aeb53e58..000
--- a/sys-cluster/teleport/teleport-2.5.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils golang-build systemd user
-
-DESCRIPTION="Modern SSH server for teams managing distributed infrastructure"
-HOMEPAGE="https://gravitational.com/teleport;
-
-EGO_PN="github.com/gravitational/${PN}/..."
-
-if [[ ${PV} == "" ]] ; then
-   inherit git-r3 golang-vcs
-   EGIT_REPO_URI="https://github.com/gravitational/${PN}.git;
-else
-   inherit golang-vcs-snapshot
-   SRC_URI="https://github.com/gravitational/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-IUSE=""
-LICENSE="Apache-2.0"
-RESTRICT="test strip"
-SLOT="0"
-
-DEPEND="
-   app-arch/zip
-   >=dev-lang/go-1.9.2"
-RDEPEND=""
-
-src_prepare() {
-   default
-
-   sed -i -e 's/-j 3/-j 1/g' src/${EGO_PN%/*}/Makefile
-}
-
-src_compile() {
-   GOPATH="${S}" emake -j1 -C src/${EGO_PN%/*} full
-}
-
-src_install() {
-   keepdir /var/lib/${PN} /etc/${PN}
-   dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport}
-
-   insinto /etc/${PN}
-   doins "${FILESDIR}"/${PN}.yaml
-
-   newinitd "${FILESDIR}"/${PN}-2.5.init.d ${PN}
-   newconfd "${FILESDIR}"/${PN}.conf.d ${PN}
-
-   systemd_newunit "${FILESDIR}"/${PN}-2.5.service ${PN}.service
-   systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service
-}
-
-src_test() {
-   BUILDFLAGS="" GOPATH="${S}" emake -C src/${EGO_PN%/*} test
-}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/teleport/files/, sys-cluster/teleport/

2018-07-26 Thread Michał Górny
commit: 84bfc434f8c894981faf7cc55ced6430ab67b159
Author: Graeme Lawes  gmail  com>
AuthorDate: Sun Jul  8 17:03:21 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 26 20:39:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84bfc434

sys-cluster/teleport: add v2.6.7

 sys-cluster/teleport/Manifest|   1 +
 sys-cluster/teleport/files/teleport-2.6.yaml | 130 +++
 sys-cluster/teleport/teleport-2.6.7.ebuild   |  49 ++
 3 files changed, 180 insertions(+)

diff --git a/sys-cluster/teleport/Manifest b/sys-cluster/teleport/Manifest
index 739e3918ea0..ec5a8a5af89 100644
--- a/sys-cluster/teleport/Manifest
+++ b/sys-cluster/teleport/Manifest
@@ -3,3 +3,4 @@ DIST teleport-2.4.5.tar.gz 9975753 BLAKE2B 
cdb6e577cd565cf6760d73c92cac674571e9b
 DIST teleport-2.5.2.tar.gz 16211219 BLAKE2B 
28d0d1bb8d01fba39e79a262744b69a9df27438b9dbb0a25cd23acd57b6004a7f2309e432c0db4188c2e023a0b0299fd64723acfd57c1328d2345bba08fff4a9
 SHA512 
58fad4015824b9077bbd13cc3c6a994e5a54ed367264477854da7b129eea04c4cba44a580650a259b01f390a9f2028d7501df2ac4ab4821d085bbfe1cd887ec5
 DIST teleport-2.5.6.tar.gz 16216649 BLAKE2B 
e5ae8645d59df2684601dab5c222399d89b356592774365ffbca4e3f2d9ed745f2839902ee1e244c7b7eb300230d771daa754e29fc8e79f833715094d4f2
 SHA512 
fae1eb53ff45115551c5002745303cd0e9a044557e6e56cda870a57531700bb68e23b59d2930ac2dd654b200732edc3ed9432e1bc0e9dbf0e7529e980599a323
 DIST teleport-2.5.8.tar.gz 16219666 BLAKE2B 
dd64ef4ca5b26e025e46c88d58e7ec226810b583c4b740416f6cc0caec5ea7d050c732368917ec34c5f8a36c7670d2903baa6c32203a2c5cac972e3a2b4bcbbb
 SHA512 
070eebc889adde017641a833ee0e414c5f56848ac36fa96fb66e83062212307904e8264da758042765ba13d6a0c1b4f5314c1b0e90a2c37723ef1c0aa22889be
+DIST teleport-2.6.7.tar.gz 16655508 BLAKE2B 
a020ab999b7503cb7aec54ed81532baf9d08b98000f2c659f63859d89f7f2b5fb311c41d6fcafb7d9bf72ea1c97eecfc6ac621b7c90d74f5afe2717edb8b0402
 SHA512 
45002dcf7b99108ca6fffae94d6608188eb9b0bea05cd14068618bfb11c496cad5546e261f349fee70f2acb574e7fc44093683dd991001e01406da6982c5c4c3

diff --git a/sys-cluster/teleport/files/teleport-2.6.yaml 
b/sys-cluster/teleport/files/teleport-2.6.yaml
new file mode 100644
index 000..384dea937c9
--- /dev/null
+++ b/sys-cluster/teleport/files/teleport-2.6.yaml
@@ -0,0 +1,130 @@
+# By default, this file should be stored in /etc/teleport.yaml
+## IMPORTANT ##
+#When editing YAML configuration, please pay attention to how your editor 
handles white space. YAML requires consistent handling of tab characters
+# This section of the configuration file applies to all teleport
+# services.
+teleport:
+# nodename allows to assign an alternative name this node can be reached 
by.
+# by default it's equal to hostname
+# nodename: graviton
+
+# Data directory where Teleport keeps its data, like keys/users for 
+# authentication (if using the default BoltDB back-end)
+data_dir: /var/lib/teleport
+
+# one-time invitation token used to join a cluster. it is not used on 
+# subsequent starts
+auth_token: -token-
+
+# when running in multi-homed or NATed environments Teleport nodes need 
+# to know which IP it will be reachable at by other nodes
+# public_addr: 10.1.0.5
+
+# list of auth servers in a cluster. you will have more than one auth 
server
+# if you configure teleport auth to run in HA configuration
+auth_servers: 
+- localhost:3025
+
+# Teleport throttles all connections to avoid abuse. These settings allow
+# you to adjust the default limits
+connection_limits:
+max_connections: 1000
+max_users: 250
+
+# Logging configuration. Possible output values are 'stdout', 'stderr' and 
+# 'syslog'. Possible severity values are INFO, WARN and ERROR (default).
+log:
+output: stderr
+severity: ERROR
+
+# Type of storage used for keys. You need to configure this to use etcd
+# backend if you want to run Teleport in HA configuration.
+storage:
+type: bolt
+
+# This section configures the 'auth service':
+auth_service:
+enabled: yes
+
+# defines the types and second factors the auth server supports
+authentication:
+# second_factor can be off, otp, or u2f
+second_factor: otp
+
+# this section is only used if using u2f
+u2f:
+# app_id should point to the Web UI.
+app_id: https://localhost:3080
+
+# facets should list all proxy servers.
+facets:
+- https://localhost
+- https://localhost:3080
+
+# IP and the port to bind to. Other Teleport nodes will be connecting to
+# this port (AKA "Auth API" or "Cluster API") to validate client 
+# certificates 
+listen_addr: 0.0.0.0:3025
+
+# Pre-defined tokens for adding new nodes to a cluster. Each token 
specifies
+# the role a new node will be allowed to assume. The more secure way 

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

2018-07-26 Thread Michał Górny
commit: 7cd8892d75feef23570bf7b123b19a3cc65396f7
Author: Graeme Lawes  gmail  com>
AuthorDate: Sun Jul  8 16:07:34 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 26 20:39:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cd8892d

sys-cluster/teleport: remove v2.4.5

 sys-cluster/teleport/Manifest  |  1 -
 sys-cluster/teleport/teleport-2.4.5.ebuild | 57 --
 2 files changed, 58 deletions(-)

diff --git a/sys-cluster/teleport/Manifest b/sys-cluster/teleport/Manifest
index 36956f77158..9960bd15c1b 100644
--- a/sys-cluster/teleport/Manifest
+++ b/sys-cluster/teleport/Manifest
@@ -1,4 +1,3 @@
-DIST teleport-2.4.5.tar.gz 9975753 BLAKE2B 
cdb6e577cd565cf6760d73c92cac674571e9b1257d23b280bd96428cca4e7c593738a925d3632a80fed3e0868c5f3aac79800db19bbf2a2b92d495600bf014cc
 SHA512 
15e7e3c52c058625eb525c7c9cda00186eba037edbed89d21fb090b87c05570a1636f328260d4c7445253b0f5b81f321ce0da7d2b7fc316a0a9938ed22cc6c9c
 DIST teleport-2.5.2.tar.gz 16211219 BLAKE2B 
28d0d1bb8d01fba39e79a262744b69a9df27438b9dbb0a25cd23acd57b6004a7f2309e432c0db4188c2e023a0b0299fd64723acfd57c1328d2345bba08fff4a9
 SHA512 
58fad4015824b9077bbd13cc3c6a994e5a54ed367264477854da7b129eea04c4cba44a580650a259b01f390a9f2028d7501df2ac4ab4821d085bbfe1cd887ec5
 DIST teleport-2.5.6.tar.gz 16216649 BLAKE2B 
e5ae8645d59df2684601dab5c222399d89b356592774365ffbca4e3f2d9ed745f2839902ee1e244c7b7eb300230d771daa754e29fc8e79f833715094d4f2
 SHA512 
fae1eb53ff45115551c5002745303cd0e9a044557e6e56cda870a57531700bb68e23b59d2930ac2dd654b200732edc3ed9432e1bc0e9dbf0e7529e980599a323
 DIST teleport-2.5.8.tar.gz 16219666 BLAKE2B 
dd64ef4ca5b26e025e46c88d58e7ec226810b583c4b740416f6cc0caec5ea7d050c732368917ec34c5f8a36c7670d2903baa6c32203a2c5cac972e3a2b4bcbbb
 SHA512 
070eebc889adde017641a833ee0e414c5f56848ac36fa96fb66e83062212307904e8264da758042765ba13d6a0c1b4f5314c1b0e90a2c37723ef1c0aa22889be

diff --git a/sys-cluster/teleport/teleport-2.4.5.ebuild 
b/sys-cluster/teleport/teleport-2.4.5.ebuild
deleted file mode 100644
index 7592c615c45..000
--- a/sys-cluster/teleport/teleport-2.4.5.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils golang-build systemd user
-
-DESCRIPTION="Modern SSH server for teams managing distributed infrastructure"
-HOMEPAGE="https://gravitational.com/teleport;
-
-EGO_PN="github.com/gravitational/${PN}/..."
-
-if [[ ${PV} == "" ]] ; then
-   inherit git-r3 golang-vcs
-   EGIT_REPO_URI="https://github.com/gravitational/${PN}.git;
-else
-   inherit golang-vcs-snapshot
-   SRC_URI="https://github.com/gravitational/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-IUSE=""
-LICENSE="Apache-2.0"
-RESTRICT="test strip"
-SLOT="0"
-
-DEPEND="
-   app-arch/zip
-   >=dev-lang/go-1.9.2"
-RDEPEND=""
-
-src_prepare() {
-   default
-
-   sed -i -e 's/-j 4/-j 1/g' src/${EGO_PN%/*}/Makefile
-}
-
-src_compile() {
-   GOPATH="${S}" emake -j1 -C src/${EGO_PN%/*} full
-}
-
-src_install() {
-   keepdir /var/lib/${PN} /etc/${PN}
-   dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport}
-
-   insinto /etc/${PN}
-   doins "${FILESDIR}"/${PN}.yaml
-
-   newinitd "${FILESDIR}"/${PN}.init.d ${PN}
-   newconfd "${FILESDIR}"/${PN}.conf.d ${PN}
-
-   systemd_dounit "${FILESDIR}"/${PN}.service
-   systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service
-}
-
-src_test() {
-   BUILDFLAGS="" GOPATH="${S}" emake -C src/${EGO_PN%/*} test
-}



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

2018-07-26 Thread Michał Górny
commit: 62d1ee276e9e7bcea933cbb868d6db588e09fb29
Author: Graeme Lawes  gmail  com>
AuthorDate: Sun Jul  8 16:27:41 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 26 20:39:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62d1ee27

sys-cluster/teleport: remove v2.5.6

Closes: https://bugs.gentoo.org/662146

 sys-cluster/teleport/Manifest  |  1 -
 sys-cluster/teleport/teleport-2.5.6.ebuild | 57 --
 2 files changed, 58 deletions(-)

diff --git a/sys-cluster/teleport/Manifest b/sys-cluster/teleport/Manifest
index 64550674d1d..f5bc0866c78 100644
--- a/sys-cluster/teleport/Manifest
+++ b/sys-cluster/teleport/Manifest
@@ -1,3 +1,2 @@
-DIST teleport-2.5.6.tar.gz 16216649 BLAKE2B 
e5ae8645d59df2684601dab5c222399d89b356592774365ffbca4e3f2d9ed745f2839902ee1e244c7b7eb300230d771daa754e29fc8e79f833715094d4f2
 SHA512 
fae1eb53ff45115551c5002745303cd0e9a044557e6e56cda870a57531700bb68e23b59d2930ac2dd654b200732edc3ed9432e1bc0e9dbf0e7529e980599a323
 DIST teleport-2.5.8.tar.gz 16219666 BLAKE2B 
dd64ef4ca5b26e025e46c88d58e7ec226810b583c4b740416f6cc0caec5ea7d050c732368917ec34c5f8a36c7670d2903baa6c32203a2c5cac972e3a2b4bcbbb
 SHA512 
070eebc889adde017641a833ee0e414c5f56848ac36fa96fb66e83062212307904e8264da758042765ba13d6a0c1b4f5314c1b0e90a2c37723ef1c0aa22889be
 DIST teleport-2.6.7.tar.gz 16655508 BLAKE2B 
a020ab999b7503cb7aec54ed81532baf9d08b98000f2c659f63859d89f7f2b5fb311c41d6fcafb7d9bf72ea1c97eecfc6ac621b7c90d74f5afe2717edb8b0402
 SHA512 
45002dcf7b99108ca6fffae94d6608188eb9b0bea05cd14068618bfb11c496cad5546e261f349fee70f2acb574e7fc44093683dd991001e01406da6982c5c4c3

diff --git a/sys-cluster/teleport/teleport-2.5.6.ebuild 
b/sys-cluster/teleport/teleport-2.5.6.ebuild
deleted file mode 100644
index 88cd1995a47..000
--- a/sys-cluster/teleport/teleport-2.5.6.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils golang-build systemd user
-
-DESCRIPTION="Modern SSH server for teams managing distributed infrastructure"
-HOMEPAGE="https://gravitational.com/teleport;
-
-EGO_PN="github.com/gravitational/${PN}/..."
-
-if [[ ${PV} == "" ]] ; then
-   inherit git-r3 golang-vcs
-   EGIT_REPO_URI="https://github.com/gravitational/${PN}.git;
-else
-   inherit golang-vcs-snapshot
-   SRC_URI="https://github.com/gravitational/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-IUSE=""
-LICENSE="Apache-2.0"
-RESTRICT="test strip"
-SLOT="0"
-
-DEPEND="
-   app-arch/zip
-   >=dev-lang/go-1.9.2"
-RDEPEND=""
-
-src_prepare() {
-   default
-
-   sed -i -e 's/-j 3/-j 1/g' src/${EGO_PN%/*}/Makefile || die
-}
-
-src_compile() {
-   BUILDFLAGS="" GOPATH="${S}" emake -j1 -C src/${EGO_PN%/*} full
-}
-
-src_install() {
-   keepdir /var/lib/${PN} /etc/${PN}
-   dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport}
-
-   insinto /etc/${PN}
-   doins "${FILESDIR}"/${PN}.yaml
-
-   newinitd "${FILESDIR}"/${PN}-2.5.init.d ${PN}
-   newconfd "${FILESDIR}"/${PN}.conf.d ${PN}
-
-   systemd_newunit "${FILESDIR}"/${PN}-2.5.service ${PN}.service
-   systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service
-}
-
-src_test() {
-   BUILDFLAGS="" GOPATH="${S}" emake -C src/${EGO_PN%/*} test
-}



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

2018-07-26 Thread Michał Górny
commit: 9e83b486cf2231bc67d9307304fd137d7a52829b
Author: Graeme Lawes  gmail  com>
AuthorDate: Sun Jul  8 16:07:05 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 26 20:39:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e83b486

sys-cluster/teleport: remove v2.4.2

 sys-cluster/teleport/Manifest  |  1 -
 sys-cluster/teleport/teleport-2.4.2.ebuild | 51 --
 2 files changed, 52 deletions(-)

diff --git a/sys-cluster/teleport/Manifest b/sys-cluster/teleport/Manifest
index ec5a8a5af89..36956f77158 100644
--- a/sys-cluster/teleport/Manifest
+++ b/sys-cluster/teleport/Manifest
@@ -1,4 +1,3 @@
-DIST teleport-2.4.2.tar.gz 9975909 BLAKE2B 
68916e1d15f49448e918b39b2a760f90eca292b07f61e51cfe125eb99c6b36d95a528cfec40b62cd61893ce81edbf5f26066eb59063214369402e2a62d07bd5e
 SHA512 
f9c2f923e05c8fa0b82708955c944e1bd35da2e6bf8b673832e76c91b918a4bc6d797faf0f7572cfaa7341991ef8937cd9b374cdc273271aff45f96b2960
 DIST teleport-2.4.5.tar.gz 9975753 BLAKE2B 
cdb6e577cd565cf6760d73c92cac674571e9b1257d23b280bd96428cca4e7c593738a925d3632a80fed3e0868c5f3aac79800db19bbf2a2b92d495600bf014cc
 SHA512 
15e7e3c52c058625eb525c7c9cda00186eba037edbed89d21fb090b87c05570a1636f328260d4c7445253b0f5b81f321ce0da7d2b7fc316a0a9938ed22cc6c9c
 DIST teleport-2.5.2.tar.gz 16211219 BLAKE2B 
28d0d1bb8d01fba39e79a262744b69a9df27438b9dbb0a25cd23acd57b6004a7f2309e432c0db4188c2e023a0b0299fd64723acfd57c1328d2345bba08fff4a9
 SHA512 
58fad4015824b9077bbd13cc3c6a994e5a54ed367264477854da7b129eea04c4cba44a580650a259b01f390a9f2028d7501df2ac4ab4821d085bbfe1cd887ec5
 DIST teleport-2.5.6.tar.gz 16216649 BLAKE2B 
e5ae8645d59df2684601dab5c222399d89b356592774365ffbca4e3f2d9ed745f2839902ee1e244c7b7eb300230d771daa754e29fc8e79f833715094d4f2
 SHA512 
fae1eb53ff45115551c5002745303cd0e9a044557e6e56cda870a57531700bb68e23b59d2930ac2dd654b200732edc3ed9432e1bc0e9dbf0e7529e980599a323

diff --git a/sys-cluster/teleport/teleport-2.4.2.ebuild 
b/sys-cluster/teleport/teleport-2.4.2.ebuild
deleted file mode 100644
index dc7173e18dc..000
--- a/sys-cluster/teleport/teleport-2.4.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils golang-build systemd user
-
-DESCRIPTION="Modern SSH server for teams managing distributed infrastructure"
-HOMEPAGE="https://gravitational.com/teleport;
-
-EGO_PN="github.com/gravitational/${PN}/..."
-
-if [[ ${PV} == "" ]] ; then
-   inherit git-r3 golang-vcs
-   EGIT_REPO_URI="https://github.com/gravitational/${PN}.git;
-else
-   inherit golang-vcs-snapshot
-   SRC_URI="https://github.com/gravitational/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-IUSE=""
-LICENSE="Apache-2.0"
-RESTRICT="test strip"
-SLOT="0"
-
-DEPEND="
-   app-arch/zip
-   >=dev-lang/go-1.8.3"
-RDEPEND=""
-
-src_compile() {
-   GOPATH="${S}" emake -j1 -C src/${EGO_PN%/*} full
-}
-
-src_install() {
-   keepdir /var/lib/${PN} /etc/${PN}
-   dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport}
-
-   insinto /etc/${PN}
-   doins "${FILESDIR}"/${PN}.yaml
-
-   newinitd "${FILESDIR}"/${PN}.init.d ${PN}
-   newconfd "${FILESDIR}"/${PN}.conf.d ${PN}
-
-   systemd_dounit "${FILESDIR}"/${PN}.service
-   systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service
-}
-
-src_test() {
-   BUILDFLAGS="" GOPATH="${S}" emake -C src/${EGO_PN%/*} test
-}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/teleport/files/, sys-cluster/teleport/

2018-07-26 Thread Michał Górny
commit: a3a9f1d0002e2f2e17c6aaa594192dae4c3a56fc
Author: Graeme Lawes  gmail  com>
AuthorDate: Sun Jul  8 16:31:44 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 26 20:39:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3a9f1d0

sys-cluster/teleport: add v2.5.8

 sys-cluster/teleport/Manifest   |  1 +
 sys-cluster/teleport/files/teleport-2.5.init.d  | 37 -
 sys-cluster/teleport/files/teleport-2.5.service | 13 --
 sys-cluster/teleport/files/teleport.init.d  | 10 -
 sys-cluster/teleport/files/teleport.service |  8 ++--
 sys-cluster/teleport/teleport-2.5.8.ebuild  | 55 +
 6 files changed, 70 insertions(+), 54 deletions(-)

diff --git a/sys-cluster/teleport/Manifest b/sys-cluster/teleport/Manifest
index d1686e71f31..739e3918ea0 100644
--- a/sys-cluster/teleport/Manifest
+++ b/sys-cluster/teleport/Manifest
@@ -2,3 +2,4 @@ DIST teleport-2.4.2.tar.gz 9975909 BLAKE2B 
68916e1d15f49448e918b39b2a760f90eca29
 DIST teleport-2.4.5.tar.gz 9975753 BLAKE2B 
cdb6e577cd565cf6760d73c92cac674571e9b1257d23b280bd96428cca4e7c593738a925d3632a80fed3e0868c5f3aac79800db19bbf2a2b92d495600bf014cc
 SHA512 
15e7e3c52c058625eb525c7c9cda00186eba037edbed89d21fb090b87c05570a1636f328260d4c7445253b0f5b81f321ce0da7d2b7fc316a0a9938ed22cc6c9c
 DIST teleport-2.5.2.tar.gz 16211219 BLAKE2B 
28d0d1bb8d01fba39e79a262744b69a9df27438b9dbb0a25cd23acd57b6004a7f2309e432c0db4188c2e023a0b0299fd64723acfd57c1328d2345bba08fff4a9
 SHA512 
58fad4015824b9077bbd13cc3c6a994e5a54ed367264477854da7b129eea04c4cba44a580650a259b01f390a9f2028d7501df2ac4ab4821d085bbfe1cd887ec5
 DIST teleport-2.5.6.tar.gz 16216649 BLAKE2B 
e5ae8645d59df2684601dab5c222399d89b356592774365ffbca4e3f2d9ed745f2839902ee1e244c7b7eb300230d771daa754e29fc8e79f833715094d4f2
 SHA512 
fae1eb53ff45115551c5002745303cd0e9a044557e6e56cda870a57531700bb68e23b59d2930ac2dd654b200732edc3ed9432e1bc0e9dbf0e7529e980599a323
+DIST teleport-2.5.8.tar.gz 16219666 BLAKE2B 
dd64ef4ca5b26e025e46c88d58e7ec226810b583c4b740416f6cc0caec5ea7d050c732368917ec34c5f8a36c7670d2903baa6c32203a2c5cac972e3a2b4bcbbb
 SHA512 
070eebc889adde017641a833ee0e414c5f56848ac36fa96fb66e83062212307904e8264da758042765ba13d6a0c1b4f5314c1b0e90a2c37723ef1c0aa22889be

diff --git a/sys-cluster/teleport/files/teleport-2.5.init.d 
b/sys-cluster/teleport/files/teleport-2.5.init.d
deleted file mode 100644
index a951ec5318a..000
--- a/sys-cluster/teleport/files/teleport-2.5.init.d
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-: ${TELEPORT_CONFDIR:=/etc/teleport}
-: ${TELEPORT_PIDFILE:=/var/run/${SVCNAME}.pid}
-: ${TELEPORT_BINARY:=/usr/bin/teleport}
-: ${TELEPORT_LOGFILE:=/var/log/teleport.log}
-
-depend() {
-   need net
-}
-
-start() {
-   ebegin "Starting Teleport SSH Service"
-   start-stop-daemon --start --exec /usr/bin/teleport \
-   --background --make-pidfile --pidfile "${TELEPORT_PIDFILE}" \
-   --stderr "${TELEPORT_LOGFILE}" \
-   -- start --config="${TELEPORT_CONFDIR}/teleport.yaml" \
-   ${TELEPORT_OPTS}
-   eend $?
-}
-
-stop() {
-   ebegin "Stopping Teleport SSH Service"
-   start-stop-daemon --stop --exec /usr/bin/teleport \
-   --pidfile "${TELEPORT_PIDFILE}"
-   eend $?
-}
-
-reload() {
-   checkconfig || return 1
-   ebegin "Reloading ${SVCNAME}"
-   start-stop-daemon --signal HUP \
-   --exec "${TELEPORT_BINARY}" --pidfile "${TELEPORT_PIDFILE}"
-   eend $?
-}

diff --git a/sys-cluster/teleport/files/teleport-2.5.service 
b/sys-cluster/teleport/files/teleport-2.5.service
deleted file mode 100644
index 37b38210aff..000
--- a/sys-cluster/teleport/files/teleport-2.5.service
+++ /dev/null
@@ -1,13 +0,0 @@
-[Unit]
-Description=Teleport SSH Service
-After=network.target
-
-[Service]
-Type=simple
-Restart=on-failure
-ExecStart=/usr/bin/teleport start --config=/etc/teleport/teleport.yaml 
--pid-file=/var/run/teleport.pid
-ExecReload=/bin/kill -HUP $MAINPID
-PIDFile=/var/run/teleport.pid
-
-[Install]
-WantedBy=multi-user.target

diff --git a/sys-cluster/teleport/files/teleport.init.d 
b/sys-cluster/teleport/files/teleport.init.d
index a5d08b7f3f6..a951ec5318a 100644
--- a/sys-cluster/teleport/files/teleport.init.d
+++ b/sys-cluster/teleport/files/teleport.init.d
@@ -18,7 +18,7 @@ start() {
--stderr "${TELEPORT_LOGFILE}" \
-- start --config="${TELEPORT_CONFDIR}/teleport.yaml" \
${TELEPORT_OPTS}
-   eend $?
+   eend $?
 }
 
 stop() {
@@ -27,3 +27,11 @@ stop() {
--pidfile "${TELEPORT_PIDFILE}"
eend $?
 }
+
+reload() {
+   checkconfig || return 1
+   ebegin "Reloading ${SVCNAME}"
+   start-stop-daemon --signal HUP \
+   --exec "${TELEPORT_BINARY}" 

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

2018-07-26 Thread Bernard Cafarelli
commit: 81066553aac2105903551e15fccd3c46ca5eb77f
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jul  8 16:35:56 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Jul 26 20:37:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81066553

x11-plugins/wmpager: EAPI7, improve ebuild

 x11-plugins/wmpager/wmpager-1.2-r2.ebuild | 34 +++
 1 file changed, 34 insertions(+)

diff --git a/x11-plugins/wmpager/wmpager-1.2-r2.ebuild 
b/x11-plugins/wmpager/wmpager-1.2-r2.ebuild
new file mode 100644
index 000..377275d083a
--- /dev/null
+++ b/x11-plugins/wmpager/wmpager-1.2-r2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A simple pager docklet for the WindowMaker window manager"
+HOMEPAGE="http://wmpager.sourceforge.net/;
+SRC_URI="mirror://sourceforge/wmpager/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~sparc ~x86"
+
+RDEPEND="x11-libs/libX11
+   x11-libs/libXpm
+   x11-libs/libXext"
+
+src_prepare() {
+   default
+   sed -i "s:\(WMPAGER_DEFAULT_INSTALL_DIR \).*:\1\"/usr/share/wmpager\":" 
\
+   src/wmpager.c || die
+
+   #Honour Gentoo CFLAGS and LDFLAGS, see bug #337604
+   sed -i -e "s/-g/${CFLAGS}/" \
+   -e "s/\${LIBS}/\${LIBS} \${LDFLAGS}/" \
+   src/Makefile || die
+}
+
+src_install() {
+   emake INSTALLDIR="${ED}/usr" install
+   rm -rf "${ED}"/usr/man || die
+   doman man/man1/*.1x
+   dodoc README
+}



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

2018-07-26 Thread Zac Medico
commit: eb57a6cdd3e0df3c3a82741498675889c9462f88
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Jul 26 20:30:24 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Jul 26 20:35:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb57a6cd

dev-python/python-netlink: block dev-libs/libnl[python]

 * Detected file collision(s):
 *
 *  /usr/lib64/python3.6/site-packages/netlink/__init__.py

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

 dev-python/python-netlink/python-netlink-0.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/python-netlink/python-netlink-0.1.ebuild 
b/dev-python/python-netlink/python-netlink-0.1.ebuild
index 2043501dc66..3ce39a389a6 100644
--- a/dev-python/python-netlink/python-netlink-0.1.ebuild
+++ b/dev-python/python-netlink/python-netlink-0.1.ebuild
@@ -16,6 +16,7 @@ LICENSE="LGPL-3+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="!dev-libs/libnl[python]"
 S=${WORKDIR}/${MY_P}
 
 python_prepare_all() {



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmforkplop/files/, x11-plugins/wmforkplop/

2018-07-26 Thread Bernard Cafarelli
commit: 0a45a7bd5563669e1074d68d21eea738e0c9057d
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jul 22 12:46:47 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Jul 26 20:30:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a45a7bd

x11-plugins/wmforkplop: EAPI7, improve ebuild

 .../wmforkplop/files/wmforkplop-0.9.3-cflags.patch |  4 ++--
 x11-plugins/wmforkplop/wmforkplop-0.9.3-r2.ebuild  | 18 ++
 2 files changed, 20 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/wmforkplop/files/wmforkplop-0.9.3-cflags.patch 
b/x11-plugins/wmforkplop/files/wmforkplop-0.9.3-cflags.patch
index 3c7c369aac4..8846e46e2b9 100644
--- a/x11-plugins/wmforkplop/files/wmforkplop-0.9.3-cflags.patch
+++ b/x11-plugins/wmforkplop/files/wmforkplop-0.9.3-cflags.patch
@@ -1,5 +1,5 @@
 configure.orig 2012-10-23 15:54:48.098767586 +0200
-+++ configure  2012-10-23 15:54:56.946510053 +0200
+--- a/configure2012-10-23 15:54:48.098767586 +0200
 b/configure2012-10-23 15:54:56.946510053 +0200
 @@ -3483,9 +3483,6 @@
  
  

diff --git a/x11-plugins/wmforkplop/wmforkplop-0.9.3-r2.ebuild 
b/x11-plugins/wmforkplop/wmforkplop-0.9.3-r2.ebuild
new file mode 100644
index 000..5d55aaf80fb
--- /dev/null
+++ b/x11-plugins/wmforkplop/wmforkplop-0.9.3-r2.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="monitors the forking activity of the kernel and most active 
processes"
+HOMEPAGE="http://hules.free.fr/wmforkplop;
+SRC_URI="http://hules.free.fr/wmforkplop/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
+
+DEPEND="gnome-base/libgtop
+   media-libs/imlib2[X]"
+
+# Easier to patch configure directly here
+PATCHES=( "${FILESDIR}"/${P}-cflags.patch )



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

2018-07-26 Thread Bernard Cafarelli
commit: e6f4fc0e5f9cf31650a3dfdab40ed54af58f14f3
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jul 22 12:55:10 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Jul 26 20:30:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6f4fc0e

x11-plugins/wmifinfo: add EAPI7 ebuild

 x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild | 31 
 1 file changed, 31 insertions(+)

diff --git a/x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild 
b/x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild
new file mode 100644
index 000..98816a1f878
--- /dev/null
+++ b/x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit toolchain-funcs
+
+DESCRIPTION="a dockapp for monitoring network interfaces"
+HOMEPAGE="https://www.dockapps.net/wmifinfo;
+SRC_URI="https://www.dockapps.net/download/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+RDEPEND="x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXpm"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto"
+
+S="${WORKDIR}/dockapps"
+
+src_compile() {
+   emake CC="$(tc-getCC)" LD="$(tc-getCC)" \
+   CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX=/usr install
+   dodoc README Changelog
+}



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmfishtime/files/, x11-plugins/wmfishtime/

2018-07-26 Thread Bernard Cafarelli
commit: 84b538f61550bf925d55d0b89b346746642f344a
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jul 22 12:28:25 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Jul 26 20:30:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84b538f6

x11-plugins/wmfishtime: EAPI7, improve ebuild

 .../files/wmfishtime-1.24-no_display.patch |  4 +--
 x11-plugins/wmfishtime/wmfishtime-1.24-r3.ebuild   | 38 ++
 2 files changed, 40 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/wmfishtime/files/wmfishtime-1.24-no_display.patch 
b/x11-plugins/wmfishtime/files/wmfishtime-1.24-no_display.patch
index a991cdab934..8ae99b049f6 100644
--- a/x11-plugins/wmfishtime/files/wmfishtime-1.24-no_display.patch
+++ b/x11-plugins/wmfishtime/files/wmfishtime-1.24-no_display.patch
@@ -1,5 +1,5 @@
 fishmon.c.orig 2010-06-27 18:38:42.0 +0200
-+++ fishmon.c  2010-06-27 18:40:56.0 +0200
+--- a/fishmon.c2010-06-27 18:38:42.0 +0200
 b/fishmon.c2010-06-27 18:40:56.0 +0200
 @@ -152,6 +152,8 @@
  
  int main(int argc, char **argv)

diff --git a/x11-plugins/wmfishtime/wmfishtime-1.24-r3.ebuild 
b/x11-plugins/wmfishtime/wmfishtime-1.24-r3.ebuild
new file mode 100644
index 000..05564bfd188
--- /dev/null
+++ b/x11-plugins/wmfishtime/wmfishtime-1.24-r3.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit toolchain-funcs
+
+DESCRIPTION="A fun clock applet for your desktop featuring swimming fish"
+HOMEPAGE="http://www.ne.jp/asahi/linux/timecop;
+SRC_URI="http://www.ne.jp/asahi/linux/timecop/software/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND="x11-libs/gtk+:2
+   x11-libs/libX11"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/${P}-gtk.patch
+   "${FILESDIR}"/${P}-no_display.patch )
+
+DOCS=( ALL_I_GET_IS_A_GRAY_BOX AUTHORS ChangeLog CODING README )
+
+src_prepare() {
+   default
+   sed -i -e "s/\$(CC)/& \$(LDFLAGS)/" Makefile || die #331891
+}
+
+src_compile() {
+   emake CC="$(tc-getCC)"
+}
+
+src_install() {
+   dobin ${PN}
+   doman ${PN}.1
+   einstalldocs
+}



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

2018-07-26 Thread Bernard Cafarelli
commit: 07b5fd136fac50a329f38d071cefc89a11efd109
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jul 22 12:52:03 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Jul 26 20:30:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b5fd13

x11-plugins/wmfsm: EAPI7, improve ebuild

 x11-plugins/wmfsm/wmfsm-0.36-r1.ebuild | 29 +
 1 file changed, 29 insertions(+)

diff --git a/x11-plugins/wmfsm/wmfsm-0.36-r1.ebuild 
b/x11-plugins/wmfsm/wmfsm-0.36-r1.ebuild
new file mode 100644
index 000..c350aba8961
--- /dev/null
+++ b/x11-plugins/wmfsm/wmfsm-0.36-r1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit autotools
+
+DESCRIPTION="dockapp for monitoring filesystem usage"
+HOMEPAGE="https://www.dockapps.net/wmfsm;
+SRC_URI="https://dev.gentoo.org/~voyageur/distfiles/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+RDEPEND=">=x11-libs/libdockapp-0.7:=
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXt
+   x11-libs/libXpm"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto"
+
+src_prepare() {
+   default
+   sed -e "/^X11LIBS/s/-I$x_includes //" -i configure.ac || die "sed 
failed"
+
+   eautoreconf
+}



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

2018-07-26 Thread Bernard Cafarelli
commit: 8b3c624a17d4cceb69f3b99c074d8ebd8f70d0c5
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jul 22 12:49:43 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Jul 26 20:30:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b3c624a

x11-plugins/wmfrog: EAPI7, improve ebuild

 x11-plugins/wmfrog/wmfrog-0.3.1-r1.ebuild | 34 +++
 1 file changed, 34 insertions(+)

diff --git a/x11-plugins/wmfrog/wmfrog-0.3.1-r1.ebuild 
b/x11-plugins/wmfrog/wmfrog-0.3.1-r1.ebuild
new file mode 100644
index 000..2951a537833
--- /dev/null
+++ b/x11-plugins/wmfrog/wmfrog-0.3.1-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="a weather application, it shows the weather in a graphical way"
+HOMEPAGE="http://wiki.colar.net/wmfrog_dockapp;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+RDEPEND="x11-libs/libXext
+   x11-libs/libXpm
+   x11-libs/libX11"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto"
+
+S="${WORKDIR}/Src"
+
+DOCS=( ../{CHANGES,HINTS} )
+
+src_prepare() {
+   default
+   emake clean
+}
+
+src_compile() {
+   emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" INCDIR="" \
+   LIBDIR="" SYSTEM="${LDFLAGS}"
+}



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

2018-07-26 Thread Bernard Cafarelli
commit: 569c573fa2b5bc47e30c39cc20b4e460396e9027
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jul 22 10:56:22 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Jul 26 20:28:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=569c573f

x11-plugins/wmdiskmon: EAPI7, improve ebuild

 x11-plugins/wmdiskmon/wmdiskmon-0.0.2-r1.ebuild | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/x11-plugins/wmdiskmon/wmdiskmon-0.0.2-r1.ebuild 
b/x11-plugins/wmdiskmon/wmdiskmon-0.0.2-r1.ebuild
new file mode 100644
index 000..3c0f435a628
--- /dev/null
+++ b/x11-plugins/wmdiskmon/wmdiskmon-0.0.2-r1.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="a dockapp to display disk space usage"
+HOMEPAGE="http://tnemeth.free.fr/projets/dockapps.html;
+SRC_URI="http://tnemeth.free.fr/projets/programmes/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+RDEPEND="x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXpm"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto
+   x11-libs/libXt"



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmfire/, x11-plugins/wmfire/files/

2018-07-26 Thread Bernard Cafarelli
commit: 4a58e16fba5c8a1fad064af132e69ce881f0f4b4
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jul 22 11:06:19 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Jul 26 20:28:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a58e16f

x11-plugins/wmfire: EAPI7, improve ebuild

 .../wmfire/files/wmfire-1.2.4-no_display.patch |  4 +--
 x11-plugins/wmfire/wmfire-1.2.4-r3.ebuild  | 40 ++
 2 files changed, 42 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/wmfire/files/wmfire-1.2.4-no_display.patch 
b/x11-plugins/wmfire/files/wmfire-1.2.4-no_display.patch
index a2540a247cf..d69e6c38633 100644
--- a/x11-plugins/wmfire/files/wmfire-1.2.4-no_display.patch
+++ b/x11-plugins/wmfire/files/wmfire-1.2.4-no_display.patch
@@ -1,5 +1,5 @@
 src/wmfire.c.orig  2010-06-28 23:53:35.0 +0200
-+++ src/wmfire.c   2010-06-28 23:54:35.0 +0200
+--- a/src/wmfire.c 2010-06-28 23:53:35.0 +0200
 b/src/wmfire.c 2010-06-28 23:54:35.0 +0200
 @@ -150,6 +150,8 @@
  int
  main(int argc, char **argv)

diff --git a/x11-plugins/wmfire/wmfire-1.2.4-r3.ebuild 
b/x11-plugins/wmfire/wmfire-1.2.4-r3.ebuild
new file mode 100644
index 000..64ca328dbf7
--- /dev/null
+++ b/x11-plugins/wmfire/wmfire-1.2.4-r3.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Load monitoring dockapp displaying dancing flame"
+HOMEPAGE="http://www.improbability.net/#wmfire;
+SRC_URI="http://www.improbability.net/${PN}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="session"
+
+RDEPEND="x11-libs/gtk+:2
+   gnome-base/libgtop:2
+   x11-libs/libX11
+   x11-libs/libXext
+   session? ( x11-libs/libSM
+   x11-libs/libICE )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( ALL_I_GET_IS_A_GREY_BOX AUTHORS ChangeLog NEWS README )
+
+src_prepare() {
+   default
+   eapply "${FILESDIR}"/${PN}-1.2.3-stringh.patch
+   eapply "${FILESDIR}"/${P}-no_display.patch
+   eapply "${FILESDIR}"/${P}-lastprocessor_SMP.patch
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --disable-dependency-tracking \
+   $(use_enable session)
+}



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

2018-07-26 Thread Bernard Cafarelli
commit: 57cdaa39ecbff31b9ac959e65a12536edf565247
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jul 22 10:48:35 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Jul 26 20:28:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57cdaa39

x11-plugins/wmcms: add EAPI7 ebuild

 x11-plugins/wmcms/wmcms-0.3.5-r3.ebuild | 32 
 1 file changed, 32 insertions(+)

diff --git a/x11-plugins/wmcms/wmcms-0.3.5-r3.ebuild 
b/x11-plugins/wmcms/wmcms-0.3.5-r3.ebuild
new file mode 100644
index 000..3c00c746459
--- /dev/null
+++ b/x11-plugins/wmcms/wmcms-0.3.5-r3.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="WindowMaker CPU and Memory Usage Monitor Dock App"
+HOMEPAGE="https://www.geocities.ws/neofpo/wmcms.html;
+SRC_URI="https://www.geocities.ws/neofpo/files/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND=">=x11-libs/libdockapp-0.7:="
+
+src_prepare() {
+   default
+   eapply "${FILESDIR}"/wmcms-0.3.5-s4t4n.patch
+
+   # Respect LDFLAGS, see bug #335031
+   sed -e 's/ -o wmcms/ ${LDFLAGS} -o wmcms/' -i Makefile || die
+
+   sed -e 's###' -i *.c || die
+}
+
+src_compile() {
+   emake CFLAGS="${CFLAGS}"
+}
+
+src_install() {
+   dobin wmcms
+}



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

2018-07-26 Thread Bernard Cafarelli
commit: 4efbf3ca123ed0eaf7a7441da3abbbe486268f46
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jul 22 11:00:27 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Jul 26 20:28:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4efbf3ca

x11-plugins/wmdots: EAPI7, improve ebuild

 x11-plugins/wmdots/wmdots-0.2_beta-r1.ebuild | 43 
 1 file changed, 43 insertions(+)

diff --git a/x11-plugins/wmdots/wmdots-0.2_beta-r1.ebuild 
b/x11-plugins/wmdots/wmdots-0.2_beta-r1.ebuild
new file mode 100644
index 000..4f65793c900
--- /dev/null
+++ b/x11-plugins/wmdots/wmdots-0.2_beta-r1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="multishape 3d rotating dots"
+HOMEPAGE="https://www.dockapps.net/wmdots;
+SRC_URI="https://www.dockapps.net/download/${P/_}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+RDEPEND="x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXpm"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${PN}"
+
+src_prepare() {
+   default
+   eapply "${FILESDIR}"/${P}-stringh.patch
+   sed -e "s:cc:$(tc-getCC):g" \
+   -e "s:-g -O2:${CFLAGS}:g" -i Makefile || die
+
+   #Fix compilation target
+   sed -e "s:wmifs:wmdots:" -i Makefile || die
+
+   #Honour Gentoo LDFLAGS, see bug #336982
+   sed -e "s:-o wmdots:\$(LDFLAGS) -o wmdots:" -i Makefile || die
+}
+
+src_compile() {
+   emake clean
+   emake LIBDIR="-L/usr/$(get_libdir)"
+}
+
+src_install() {
+   dobin wmdots
+}



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

2018-07-26 Thread Bernard Cafarelli
commit: 57ffc757f77a5ceec0950a9f0af965cbf340cc66
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jul 22 10:53:48 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Jul 26 20:28:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57ffc757

x11-plugins/wmcp: EAPI7, improve ebuild

 x11-plugins/wmcp/wmcp-1.2.8-r1.ebuild | 42 +++
 1 file changed, 42 insertions(+)

diff --git a/x11-plugins/wmcp/wmcp-1.2.8-r1.ebuild 
b/x11-plugins/wmcp/wmcp-1.2.8-r1.ebuild
new file mode 100644
index 000..14b781073ff
--- /dev/null
+++ b/x11-plugins/wmcp/wmcp-1.2.8-r1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="A pager dockapp"
+HOMEPAGE="https://www.dockapps.net/wmcp;
+SRC_URI="https://www.dockapps.net/download/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86"
+
+RDEPEND="x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXpm"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto"
+
+src_prepare() {
+   default
+   eapply "${FILESDIR}"/${P}-gcc33.patch
+   eapply "${FILESDIR}"/${P}-stdlibh.patch
+   sed -i \
+   -e "s:gcc:$(tc-getCC):g" \
+   -e "s:i686-pc-linux-gnu-gcc -g:i686-pc-linux-gnu-gcc:g" \
+   -e "s:i686-pc-linux-gnu-gcc -o:i686-pc-linux-gnu-gcc ${LDFLAGS} 
-o:" \
+   Makefile || die
+}
+
+src_compile() {
+   emake -j1 INCLUDES="-I/usr/include/X11" \
+   LIBINC="-L/usr/$(get_libdir)" \
+   FLAGS="${CFLAGS}"
+}
+
+src_install() {
+   dobin wmcp
+   dodoc README
+}



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

2018-07-26 Thread Bernard Cafarelli
commit: fb565920d599d9cfa8faea836f16685617169d7f
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Jul 22 10:46:41 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Jul 26 20:28:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb565920

x11-plugins/wmcms: use HTTPs

 x11-plugins/wmcms/wmcms-0.3.5-r2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/x11-plugins/wmcms/wmcms-0.3.5-r2.ebuild 
b/x11-plugins/wmcms/wmcms-0.3.5-r2.ebuild
index 39876e15b96..688174fdfc1 100644
--- a/x11-plugins/wmcms/wmcms-0.3.5-r2.ebuild
+++ b/x11-plugins/wmcms/wmcms-0.3.5-r2.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 inherit eutils
 
 DESCRIPTION="WindowMaker CPU and Memory Usage Monitor Dock App"
-HOMEPAGE="http://www.geocities.ws/neofpo/wmcms.html;
-SRC_URI="http://www.geocities.ws/neofpo/files/${P}.tar.gz;
+HOMEPAGE="https://www.geocities.ws/neofpo/wmcms.html;
+SRC_URI="https://www.geocities.ws/neofpo/files/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"



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

2018-07-26 Thread Mikle Kolyada
commit: 4e0f9da7b05a93ff212cc1955caca1fffc684f13
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 20:24:18 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 20:24:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e0f9da7

app-misc/cdircmp: merge stable keywords

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-misc/cdircmp/cdircmp-0.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/cdircmp/cdircmp-0.3-r2.ebuild 
b/app-misc/cdircmp/cdircmp-0.3-r2.ebuild
index ea5818e4453..928b138f683 100644
--- a/app-misc/cdircmp/cdircmp-0.3-r2.ebuild
+++ b/app-misc/cdircmp/cdircmp-0.3-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://home.hccnet.nl/paul.schuurmans/linux/download/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE=""
 
 RDEPEND=">=sys-libs/ncurses-5.4:0="



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

2018-07-26 Thread Mikle Kolyada
commit: 731b4724f819b76738e9d8fee4a2fb669fa85e5b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 20:24:43 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 20:24:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=731b4724

app-misc/cdircmp: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-misc/cdircmp/cdircmp-0.3-r1.ebuild | 38 --
 1 file changed, 38 deletions(-)

diff --git a/app-misc/cdircmp/cdircmp-0.3-r1.ebuild 
b/app-misc/cdircmp/cdircmp-0.3-r1.ebuild
deleted file mode 100644
index f7851f0207a..000
--- a/app-misc/cdircmp/cdircmp-0.3-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit toolchain-funcs
-
-DESCRIPTION="Compare directories and select files to copy"
-HOMEPAGE="http://home.hccnet.nl/paul.schuurmans/;
-SRC_URI="http://home.hccnet.nl/paul.schuurmans/linux/download/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-RDEPEND=">=sys-libs/ncurses-5.4"
-DEPEND="${RDEPEND}
-   >=sys-apps/sed-4"
-
-src_prepare() {
-   sed -i Makefile \
-   -e 's| -o | $(LDFLAGS)&|g' \
-   || die "sed Makefile"
-}
-
-src_compile() {
-   emake CC="$(tc-getCC)" \
-   CFLAGS="${CFLAGS}" \
-   LDFLAGS="${LDFLAGS}" \
-   || die "emake failed"
-}
-
-src_install() {
-   dodoc AUTHORS ChangeLog README
-
-   dobin ${PN} || die "dobin failed"
-}



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

2018-07-26 Thread Craig Andrews
commit: 0ac821ac65007403da41a434d7b5ee03bcb17447
Author: Craig Andrews  gentoo  org>
AuthorDate: Thu Jul 26 20:16:02 2018 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Thu Jul 26 20:16:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ac821ac

app-misc/lirc: Enable py3.7

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-misc/lirc/lirc-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/lirc/lirc-0.10.1.ebuild b/app-misc/lirc/lirc-0.10.1.ebuild
index 9b8d2c10c01..2553dd192c8 100644
--- a/app-misc/lirc/lirc-0.10.1.ebuild
+++ b/app-misc/lirc/lirc-0.10.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python3_4 python3_{5,6} )
+PYTHON_COMPAT=( python3_4 python3_{5,6,7} )
 
 inherit eutils flag-o-matic linux-info python-single-r1 systemd xdg-utils
 



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

2018-07-26 Thread Alfredo Tupone
commit: aff3399c534657a3d399e7ff82ea5af845569908
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Thu Jul 26 20:05:52 2018 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Thu Jul 26 20:05:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aff3399c

dev-ada/gps: respect ADAFLAGS/CFLAGS

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ada/gps/files/gps-2018-gentoo.patch | 56 +
 dev-ada/gps/gps-2018.ebuild |  6 ++--
 2 files changed, 46 insertions(+), 16 deletions(-)

diff --git a/dev-ada/gps/files/gps-2018-gentoo.patch 
b/dev-ada/gps/files/gps-2018-gentoo.patch
index d03a022..06a080b69d5 100644
--- a/dev-ada/gps/files/gps-2018-gentoo.patch
+++ b/dev-ada/gps/files/gps-2018-gentoo.patch
@@ -1,25 +1,15 @@
 --- a/gps/Makefile 2018-07-09 20:27:34.950424490 +0200
 +++ b/gps/Makefile 2018-07-09 20:37:39.510558817 +0200
-@@ -47,7 +47,7 @@
+@@ -47,7 +47,8 @@
for f in ../kernel/generated/*; do cat $$f | tr -d '\015' > $$f-aux; mv 
-f $$f-aux $$f; done
  endif
$(GPRBUILD) $(GPRBUILD_FLAGS) -m -p -ws \
 -$(GPRBUILD_BUILD_TYPE_FLAGS) -Pgps -largs `pkg-config gmodule-2.0 
--libs`
-+$(GPRBUILD_BUILD_TYPE_FLAGS) -Pgps -largs `pkg-config gmodule-2.0 
--libs` -lpython2.7
++$(GPRBUILD_BUILD_TYPE_FLAGS) -Pgps -largs `pkg-config gmodule-2.0 
--libs` -lpython2.7 \
++-cargs:Ada ${ADAFLAGS} -cargs:C ${CFLAGS}
  
  resources:
  ifeq ($(OS),Windows_NT)
 a/testsuite/Makefile   2018-07-09 21:45:48.115937491 +0200
-+++ b/testsuite/Makefile   2018-07-09 21:46:15.896547268 +0200
-@@ -13,7 +13,7 @@
- endif
- 
- all default: package
--  $(GPRBUILD) -P testsuite_drivers.gpr -m -XOS=${OS} -j0 
-XLIBRARY_TYPE=relocatable -XXMLADA_BUILD=relocatable
-+  $(GPRBUILD) -P testsuite_drivers.gpr -m -XOS=${OS} -j0 
-XLIBRARY_TYPE=relocatable -XXMLADA_BUILD=relocatable -largs -lpython2.7
- 
- package:
-   mkdir -p share/doc
 --- a/Makefile.in  2018-07-09 21:51:08.422550386 +0200
 +++ b/Makefile.in  2018-07-09 21:51:32.187225891 +0200
 @@ -10,7 +10,7 @@
@@ -85,3 +75,43 @@
 
 
  
+--- a/gnatcoll_extras/gnatcoll_extras.gpr  2018-07-22 14:42:17.618161040 
+0200
 b/gnatcoll_extras/gnatcoll_extras.gpr  2018-07-22 14:43:33.973070921 
+0200
+@@ -14,6 +14,7 @@
+   for Switches ("C") use
+ ("-g", "-O2")
+ & Shared.Gtk_Cflags & Shared.Pygobject_Include & Shared.Python_Cflags;
++  for Driver ("C") use External ("CC", "gcc");
+end Compiler;
+ 
+ end GNATCOLL_Extras;
+--- a/widgets/widgets.gpr  2018-07-22 21:46:23.907355738 +0200
 b/widgets/widgets.gpr  2018-07-22 21:47:02.673825994 +0200
+@@ -14,6 +14,7 @@
+   for Switches ("C") use
+ ("-g", "-O2")
+ & Shared.Gtk_Cflags;
++  for Driver ("C") use External ("CC", "gcc");
+end Compiler;
+ 
+ end Widgets;
+--- a/common/common.gpr.in 2018-07-25 08:05:45.227060250 +0200
 b/common/common.gpr.in 2018-07-25 08:06:55.067009811 +0200
+@@ -23,6 +23,7 @@
+  for Switches ("dynamic_arrays.adb") use No_Checks;
+   when "Debug" =>
+   end case;
++  for Driver ("C") use External ("CC", "gcc");
+end Compiler;
+ 
+package Binder is
+--- a/shared.gpr.in2018-07-25 08:11:47.317597391 +0200
 b/shared.gpr.in2018-07-25 08:10:56.774362671 +0200
+@@ -60,6 +60,7 @@
+);
+ for Switches ("C") use Optimize & ("-g", "-O2");
+   end case;
++  for Driver ("C") use External ("CC", "gcc");
+end Compiler;
+ 
+package Binder is

diff --git a/dev-ada/gps/gps-2018.ebuild b/dev-ada/gps/gps-2018.ebuild
index e67c569534f..5a97ccc8bd2 100644
--- a/dev-ada/gps/gps-2018.ebuild
+++ b/dev-ada/gps/gps-2018.ebuild
@@ -66,10 +66,10 @@ src_configure() {
 }
 
 src_compile() {
-   emake -C gps GPRBUILD_FLAGS="-v ${MAKEOPTS}" \
+   CC=/usr/bin/gcc-7.3.1 emake -C gps GPRBUILD_FLAGS="-v ${MAKEOPTS}" \
Build=Production
-   gprbuild -v -p -Pcli/cli.gpr -XLIBRARY_TYPE=relocatable
-   emake -C testsuite
+   gprbuild -v -p -Pcli/cli.gpr ${MAKEOPTS} -XLIBRARY_TYPE=relocatable \
+   -cargs:Ada ${ADAFLAGS}
 }
 
 src_install() {



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

2018-07-26 Thread Virgil Dupras
commit: dacc2876210a48f65a0f8db6e838b290e6d7873f
Author: Virgil Dupras  gentoo  org>
AuthorDate: Thu Jul 26 20:00:29 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Thu Jul 26 20:00:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dacc2876

dev-python/olefile: bump to 0.45.1

* EAPI 7
* Add python3_7
* Drop python3_4

Package-Manager: Portage-2.3.43, Repoman-2.3.10

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

diff --git a/dev-python/olefile/Manifest b/dev-python/olefile/Manifest
index c3ee87e8b99..765ba6aebf6 100644
--- a/dev-python/olefile/Manifest
+++ b/dev-python/olefile/Manifest
@@ -1 +1,2 @@
 DIST olefile-0.44.tar.gz 57903 BLAKE2B 
2df4078c147ff737b845fe4ca57b6520c39776efe6bac399b0b8acb4ca62f946a653f85ad0511f5fa42d8b544d539474d226fe144bc2604737f3b16e5edd5ff2
 SHA512 
92b6ad1bced5b2c8e5332a01e5a2e59527ec2303046d0babd665b0f02fe56966574eff56619de168c50f1ea40df2e61ce589ee61b634222146d049b129514c65
+DIST v0.45.1.tar.gz 97969 BLAKE2B 
246198e69cde316f24a183fdf07872edf9b1db2a168571eedb7efdb91166d4ad2658acaaa90e733950e437ef5c6ab8d1bb275cd1b24283b95497e254a39c9b26
 SHA512 
72d40056cac1d9566aa8e32b7b5484f61958a689130e71fa86bc0b9fed98f27a8cf34b824971357d42ec3dfd2d5bfa86d0f212727ff91d8daa3967969ff576e9

diff --git a/dev-python/olefile/olefile-0.45.1.ebuild 
b/dev-python/olefile/olefile-0.45.1.ebuild
new file mode 100644
index 000..73a28b8fd2c
--- /dev/null
+++ b/dev-python/olefile/olefile-0.45.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python package to parse, read and write Microsoft OLE2 files"
+HOMEPAGE="https://www.decalage.info/olefile;
+SRC_URI="https://github.com/decalage2/${PN}/archive/v${PV}.tar.gz;
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc"
+
+RDEPEND=""
+BDEPEND="
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
+
+python_compile_all() {
+   if use doc; then
+  emake -C doc html
+  HTML_DOCS=( doc/_build/html/. )
+   fi
+
+}



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

2018-07-26 Thread Mikle Kolyada
commit: feac73e9b606720175885e4fc8e240cdf16f17dd
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 19:30:11 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 19:30:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feac73e9

media-video/dvbackup: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-video/dvbackup/dvbackup-0.0.4-r1.ebuild | 52 ---
 1 file changed, 52 deletions(-)

diff --git a/media-video/dvbackup/dvbackup-0.0.4-r1.ebuild 
b/media-video/dvbackup/dvbackup-0.0.4-r1.ebuild
deleted file mode 100644
index dabe40404d6..000
--- a/media-video/dvbackup/dvbackup-0.0.4-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils
-
-DESCRIPTION="A small utility for creating backups on DV tapes"
-HOMEPAGE="http://dvbackup.sourceforge.net/;
-SRC_URI="mirror://sourceforge/dvbackup/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND="sys-libs/glibc
-   dev-libs/popt
-   sys-libs/zlib"
-
-RDEPEND="${DEPEND}
-   media-libs/libdv"
-
-src_prepare() {
-   local i
-
-   epatch "${FILESDIR}/${P}-gcc4.diff"
-
-   # fix Makefile to respect $LDFLAGS
-   sed -i -e 's:gcc \$(CFLAGS):\$(CC) \$(CFLAGS) \$(LDFLAGS):g' \
-   -e 's:^\(CFLAGS=\):#\1:g' Makefile
-
-   # convert LATIN1 docs to UTF-8
-   for i in ChangeLog ReleaseNotes; do
-   if [ -f "${i}" ]; then
-   echo ">>> Converting ${i} to UTF-8"
-   iconv -f LATIN1 -t UTF8 -o "${i}~" "${i}" && mv -f 
"${i}~" "${i}" || rm -f "${i}~"
-   fi
-   done
-}
-
-src_compile() {
-   emake dvbackup || die "emake failed"
-}
-
-src_install() {
-   dobin dvbackup
-   insinto /usr/share/${PN}
-   doins underrun-ntsc.dv underrun-pal.dv
-   dodoc AUTHORS ChangeLog ReleaseNotes
-   dohtml dvbackup.html
-}



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

2018-07-26 Thread Mikle Kolyada
commit: d811ce8fb18c2065687b305f252d54f06aac2bd6
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 19:29:42 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 19:30:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d811ce8f

media-video/dvbackup: revision bump (EAPI=7)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-video/dvbackup/dvbackup-0.0.4-r2.ebuild | 53 +++
 1 file changed, 53 insertions(+)

diff --git a/media-video/dvbackup/dvbackup-0.0.4-r2.ebuild 
b/media-video/dvbackup/dvbackup-0.0.4-r2.ebuild
new file mode 100644
index 000..a053819d163
--- /dev/null
+++ b/media-video/dvbackup/dvbackup-0.0.4-r2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="A small utility for creating backups on DV tapes"
+HOMEPAGE="http://dvbackup.sourceforge.net/;
+SRC_URI="mirror://sourceforge/dvbackup/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+DEPEND="sys-libs/glibc
+   dev-libs/popt
+   sys-libs/zlib"
+
+RDEPEND="${DEPEND}
+   media-libs/libdv"
+
+src_prepare() {
+   default
+
+   local i
+
+   eapply "${FILESDIR}/${P}-gcc4.diff"
+
+   # fix Makefile to respect $LDFLAGS
+   sed -i -e 's:gcc \$(CFLAGS):\$(CC) \$(CFLAGS) \$(LDFLAGS):g' \
+   -e 's:^\(CFLAGS=\):#\1:g' Makefile || die "sed failed"
+
+   # convert LATIN1 docs to UTF-8
+   for i in ChangeLog ReleaseNotes; do
+   if [ -f "${i}" ]; then
+   echo ">>> Converting ${i} to UTF-8"
+   iconv -f LATIN1 -t UTF8 -o "${i}~" "${i}" && mv -f 
"${i}~" "${i}" || rm -f "${i}~"
+   fi
+   done
+}
+
+src_compile() {
+   emake CC="$(tc-getCC)" dvbackup
+}
+
+src_install() {
+   dobin dvbackup
+   insinto /usr/share/${PN}
+   doins underrun-ntsc.dv underrun-pal.dv
+   dodoc AUTHORS dvbackup.html ChangeLog ReleaseNotes
+}



[gentoo-commits] repo/gentoo:master commit in: games-roguelike/mangband/

2018-07-26 Thread Jonas Stein
commit: a6272842d2161cc11a549333621479367d53becf
Author: Jonas Stein  gentoo  org>
AuthorDate: Thu Jul 26 19:14:34 2018 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Thu Jul 26 19:14:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6272842

games-roguelike/mangband: Maintainer retired

Proxied maintainer retired due to inactivity.
Closes: https://bugs.gentoo.org/584542
Package-Manager: Portage-2.3.43, Repoman-2.3.10

 games-roguelike/mangband/metadata.xml | 10 ++
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/games-roguelike/mangband/metadata.xml 
b/games-roguelike/mangband/metadata.xml
index 3891204b9a6..585b0dc75dd 100644
--- a/games-roguelike/mangband/metadata.xml
+++ b/games-roguelike/mangband/metadata.xml
@@ -1,11 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   flamb...@mangband.org
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
-
+   
+   



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

2018-07-26 Thread Mikle Kolyada
commit: 0477b53b0567947238e787335c43e4b8e46fa82a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 18:29:03 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 18:29:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0477b53b

media-video/m2vrequantizer: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 .../m2vrequantizer-0.0.2_pre20060306.ebuild| 36 --
 1 file changed, 36 deletions(-)

diff --git a/media-video/m2vrequantizer/m2vrequantizer-0.0.2_pre20060306.ebuild 
b/media-video/m2vrequantizer/m2vrequantizer-0.0.2_pre20060306.ebuild
deleted file mode 100644
index 524ea9eceb4..000
--- a/media-video/m2vrequantizer/m2vrequantizer-0.0.2_pre20060306.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-MY_P="${PN/m2vr/M2VR}-20060306"
-
-DESCRIPTION="Tool to requantize mpeg2 videos"
-HOMEPAGE="http://www.metakine.com/products/dvdremaster/modules.html;
-SRC_URI="mirror://vdrfiles/requant/${MY_P}.tgz"
-
-KEYWORDS="~amd64 x86"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/M2VRequantiser
-
-src_prepare() {
-
-   sed -i "s:#elif defined(__i386__):#elif defined(__i386__) || 
defined(__amd64__):" main.c
-}
-
-src_compile() {
-
-   gcc -c ${CFLAGS} main.c -o requant.o
-   gcc ${CFLAGS} ${LDFLAGS} requant.o -o requant -lm
-}
-
-src_install() {
-
-   dobin requant
-}



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

2018-07-26 Thread Mikle Kolyada
commit: d30b48f434264ea255fc4581e6ddec3f961c9360
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 18:28:35 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 18:28:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d30b48f4

media-video/m2vrequantizer: merge stable keyword

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-video/m2vrequantizer/m2vrequantizer-0.0.2_pre20060306-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-video/m2vrequantizer/m2vrequantizer-0.0.2_pre20060306-r1.ebuild 
b/media-video/m2vrequantizer/m2vrequantizer-0.0.2_pre20060306-r1.ebuild
index e7d607277c1..e53d8d04db3 100644
--- a/media-video/m2vrequantizer/m2vrequantizer-0.0.2_pre20060306-r1.ebuild
+++ b/media-video/m2vrequantizer/m2vrequantizer-0.0.2_pre20060306-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Tool to requantize mpeg2 videos"
 HOMEPAGE="http://www.metakine.com/products/dvdremaster/modules.html;
 SRC_URI="mirror://vdrfiles/requant/${MY_P}.tgz"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 SLOT="0"
 LICENSE="GPL-2"
 



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

2018-07-26 Thread Mikle Kolyada
commit: 12a2f41edbb6861bbb61eeba4dbd82a845c2e655
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 18:17:01 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 18:17:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12a2f41e

net-wireless/bss: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-wireless/bss/bss-0.8.ebuild | 33 -
 1 file changed, 33 deletions(-)

diff --git a/net-wireless/bss/bss-0.8.ebuild b/net-wireless/bss/bss-0.8.ebuild
deleted file mode 100644
index eb974fe4614..000
--- a/net-wireless/bss/bss-0.8.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-inherit toolchain-funcs
-
-DESCRIPTION="Bluetooth stack smasher / fuzzer"
-HOMEPAGE="http://securitech.homeunix.org/blue/;
-SRC_URI="http://securitech.homeunix.org/blue/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND="net-wireless/bluez"
-
-src_prepare() {
-   sed -i -e 's:/local::' Makefile || die
-}
-
-src_compile() {
-   emake \
-   CC="$(tc-getCC)" \
-   CFLAGS="${CFLAGS}" \
-   BSS_FLAGS="${LDFLAGS}" || die
-}
-
-src_install() {
-   dosbin bss || die
-   dodoc AUTHOR BUGS CHANGELOG CONTRIB NOTES README TODO \
-   replay_packet/replay_l2cap_packet.c
-}



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

2018-07-26 Thread Mikle Kolyada
commit: 4e4dc32ba01987a4c7298a1ff9fc05eac1f8ccb9
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 18:16:18 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 18:17:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e4dc32b

net-wireless/bss: revision bump (EAPI=7)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-wireless/bss/bss-0.8-r1.ebuild | 35 +++
 1 file changed, 35 insertions(+)

diff --git a/net-wireless/bss/bss-0.8-r1.ebuild 
b/net-wireless/bss/bss-0.8-r1.ebuild
new file mode 100644
index 000..8747d82157c
--- /dev/null
+++ b/net-wireless/bss/bss-0.8-r1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Bluetooth stack smasher / fuzzer"
+HOMEPAGE="http://securitech.homeunix.org/blue/;
+SRC_URI="http://securitech.homeunix.org/blue/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+DEPEND="net-wireless/bluez"
+
+src_prepare() {
+   default
+   sed -i -e 's:/local::' Makefile || die
+}
+
+src_compile() {
+   emake \
+   CC="$(tc-getCC)" \
+   CFLAGS="${CFLAGS}" \
+   BSS_FLAGS="${LDFLAGS}"
+}
+
+src_install() {
+   dosbin bss
+   dodoc AUTHOR BUGS CHANGELOG CONTRIB NOTES README TODO \
+   replay_packet/replay_l2cap_packet.c
+}



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

2018-07-26 Thread Brian Dolbec
commit: d32fc9a088a1abd9c6f9462822c3f5aac80f061f
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 18:14:24 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 18:14:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d32fc9a0

dev-util/buildbot: Fix missed checkconfig section bug 661618

Adds RUNTIME_PYTHON default setting to the init.d script

Gentoo-bug: https://bugs.gentoo.org/661618
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot/files/buildmaster.initd | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-util/buildbot/files/buildmaster.initd 
b/dev-util/buildbot/files/buildmaster.initd
index 933c6e2b4e5..b75ae34830d 100644
--- a/dev-util/buildbot/files/buildmaster.initd
+++ b/dev-util/buildbot/files/buildmaster.initd
@@ -32,6 +32,9 @@ checkconfig() {
eerror "${BUILDMASTER_PATH} does not contain buildbot.tac"
return 1
fi
+   if [ ! -e "${RUNTIME_PYTHON}" ]; then
+   RUNTIME_PYTHON="/usr/bin/python"
+   fi
 }
 
 start() {



[gentoo-commits] repo/gentoo:master commit in: app-metrics/burrow_exporter/, app-metrics/burrow_exporter/files/

2018-07-26 Thread Manuel Rüger
commit: 9a307cfc1507931b1131665435c004b7e346aaad
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Jul 26 17:56:57 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Jul 26 17:56:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a307cfc

app-metrics/burrow_exporter: Initial version

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-metrics/burrow_exporter/Manifest   | 10 
 .../burrow_exporter/burrow_exporter-0.0.6.ebuild   | 57 ++
 .../burrow_exporter/files/burrow_exporter.confd|  2 +
 .../burrow_exporter/files/burrow_exporter.initd| 19 
 app-metrics/burrow_exporter/metadata.xml   | 11 +
 5 files changed, 99 insertions(+)

diff --git a/app-metrics/burrow_exporter/Manifest 
b/app-metrics/burrow_exporter/Manifest
new file mode 100644
index 000..8bfe6d9e9c1
--- /dev/null
+++ b/app-metrics/burrow_exporter/Manifest
@@ -0,0 +1,10 @@
+DIST burrow_exporter-0.0.6.tar.gz 9966 BLAKE2B 
26db3f53fd276073d709a416dd11f29008ee467c8e6deed2e90500044089e4fac34e035fec06323abaf50bec2da6291599799c91ffe140459a701b83ccdbb3c9
 SHA512 
faccb828a3044474bbd3eff1fc0a6ec163b5bc332a61ee0327832b65ae83ac202ce1f70f6519e2d3014275e995d8f6682245a52cb768491f0159df2f7198892b
+DIST 
github.com-Sirupsen-logrus-ba1b36c82c5e05c4f912a88eab0dcd91a171688f.tar.gz 
26698 BLAKE2B 
10f98819cf6e8e64e22ead564d8460414818cdfda5159a3e751a6457e531d8b8c34eee8fad5c35db187d52400a93ec7240bbea8821ac39360708b61940c33fcf
 SHA512 
7152a9e355e21de7980a28e915b712103ae1eaaa4142a5c37db00d8d30415cb2ecacf53bbe178cce49a1b9c4ad57336e8438a40f0bb92dd20a2bcabb1980013b
+DIST github.com-beorn7-perks-4c0e84591b9aa9e6dcfdf3e020114cd81f89d5f9.tar.gz 
10593 BLAKE2B 
057738aefe26d3d42ba1bc0906675403512a7bab1161bc1015f6d833296778f2236cb2b99bbebd5c7db2384634fef62d2afbfc8dd59bfb1320bc6184105aa437
 SHA512 
ecac8d361b4695b1fc32a9aaf9e0785201d1bebbf270226540e2c3fe193ad21f4fe8aed4e01937bd1e7273ca394455ca6fd7cf29418710f279cbb8eb92939e32
+DIST 
github.com-golang-protobuf-2bba0603135d7d7f5cb73b2125beeda19c09f4ef.tar.gz 
245411 BLAKE2B 
3b4a96035e106ce7e79b6c4b5517d051e5664e0eb163bc63cd52f00ae090dcb7f059d90017c28795a8a4ff639aec8a06b3b704eddd4512e0f9d5d2c3a42bb65c
 SHA512 
0bdd02036cc29cfd2a0dc7bb3d724addf1d8692e3905d719178fa52370d0ff9a4e8798cf5c18924cc265fbf522eeab305faff003efd37295c7bbff2428182ed0
+DIST 
github.com-matttproud-golang_protobuf_extensions-c12348ce28de40eed0136aa2b644d0ee0650e56c.tar.gz
 37215 BLAKE2B 
b3b007f925a4a1c1862c8cbe34c5cd225dfa610ad8c56b5328e6920a44b507680daeea97209370bd6b259654d0ca5791f4bcc54b8bd8970b9aaf994eada16d4f
 SHA512 
2f78290d1448cfc041d10210092d6da6f3df2b9b6c16ff730750e976e450dafe2645ba945319a0a3064c88f9c18652c69c0e0cf69d8931c08d23ffe65a8cc07d
+DIST 
github.com-prometheus-client_golang-42552c195dd3f3089fbf9cf26e139da150af35aa.tar.gz
 89835 BLAKE2B 
c66bacb6e1e33a070e56319f0af87e41b6588af1c200106cc00664e1b4f35d751e8c43fba81252e658f1ce121bc4826c67a253b016017f9ed1bd383b3ce3fdd2
 SHA512 
fc4dc996f87ed8dbd456f30ca83c1576911379ffc5aceb479f6b9e4b664fbace8359e3aa90249d11a75357891778415d6dd006d35ceb9544fe1818f8d894
+DIST 
github.com-prometheus-client_model-6f3806018612930941127f2a7c6c453ba2c527d2.tar.gz
 54707 BLAKE2B 
dec697d268b2bc8a2c6f9bb939e702fdc49e887fbe16a5f648f637e0ff425731ef4363707ea7732be27c2dff899d494f61aedd87232f90cdd97383033f4d833e
 SHA512 
5991a5cdb1f1a5f6d67d325e4db37cb8b6994909bbebefdd454a4e42b08271a40b163b56191b45b8c27e5c3e6cfe430354ee13bb38643041e4a17792d59d96bf
+DIST 
github.com-prometheus-common-13ba4ddd0caa9c28ca7b7bffe1dfa9ed8d5ef207.tar.gz 
58775 BLAKE2B 
05173a41bfaa944e2096b4360e0974f921934b6e6ec8b34cb7322158cabaa73e60ab091d4a5bcc9696b29995e7f71bdf55cb832af140a153452cf66c85c9a3cd
 SHA512 
9d4a937d12a738a7802102415cb061e0009ed43f901420560637e13f7952c26dab52e67011d8b1f8ffe474e223198a23becb65a6eb07cee1be9f6b1add566fd4
+DIST 
github.com-prometheus-procfs-65c1f6f8f0fc1e2185eb9863a3bc751496404259.tar.gz 
34890 BLAKE2B 
f0284354e3782e07371825b3fd6136a5fc516dae97218c90ac333ce749f87b435a55c6545691a7b71f90b98563fdba5f96c238007ee8187d98297edce1124cd5
 SHA512 
47cafa8b7a4f9496e1cfd6e2d24ae882ed3ac21a2417eb2ece2cfaa2e391d32b60d2ec8c3860988d8fe3af8bfa6d1430e938e5da1331a7e1df2828753dac82bd
+DIST github.com-urfave-cli-ab403a54a148f2d857920810291539e1f817ee7b.tar.gz 
56233 BLAKE2B 
e65241a10240c98eae5909a29ea63036583a073c290f613cac1d081534760bb4f0e15c2e02bd5693bae036901f9b029099ebea7679655da14b415332b0a3a93b
 SHA512 
c4af60825c3209850b6a5ce38a86ac0b8cd9bfdbe6ef83dc4a52cb2842465fb12f96a81631646135c0571f404d891867bd401a2182ab3f3586e8b86090648bcc

diff --git a/app-metrics/burrow_exporter/burrow_exporter-0.0.6.ebuild 
b/app-metrics/burrow_exporter/burrow_exporter-0.0.6.ebuild
new file mode 100644
index 000..25e00711b56
--- /dev/null
+++ b/app-metrics/burrow_exporter/burrow_exporter-0.0.6.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+

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

2018-07-26 Thread Mikle Kolyada
commit: 2e3a12e4b585ae970a38ae1c2f730ff8962ed7db
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 17:49:37 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 17:50:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e3a12e4

media-sound/horgand: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-sound/horgand/horgand-1.14.ebuild | 41 -
 1 file changed, 41 deletions(-)

diff --git a/media-sound/horgand/horgand-1.14.ebuild 
b/media-sound/horgand/horgand-1.14.ebuild
deleted file mode 100644
index 11769b0c923..000
--- a/media-sound/horgand/horgand-1.14.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Opensource software organ"
-HOMEPAGE="http://horgand.berlios.de;
-#SRC_URI="mirror://berlios/${PN}/${P}.tar.gz"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc sparc x86"
-IUSE=""
-
-RDEPEND="x11-libs/fltk:1
-   x11-libs/libXpm
-   media-libs/libsndfile
-   media-libs/alsa-lib
-   media-sound/alsa-utils
-   media-sound/jack-audio-connection-kit"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-overflow.patch
-}
-
-src_compile() {
-   emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS} $(fltk-config 
--cxxflags) \
-   $(pkg-config --cflags jack) $(pkg-config --cflags sndfile)" || 
die "emake failed."
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die "emake install failed."
-   dodoc AUTHORS ChangeLog NEWS README
-   doman man/${PN}.1
-   newicon src/${PN}128.xpm ${PN}.xpm
-   make_desktop_entry ${PN} Horgand ${PN}
-}



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

2018-07-26 Thread Mikle Kolyada
commit: 3766e6594f25373c0f470ca749379c94795863a6
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 17:48:58 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 17:50:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3766e659

media-sound/horgand: revision bump (EAPI=7)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-sound/horgand/horgand-1.14-r1.ebuild | 42 ++
 1 file changed, 42 insertions(+)

diff --git a/media-sound/horgand/horgand-1.14-r1.ebuild 
b/media-sound/horgand/horgand-1.14-r1.ebuild
new file mode 100644
index 000..a02538b9c3e
--- /dev/null
+++ b/media-sound/horgand/horgand-1.14-r1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop toolchain-funcs
+
+DESCRIPTION="Opensource software organ"
+HOMEPAGE="http://horgand.berlios.de;
+#SRC_URI="mirror://berlios/${PN}/${P}.tar.gz"
+SRC_URI="mirror://gentoo/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 ~ppc sparc x86"
+IUSE=""
+
+RDEPEND="x11-libs/fltk:1
+   x11-libs/libXpm
+   media-libs/libsndfile
+   media-libs/alsa-lib
+   media-sound/alsa-utils
+   media-sound/jack-audio-connection-kit"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+src_prepare() {
+   default
+   eapply "${FILESDIR}"/${P}-overflow.patch
+}
+
+src_compile() {
+   emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS} $(fltk-config 
--cxxflags) \
+   $(pkg-config --cflags jack) $(pkg-config --cflags sndfile)"
+}
+
+src_install() {
+   default
+   doman man/${PN}.1
+   newicon src/${PN}128.xpm ${PN}.xpm
+   make_desktop_entry ${PN} Horgand ${PN}
+}



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

2018-07-26 Thread Zac Medico
commit: 289e000c530215f2c921ea3e21d195b37b390c9c
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Jul 26 17:03:44 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Jul 26 17:21:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=289e000c

app-text/podofo: version bump to 0.9.6_p20180715

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-text/podofo/Manifest  |   1 +
 app-text/podofo/podofo-0.9.6_p20180715.ebuild | 140 ++
 2 files changed, 141 insertions(+)

diff --git a/app-text/podofo/Manifest b/app-text/podofo/Manifest
index 40ed338f19f..8ba7817a349 100644
--- a/app-text/podofo/Manifest
+++ b/app-text/podofo/Manifest
@@ -1,2 +1,3 @@
+DIST podofo-0.9.6_p20180715.tar.xz 747444 BLAKE2B 
96d90add6d290d6722cd7412fd75433f87303bac385964f0967b4f119db4962f6ddbd93b49af8454051f421d77de70ad7ea0f5b01a66eeb690a75dbeec256eff
 SHA512 
4c9b09c716128110b47d6a02f118eb80b6009e9e79dbc83ff804a57f0abc011b789de9287b68a6c1d6704ef386f8062a3a495408af8a832782f0bf0128190a1f
 DIST podofo-0.9.6_pre20170508.tar.xz 919876 BLAKE2B 
39be46db0e36755c828373659f681aa6334ec6be01cdcc62616d8ce4e59a2ab916cbfc4aa58d4bf8ab95843a40b7b536cb1b2ccfa14beacf629ff1fbcb699613
 SHA512 
37d8e844ba5763d06d467e316871436e1a63795d66675677d9775cd1bd311f43b241d58e82213a0342ab69a0f5cd80261aad48c4af29c82f7bcc0c14bd242f10
 DIST podofo-0.9.6_pre20171027.tar.xz 919504 BLAKE2B 
d03852a25e50085ed2108e90c293600e0515c06918276888e63917ca00a9fe3b392cd9ec9aeb6f651fd7e0b45a5e3c08e3f4d6df6f4a04d8fb224fbdd0599342
 SHA512 
db1ac836abd7be0d2cc3c27114c7134de9de8ba931a6a8265514fedefe3c6f06a24371f7a5425c8b7251fe7166bc27f07733cba878ad24c12651c8c051cac8be

diff --git a/app-text/podofo/podofo-0.9.6_p20180715.ebuild 
b/app-text/podofo/podofo-0.9.6_p20180715.ebuild
new file mode 100644
index 000..7f963976107
--- /dev/null
+++ b/app-text/podofo/podofo-0.9.6_p20180715.ebuild
@@ -0,0 +1,140 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit cmake-utils flag-o-matic multilib toolchain-funcs
+
+DESCRIPTION="PoDoFo is a C++ library to work with the PDF file format"
+HOMEPAGE="https://sourceforge.net/projects/podofo/;
+SRC_URI="mirror://gentoo/${P}.tar.xz"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0/${PV%_*}"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="+boost idn libressl debug test +tools"
+REQUIRED_USE="test? ( tools )"
+
+RDEPEND="dev-lang/lua:=
+   idn? ( net-dns/libidn:= )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   media-libs/fontconfig:=
+   media-libs/freetype:2=
+   virtual/jpeg:0=
+   media-libs/libpng:0=
+   media-libs/tiff:0=
+   sys-libs/zlib:="
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   boost? ( dev-util/boost-build )
+   test? ( dev-util/cppunit )"
+
+DOCS="AUTHORS ChangeLog TODO"
+
+src_prepare() {
+   cmake-utils_src_prepare
+   local x sed_args
+
+   # bug 620934 - Disable linking with cppunit when possible, since it
+   # triggers errors with some older compilers.
+   use test || sed -e 's:^FIND_PACKAGE(CppUnit):#\0:' -i CMakeLists.txt || 
die
+
+   # bug 556962
+   sed -i -e 's|Decrypt( pEncryptedBuffer, nOutputLen, pDecryptedBuffer, 
m_lLen );|Decrypt( pEncryptedBuffer, (pdf_long)nOutputLen, pDecryptedBuffer, 
(pdf_long\&)m_lLen );|' \
+   test/unit/EncryptTest.cpp || die
+
+   sed -i \
+   -e "s:LIBDIRNAME \"lib\":LIBDIRNAME \"$(get_libdir)\":" \
+   -e "s:LIBIDN_FOUND:HAVE_LIBIDN:g" \
+   CMakeLists.txt || die
+
+   # Use pkg-config to find headers for bug #459404.
+   sed_args=
+   for x in $($(tc-getPKG_CONFIG) --cflags freetype2) ; do
+   [[ ${x} == -I* ]] || continue
+   x=${x#-I}
+   if [[ -f ${x}/ft2build.h ]] ; then
+   sed_args+=" -e s:/usr/include/\\r\$:${x}:"
+   elif [[ -f ${x}/freetype/config/ftheader.h ]] ; then
+   sed_args+=" -e s:/usr/include/freetype2\\r\$:${x}:"
+   fi
+   done
+   [[ -n ${sed_args} ]] && \
+   { sed -i ${sed_args} cmake/modules/FindFREETYPE.cmake || die; }
+
+   # Bug #439784: Add missing unistd include for close() and unlink().
+   sed -i 's:^#include $:#include \n\0:' -i \
+   test/unit/TestUtils.cpp || die
+
+   # TODO: fix these test cases
+   # ColorTest.cpp:62:Assertion
+   # Test name: ColorTest::testDefaultConstructor
+   # expected exception not thrown
+   # - Expected: PdfError
+   sed -e 's:CPPUNIT_TEST( testDefaultConstructor ://\0:' \
+   -e 's:CPPUNIT_TEST( testGreyConstructor ://\0:' \
+   -e 's:CPPUNIT_TEST( testRGBConstructor ://\0:' \
+   -e 's:CPPUNIT_TEST( testCMYKConstructor ://\0:' \
+   -e 's:CPPUNIT_TEST( 

[gentoo-commits] repo/gentoo:master commit in: virtual/podofo-build/

2018-07-26 Thread Zac Medico
commit: 5b94fa1b6e51299fa96139ae9952e858e7a41552
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Jul 26 17:15:52 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Jul 26 17:21:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b94fa1b

virtual/podofo-build: version bump to 0.9.6

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 virtual/podofo-build/podofo-build-0.9.6.ebuild | 15 +++
 1 file changed, 15 insertions(+)

diff --git a/virtual/podofo-build/podofo-build-0.9.6.ebuild 
b/virtual/podofo-build/podofo-build-0.9.6.ebuild
new file mode 100644
index 000..fc5859d6c70
--- /dev/null
+++ b/virtual/podofo-build/podofo-build-0.9.6.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Virtual package for building against PoDoFo"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="+boost idn debug test +tools"
+
+# Pull in boost for build-against header dependency (see bug #503802).
+RDEPEND="
+   app-text/podofo:0/${PV}[boost=,idn=,debug=,test=,tools=]
+   boost? ( dev-libs/boost )
+"



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

2018-07-26 Thread Brian Dolbec
commit: a7a3d825f681238883e3aed904de37f9365ffbe6
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 16:56:40 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7a3d825

dev-util/buildbot: Version bump to 1.3.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot/Manifest  |   1 +
 dev-util/buildbot/buildbot-1.3.0.ebuild | 210 
 2 files changed, 211 insertions(+)

diff --git a/dev-util/buildbot/Manifest b/dev-util/buildbot/Manifest
index fe05e44af16..147a94705ef 100644
--- a/dev-util/buildbot/Manifest
+++ b/dev-util/buildbot/Manifest
@@ -1,3 +1,4 @@
 DIST buildbot-0.8.12.tar.gz 4834352 BLAKE2B 
16d06d6ccbbb90581471cf1727cc9cdd556ab1c0fa1433bbe76475513a7482619b05c28038e956e8724b99a806aec371961302914567fd36caccfe342daa6aaa
 SHA512 
18c5144132fb033f3581d3c494d5e8ff35d3e8b1548764452ce9ae543d710e58a2c6e3e8e46a0ef237804f9a6a45485890ae4616ab655fb00d4ccf328d6f6645
 DIST buildbot-0.9.12.tar.gz 3057832 BLAKE2B 
8e1748739bacc3c884f353b2a1c798575e3ce5f451a1711ecf88a7c7e517da86d2e791748d31468a2bb07369022e96cb568518b7a8ce1d9e1cece0b6ab77eec8
 SHA512 
62459918267297b31b2a6416f72794c7a4ebdcb60de04ece1681f6b8be9debf161716cc70ad843fd468b23e02c521c0a0783a5a1e119d75648e107691d6b908d
 DIST buildbot-1.1.2.tar.gz 3101168 BLAKE2B 
35ec56440014015850a69324d475c4ca9555ad90da85b26a7a43eca74f08361137021aec72ddca37cbb24f21519ebf45948e66214291f356b4a1fbada7c0b3b8
 SHA512 
14c28d6fae18a10d89d41509635188d881ac76e7b61758481a9afbb22eb384d7ab5080383242e5850af13bfe46877985a91036270c3c4fbf01eafee5b7699815
+DIST buildbot-1.3.0.tar.gz 3119185 BLAKE2B 
d366b83baad7e865481535a2462ceb222aadce6c90a6229e82a72bf86518b8ebb0624d8ac8b64867783d58b6e9033b942a1ccd31fd6664a2b527eac9f11ab852
 SHA512 
e5ecf3eafe428a188c2410d270ee9bd5afc39122e62d35747288cf85347368ab4a94190b4ff6fe687269dc19cc7b91d33be8d3e3b637741e421a2cbd83572830

diff --git a/dev-util/buildbot/buildbot-1.3.0.ebuild 
b/dev-util/buildbot/buildbot-1.3.0.ebuild
new file mode 100644
index 000..f52f1c9e2ed
--- /dev/null
+++ b/dev-util/buildbot/buildbot-1.3.0.ebuild
@@ -0,0 +1,210 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+EGIT_REPO_URI="https://github.com/buildbot/${PN}.git;
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit readme.gentoo-r1 user systemd distutils-r1
+
+MY_PV="${PV/_p/.post}"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="BuildBot build automation system"
+HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot/;
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+IUSE="crypt doc docker examples irc test"
+
+RDEPEND="
+   >=dev-python/jinja-2.1[${PYTHON_USEDEP}]
+   >=dev-python/twisted-17.9.0[${PYTHON_USEDEP}]
+   >=dev-python/autobahn-0.16.0[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-0.8[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-migrate-0.9[${PYTHON_USEDEP}]
+   dev-python/future[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
+   >=dev-python/txaio-2.2.2[${PYTHON_USEDEP}]
+   dev-python/pyjwt[${PYTHON_USEDEP}]
+   >=dev-python/zope-interface-4.1.1[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-worker-${PV}[${PYTHON_USEDEP}]
+   crypt? (
+   >=dev-python/twisted-17.9.0[${PYTHON_USEDEP},crypt]
+   >=dev-python/pyopenssl-16.0.0[${PYTHON_USEDEP}]
+   dev-python/idna[${PYTHON_USEDEP}]
+   dev-python/service_identity[${PYTHON_USEDEP}]
+   )
+   irc? (
+   dev-python/txrequests[${PYTHON_USEDEP}]
+   )
+   docker? (
+   >=dev-python/docker-py-2.2.0[${PYTHON_USEDEP}]
+   )
+"
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+   doc? (
+   >=dev-python/sphinx-1.4.3[${PYTHON_USEDEP}]
+   dev-python/sphinxcontrib-blockdiag[${PYTHON_USEDEP}]
+   dev-python/sphinxcontrib-spelling[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   >=dev-python/docutils-0.8[${PYTHON_USEDEP}]
+   =dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
+   >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
+   dev-python/moto[${PYTHON_USEDEP}]
+   dev-python/boto3[${PYTHON_USEDEP}]
+   dev-python/pyjade[${PYTHON_USEDEP}]
+   dev-python/txgithub[${PYTHON_USEDEP}]
+   dev-python/txrequests[${PYTHON_USEDEP}]
+   dev-python/lz4[${PYTHON_USEDEP}]
+   dev-python/treq[${PYTHON_USEDEP}]
+   

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

2018-07-26 Thread Brian Dolbec
commit: 6d95544889bf42a8befd5539e860380546d99e85
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 15:42:07 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d955448

dev-util/buildbot-pkg: Clean old versions

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-pkg/Manifest |  3 --
 dev-util/buildbot-pkg/buildbot-pkg-0.9.13.ebuild   | 45 
 .../buildbot-pkg/buildbot-pkg-0.9.15_p1.ebuild | 49 --
 dev-util/buildbot-pkg/buildbot-pkg-1.1.0.ebuild| 49 --
 4 files changed, 146 deletions(-)

diff --git a/dev-util/buildbot-pkg/Manifest b/dev-util/buildbot-pkg/Manifest
index c54d3b26397..1df8d87554c 100644
--- a/dev-util/buildbot-pkg/Manifest
+++ b/dev-util/buildbot-pkg/Manifest
@@ -1,5 +1,2 @@
 DIST buildbot-pkg-0.9.12.tar.gz 4446 BLAKE2B 
e8077d3b212c968694d2d9e5018c9c985acbff592dbccfeb59543a507f263133268dde57efcacfabb90ea61c3184d34dced21f8e269f619d505166e68c76d43e
 SHA512 
5b9847747924b7e04ae7584f549fa498715e293c6dbdbfef1fe5896c8c96cd65471a908b48c46a32eddbcf8f7b3642402974b4ed3319cf42e90028e772b5e34b
-DIST buildbot-pkg-0.9.13.tar.gz 4448 BLAKE2B 
ea270faafa4a271e11ea1e64191dac0aaf9b6bc08e4d70e71746f9e70eadbe9d70555677bf7e9b264ac9146db0cb1cc639d86194b5280ad53fbe29bf073ee718
 SHA512 
1cf3ea6237062a0d8c3955ae75b76dd1193ed28c32528f341b242fe6dcc50f4300366474dcdce27246166b35cc1ca31df556b5e6481f5027d073122f1c00362d
-DIST buildbot-pkg-0.9.15.post1.tar.gz 4916 BLAKE2B 
17f38dd7c0d70a7d07fde7c53128901dee24bda0d6503bea1dacfbf6f14bba17b645f5067e0932a5f03660330c20f647fe6d4c2125fdbf714a5828de314881bf
 SHA512 
1951de2df02d50ba1d7c3bc6db9084acf65f88a9f9f73bf26715c7d14521403580a26efd8294aa5f2de40b986032dd78fe52230e58ad3d298f39d229481fc286
-DIST buildbot-pkg-1.1.0.tar.gz 4855 BLAKE2B 
29dddb28f8d5b3bbb82b24959077597e0832b2b85308132e2bdef03a28e84dcef400715b4d7faa33c42b3ec4085c10d825a50dc0b0d55aa23a13e1e02b0ca3c5
 SHA512 
e48d8086170d9c7fd8270a2401ee5f0980dcd2a4554218fd9ac1159d9f08f4a82fc03a2bbea27d169e9f0e4219d9ae8331a522cbf52bdd2e51bb13527f4dbd8d
 DIST buildbot-pkg-1.1.2.tar.gz 4838 BLAKE2B 
437fd8c7d293622b8499c45072d03912cb196afa97f06220cd3279ad01d2426e399e9c95ee063146dd8713f0284981c8a42b79f44028aebd19cbd5a4fe518eff
 SHA512 
11fcf96907274b699da23c667d7a634b1af3752b9edf651e3fd50f030bdd80d3170013ac2c789fc2943d2ca8a84cb02b5caaeb60e646a54cf8b89a5e701e21b5

diff --git a/dev-util/buildbot-pkg/buildbot-pkg-0.9.13.ebuild 
b/dev-util/buildbot-pkg/buildbot-pkg-0.9.13.ebuild
deleted file mode 100644
index 31b0738d915..000
--- a/dev-util/buildbot-pkg/buildbot-pkg-0.9.13.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit distutils-r1
-
-MY_PV="${PV/_p/.post}"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="BuildBot common www build tools for packaging releases"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-pkg/;
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-
-if [[ ${PV} == * ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64"
-fi
-
-# No real integration tests for this pkg.
-# all tests are related to making releases and final checks for distribution
-
-RDEPEND="
-   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-"
-
-DEPEND="${RDEPEND}
-   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
-"
-
-S=${WORKDIR}/${MY_P}
-
-python_install_all() {
-   distutils-r1_python_install_all
-}

diff --git a/dev-util/buildbot-pkg/buildbot-pkg-0.9.15_p1.ebuild 
b/dev-util/buildbot-pkg/buildbot-pkg-0.9.15_p1.ebuild
deleted file mode 100644
index 82c5f2ba229..000
--- a/dev-util/buildbot-pkg/buildbot-pkg-0.9.15_p1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit distutils-r1
-
-MY_PV="${PV/_p/.post}"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="BuildBot common www build tools for packaging releases"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-pkg/;
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-
-if [[ ${PV} == * ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64"
-fi
-
-# No real integration tests for this pkg.
-# all tests are related to 

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

2018-07-26 Thread Brian Dolbec
commit: 09d84ac5b1146805e7ab0af0a5e081463f5423a0
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 15:37:02 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09d84ac5

dev-util/buildbot-worker: Clean old versions

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-worker/Manifest  |   3 -
 .../buildbot-worker/buildbot-worker-0.9.13.ebuild  | 133 -
 .../buildbot-worker-0.9.15_p1.ebuild   | 133 -
 .../buildbot-worker/buildbot-worker-1.1.0.ebuild   | 133 -
 4 files changed, 402 deletions(-)

diff --git a/dev-util/buildbot-worker/Manifest 
b/dev-util/buildbot-worker/Manifest
index bf6ffcf0ac6..e0445109421 100644
--- a/dev-util/buildbot-worker/Manifest
+++ b/dev-util/buildbot-worker/Manifest
@@ -1,5 +1,2 @@
 DIST buildbot-worker-0.9.12.tar.gz 101655 BLAKE2B 
a73f98ec56bd3ad6d19ad0b9dfa015869fd6115789a7ddcecdebdac8707850715c677ee248668f73035ea5656665973634829f2f97e3e75fe8e1515cb0838b88
 SHA512 
c2e86bd8818eddc2849626a0c7642169bc91fa2cc1d531977736e53c4ad3c87c3f0cb17d7b9acd137e783ae822f558a19f4668e3cd37e90a8435157485bd1d57
-DIST buildbot-worker-0.9.13.tar.gz 102710 BLAKE2B 
ab60bc2607a706ecc760c2439655bca3f328d773fbb07e73c994f079356341a251ca23c573a71cce92dbf71ba62ceaa70210f8925fd4d1cdfac335b2a485ee9f
 SHA512 
920f76d70c88a660b1d4c15683847a144b8dfaa01b91742ff2fedbe013ab030d3c5f07b6308f8bfb3f7bf3c2f805f7735d007e67257ca5233d2b585518f79e40
-DIST buildbot-worker-0.9.15.post1.tar.gz 100901 BLAKE2B 
5e4744fcd69e2920e0ca9ba0b1aa77ea5f62ed4aecc9f00df17953dc813e1f8d61a859ab0aacc26f88f51d281574a8089b849fe063d55c8649c4a53b528d8ba8
 SHA512 
6ee23f1dd52672646f28978cec3fa9e29b64cae84f524bbcb6f2614a4a56e49e8363975b89cd3508e78c9779233a27403e46fc098be0808d6cfc1e6aa6b8499f
-DIST buildbot-worker-1.1.0.tar.gz 102142 BLAKE2B 
144587edf2adc9d99837dc549b4d0696761f6cb3c959d4c133a5136606934ce03836cd1fcb019e7bb8ec473526c2ac07146c4820ef4d8b17ed9d843acd6c06b4
 SHA512 
77c46b3c9a16847eaf72de1dafa871a3242b66235c94ce8109f953db39aa4b74de2a03ca7ff06e91f8ea0751ed57e6ec1f39336912d56346f1bed171f597f6ed
 DIST buildbot-worker-1.1.2.tar.gz 103013 BLAKE2B 
b44593b71e61fee4037911759fa4f686aaabf5ef4be9efaecd539e88c5fc2ed2059d8dd8d6d1c4b3ba57d3563f79aaa404176529622003070c136803c90beb10
 SHA512 
3dd3da7e87d667307fca264d91af4671f76c3aad93a0512ae5777bb2e3972efe349968cf72fa17b99e45f2d7cec1ec16b1180c48d296e2702c9548bf858951a7

diff --git a/dev-util/buildbot-worker/buildbot-worker-0.9.13.ebuild 
b/dev-util/buildbot-worker/buildbot-worker-0.9.13.ebuild
deleted file mode 100644
index f1331b427b7..000
--- a/dev-util/buildbot-worker/buildbot-worker-0.9.13.ebuild
+++ /dev/null
@@ -1,133 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit readme.gentoo-r1 user distutils-r1
-
-DESCRIPTION="BuildBot Worker (slave) Daemon"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-worker/;
-
-MY_V="${PV/_p/p}"
-MY_P="${PN}-${MY_V}"
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-if [[ ${PV} == * ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64"
-fi
-IUSE="test"
-
-RDEPEND=">=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
-   >=dev-python/twisted-17.9.0[${PYTHON_USEDEP}]
-   dev-python/future[${PYTHON_USEDEP}]
-   !https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit readme.gentoo-r1 user distutils-r1
-
-DESCRIPTION="BuildBot Worker (slave) Daemon"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-worker/;
-
-MY_V="${PV/_p/.post}"
-MY_P="${PN}-${MY_V}"
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-if [[ ${PV} == * ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64"
-fi
-IUSE="test"
-
-RDEPEND=">=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
-   >=dev-python/twisted-17.9.0[${PYTHON_USEDEP}]
-   dev-python/future[${PYTHON_USEDEP}]
-   !https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit readme.gentoo-r1 user distutils-r1
-
-DESCRIPTION="BuildBot Worker (slave) Daemon"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-worker/;
-
-MY_V="${PV/_p/.post}"
-MY_P="${PN}-${MY_V}"
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-if [[ ${PV} == * ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64"
-fi
-IUSE="test"
-

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-grid-view/

2018-07-26 Thread Brian Dolbec
commit: aa8ef187367e2ff1ead4560e0f9e74c16860cfc6
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 17:00:21 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa8ef187

dev-util/buildbot-grid-view: Version bump to 1.3.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-grid-view/Manifest   |  1 +
 .../buildbot-grid-view-1.3.0.ebuild| 50 ++
 2 files changed, 51 insertions(+)

diff --git a/dev-util/buildbot-grid-view/Manifest 
b/dev-util/buildbot-grid-view/Manifest
index 62e213bacfb..b0d8daf8d47 100644
--- a/dev-util/buildbot-grid-view/Manifest
+++ b/dev-util/buildbot-grid-view/Manifest
@@ -1,2 +1,3 @@
 DIST buildbot-grid-view-0.9.12.post1.tar.gz 638819 BLAKE2B 
5e0bdc39ebe2b447b23abaddc414713c46e5544915d5564641a0534dfa9862f71d689c5df27a5f2a6ecbaa33c29ece5bc85e1c2d1f0a10b0f19273364699748f
 SHA512 
3bc90dcee10781afa90a44d0ff57629f2fe8620fb1133a489282b3a69b884d33a7ad3cbf6e38f688755fcc2153c9ae1c0d48cd2797e33070f66a9093887179c6
 DIST buildbot-grid-view-1.1.2.tar.gz 638848 BLAKE2B 
c99e79af105cf07a6540c71fb7e604bca144ec5d462f6a38c50b525b2ba7bf9640b8d1d4e36e0beb121eafb042fefb67a8adb8b91d2ed8fca4daf982712fae45
 SHA512 
c2dddab25d1da173ae22d811a9c3261eaec6ac76389829cb1cfaa8b976573d6f12208541dce4065d45512c4c984d9a1d4c72f6e151ec3365ba1dca356ad0288d
+DIST buildbot-grid-view-1.3.0.tar.gz 638845 BLAKE2B 
fb52b8fccbce298cbaf715feb1d785856e879f9e9fe63add83c3b0b51df93417ef8b355b33569956e055771bc75a4b6ea318bd7bbcd157bce01f972730468b62
 SHA512 
f82316743c10c4fd2a509a754808535606bdfd114b86e5796887d47845b4ef83677c7af830b9e4c531a9857249a8b2de8411b30f2f5b2a617a54244658e4a528

diff --git a/dev-util/buildbot-grid-view/buildbot-grid-view-1.3.0.ebuild 
b/dev-util/buildbot-grid-view/buildbot-grid-view-1.3.0.ebuild
new file mode 100644
index 000..e30008fccea
--- /dev/null
+++ b/dev-util/buildbot-grid-view/buildbot-grid-view-1.3.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit distutils-r1
+
+DESCRIPTION="BuildBot grid view web interface"
+HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-grid-view/;
+
+MY_PV="${PV/_p/.post}"
+MY_P="${PN}-${MY_PV}"
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+IUSE="test"
+
+RDEPEND=""
+
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+   =dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
+   =dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/${MY_P}"
+#[[ ${PV} == * ]] && S=${S}/www/base
+
+python_test() {
+   distutils_install_for_testing
+
+   esetup.py test || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-grid-view/

2018-07-26 Thread Brian Dolbec
commit: 2f69c201f27be8b83ec78896913827dd104e3372
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 15:31:02 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f69c201

dev-util/buildbot-grid-view: Clean old versions

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-grid-view/Manifest   |  3 --
 .../buildbot-grid-view-0.9.13.ebuild   | 50 --
 .../buildbot-grid-view-0.9.15_p1.ebuild| 50 --
 .../buildbot-grid-view-1.1.0.ebuild| 50 --
 4 files changed, 153 deletions(-)

diff --git a/dev-util/buildbot-grid-view/Manifest 
b/dev-util/buildbot-grid-view/Manifest
index 76c9433398f..62e213bacfb 100644
--- a/dev-util/buildbot-grid-view/Manifest
+++ b/dev-util/buildbot-grid-view/Manifest
@@ -1,5 +1,2 @@
 DIST buildbot-grid-view-0.9.12.post1.tar.gz 638819 BLAKE2B 
5e0bdc39ebe2b447b23abaddc414713c46e5544915d5564641a0534dfa9862f71d689c5df27a5f2a6ecbaa33c29ece5bc85e1c2d1f0a10b0f19273364699748f
 SHA512 
3bc90dcee10781afa90a44d0ff57629f2fe8620fb1133a489282b3a69b884d33a7ad3cbf6e38f688755fcc2153c9ae1c0d48cd2797e33070f66a9093887179c6
-DIST buildbot-grid-view-0.9.13.tar.gz 639145 BLAKE2B 
31194a53bdb60958178371e10fd2ed0ca05d112d9a3510147d965811bb31788bd432ad1ed1c4690f190070ec5dc683cc43ed8a187b26eec5b80b7f23663e7418
 SHA512 
2ae54f27cafdf1e4d5c283bbe60db8bcc38d3ec133069114bfa952ae2f49306c7a83d57fd4749eb923567e22fdb0577311532ef45eb8630fe01a7c3fea6e2cef
-DIST buildbot-grid-view-0.9.15.post1.tar.gz 638877 BLAKE2B 
7ef5a309bebb1fed0ff1b0efd016c9d895b44a03d0c3743690d6fc04ab669d6409af93be62ffa1ef0cac9465ef7940b48984ab423a22023800211514335d8011
 SHA512 
741dc6ef728f291d44663bb6f031fd0895b67bb770db053695bf276ae3a6a0f2e6e73eae7c595befec2f917e766b13913486331297cb048f000a124916ff6405
-DIST buildbot-grid-view-1.1.0.tar.gz 638856 BLAKE2B 
ff6d055d6f0426dba6c8652da3f4dcd66dc98d6d85db19eda87e48c8107a06164ab7d6978d2aae9e76dbc3212a78d94e93598937d72e55728aae6b0bf53c50bd
 SHA512 
64b2c3f1e45232d7dae10b4505f4aaf9ad5b72dd22ad5be4aa5c4265a6a315ae65f72b7a8006a6b0ee887e5d30b2d28fe5085afa683efeda2ede8a7c310bb750
 DIST buildbot-grid-view-1.1.2.tar.gz 638848 BLAKE2B 
c99e79af105cf07a6540c71fb7e604bca144ec5d462f6a38c50b525b2ba7bf9640b8d1d4e36e0beb121eafb042fefb67a8adb8b91d2ed8fca4daf982712fae45
 SHA512 
c2dddab25d1da173ae22d811a9c3261eaec6ac76389829cb1cfaa8b976573d6f12208541dce4065d45512c4c984d9a1d4c72f6e151ec3365ba1dca356ad0288d

diff --git a/dev-util/buildbot-grid-view/buildbot-grid-view-0.9.13.ebuild 
b/dev-util/buildbot-grid-view/buildbot-grid-view-0.9.13.ebuild
deleted file mode 100644
index cc4c6a14d1b..000
--- a/dev-util/buildbot-grid-view/buildbot-grid-view-0.9.13.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit distutils-r1
-
-DESCRIPTION="BuildBot grid view web interface"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-grid-view/;
-
-MY_PV="${PV/_p/.post}"
-MY_P="${PN}-${MY_PV}"
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-
-if [[ ${PV} == * ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64"
-fi
-
-IUSE="test"
-
-RDEPEND=""
-
-DEPEND="${RDEPEND}
-   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
-   =dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
-   =dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/${MY_P}"
-#[[ ${PV} == * ]] && S=${S}/www/base
-
-python_test() {
-   distutils_install_for_testing
-
-   esetup.py test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-}

diff --git a/dev-util/buildbot-grid-view/buildbot-grid-view-0.9.15_p1.ebuild 
b/dev-util/buildbot-grid-view/buildbot-grid-view-0.9.15_p1.ebuild
deleted file mode 100644
index e30008fccea..000
--- a/dev-util/buildbot-grid-view/buildbot-grid-view-0.9.15_p1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit distutils-r1
-
-DESCRIPTION="BuildBot grid view web interface"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-grid-view/;
-
-MY_PV="${PV/_p/.post}"
-MY_P="${PN}-${MY_PV}"
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-wsgi-dashboards/

2018-07-26 Thread Brian Dolbec
commit: fb680418b4464ce33c6e2afc48ce4b42db685bce
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 17:02:46 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb680418

dev-util/buildbot-wsgi-dashboards: Version bump to 1.3.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-wsgi-dashboards/Manifest |  1 +
 .../buildbot-wsgi-dashboards-1.3.0.ebuild  | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/dev-util/buildbot-wsgi-dashboards/Manifest 
b/dev-util/buildbot-wsgi-dashboards/Manifest
index 68dc69aed33..44fc45f4420 100644
--- a/dev-util/buildbot-wsgi-dashboards/Manifest
+++ b/dev-util/buildbot-wsgi-dashboards/Manifest
@@ -1,2 +1,3 @@
 DIST buildbot-wsgi-dashboards-0.9.12.tar.gz 627274 BLAKE2B 
26632ddd1577e9c419d13c07958c203440ef875bc4a79be6b894d0cf4dc457423528b7ea34c830511a5ef5d7f645fde2f71ac08578e1de32687c8b1ae2864491
 SHA512 
113c1616b08feb64fd3d94c1186e3d7dd7ea93e563a96ddb802e6ff8135e194014464ef09a23004518451626584bc531fc17419188ebbdd388e9363541b80c3d
 DIST buildbot-wsgi-dashboards-1.1.2.tar.gz 626825 BLAKE2B 
396fa858cafd6dc3958c37ea2e9e685357de2185ce0b73d946d3eb2e99472339e176de1b49d821337535904c521e8dbaa662217c568306e7b2d889d11fdeb5ed
 SHA512 
1eee2a38b525145e50812dff421613291f6b0b6a80a531b54383d771393d2a12c1c7840e2dabf7949918ac3f31ce5f6bd9514c08dee8fe5900c99438e63d4ee2
+DIST buildbot-wsgi-dashboards-1.3.0.tar.gz 626828 BLAKE2B 
9c44bca995a1849246c71cdf8ecca1a72ffdca9fb8e99db4e05dc529e0b188b85f45078c0f961c03eeb688fae08975dc438ba7c85bfcd3bebcc14a0d56a69f67
 SHA512 
97885bb26eb03c40b842406a9bbc80b5111ce82c79e0ca466f2f820622df43c6913b6b6f4f9ead2a47e09496ff9442df4a6a9a34041f6b9a127544413330

diff --git 
a/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-1.3.0.ebuild 
b/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-1.3.0.ebuild
new file mode 100644
index 000..d40978a5739
--- /dev/null
+++ b/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-1.3.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit distutils-r1
+
+DESCRIPTION="Buildbot plugin to integrate flask or bottle dashboards to 
buildbot UI"
+HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-wsgi-dashboards/;
+
+MY_PV="${PV/_p/.post}"
+MY_P="${PN}-${MY_PV}"
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+IUSE="test"
+
+RDEPEND=""
+
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/${MY_P}"
+#[[ ${PV} == * ]] && S=${S}/www/base
+
+python_test() {
+   distutils_install_for_testing
+
+   esetup.py test || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-console-view/

2018-07-26 Thread Brian Dolbec
commit: 44a8be93e7cc4b13c92edb4784831289de9056e5
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 17:01:59 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44a8be93

dev-util/buildbot-console-view: Version bump to 1.3.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-console-view/Manifest|  1 +
 .../buildbot-console-view-1.3.0.ebuild | 52 ++
 2 files changed, 53 insertions(+)

diff --git a/dev-util/buildbot-console-view/Manifest 
b/dev-util/buildbot-console-view/Manifest
index 133e48b3968..ac0799e71c2 100644
--- a/dev-util/buildbot-console-view/Manifest
+++ b/dev-util/buildbot-console-view/Manifest
@@ -1,2 +1,3 @@
 DIST buildbot-console-view-0.9.12.tar.gz 640923 BLAKE2B 
cc0da84395aca571803e73260d826633553ed10ede6d66d112dfa8bcdc4f1bd376695ee0ee4a715f1fa3705329033044d9358731c0b807c54b40b4e32a04f565
 SHA512 
4a73994c29fe1f78c4432bdb42fe14106b8d7887bb35f2835b203f4818844d3e8d2ea308fc4fb2bd562de302bd7cf6612fe047476512feac068eca3891a49522
 DIST buildbot-console-view-1.1.2.tar.gz 640509 BLAKE2B 
481b8049e606d47be8b171c24a210d6c95ce13ee4a4d46fd689ee836857e8d054f1799ce53de3931f820f02061cdd0c4a47686cd1724fe1c39ab33ca0f274d76
 SHA512 
23a14d3264802b2cf9a6a7cab0592c6391dc55a8805c17529c3279b129aaab1df97999ffd5fdc0927e7d5fb204e4114b4672018102381523599310cf7223950f
+DIST buildbot-console-view-1.3.0.tar.gz 640506 BLAKE2B 
bf68136edbe734514b662a580b9025626b6e0acd48f49ccee979c38d1a2eac13e8fd13bf4c9f62948694ed003de3ee6c44a9d734561a1b5ed4e1d9d330b39f3f
 SHA512 
5b4fa27c8cca57df083c3044729bc6086086dabe819e215b02fe4fda0863b62658925433bbc90d9b38f4309af50b2312b3c9aaefff96a1f62b18d160ca66f205

diff --git a/dev-util/buildbot-console-view/buildbot-console-view-1.3.0.ebuild 
b/dev-util/buildbot-console-view/buildbot-console-view-1.3.0.ebuild
new file mode 100644
index 000..23b0c0ae9c7
--- /dev/null
+++ b/dev-util/buildbot-console-view/buildbot-console-view-1.3.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit distutils-r1
+
+DESCRIPTION="Buildbot console-view plugin"
+HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-console-view/;
+
+MY_PV="${PV/_p/.post}"
+MY_P="${PN}-${MY_PV}"
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+IUSE="test"
+
+RDEPEND="
+   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
+"
+
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/${MY_P}"
+#[[ ${PV} == * ]] && S=${S}/www/base
+
+python_test() {
+   distutils_install_for_testing
+
+   esetup.py test || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-waterfall-view/

2018-07-26 Thread Brian Dolbec
commit: 8b4e4edc5fc8b4f5bb48f031bfb9f6ec94d90619
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 16:59:45 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b4e4edc

dev-util/buildbot-waterfall-view: Version bump to 1.3.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-waterfall-view/Manifest  |  1 +
 .../buildbot-waterfall-view-1.3.0.ebuild   | 52 ++
 2 files changed, 53 insertions(+)

diff --git a/dev-util/buildbot-waterfall-view/Manifest 
b/dev-util/buildbot-waterfall-view/Manifest
index b1cbf3dffc1..5ac78473db5 100644
--- a/dev-util/buildbot-waterfall-view/Manifest
+++ b/dev-util/buildbot-waterfall-view/Manifest
@@ -1,2 +1,3 @@
 DIST buildbot-waterfall-view-0.9.12.tar.gz 714290 BLAKE2B 
4867539275aa6c2b0ac149fe7f4a1f03f2c2593b89908fb0a8d748c32779b01b8d87327ec9a54e02561a40d273f03f46a8581cf224c333f1bbb3e14ba22a56ef
 SHA512 
76abc01783c02980bc2d6e878536416aa046dce3259c65fa5c2f15d3f66d1b9b5e0bed2d4f6b9d6c338300637c6b91e9bdee3fca3e47022d2ea9b75ffa69eb99
 DIST buildbot-waterfall-view-1.1.2.tar.gz 713898 BLAKE2B 
0873ca7d44a9da7ad260032a8153c45e864c605c79cbd826d4f5cb306dbcdcd1fd1e89fe59df57decdcd9ce94330d80ed20d8d7d95b4dc93d6d7cdf6340eb30f
 SHA512 
cc14894281b712fe479ea19116948f69fb43a4cc8c7a0f159fcf97eed0c36a11cc967a0663042f34f64cc4d65468c58eb4398d66fb0d125cde6dec9ef7fc7e08
+DIST buildbot-waterfall-view-1.3.0.tar.gz 713879 BLAKE2B 
42e838bfb5925850cfa679727a8f53a5a71c4b6ce9ad26b010480ba16e421f5eda0228d94f7efabb74f3493f868ef61274338f31e0ba6afa1fba4a3b533ac5d5
 SHA512 
4b8403f9f68ddc6fc980649cf26625834c6a271705e0b8396ab7c2fd739929c2878557df945a1d9c5411985b79f8b43d3fca2c7f74769e9e832b1a7c166f8a3f

diff --git 
a/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-1.3.0.ebuild 
b/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-1.3.0.ebuild
new file mode 100644
index 000..85e04699e65
--- /dev/null
+++ b/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-1.3.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit distutils-r1
+
+DESCRIPTION="Buildbot waterfall-view plugin"
+HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-waterfall-view/;
+
+MY_PV="${PV/_p/.post}"
+MY_P="${PN}-${MY_PV}"
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+IUSE="test"
+
+RDEPEND="
+   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
+"
+
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/${MY_P}"
+#[[ ${PV} == * ]] && S=${S}/www/base
+
+python_test() {
+   distutils_install_for_testing
+
+   esetup.py test || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-waterfall-view/

2018-07-26 Thread Brian Dolbec
commit: afb127d869cb80ba31609f85ae1ab3e84f48cc67
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 15:26:45 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afb127d8

dev-util/buildbot-waterfall-view: Clean old versions

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-waterfall-view/Manifest  |  3 --
 .../buildbot-waterfall-view-0.9.13.ebuild  | 52 --
 .../buildbot-waterfall-view-0.9.15_p1.ebuild   | 52 --
 .../buildbot-waterfall-view-1.1.0.ebuild   | 52 --
 4 files changed, 159 deletions(-)

diff --git a/dev-util/buildbot-waterfall-view/Manifest 
b/dev-util/buildbot-waterfall-view/Manifest
index e2e6f328d83..b1cbf3dffc1 100644
--- a/dev-util/buildbot-waterfall-view/Manifest
+++ b/dev-util/buildbot-waterfall-view/Manifest
@@ -1,5 +1,2 @@
 DIST buildbot-waterfall-view-0.9.12.tar.gz 714290 BLAKE2B 
4867539275aa6c2b0ac149fe7f4a1f03f2c2593b89908fb0a8d748c32779b01b8d87327ec9a54e02561a40d273f03f46a8581cf224c333f1bbb3e14ba22a56ef
 SHA512 
76abc01783c02980bc2d6e878536416aa046dce3259c65fa5c2f15d3f66d1b9b5e0bed2d4f6b9d6c338300637c6b91e9bdee3fca3e47022d2ea9b75ffa69eb99
-DIST buildbot-waterfall-view-0.9.13.tar.gz 714287 BLAKE2B 
addb1cbda2f751192533b7074bd5fcdd36f4d328ad555cba9c821b0648ceceb5ad63d2db85dbac9cc813d6665dad8f5725e5bb37123b6bbce8310740a3597d1f
 SHA512 
448b1e0b63aaa1d33a7595262901373a4c9cd30e544bdc8bd2d672f8aebfb4d90aebb31ce4d78d59725bfdcba019c3643e9f6d66d1493fcb8c77fb8acbadfbf6
-DIST buildbot-waterfall-view-0.9.15.post1.tar.gz 713929 BLAKE2B 
4940cf9224a1924bcb63ea7078d606ec919c0602e1c6c5d3cb53318a91e285add2a75b05ad46599857f2b73cea501754ac71e54d3ba6941a18685eb3c05e9d39
 SHA512 
841186372b8ada370c28bf07b2df9ad91d298913202c937e6d459dfede24293f9aef1d330ee07a6c97a91bf75b4ceae9f87b494f173082ceca1fb2c5f04abe79
-DIST buildbot-waterfall-view-1.1.0.tar.gz 713901 BLAKE2B 
73366eac6a7e0c9e758209b64e2f086148612e9db3459a5babeb272f515d0aef2bf7bd3dddac6d57955a0ebb3e065fdd3eaee31196cf5bcb9afac269d154c4ce
 SHA512 
f6151aab01b680aa77b17c6863e3d33557c2436a2ffe35db0b75416a1d7facd3927437c8bd659d8fbda339e4f77412ba6df605500e6b31559770fa3a3c0eca59
 DIST buildbot-waterfall-view-1.1.2.tar.gz 713898 BLAKE2B 
0873ca7d44a9da7ad260032a8153c45e864c605c79cbd826d4f5cb306dbcdcd1fd1e89fe59df57decdcd9ce94330d80ed20d8d7d95b4dc93d6d7cdf6340eb30f
 SHA512 
cc14894281b712fe479ea19116948f69fb43a4cc8c7a0f159fcf97eed0c36a11cc967a0663042f34f64cc4d65468c58eb4398d66fb0d125cde6dec9ef7fc7e08

diff --git 
a/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.13.ebuild 
b/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.13.ebuild
deleted file mode 100644
index ec80689f346..000
--- a/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.13.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit distutils-r1
-
-DESCRIPTION="Buildbot waterfall-view plugin"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-waterfall-view/;
-
-MY_PV="${PV/_p/.post}"
-MY_P="${PN}-${MY_PV}"
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-
-if [[ ${PV} == * ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64"
-fi
-
-IUSE="test"
-
-RDEPEND="
-   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
-"
-
-DEPEND="${RDEPEND}
-   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/${MY_P}"
-#[[ ${PV} == * ]] && S=${S}/www/base
-
-python_test() {
-   distutils_install_for_testing
-
-   esetup.py test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-}

diff --git 
a/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.15_p1.ebuild 
b/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.15_p1.ebuild
deleted file mode 100644
index 85e04699e65..000
--- a/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.15_p1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit distutils-r1
-
-DESCRIPTION="Buildbot waterfall-view plugin"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-console-view/

2018-07-26 Thread Brian Dolbec
commit: b3be2c388d94884d61616f85f9884ae2f78dac85
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 15:25:09 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3be2c38

dev-util/buildbot-console-view: Clean old versions

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-console-view/Manifest|  3 --
 .../buildbot-console-view-0.9.13.ebuild| 52 --
 .../buildbot-console-view-0.9.15_p1.ebuild | 52 --
 .../buildbot-console-view-1.1.0.ebuild | 52 --
 4 files changed, 159 deletions(-)

diff --git a/dev-util/buildbot-console-view/Manifest 
b/dev-util/buildbot-console-view/Manifest
index 7716dc48814..133e48b3968 100644
--- a/dev-util/buildbot-console-view/Manifest
+++ b/dev-util/buildbot-console-view/Manifest
@@ -1,5 +1,2 @@
 DIST buildbot-console-view-0.9.12.tar.gz 640923 BLAKE2B 
cc0da84395aca571803e73260d826633553ed10ede6d66d112dfa8bcdc4f1bd376695ee0ee4a715f1fa3705329033044d9358731c0b807c54b40b4e32a04f565
 SHA512 
4a73994c29fe1f78c4432bdb42fe14106b8d7887bb35f2835b203f4818844d3e8d2ea308fc4fb2bd562de302bd7cf6612fe047476512feac068eca3891a49522
-DIST buildbot-console-view-0.9.13.tar.gz 640969 BLAKE2B 
e0c6449c8208a34e568ed632be61fda0ae6ef0b183cd53e2288e1b89e03df6a874ec363f3cfdfa15005bc2913084eaf8640e86abf1ad2d19609e7b4c818f7b77
 SHA512 
16a3186a97112473fa1f7e811ceffe9f829d6181544e62290172b97b898ddb189fe8e67e223a3e02c936e61fc857a05e0b353dda7e5d4a3ce782f74a32515d2f
-DIST buildbot-console-view-0.9.15.post1.tar.gz 640548 BLAKE2B 
d28d3fbe40a8ceeaf574d2e8a9a6938664659dc6221a9e7e288c98b771cf7601a8db125dfb3cd71c500aee470a2b476a9daa0d5ec55a83758a96e97e14441def
 SHA512 
42ad7d9dfdf0b3b0cda8d8dcd3fb2bd6734a775755fdc4ebe79d562f5ffb45d0e25d3ece15dec4a7542dd29e45a721e683bec416582901dbfa519c8da76cfa78
-DIST buildbot-console-view-1.1.0.tar.gz 640524 BLAKE2B 
038412232299b9dcf5b38c0dcc646bce0f02c817b319bc796268e0bdcd10db0a82dbeb692850ad252246a2a0b48ceca23fd5ac900d46774b64ea19839673f607
 SHA512 
c45962f73d8e8214518c09fc3163d20f93ac4f55ed547dc90f4116906b94a01384bdc28e52d1b850ba34077c4cd30cd3e1f2dae23c01e233e5745de181e2dc6c
 DIST buildbot-console-view-1.1.2.tar.gz 640509 BLAKE2B 
481b8049e606d47be8b171c24a210d6c95ce13ee4a4d46fd689ee836857e8d054f1799ce53de3931f820f02061cdd0c4a47686cd1724fe1c39ab33ca0f274d76
 SHA512 
23a14d3264802b2cf9a6a7cab0592c6391dc55a8805c17529c3279b129aaab1df97999ffd5fdc0927e7d5fb204e4114b4672018102381523599310cf7223950f

diff --git a/dev-util/buildbot-console-view/buildbot-console-view-0.9.13.ebuild 
b/dev-util/buildbot-console-view/buildbot-console-view-0.9.13.ebuild
deleted file mode 100644
index ea6c131f8ac..000
--- a/dev-util/buildbot-console-view/buildbot-console-view-0.9.13.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit distutils-r1
-
-DESCRIPTION="Buildbot console-view plugin"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-console-view/;
-
-MY_PV="${PV/_p/.post}"
-MY_P="${PN}-${MY_PV}"
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-
-if [[ ${PV} == * ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64"
-fi
-
-IUSE="test"
-
-RDEPEND="
-   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
-"
-
-DEPEND="${RDEPEND}
-   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/${MY_P}"
-#[[ ${PV} == * ]] && S=${S}/www/base
-
-python_test() {
-   distutils_install_for_testing
-
-   esetup.py test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-}

diff --git 
a/dev-util/buildbot-console-view/buildbot-console-view-0.9.15_p1.ebuild 
b/dev-util/buildbot-console-view/buildbot-console-view-0.9.15_p1.ebuild
deleted file mode 100644
index 23b0c0ae9c7..000
--- a/dev-util/buildbot-console-view/buildbot-console-view-0.9.15_p1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit distutils-r1
-
-DESCRIPTION="Buildbot console-view plugin"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-console-view/;
-
-MY_PV="${PV/_p/.post}"

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-wsgi-dashboards/

2018-07-26 Thread Brian Dolbec
commit: cc13a3d48b9ac2c710bd7348e11e9a92df8aabc7
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 15:27:57 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc13a3d4

dev-util/buildbot-wsgi-dashboards: Clean old versions

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-wsgi-dashboards/Manifest |  3 --
 .../buildbot-wsgi-dashboards-0.9.13.ebuild | 50 --
 .../buildbot-wsgi-dashboards-0.9.15_p1.ebuild  | 50 --
 .../buildbot-wsgi-dashboards-1.1.0.ebuild  | 50 --
 4 files changed, 153 deletions(-)

diff --git a/dev-util/buildbot-wsgi-dashboards/Manifest 
b/dev-util/buildbot-wsgi-dashboards/Manifest
index 090cadcd3fd..68dc69aed33 100644
--- a/dev-util/buildbot-wsgi-dashboards/Manifest
+++ b/dev-util/buildbot-wsgi-dashboards/Manifest
@@ -1,5 +1,2 @@
 DIST buildbot-wsgi-dashboards-0.9.12.tar.gz 627274 BLAKE2B 
26632ddd1577e9c419d13c07958c203440ef875bc4a79be6b894d0cf4dc457423528b7ea34c830511a5ef5d7f645fde2f71ac08578e1de32687c8b1ae2864491
 SHA512 
113c1616b08feb64fd3d94c1186e3d7dd7ea93e563a96ddb802e6ff8135e194014464ef09a23004518451626584bc531fc17419188ebbdd388e9363541b80c3d
-DIST buildbot-wsgi-dashboards-0.9.13.tar.gz 627272 BLAKE2B 
1b4b8b6a0eed9572923a0dba24a9194557074e84640cf57141014a92294c56f22330566ae995bfa5e6be63640549e42e5aae01911df6989dbe4861b7ca5544f8
 SHA512 
08eedef62e85d71cbfde0f57727974a2bc1a9d33fc3821aaeb3a003df3b212c2b1ce00afa986dad062415b0bf8d8a9c0c328810e9d3fc994cdcbb82de2037366
-DIST buildbot-wsgi-dashboards-0.9.15.post1.tar.gz 626856 BLAKE2B 
13104173594f1f5326221cac1839b44e792212c772730f0632f8528e55f5249d61b72c97cce7e51b6b3a82b2490a7654b7deea04ba61da13158e6d40e0021429
 SHA512 
5bd089d38a87e1e1dd03343b96824dc227e35268971b9b541e761c289042412b7dd0bc42df2fc9c28da5933a995c5bdf7af7bc7aafff999ce2f9431881bbd58e
-DIST buildbot-wsgi-dashboards-1.1.0.tar.gz 626836 BLAKE2B 
f7323073f644e6b6b89595aa052ae1bc25d14b439c3d1d0f3601eb4a62b07563ef12a97bde8997495fe6260e31de55a29b220f48c0b794761e077de77ccd0246
 SHA512 
799c2a28bd874c864264247fa0d030b3335d63bec88cfc7637b8456615c0c299de4df91557178e5d3358450fea89ed0ddb82ae27bbf8304dc3b7f9711ce69e94
 DIST buildbot-wsgi-dashboards-1.1.2.tar.gz 626825 BLAKE2B 
396fa858cafd6dc3958c37ea2e9e685357de2185ce0b73d946d3eb2e99472339e176de1b49d821337535904c521e8dbaa662217c568306e7b2d889d11fdeb5ed
 SHA512 
1eee2a38b525145e50812dff421613291f6b0b6a80a531b54383d771393d2a12c1c7840e2dabf7949918ac3f31ce5f6bd9514c08dee8fe5900c99438e63d4ee2

diff --git 
a/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-0.9.13.ebuild 
b/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-0.9.13.ebuild
deleted file mode 100644
index 79aac997ef7..000
--- a/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-0.9.13.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit distutils-r1
-
-DESCRIPTION="Buildbot plugin to integrate flask or bottle dashboards to 
buildbot UI"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-wsgi-dashboards/;
-
-MY_PV="${PV/_p/.post}"
-MY_P="${PN}-${MY_PV}"
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-
-if [[ ${PV} == * ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64"
-fi
-
-IUSE="test"
-
-RDEPEND=""
-
-DEPEND="${RDEPEND}
-   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
-   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
-   ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/${MY_P}"
-#[[ ${PV} == * ]] && S=${S}/www/base
-
-python_test() {
-   distutils_install_for_testing
-
-   esetup.py test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-}

diff --git 
a/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-0.9.15_p1.ebuild 
b/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-0.9.15_p1.ebuild
deleted file mode 100644
index 33206843b81..000
--- 
a/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-0.9.15_p1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit distutils-r1
-
-DESCRIPTION="Buildbot plugin to integrate flask or bottle dashboards to 
buildbot UI"
-HOMEPAGE="https://buildbot.net/ 

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

2018-07-26 Thread Brian Dolbec
commit: 5963fb474e70a9386e8dcf9a9a26c1a93a89917f
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 16:59:06 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5963fb47

dev-util/buildbot-www: Version bump to 1.3.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-www/Manifest  |  1 +
 dev-util/buildbot-www/buildbot-www-1.3.0.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/dev-util/buildbot-www/Manifest b/dev-util/buildbot-www/Manifest
index cc00f2eeb83..15c6a35a65e 100644
--- a/dev-util/buildbot-www/Manifest
+++ b/dev-util/buildbot-www/Manifest
@@ -1,2 +1,3 @@
 DIST buildbot-www-0.9.12.tar.gz 691551 BLAKE2B 
9bef044fe9e48e34d3e314d9c9b7446a1e295898c432da5c8915e36156f2f934fd065c8075dd55f68da7bc29a567c1ef276bc415df38911aff7c33de46fa7942
 SHA512 
6c525d32407be24aa728a0bd9c9a09c64bb4bef092ef9e5285475527f7fcbd89d516ea376d90b22aa24af384d73125bc886360cf992dfe3d01471838193f351a
 DIST buildbot-www-1.1.2.tar.gz 718705 BLAKE2B 
009ae0dc07693f9eee4e3982ccbecb32d64e7d27e374f539cd541a5f80d9b9bf798e8836502cd26a5477b0ee842dbfae2308608fa3320e682afd0bcda2f89f1e
 SHA512 
e4a0f7aee5e38d0522d39c819d4b9865966e020fd89b156e79807417fd7f82d497fbceafcc8a89e5beb6def1f42e4bfc595053581cbe2634520ad2c806ce3968
+DIST buildbot-www-1.3.0.tar.gz 717517 BLAKE2B 
57b0ed7ef46fecb242562a0f93e234985c9cc0ea55d273c1c5de74753f6ea83d25d5017515afb6ad4b7bff4f80cdfb9a6daf937c5cd133c017c9bd6fa9d6d7ee
 SHA512 
e01d1d3528ab1f29ff136321b25f45b01733a4f23cd9d637c9e3290b5301a8ac3dc545decb178c1332e58dc3e11065ef73df49fbb46fca6068acabdd40a8bff1

diff --git a/dev-util/buildbot-www/buildbot-www-1.3.0.ebuild 
b/dev-util/buildbot-www/buildbot-www-1.3.0.ebuild
new file mode 100644
index 000..8ee469d1634
--- /dev/null
+++ b/dev-util/buildbot-www/buildbot-www-1.3.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit distutils-r1
+
+DESCRIPTION="BuildBot base web interface, use with 
buildbot-{console-view,waterfall-view}..."
+HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-www/;
+
+MY_PV="${PV/_p/.post}"
+MY_P="${PN}-${MY_PV}"
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+IUSE="test"
+
+RDEPEND=""
+
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-pkg-${PV}[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/${MY_P}"
+#[[ ${PV} == * ]] && S=${S}/www/base
+
+python_test() {
+   distutils_install_for_testing
+
+   esetup.py test || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+}



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

2018-07-26 Thread Brian Dolbec
commit: 39f0abe9b357bdfbb59e83411b94e3ba110ad5a4
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 16:58:31 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39f0abe9

dev-util/buildbot-pkg: Version bump to 1.3.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-pkg/Manifest  |  1 +
 dev-util/buildbot-pkg/buildbot-pkg-1.3.0.ebuild | 49 +
 2 files changed, 50 insertions(+)

diff --git a/dev-util/buildbot-pkg/Manifest b/dev-util/buildbot-pkg/Manifest
index 1df8d87554c..2fc76ad61ea 100644
--- a/dev-util/buildbot-pkg/Manifest
+++ b/dev-util/buildbot-pkg/Manifest
@@ -1,2 +1,3 @@
 DIST buildbot-pkg-0.9.12.tar.gz 4446 BLAKE2B 
e8077d3b212c968694d2d9e5018c9c985acbff592dbccfeb59543a507f263133268dde57efcacfabb90ea61c3184d34dced21f8e269f619d505166e68c76d43e
 SHA512 
5b9847747924b7e04ae7584f549fa498715e293c6dbdbfef1fe5896c8c96cd65471a908b48c46a32eddbcf8f7b3642402974b4ed3319cf42e90028e772b5e34b
 DIST buildbot-pkg-1.1.2.tar.gz 4838 BLAKE2B 
437fd8c7d293622b8499c45072d03912cb196afa97f06220cd3279ad01d2426e399e9c95ee063146dd8713f0284981c8a42b79f44028aebd19cbd5a4fe518eff
 SHA512 
11fcf96907274b699da23c667d7a634b1af3752b9edf651e3fd50f030bdd80d3170013ac2c789fc2943d2ca8a84cb02b5caaeb60e646a54cf8b89a5e701e21b5
+DIST buildbot-pkg-1.3.0.tar.gz 4835 BLAKE2B 
d035060ebf1e5823979adea8b7d31a13cc7bf3382eab571090d68db23b476e2fb959deaf249e6d4f2f3b44cf453c407dd0fd39e54a4e5a3d41462b125c573505
 SHA512 
b8e53de24cd41e31417a4259396fa080c7dad48b5ad2b15d5c9de9eb3fb35196a84f48ba589e8a077382e8a14d760f6148056bbe30972f0542512404e8efbefb

diff --git a/dev-util/buildbot-pkg/buildbot-pkg-1.3.0.ebuild 
b/dev-util/buildbot-pkg/buildbot-pkg-1.3.0.ebuild
new file mode 100644
index 000..46595012d5d
--- /dev/null
+++ b/dev-util/buildbot-pkg/buildbot-pkg-1.3.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit distutils-r1
+
+MY_PV="${PV/_p/.post}"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="BuildBot common www build tools for packaging releases"
+HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-pkg/;
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+# No real integration tests for this pkg.
+# all tests are related to making releases and final checks for distribution
+
+RDEPEND="
+   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+"
+
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+"
+
+S=${WORKDIR}/${MY_P}
+
+PATCHES=(
+   
"${FILESDIR}/${PN}-0.9.15_p1-Removedevelopmentvirtualenvironmenthack.patch"
+)
+
+python_install_all() {
+   distutils-r1_python_install_all
+}



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

2018-07-26 Thread Brian Dolbec
commit: 40e19a4e8df9ac1b70b08eb42782f2d17c102d85
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 16:57:54 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e19a4e

dev-util/buildbot-worker: Version bump to 1.3.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-worker/Manifest  |   1 +
 .../buildbot-worker/buildbot-worker-1.3.0.ebuild   | 133 +
 2 files changed, 134 insertions(+)

diff --git a/dev-util/buildbot-worker/Manifest 
b/dev-util/buildbot-worker/Manifest
index e0445109421..ccee63bcc80 100644
--- a/dev-util/buildbot-worker/Manifest
+++ b/dev-util/buildbot-worker/Manifest
@@ -1,2 +1,3 @@
 DIST buildbot-worker-0.9.12.tar.gz 101655 BLAKE2B 
a73f98ec56bd3ad6d19ad0b9dfa015869fd6115789a7ddcecdebdac8707850715c677ee248668f73035ea5656665973634829f2f97e3e75fe8e1515cb0838b88
 SHA512 
c2e86bd8818eddc2849626a0c7642169bc91fa2cc1d531977736e53c4ad3c87c3f0cb17d7b9acd137e783ae822f558a19f4668e3cd37e90a8435157485bd1d57
 DIST buildbot-worker-1.1.2.tar.gz 103013 BLAKE2B 
b44593b71e61fee4037911759fa4f686aaabf5ef4be9efaecd539e88c5fc2ed2059d8dd8d6d1c4b3ba57d3563f79aaa404176529622003070c136803c90beb10
 SHA512 
3dd3da7e87d667307fca264d91af4671f76c3aad93a0512ae5777bb2e3972efe349968cf72fa17b99e45f2d7cec1ec16b1180c48d296e2702c9548bf858951a7
+DIST buildbot-worker-1.3.0.tar.gz 103765 BLAKE2B 
a5f06ad6b87442292f9fe0c7935f791d2fdb450db09c9614324f8230d0bec408380a7b1637dc32806259c4de7699b164f20f76d959232a82253f7134749531d7
 SHA512 
5e59aab6cecf8dd932df0e8063c69fda5613b76a46df63479ff554085275d4a19fb1b5142034bd4245423e99f3e46d45e765b10c3c74a9f28b92b70119fab9e2

diff --git a/dev-util/buildbot-worker/buildbot-worker-1.3.0.ebuild 
b/dev-util/buildbot-worker/buildbot-worker-1.3.0.ebuild
new file mode 100644
index 000..dea70dbdd5e
--- /dev/null
+++ b/dev-util/buildbot-worker/buildbot-worker-1.3.0.ebuild
@@ -0,0 +1,133 @@
+# 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} )
+
+EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit readme.gentoo-r1 user distutils-r1
+
+DESCRIPTION="BuildBot Worker (slave) Daemon"
+HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-worker/;
+
+MY_V="${PV/_p/.post}"
+MY_P="${PN}-${MY_V}"
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+IUSE="test"
+
+RDEPEND=">=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+   >=dev-python/twisted-17.9.0[${PYTHON_USEDEP}]
+   dev-python/future[${PYTHON_USEDEP}]
+   !

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

2018-07-26 Thread Brian Dolbec
commit: f8ba630d495c4abb9cc7db36c68a18b4b9f945b7
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 17:16:18 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8ba630d

dev-python/py-ubjson: Add missed setuptools dep bug 662022

Gentoo-bug: https://bugs.gentoo.org/662022
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/py-ubjson/py-ubjson-0.11.0.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-python/py-ubjson/py-ubjson-0.11.0.ebuild 
b/dev-python/py-ubjson/py-ubjson-0.11.0.ebuild
index f7ea0909f01..9e759613ae7 100644
--- a/dev-python/py-ubjson/py-ubjson-0.11.0.ebuild
+++ b/dev-python/py-ubjson/py-ubjson-0.11.0.ebuild
@@ -14,3 +14,6 @@ LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"



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

2018-07-26 Thread Brian Dolbec
commit: 6232f3aff9bfd5979b780825ed7fd2f5d01a24e0
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 15:42:38 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6232f3af

dev-util/buildbot-www: Clean old versions

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot-www/Manifest |  3 --
 dev-util/buildbot-www/buildbot-www-0.9.13.ebuild   | 51 --
 .../buildbot-www/buildbot-www-0.9.15_p1.ebuild | 51 --
 dev-util/buildbot-www/buildbot-www-1.1.0.ebuild| 51 --
 4 files changed, 156 deletions(-)

diff --git a/dev-util/buildbot-www/Manifest b/dev-util/buildbot-www/Manifest
index b6a79df5ea5..cc00f2eeb83 100644
--- a/dev-util/buildbot-www/Manifest
+++ b/dev-util/buildbot-www/Manifest
@@ -1,5 +1,2 @@
 DIST buildbot-www-0.9.12.tar.gz 691551 BLAKE2B 
9bef044fe9e48e34d3e314d9c9b7446a1e295898c432da5c8915e36156f2f934fd065c8075dd55f68da7bc29a567c1ef276bc415df38911aff7c33de46fa7942
 SHA512 
6c525d32407be24aa728a0bd9c9a09c64bb4bef092ef9e5285475527f7fcbd89d516ea376d90b22aa24af384d73125bc886360cf992dfe3d01471838193f351a
-DIST buildbot-www-0.9.13.tar.gz 691556 BLAKE2B 
cd3fe546c88308debc6dd621e8979c400816a11235b67c23e539bb3525746a864d76df2c4f8e04f63ba4459d2186094543115ab51bdc35f56b20c8c1a0ed5a68
 SHA512 
b092014e490ed46f2551ddeeaef5364c85b048cdda298af11acdf664d799fc52ef6f8daa17cf7a98d588c59abcbdfebb666345b44d551859d3db9b4fa358adb9
-DIST buildbot-www-0.9.15.post1.tar.gz 718007 BLAKE2B 
af64eb2e0fabea2af3c02c294d50c924211755358187bd0d52f43821fddcd6d566f8aad1136da3ca69f924aee3bce52cde1e48af3c3f0419c23d6c1be25c17ee
 SHA512 
749fd6e763580bb0fd27f7ce1576ee193ccf9cb42616c3b393a0bfac9469d9a42372069d087ceae3557e72540a3e0cc37087ba4b7901cbb67877f17f27422a47
-DIST buildbot-www-1.1.0.tar.gz 718666 BLAKE2B 
86bc329eb80aacf44c5bd01eaaf6b8f0631cb808080fe17f667f54746f841f9d88aa7b699e6083546b6e2dfb1171333ee173c484c9fdea285bdd5769d90a6528
 SHA512 
8e95a4faf393a81fccab225cf33ee13947cb72e441e2cfde833843838686a888cff24e45c6085d4ac431dec177d696441cb21014d172ae23b61ef70164fccb31
 DIST buildbot-www-1.1.2.tar.gz 718705 BLAKE2B 
009ae0dc07693f9eee4e3982ccbecb32d64e7d27e374f539cd541a5f80d9b9bf798e8836502cd26a5477b0ee842dbfae2308608fa3320e682afd0bcda2f89f1e
 SHA512 
e4a0f7aee5e38d0522d39c819d4b9865966e020fd89b156e79807417fd7f82d497fbceafcc8a89e5beb6def1f42e4bfc595053581cbe2634520ad2c806ce3968

diff --git a/dev-util/buildbot-www/buildbot-www-0.9.13.ebuild 
b/dev-util/buildbot-www/buildbot-www-0.9.13.ebuild
deleted file mode 100644
index 56bc0409643..000
--- a/dev-util/buildbot-www/buildbot-www-0.9.13.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit distutils-r1
-
-DESCRIPTION="BuildBot base web interface, use with 
buildbot-{console-view,waterfall-view}..."
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-www/;
-
-MY_PV="${PV/_p/.post}"
-MY_P="${PN}-${MY_PV}"
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-
-if [[ ${PV} == * ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64"
-fi
-
-IUSE="test"
-
-RDEPEND=""
-
-DEPEND="${RDEPEND}
-   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
-   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
-   ~dev-util/buildbot-pkg-${PV}[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/${MY_P}"
-#[[ ${PV} == * ]] && S=${S}/www/base
-
-python_test() {
-   distutils_install_for_testing
-
-   esetup.py test || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-}

diff --git a/dev-util/buildbot-www/buildbot-www-0.9.15_p1.ebuild 
b/dev-util/buildbot-www/buildbot-www-0.9.15_p1.ebuild
deleted file mode 100644
index 8ee469d1634..000
--- a/dev-util/buildbot-www/buildbot-www-0.9.15_p1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit distutils-r1
-
-DESCRIPTION="BuildBot base web interface, use with 
buildbot-{console-view,waterfall-view}..."
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot-www/;
-
-MY_PV="${PV/_p/.post}"
-MY_P="${PN}-${MY_PV}"
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-

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

2018-07-26 Thread Brian Dolbec
commit: 22440e649d41037feeb20e8f687fe30b640e7e0a
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 15:23:15 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22440e64

dev-util/buildbot: Clean old versions

These versions had regressions making them less usable.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot/Manifest  |   4 -
 dev-util/buildbot/buildbot-0.9.12.ebuild| 206 --
 dev-util/buildbot/buildbot-0.9.13.ebuild| 202 --
 dev-util/buildbot/buildbot-0.9.15_p1.ebuild | 210 ---
 dev-util/buildbot/buildbot-1.1.0.ebuild | 218 
 5 files changed, 840 deletions(-)

diff --git a/dev-util/buildbot/Manifest b/dev-util/buildbot/Manifest
index fc86e187eef..fe05e44af16 100644
--- a/dev-util/buildbot/Manifest
+++ b/dev-util/buildbot/Manifest
@@ -1,7 +1,3 @@
 DIST buildbot-0.8.12.tar.gz 4834352 BLAKE2B 
16d06d6ccbbb90581471cf1727cc9cdd556ab1c0fa1433bbe76475513a7482619b05c28038e956e8724b99a806aec371961302914567fd36caccfe342daa6aaa
 SHA512 
18c5144132fb033f3581d3c494d5e8ff35d3e8b1548764452ce9ae543d710e58a2c6e3e8e46a0ef237804f9a6a45485890ae4616ab655fb00d4ccf328d6f6645
 DIST buildbot-0.9.12.tar.gz 3057832 BLAKE2B 
8e1748739bacc3c884f353b2a1c798575e3ce5f451a1711ecf88a7c7e517da86d2e791748d31468a2bb07369022e96cb568518b7a8ce1d9e1cece0b6ab77eec8
 SHA512 
62459918267297b31b2a6416f72794c7a4ebdcb60de04ece1681f6b8be9debf161716cc70ad843fd468b23e02c521c0a0783a5a1e119d75648e107691d6b908d
-DIST buildbot-0.9.13.tar.gz 3061713 BLAKE2B 
fac74d610bf0ff1cfeea1c59c46e95339d6b080725f6b01258921175b8036daeef23dfd3bf2a71fe838d43b9de3a3141ff9cec0e1c7e609f21c53f51b91d
 SHA512 
b1cf176d01e04bc219be8ffa787a857aec7bcfb930c3e9cabe0410fca60d826c35e74d277cd5764fcd3c6183ea5f19bae195c09ad401cdd948bda500789f2ade
-DIST buildbot-0.9.15.post1.tar.gz 3088947 BLAKE2B 
c9a0265d3df2a9ac01872fc7106b5b787334bd899a43fcdb6ad06aab5e0e8f1ddb4374bf5211f251f26985c3b11a0b981bdd23fb668ac1717af36443831648e6
 SHA512 
c5c72132fd8446fbb14467851063d192dbb817506163eacc3022d563698453c66706a895613ca1c17502dd25957b31f6409996497d2e7646ab2fdbb3fb55c31d
-DIST buildbot-1.1.0.docs.tar.xz 23932 BLAKE2B 
81da8b86bb269efd2cd3f9146f3d9b41d64b28fdd0c878708c323d040a7e773cd277a18c82b1ef3cb07759ba8aedbc604e1de84f6477205b1708c28b6e86831e
 SHA512 
511d244ffd205989047b4514b164e194b30fe4e0513d3bda776fb4d7a1a5bf42d8b7f00540b88e427838ab43f45686a83e556687ab75ce55eae6b834426a8ef7
-DIST buildbot-1.1.0.tar.gz 3098781 BLAKE2B 
5a4ba8b641765fd58c3b5e788fc20aa1fb6195655ce2d82929f0f62ff48d20672f21efe0c413387e583d095c3ffcee1055a287016fe87ec1f3eb6b0ccdefdccb
 SHA512 
f850ba2cd93d54a8abc97503719f93f69dfdc3d03b519e2d05c02bdc11893529eb51d74b6584555689281aedb71c3aa6c23141cf5fbc68ae97e09f1c89b2c94c
 DIST buildbot-1.1.2.tar.gz 3101168 BLAKE2B 
35ec56440014015850a69324d475c4ca9555ad90da85b26a7a43eca74f08361137021aec72ddca37cbb24f21519ebf45948e66214291f356b4a1fbada7c0b3b8
 SHA512 
14c28d6fae18a10d89d41509635188d881ac76e7b61758481a9afbb22eb384d7ab5080383242e5850af13bfe46877985a91036270c3c4fbf01eafee5b7699815

diff --git a/dev-util/buildbot/buildbot-0.9.12.ebuild 
b/dev-util/buildbot/buildbot-0.9.12.ebuild
deleted file mode 100644
index c37dc87e147..000
--- a/dev-util/buildbot/buildbot-0.9.12.ebuild
+++ /dev/null
@@ -1,206 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
-
-EGIT_REPO_URI="https://github.com/buildbot/${PN}.git;
-
-[[ ${PV} == * ]] && inherit git-r3
-inherit readme.gentoo-r1 user systemd distutils-r1
-
-MY_PV="${PV/_p/p}"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="BuildBot build automation system"
-HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot/;
-[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-if [[ ${PV} == * ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64"
-fi
-
-IUSE="crypt doc examples irc test"
-
-RDEPEND="
-   >=dev-python/jinja-2.1[${PYTHON_USEDEP}]
-   >=dev-python/twisted-17.9.0[${PYTHON_USEDEP}]
-   >=dev-python/autobahn-0.16.0[${PYTHON_USEDEP}]
-   >=dev-python/sqlalchemy-0.8[${PYTHON_USEDEP}]
-   >=dev-python/sqlalchemy-migrate-0.9[${PYTHON_USEDEP}]
-   dev-python/future[${PYTHON_USEDEP}]
-   >=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
-   >=dev-python/txaio-2.2.2[${PYTHON_USEDEP}]
-   dev-python/pyjwt[${PYTHON_USEDEP}]
-   >=dev-python/zope-interface-4.1.1[${PYTHON_USEDEP}]
-   ~dev-util/buildbot-worker-${PV}[${PYTHON_USEDEP}]
-   crypt? (
-   >=dev-python/twisted-17.9.0[${PYTHON_USEDEP},crypt]
-   >=dev-python/pyopenssl-16.0.0[${PYTHON_USEDEP}]
-

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

2018-07-26 Thread Brian Dolbec
commit: c3d13db786553cca59480b8ea260d64bb3061a7c
Author: Brian Dolbec dolsen  gentoo  org>
AuthorDate: Thu Jul 26 15:19:39 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 26 17:17:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3d13db7

dev-util/buildbot: Remove doc use flag for 0.9.12-r1

Docs fail to build (missing files) newer releases don't support building docs.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/buildbot/buildbot-0.9.12-r1.ebuild | 179 
 1 file changed, 179 insertions(+)

diff --git a/dev-util/buildbot/buildbot-0.9.12-r1.ebuild 
b/dev-util/buildbot/buildbot-0.9.12-r1.ebuild
new file mode 100644
index 000..5164daeadab
--- /dev/null
+++ b/dev-util/buildbot/buildbot-0.9.12-r1.ebuild
@@ -0,0 +1,179 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+
+EGIT_REPO_URI="https://github.com/buildbot/${PN}.git;
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit readme.gentoo-r1 user systemd distutils-r1
+
+MY_PV="${PV/_p/p}"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="BuildBot build automation system"
+HOMEPAGE="https://buildbot.net/ https://github.com/buildbot/buildbot 
https://pypi.org/project/buildbot/;
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+IUSE="crypt examples irc test"
+
+RDEPEND="
+   >=dev-python/jinja-2.1[${PYTHON_USEDEP}]
+   >=dev-python/twisted-17.9.0[${PYTHON_USEDEP}]
+   >=dev-python/autobahn-0.16.0[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-0.8[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-migrate-0.9[${PYTHON_USEDEP}]
+   dev-python/future[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
+   >=dev-python/txaio-2.2.2[${PYTHON_USEDEP}]
+   dev-python/pyjwt[${PYTHON_USEDEP}]
+   >=dev-python/zope-interface-4.1.1[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-worker-${PV}[${PYTHON_USEDEP}]
+   crypt? (
+   >=dev-python/twisted-17.9.0[${PYTHON_USEDEP},crypt]
+   >=dev-python/pyopenssl-16.0.0[${PYTHON_USEDEP}]
+   dev-python/idna[${PYTHON_USEDEP}]
+   dev-python/service_identity[${PYTHON_USEDEP}]
+   )
+   irc? (
+   dev-python/txrequests[${PYTHON_USEDEP}]
+   )
+"
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/python-dateutil-1.5[${PYTHON_USEDEP}]
+   >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
+   dev-python/moto[${PYTHON_USEDEP}]
+   dev-python/boto3[${PYTHON_USEDEP}]
+   dev-python/ramlfications[${PYTHON_USEDEP}]
+   dev-python/pyjade[${PYTHON_USEDEP}]
+   dev-python/txgithub[${PYTHON_USEDEP}]
+   dev-python/txrequests[${PYTHON_USEDEP}]
+   dev-python/lz4[${PYTHON_USEDEP}]
+   dev-python/treq[${PYTHON_USEDEP}]
+   dev-python/setuptools_trial[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-worker-${PV}[${PYTHON_USEDEP}]
+   )"
+
+S=${WORKDIR}/${MY_P}
+[[ ${PV} == * ]] && S=${S}/master
+
+PATCHES=(
+   "${FILESDIR}/Remove-distro-version-test.patch"
+)
+
+pkg_setup() {
+   enewuser buildbot
+
+   DOC_CONTENTS="The \"buildbot\" user and the \"buildmaster\" init script 
has been added
+   to support starting buildbot through Gentoo's init system. To 
use this,
+   execute \"emerge --config =${CATEGORY}/${PF}\" to create a new 
instance.
+   The scripts can run as a different user if desired."
+}
+
+src_install() {
+   distutils-r1_src_install
+
+   doman docs/buildbot.1
+
+   if use examples; then
+   insinto /usr/share/doc/${PF}
+   doins -r docs/examples
+   fi
+
+   newconfd "${FILESDIR}/buildmaster.confd" buildmaster
+   newinitd "${FILESDIR}/buildmaster.initd" buildmaster
+   systemd_dounit "${FILESDIR}/buildmaster.target"
+   systemd_newunit "${FILESDIR}/buildmaster_at.service" 
"buildmaster@.service"
+   systemd_install_serviced "${FILESDIR}/buildmaster_at.service.conf" 
"buildmaster@.service"
+
+   readme.gentoo_create_doc
+}
+
+python_test() {
+   distutils_install_for_testing
+
+   esetup.py test || die "Tests failed under ${EPYTHON}"
+}
+
+pkg_postinst() {
+   readme.gentoo_print_elog
+
+   if [[ -n ${REPLACING_VERSIONS} ]]; then
+   ewarn
+   ewarn "Starting with buildbot-0.8.12-r2, more than one instance 
of buildmaster"
+   ewarn "can be run simultaneously. Note that \"BASEDIR\" in the 
buildbot configuration file"
+   ewarn "is now the common base directory for 

[gentoo-commits] repo/gentoo:master commit in: www-misc/bookmarksync/

2018-07-26 Thread Mikle Kolyada
commit: 9e5e08cd100240c73885b6659a6065f507d1f3f3
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 16:45:32 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 16:45:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e5e08cd

www-misc/bookmarksync: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 www-misc/bookmarksync/bookmarksync-0.3.4-r2.ebuild | 42 --
 1 file changed, 42 deletions(-)

diff --git a/www-misc/bookmarksync/bookmarksync-0.3.4-r2.ebuild 
b/www-misc/bookmarksync/bookmarksync-0.3.4-r2.ebuild
deleted file mode 100644
index ade6c8153bb..000
--- a/www-misc/bookmarksync/bookmarksync-0.3.4-r2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit toolchain-funcs
-
-DESCRIPTION="bookmarksync synchronizes various browser bookmark files"
-HOMEPAGE="https://sourceforge.net/projects/booksync/;
-SRC_URI="mirror://sourceforge/booksync/${P}.tar.gz"
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ppc x86"
-SLOT="0"
-
-IUSE="perl"
-RESTRICT="mirror"
-
-DEPEND=""
-RDEPEND="${DEPEND}
-   perl? ( dev-lang/perl )"
-
-src_prepare() {
-   sed -i Makefile \
-   -e 's|g++|$(CXX) $(CFLAGS)|g' \
-   -e 's| -o | $(LDFLAGS)&|g' \
-   || die "sed Makefile"
-   tc-export CXX
-}
-
-src_install () {
-   dobin bookmarksync
-   if use perl ; then
-   dobin tools/bookmarksync.pl
-   dodoc tools/README.tools
-   fi
-   dodoc README TODO DEVELOPERS
-}
-
-pkg_postinst () {
-   use perl && ewarn "You will need to modify bookmarksync.pl before use"
-}



[gentoo-commits] repo/gentoo:master commit in: www-misc/bookmarksync/

2018-07-26 Thread Mikle Kolyada
commit: e2d424b2572d6a0c08b6ec703a78c499ef4d0379
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 16:44:50 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 16:45:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2d424b2

www-misc/bookmarksync: Revision bump (EAPI=7)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 www-misc/bookmarksync/bookmarksync-0.3.4-r3.ebuild | 43 ++
 1 file changed, 43 insertions(+)

diff --git a/www-misc/bookmarksync/bookmarksync-0.3.4-r3.ebuild 
b/www-misc/bookmarksync/bookmarksync-0.3.4-r3.ebuild
new file mode 100644
index 000..288100d5545
--- /dev/null
+++ b/www-misc/bookmarksync/bookmarksync-0.3.4-r3.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="bookmarksync synchronizes various browser bookmark files"
+HOMEPAGE="https://sourceforge.net/projects/booksync/;
+SRC_URI="mirror://sourceforge/booksync/${P}.tar.gz"
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ppc x86"
+SLOT="0"
+
+IUSE="perl"
+RESTRICT="mirror"
+
+DEPEND=""
+RDEPEND="${DEPEND}
+   perl? ( dev-lang/perl )"
+
+src_prepare() {
+   default
+   sed -i Makefile \
+   -e 's|g++|$(CXX) $(CFLAGS)|g' \
+   -e 's| -o | $(LDFLAGS)&|g' \
+   || die "sed Makefile"
+   tc-export CXX
+}
+
+src_install () {
+   dobin bookmarksync
+   if use perl ; then
+   dobin tools/bookmarksync.pl
+   dodoc tools/README.tools
+   fi
+   dodoc README TODO DEVELOPERS
+}
+
+pkg_postinst () {
+   use perl && ewarn "You will need to modify bookmarksync.pl before use"
+}



[gentoo-commits] repo/gentoo:master commit in: sys-process/prll/

2018-07-26 Thread Patrice Clement
commit: 16b91fc914799e45f963a99177bd1d7cfa50058a
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Jul 26 14:51:24 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jul 26 15:37:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16b91fc9

sys-process/prll: version bump.

Also introduce the use of the readme.gentoo-r1 eclass to produce a
nicely formatted README file.

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

 sys-process/prll/Manifest  |  1 +
 sys-process/prll/prll-0.6.4.ebuild | 41 ++
 2 files changed, 42 insertions(+)

diff --git a/sys-process/prll/Manifest b/sys-process/prll/Manifest
index f5cdfca57a7..5d333284256 100644
--- a/sys-process/prll/Manifest
+++ b/sys-process/prll/Manifest
@@ -1 +1,2 @@
 DIST prll-0.6.2.tar.bz2 37870 BLAKE2B 
00adcb56e49dfe6a04235f628fee1aee5a0164ada30e3a2ac624f73f7e613c7bdd411012f01e8278bc95a1e8e96479d9177f48745759feb4681c0f75a6420419
 SHA512 
6157ab4d69ab21b0995d5e8e788605b9b602fa0268beae2d6b69e6bf32c734869f023d881ecdd0df83c1f45b584c88eef8beb88d2c58f657340697bf48dfd8cd
+DIST prll-0.6.4.tar.gz 49885 BLAKE2B 
07a63ddc6260c302070f27488142118286a0312ef807a6eaebbac180dbfb479c78f66cfb96cddbb7a62c3d96a79a9c4962daf1fbd308ec475ae8d03a999fd276
 SHA512 
df830eae9be91e175444ba14c23efde3f10152b968ca6b1365e0ab57c68df1a00712a0e6d77cd02aae4ed7a23fc7c25f207ba08bc1559b8331c42dec1d38dbfa

diff --git a/sys-process/prll/prll-0.6.4.ebuild 
b/sys-process/prll/prll-0.6.4.ebuild
new file mode 100644
index 000..1d9cfb0e744
--- /dev/null
+++ b/sys-process/prll/prll-0.6.4.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs readme.gentoo-r1
+
+DESCRIPTION="A utility for parallelizing execution of shell functions"
+HOMEPAGE="https://github.com/exzombie/prll;
+SRC_URI="https://github.com/exzombie/prll/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+RESTRICT="test"
+
+DOC_CONTENTS="
+You must source the prll.sh file located\nin /etc/profile.d to be able to use 
prll:\n
+ $ source /etc/profile.d/prll.sh
+"
+
+src_prepare() {
+   default
+   sed \
+   -e '/then sh/d' \
+   -e '/then zsh/d' \
+   -e '/then dash/d' \
+   -i tests/Makefile || die
+   tc-export CC
+}
+
+src_install() {
+   emake PREFIX="/usr" DESTDIR="${D}" install
+   einstalldocs
+   readme.gentoo_create_doc
+   rm -rf "${D}/usr/share/doc/prll" || die
+}
+
+pkg_postinst() {
+   readme.gentoo_print_elog
+}



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

2018-07-26 Thread Jeroen Roovers
commit: eaeb9cc9b4a5c544d71855e964a7d7b71a522c36
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jul 26 15:32:21 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jul 26 15:32:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaeb9cc9

www-client/opera-developer: Version 56.0.3026.0.

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 www-client/opera-developer/Manifest|  1 +
 www-client/opera-developer/opera-developer-56.0.3023.0.ebuild  | 10 +-
 ...r-56.0.3023.0.ebuild => opera-developer-56.0.3026.0.ebuild} | 10 +-
 3 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/www-client/opera-developer/Manifest 
b/www-client/opera-developer/Manifest
index 1d02207988c..3b53afa83bc 100644
--- a/www-client/opera-developer/Manifest
+++ b/www-client/opera-developer/Manifest
@@ -1,2 +1,3 @@
 DIST opera-developer_56.0.3013.0_amd64.deb 57274790 BLAKE2B 
17fe597401c6068b4ebb6810b9cd5ae9c2356a6fe18853b2d64706ec499cf47bd31b7bb0d67c5b902af9e49b524c43b5c559237b846183a7c2eaef9399b681b3
 SHA512 
5e756e0fae127e8232d9f1bfa48447aa768089b3a7d411478b399bf850fec5918f3078e9e18cfe404d177fae43bc4b2882ecbbafcaf8b2e2e0b65dbf72ef3d06
 DIST opera-developer_56.0.3023.0_amd64.deb 59238156 BLAKE2B 
b76684508134413bad2df613f5cbed3f0c166f7cc89335026c8817d3f1c8d81acde14682b2dd2417395a478bdabd8c680994fd9cdcae143e9aab1537b8ef81cd
 SHA512 
e680cee4804707556e72d0d3ba476651bcdaf15c3264b87fe0fcfcbaab896b650f6ef940c2805f4f2611350fab2cbcfdeaaf3abcf0a02ea0150bca46cc19292a
+DIST opera-developer_56.0.3026.0_amd64.deb 59316648 BLAKE2B 
be1cb1abc97b32f9e323b49378d6d626b58aedcb5c529e77cabfebe65cd0e6dfaba0f26a7e90c2910a7468a3958a70cb538aa1ec886c5a60fa8ae77ce9c4b1c1
 SHA512 
dbc1ddfcc3f6914ab157ba56db60398a73d16e42b5c7a2d6452b0707acdade74060a1832dd2eda28c38c0363340b5185fd50cc01bcc0e7a199d4c154c3fe9817

diff --git a/www-client/opera-developer/opera-developer-56.0.3023.0.ebuild 
b/www-client/opera-developer/opera-developer-56.0.3023.0.ebuild
index 12a41bce61c..7f81451646e 100644
--- a/www-client/opera-developer/opera-developer-56.0.3023.0.ebuild
+++ b/www-client/opera-developer/opera-developer-56.0.3023.0.ebuild
@@ -10,14 +10,14 @@ CHROMIUM_LANGS="
 inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
 
 DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="http://www.opera.com/;
+HOMEPAGE="https://www.opera.com/;
 LICENSE="OPERA-2014"
 SLOT="0"
 SRC_URI_BASE="
-   http://download1.operacdn.com/pub/
-   http://download2.operacdn.com/pub/
-   http://download3.operacdn.com/pub/
-   http://download4.operacdn.com/pub/
+   https://download1.operacdn.com/pub/
+   https://download2.operacdn.com/pub/
+   https://download3.operacdn.com/pub/
+   https://download4.operacdn.com/pub/
 "
 SRC_URI="amd64? ("
 for uri in ${SRC_URI_BASE}; do

diff --git a/www-client/opera-developer/opera-developer-56.0.3023.0.ebuild 
b/www-client/opera-developer/opera-developer-56.0.3026.0.ebuild
similarity index 92%
copy from www-client/opera-developer/opera-developer-56.0.3023.0.ebuild
copy to www-client/opera-developer/opera-developer-56.0.3026.0.ebuild
index 12a41bce61c..7f81451646e 100644
--- a/www-client/opera-developer/opera-developer-56.0.3023.0.ebuild
+++ b/www-client/opera-developer/opera-developer-56.0.3026.0.ebuild
@@ -10,14 +10,14 @@ CHROMIUM_LANGS="
 inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
 
 DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="http://www.opera.com/;
+HOMEPAGE="https://www.opera.com/;
 LICENSE="OPERA-2014"
 SLOT="0"
 SRC_URI_BASE="
-   http://download1.operacdn.com/pub/
-   http://download2.operacdn.com/pub/
-   http://download3.operacdn.com/pub/
-   http://download4.operacdn.com/pub/
+   https://download1.operacdn.com/pub/
+   https://download2.operacdn.com/pub/
+   https://download3.operacdn.com/pub/
+   https://download4.operacdn.com/pub/
 "
 SRC_URI="amd64? ("
 for uri in ${SRC_URI_BASE}; do



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

2018-07-26 Thread Jeroen Roovers
commit: 4defe16b0fa35c4e04a75b5465f0261e3cc34f0f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jul 26 15:33:35 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jul 26 15:33:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4defe16b

www-client/opera-beta: Switch to HTTPS.

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 www-client/opera-beta/opera-beta-55.0.2994.20.ebuild | 10 +-
 www-client/opera-beta/opera-beta-55.0.2994.23.ebuild | 10 +-
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/www-client/opera-beta/opera-beta-55.0.2994.20.ebuild 
b/www-client/opera-beta/opera-beta-55.0.2994.20.ebuild
index 308b38bc8be..135872778f9 100644
--- a/www-client/opera-beta/opera-beta-55.0.2994.20.ebuild
+++ b/www-client/opera-beta/opera-beta-55.0.2994.20.ebuild
@@ -10,14 +10,14 @@ CHROMIUM_LANGS="
 inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
 
 DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="http://www.opera.com/;
+HOMEPAGE="https://www.opera.com/;
 LICENSE="OPERA-2014"
 SLOT="0"
 SRC_URI_BASE="
-   http://download1.operacdn.com/pub/
-   http://download2.operacdn.com/pub/
-   http://download3.operacdn.com/pub/
-   http://download4.operacdn.com/pub/
+   https://download1.operacdn.com/pub/
+   https://download2.operacdn.com/pub/
+   https://download3.operacdn.com/pub/
+   https://download4.operacdn.com/pub/
 "
 SRC_URI="amd64? ("
 for uri in ${SRC_URI_BASE}; do

diff --git a/www-client/opera-beta/opera-beta-55.0.2994.23.ebuild 
b/www-client/opera-beta/opera-beta-55.0.2994.23.ebuild
index 308b38bc8be..135872778f9 100644
--- a/www-client/opera-beta/opera-beta-55.0.2994.23.ebuild
+++ b/www-client/opera-beta/opera-beta-55.0.2994.23.ebuild
@@ -10,14 +10,14 @@ CHROMIUM_LANGS="
 inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
 
 DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="http://www.opera.com/;
+HOMEPAGE="https://www.opera.com/;
 LICENSE="OPERA-2014"
 SLOT="0"
 SRC_URI_BASE="
-   http://download1.operacdn.com/pub/
-   http://download2.operacdn.com/pub/
-   http://download3.operacdn.com/pub/
-   http://download4.operacdn.com/pub/
+   https://download1.operacdn.com/pub/
+   https://download2.operacdn.com/pub/
+   https://download3.operacdn.com/pub/
+   https://download4.operacdn.com/pub/
 "
 SRC_URI="amd64? ("
 for uri in ${SRC_URI_BASE}; do



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

2018-07-26 Thread Jeroen Roovers
commit: 9b8988282aa05484e98feb900c8a23b99b46d681
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jul 26 15:32:43 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jul 26 15:32:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b898828

www-client/opera-developer: Old.

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 www-client/opera-developer/Manifest|   1 -
 .../opera-developer-56.0.3013.0.ebuild | 114 -
 2 files changed, 115 deletions(-)

diff --git a/www-client/opera-developer/Manifest 
b/www-client/opera-developer/Manifest
index 3b53afa83bc..3e227bdf0c8 100644
--- a/www-client/opera-developer/Manifest
+++ b/www-client/opera-developer/Manifest
@@ -1,3 +1,2 @@
-DIST opera-developer_56.0.3013.0_amd64.deb 57274790 BLAKE2B 
17fe597401c6068b4ebb6810b9cd5ae9c2356a6fe18853b2d64706ec499cf47bd31b7bb0d67c5b902af9e49b524c43b5c559237b846183a7c2eaef9399b681b3
 SHA512 
5e756e0fae127e8232d9f1bfa48447aa768089b3a7d411478b399bf850fec5918f3078e9e18cfe404d177fae43bc4b2882ecbbafcaf8b2e2e0b65dbf72ef3d06
 DIST opera-developer_56.0.3023.0_amd64.deb 59238156 BLAKE2B 
b76684508134413bad2df613f5cbed3f0c166f7cc89335026c8817d3f1c8d81acde14682b2dd2417395a478bdabd8c680994fd9cdcae143e9aab1537b8ef81cd
 SHA512 
e680cee4804707556e72d0d3ba476651bcdaf15c3264b87fe0fcfcbaab896b650f6ef940c2805f4f2611350fab2cbcfdeaaf3abcf0a02ea0150bca46cc19292a
 DIST opera-developer_56.0.3026.0_amd64.deb 59316648 BLAKE2B 
be1cb1abc97b32f9e323b49378d6d626b58aedcb5c529e77cabfebe65cd0e6dfaba0f26a7e90c2910a7468a3958a70cb538aa1ec886c5a60fa8ae77ce9c4b1c1
 SHA512 
dbc1ddfcc3f6914ab157ba56db60398a73d16e42b5c7a2d6452b0707acdade74060a1832dd2eda28c38c0363340b5185fd50cc01bcc0e7a199d4c154c3fe9817

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



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

2018-07-26 Thread Jeroen Roovers
commit: 434bc6b6711d556b92e723cc0fa32015fb44c8dd
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jul 26 15:34:38 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jul 26 15:34:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=434bc6b6

www-client/opera: Switch to HTTPS.

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 www-client/opera/opera-12.16_p1860-r1.ebuild |  6 +++---
 www-client/opera/opera-54.0.2952.60.ebuild   | 10 +-
 www-client/opera/opera-54.0.2952.64.ebuild   | 10 +-
 3 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/www-client/opera/opera-12.16_p1860-r1.ebuild 
b/www-client/opera/opera-12.16_p1860-r1.ebuild
index fdba2080a17..9ea33719af1 100644
--- a/www-client/opera/opera-12.16_p1860-r1.ebuild
+++ b/www-client/opera/opera-12.16_p1860-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 inherit eutils gnome2-utils multilib pax-utils versionator xdg-utils
 
 DESCRIPTION="A fast and secure web browser and Internet suite"
-HOMEPAGE="http://www.opera.com/;
+HOMEPAGE="https://www.opera.com/;
 
 SLOT="0"
 LICENSE="OPERA-12 LGPL-2 LGPL-3"
@@ -29,11 +29,11 @@ O_LINGUAS="
 # == End of variables that often change ==
 
 if [[ "pre${O_B/pre/}" = "${O_B}" ]]; then # snapshot: _pre
-   HOMEPAGE="http://my.opera.com/desktopteam/blog/;
+   HOMEPAGE="https://my.opera.com/desktopteam/blog/;
 
O_D="${O_K}_${O_V}-${O_B/pre}"  # directory string
O_P="${PN}-${O_V}-${O_B/pre}"   # package string
-   O_U="http://snapshot.opera.com/unix/;   # base URI
+   O_U="https://snapshot.opera.com/unix/;  # base URI
 
SRC_URI="
amd64? ( ${O_U}${O_D}/${O_P}.x86_64.linux.tar.xz )

diff --git a/www-client/opera/opera-54.0.2952.60.ebuild 
b/www-client/opera/opera-54.0.2952.60.ebuild
index 139f6afa7c7..23b9ad88ecc 100644
--- a/www-client/opera/opera-54.0.2952.60.ebuild
+++ b/www-client/opera/opera-54.0.2952.60.ebuild
@@ -10,14 +10,14 @@ CHROMIUM_LANGS="
 inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
 
 DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="http://www.opera.com/;
+HOMEPAGE="https://www.opera.com/;
 LICENSE="OPERA-2014"
 SLOT="0"
 SRC_URI_BASE="
-   http://download1.operacdn.com/pub/
-   http://download2.operacdn.com/pub/
-   http://download3.operacdn.com/pub/
-   http://download4.operacdn.com/pub/
+   https://download1.operacdn.com/pub/
+   https://download2.operacdn.com/pub/
+   https://download3.operacdn.com/pub/
+   https://download4.operacdn.com/pub/
 "
 for uri in ${SRC_URI_BASE}; do
 SRC_URI+="

diff --git a/www-client/opera/opera-54.0.2952.64.ebuild 
b/www-client/opera/opera-54.0.2952.64.ebuild
index 139f6afa7c7..23b9ad88ecc 100644
--- a/www-client/opera/opera-54.0.2952.64.ebuild
+++ b/www-client/opera/opera-54.0.2952.64.ebuild
@@ -10,14 +10,14 @@ CHROMIUM_LANGS="
 inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
 
 DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="http://www.opera.com/;
+HOMEPAGE="https://www.opera.com/;
 LICENSE="OPERA-2014"
 SLOT="0"
 SRC_URI_BASE="
-   http://download1.operacdn.com/pub/
-   http://download2.operacdn.com/pub/
-   http://download3.operacdn.com/pub/
-   http://download4.operacdn.com/pub/
+   https://download1.operacdn.com/pub/
+   https://download2.operacdn.com/pub/
+   https://download3.operacdn.com/pub/
+   https://download4.operacdn.com/pub/
 "
 for uri in ${SRC_URI_BASE}; do
 SRC_URI+="



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

2018-07-26 Thread Mikle Kolyada
commit: 3853d43ba43ff6fa34c892fffab0e699449d3625
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 15:18:22 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 15:19:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3853d43b

media-video/subcheck: revision bump (EAPI=7)

Do not install pre-compressed man

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-video/subcheck/subcheck-0.78.2-r1.ebuild | 31 ++
 1 file changed, 31 insertions(+)

diff --git a/media-video/subcheck/subcheck-0.78.2-r1.ebuild 
b/media-video/subcheck/subcheck-0.78.2-r1.ebuild
new file mode 100644
index 000..58a9591990f
--- /dev/null
+++ b/media-video/subcheck/subcheck-0.78.2-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Subcheck checks srt subtitle files for errors"
+HOMEPAGE="http://subcheck.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="!sci-biology/ncbi-tools++"  # bug 377093
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}"
+
+src_prepare() {
+   default
+   sed -i -e "s:${PN}.pl:${PN}:g" all-checksub || die "sed failed"
+}
+
+src_install() {
+   gunzip man/subcheck.8.gz || die
+   doman man/subcheck.8
+   newbin subcheck.pl subcheck
+   dobin all-checksub
+   dodoc Changes
+}



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

2018-07-26 Thread Mikle Kolyada
commit: 4c60899a3641d1301ae76ceb05597eb3aed35485
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 26 15:18:53 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 26 15:19:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c60899a

media-video/subcheck: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-video/subcheck/subcheck-0.78.2.ebuild | 35 -
 1 file changed, 35 deletions(-)

diff --git a/media-video/subcheck/subcheck-0.78.2.ebuild 
b/media-video/subcheck/subcheck-0.78.2.ebuild
deleted file mode 100644
index 50a06a20ebd..000
--- a/media-video/subcheck/subcheck-0.78.2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-
-inherit eutils
-
-DESCRIPTION="Subcheck checks srt subtitle files for errors"
-HOMEPAGE="http://subcheck.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="!sci-biology/ncbi-tools++"  # bug 377093
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
-   sed -i -e "s:${PN}.pl:${PN}:g" all-checksub
-}
-
-src_compile() {
-   :  # nothing to do
-}
-
-src_install() {
-   doman man/subcheck.8.gz
-   newbin subcheck.pl subcheck
-   dobin all-checksub
-   dodoc Changes
-}



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

2018-07-26 Thread Manuel Rüger
commit: 616d9f9a47c4eed744924823eea647ab8476c7e5
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Jul 26 13:41:45 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Jul 26 13:41:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=616d9f9a

app-text/paperwork: Drop dependency on pycrypto, update Homepage

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-text/paperwork/paperwork-1.2.4-r1.ebuild | 30 
 1 file changed, 30 insertions(+)

diff --git a/app-text/paperwork/paperwork-1.2.4-r1.ebuild 
b/app-text/paperwork/paperwork-1.2.4-r1.ebuild
new file mode 100644
index 000..9156358a08b
--- /dev/null
+++ b/app-text/paperwork/paperwork-1.2.4-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="a personal document manager for scanned documents (and PDFs)"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="~app-text/paperwork-backend-${PV}[${PYTHON_USEDEP}]
+   dev-python/libpillowfight[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/pyinsane:2[${PYTHON_USEDEP}]
+   >=dev-python/pyocr-0.3.0[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/simplebayes[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3[introspection]
+   x11-libs/libnotify[introspection]"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/udev/files/, sys-fs/udev/

2018-07-26 Thread William Hubbs
commit: f3a2f4fa829092888e04a46204f7552682ab704e
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Jul 26 13:23:35 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Jul 26 13:23:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3a2f4fa

sys-fs/udev: removed several old versions

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-fs/udev/Manifest|   4 -
 sys-fs/udev/files/233-fix-includes.patch|  38 ---
 sys-fs/udev/files/233-format-warnings.patch |  84 -
 sys-fs/udev/metadata.xml|   2 -
 sys-fs/udev/udev-216.ebuild | 485 
 sys-fs/udev/udev-225-r1.ebuild  | 426 
 sys-fs/udev/udev-233.ebuild | 405 ---
 7 files changed, 1444 deletions(-)

diff --git a/sys-fs/udev/Manifest b/sys-fs/udev/Manifest
index 01bd656d0f2..8892a91fea5 100644
--- a/sys-fs/udev/Manifest
+++ b/sys-fs/udev/Manifest
@@ -1,7 +1,3 @@
-DIST systemd-216.tar.xz 3612960 BLAKE2B 
677fa79e7a8dae5d62f37115c3087d89c46a28515c1fe48abbd77016ee41565583e407913b5a9738908436a2ccc36a1d3305392d8dfa5ac053a44ca66d587611
 SHA512 
f4eee6664368168eafd61939f1355ac21c7eeecce6247de98ef36f40bb6a942d12c006ced4ee15f3d8f11699c194990222d5a5115b45f2aa81f2a1abafebbdd2
-DIST systemd-225.tar.gz 3878442 BLAKE2B 
24bf9f6bfdd7d7c585829c1b172f73e669e137020b990ecd07dffafbe6890f1819e6c8efd5b322008473a62007a4a6f6ab2fb209be7db4ecb89a2bc01d60aaab
 SHA512 
35b3946509c7b01660da4370d3c51ff0e6a537dadd9dbb0a039c4f7ed552fd4e02ebac6eb8a788f61f1e3ba99444238d959051dd004c174b027729a80368ac19
-DIST systemd-233.tar.gz 4660737 BLAKE2B 
38cdd74543447b3c02391b328428fed169fe2cf2df6e9341dcaf2f7d3d977612ec102301e144c1cada90d61e9e9bda3b2faaef708c8ff4bd0b52b143760a83b2
 SHA512 
5ad5329ea116d973cf67096f7e7ad28e9ea0905696e9451291f1d25e5064f4a9bfcfae87e912996c6a38397e9f4a148d4ccecfa9b70f7ecdf04deadb61784c8e
 DIST systemd-236.tar.gz 6759035 BLAKE2B 
0fc26bd67fb6cc3b0565c763fc26e38186c4b05c3d38652b73a2189dfbfb46382dba239f7f6f889eec57ad1d8f69d4098745c8f4ca16a707aa23b7771f2328f3
 SHA512 
1a9672960e03e05c09e41fb8cfe9b0f25e867fd43f37f8371515fdbd4270afd746a6da733f6d1d3b2cc43db1ecc7a9f2245f2dac2ec233db74e9e70e4f6d
 DIST systemd-238.tar.gz 6954022 BLAKE2B 
9b5cc36a7234c0d037a2656ee1e5ed54186a394b8be41771ebc29c903d3efcecf7f13f004a6d1695c022923bd0d540a243e897852f07e810f73fd3163f688dde
 SHA512 
c0f272b022308d3bd94679184e102a8dc85de55310bda205a458ea33c77c7733e5c8c8e5b15f786ba3e0ce59e7c6a9bf0d5a0950517c6b91e0f345950129b9c8
 DIST systemd-239.tar.gz 7157293 BLAKE2B 
975f6215c8bb6662d6e161f637e1fece22930c0190b3c31a8fc4cb1a10600546a252704ac95590d9d14e495fcd06082a590e6d755e36603a41b3a396d579d8b0
 SHA512 
fd44590dfd148504c5ed1e67521efce50d84b627b7fc77015fa95dfa76d7a42297c56cc89eff40181809732024b16d48f2a87038cf435e0c63bc2b95ecd86b0f
-DIST udev-216-patches-2.tar.xz 1264 BLAKE2B 
b1bbb6b1b7734edc3352b4352a45b4b5df4715b0fc92c4936798aa93fb078755b7795f475d7bc42392ad8ef57853e9ce2507c66cc9bfbd37e6fe22ada4c156cc
 SHA512 
1f5912f3bbc3e40a4efad9de8b1fab2b3a750f3f23c9f2e33a581658959d22cf23f9ff1b8f51597874e7bca1d0f757f37fd5550b4112160261559524eda261f4

diff --git a/sys-fs/udev/files/233-fix-includes.patch 
b/sys-fs/udev/files/233-fix-includes.patch
deleted file mode 100644
index 44b06214f89..000
--- a/sys-fs/udev/files/233-fix-includes.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 284d1cd0a12cad96a5ea61d1afb0dd677dbd147e Mon Sep 17 00:00:00 2001
-From: Matija Skala 
-Date: Wed, 15 Mar 2017 13:21:10 +0100
-Subject: [PATCH] fix includes
-
-linux/sockios.h is needed for the SIOCGSTAMPNS macro
-
-xlocale.h is included indirectly in glibc and doesn't even exist in
-other libcs

- src/basic/parse-util.c   | 1 -
- src/libsystemd-network/sd-lldp.c | 1 +
- 2 files changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/basic/parse-util.c b/src/basic/parse-util.c
-index 6e58ced6f5..d86700736d 100644
 a/src/basic/parse-util.c
-+++ b/src/basic/parse-util.c
-@@ -23,7 +23,6 @@
- #include 
- #include 
- #include 
--#include 
- 
- #include "alloc-util.h"
- #include "extract-word.h"
-diff --git a/src/libsystemd-network/sd-lldp.c 
b/src/libsystemd-network/sd-lldp.c
-index 0702241506..39ddb2461a 100644
 a/src/libsystemd-network/sd-lldp.c
-+++ b/src/libsystemd-network/sd-lldp.c
-@@ -19,6 +19,7 @@
- ***/
- 
- #include 
-+#include 
- 
- #include "sd-lldp.h"
- 

diff --git a/sys-fs/udev/files/233-format-warnings.patch 
b/sys-fs/udev/files/233-format-warnings.patch
deleted file mode 100644
index 7bb08f0a320..000
--- a/sys-fs/udev/files/233-format-warnings.patch
+++ /dev/null
@@ -1,84 +0,0 @@
-From 3e7d14d78c4d15ec7789299216cbf5c58e61547b Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= 
-Date: Sat, 3 Jun 2017 05:41:17 -0400
-Subject: [PATCH] sd-bus: silence format warnings in kdbus code (#6072)
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8

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

2018-07-26 Thread Virgil Dupras
commit: 74160be17bb858f0dc6ea2b2564373b8436b7b90
Author: Virgil Dupras  gentoo  org>
AuthorDate: Thu Jul 26 12:39:17 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Thu Jul 26 12:39:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74160be1

dev-python/send2trash: bump to 1.5.0

* Take over maintainership (I upstream this)
* EAPI 7
* Enable tests
* Enable py37 and drop py34

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 dev-python/send2trash/Manifest |  1 +
 .../send2trash-1.5.0-fix-broken-tests-on-py2.patch | 29 +
 dev-python/send2trash/metadata.xml |  4 +++
 dev-python/send2trash/send2trash-1.5.0.ebuild  | 36 ++
 4 files changed, 70 insertions(+)

diff --git a/dev-python/send2trash/Manifest b/dev-python/send2trash/Manifest
index 5be08e004f3..0fb037b7afb 100644
--- a/dev-python/send2trash/Manifest
+++ b/dev-python/send2trash/Manifest
@@ -1 +1,2 @@
 DIST Send2Trash-1.3.0.tar.gz 5563 BLAKE2B 
54fe34a5f984ded219a3c17f0e06b74a2e5624a8bda8d5723087a918217041bbf6a2b20976b0b4ba71d4a1e08d9ce645b8d5d7fb022ec8e5ed72786496e1ee90
 SHA512 
d308dd06ef7a11ad7bcb5d9195fb52aa0c0b8e76590ef11b1576d14815501c32c48b96167eb0a325e4f27d0dbf77f41c012a128d30c8f05d9d5ebec9967e21f3
+DIST Send2Trash-1.5.0.tar.gz 10892 BLAKE2B 
36b51f1859a3b40aa5d9b619491a13da8453ff6615e71423724131a2a88207665d3fbaeef49ecc0ff02b77738d02023c08543d8a759cc0807d74740a8af9b9de
 SHA512 
3c08ef513e5707cd4ac82290b326bb19161222c7a84b8ffd494789ba9858929241f55ea55482947af464c14e32fea27bd92cd762a32a1d55e2daf2e21fd63172

diff --git 
a/dev-python/send2trash/files/send2trash-1.5.0-fix-broken-tests-on-py2.patch 
b/dev-python/send2trash/files/send2trash-1.5.0-fix-broken-tests-on-py2.patch
new file mode 100644
index 000..3f2a64ca2a2
--- /dev/null
+++ b/dev-python/send2trash/files/send2trash-1.5.0-fix-broken-tests-on-py2.patch
@@ -0,0 +1,29 @@
+From 74352462f5df2cb5708b96458b81afef3070c800 Mon Sep 17 00:00:00 2001
+From: Virgil Dupras 
+Date: Thu, 26 Jul 2018 08:30:39 -0400
+Subject: [PATCH] Fix broken tests on py2
+
+---
+ tests/test_plat_other.py | 6 +-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/tests/test_plat_other.py b/tests/test_plat_other.py
+index b94295d..ae4f391 100644
+--- a/tests/test_plat_other.py
 b/tests/test_plat_other.py
+@@ -6,7 +6,11 @@ from os import path as op
+ import send2trash.plat_other
+ from send2trash.plat_other import send2trash as s2t
+ from send2trash.compat import PY3
+-from configparser import ConfigParser
++try:
++from configparser import ConfigParser
++except ImportError:
++# py2
++from ConfigParser import ConfigParser
+ from tempfile import mkdtemp, NamedTemporaryFile, mktemp
+ import shutil
+ import stat
+-- 
+2.16.4
+

diff --git a/dev-python/send2trash/metadata.xml 
b/dev-python/send2trash/metadata.xml
index 9dd52975619..0267c38bf91 100644
--- a/dev-python/send2trash/metadata.xml
+++ b/dev-python/send2trash/metadata.xml
@@ -1,6 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+  
+vdup...@gentoo.org
+Virgil Dupras
+  
   
 pyt...@gentoo.org
 Python

diff --git a/dev-python/send2trash/send2trash-1.5.0.ebuild 
b/dev-python/send2trash/send2trash-1.5.0.ebuild
new file mode 100644
index 000..8d102d20e3e
--- /dev/null
+++ b/dev-python/send2trash/send2trash-1.5.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_{5,6,7}} pypy )
+
+inherit distutils-r1
+
+MY_PN="Send2Trash"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Sends files to the Trash (or Recycle Bin)"
+HOMEPAGE="
+   https://pypi.org/project/Send2Trash/
+   https://github.com/hsoft/send2trash;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+
+S="${WORKDIR}"/${MY_P}
+
+PATCHES=(
+   "${FILESDIR}/${P}-fix-broken-tests-on-py2.patch"
+)
+
+python_test() {
+   ${EPYTHON} setup.py test
+}



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

2018-07-26 Thread Tobias Klausmann
commit: f41b7d75d624688cf660f5821b2134e2df2b8102
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Jul 26 11:58:33 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Jul 26 11:58:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f41b7d75

www-apps/grafana-bin: Bump to v5.2.2

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 www-apps/grafana-bin/Manifest   | 2 +-
 .../grafana-bin/{grafana-bin-5.2.1.ebuild => grafana-bin-5.2.2.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/grafana-bin/Manifest b/www-apps/grafana-bin/Manifest
index ecc79910068..a82bec1bd54 100644
--- a/www-apps/grafana-bin/Manifest
+++ b/www-apps/grafana-bin/Manifest
@@ -1,2 +1,2 @@
 DIST grafana-bin-5.1.3.tar.gz 52436314 BLAKE2B 
e5ff613a6d65018b6c205a88a520b5f07ea32955cb8f4b75d1eef05946d93c50272edecf80c8a4a6b8b4a70fbae7c90c71f1b833a31ff56ed71c59dda3007b4c
 SHA512 
3d0fcc2015d95a5334d571f4ea61fa1bb7ead1b4131342e3bf167c832c0f951ae6669049da73a8d954117d54b5422be9203505db19b370ec337c481900d7fea5
-DIST grafana-bin-5.2.1.tar.gz 54294991 BLAKE2B 
ca60a8e90f5333482c2f364193a431c58bee89db6bbc08424a49c4b444e5655d1d3a21fc9cc177ed73847eb3240c0429a7891c7dafe34b8b8764155a17d20860
 SHA512 
5f97b2dde1625c51743aeb52b2f323d578401c42379791b49978224e98b5f9de542ff8b10698aa84c04f4de1c08458ad6b0dad8dcd2258dee1b14b55e7ae2952
+DIST grafana-bin-5.2.2.tar.gz 54295447 BLAKE2B 
6af8f72b451c833183af65d665e4553bd68006537a7cc8045c8d58bf504a93fc0104c3abb8c3d2db5f84683255f4ca1c0ea1ad9c5ecd8d6ec5340da12fcf9d42
 SHA512 
7be3db39b2ed260f1164504684da3b6827f238045dcc14d166dfd19fee3be2a6e7a4c2e4e9068a9c7b8066774403e8ecd4a0efd2fa0cc110ec619002bf2a0ee9

diff --git a/www-apps/grafana-bin/grafana-bin-5.2.1.ebuild 
b/www-apps/grafana-bin/grafana-bin-5.2.2.ebuild
similarity index 100%
rename from www-apps/grafana-bin/grafana-bin-5.2.1.ebuild
rename to www-apps/grafana-bin/grafana-bin-5.2.2.ebuild



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

2018-07-26 Thread Lars Wendler
commit: 56249a9e74ddc0b3415e4c07b488661f014755f6
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Jul 26 11:55:09 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Jul 26 11:55:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56249a9e

app-arch/cabextract: Bump to version 1.7

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-arch/cabextract/Manifest  |  1 +
 app-arch/cabextract/cabextract-1.7.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/app-arch/cabextract/Manifest b/app-arch/cabextract/Manifest
index d0876de3769..f019850002c 100644
--- a/app-arch/cabextract/Manifest
+++ b/app-arch/cabextract/Manifest
@@ -1 +1,2 @@
 DIST cabextract-1.6.tar.gz 241731 BLAKE2B 
49a94b1b0d8a6c9f61cd51280a035e3fedb8d7a2d097b132bc56114c6003a558647a7f8c47b8d08fcac1999e68bea5303adb2b03c8e6dd010995e8b0c6dcd442
 SHA512 
d1c71c0292e3d73d8edbff5f5230b3127c63028f5aba1d0cad968bc945202fb9c0773327affce3d28466068377f029c80735adbabe0929d29b2204dea73738f8
+DIST cabextract-1.7.tar.gz 293760 BLAKE2B 
d5ab4783c944d5d8b1d9ed8a2fbbfd60aeeab9f12b836032f982efc5721055b2caa521147246b3b5274d9456b1dbd2d513455cfd57750cf6d7fdc18f109f96c9
 SHA512 
63789e485d57299f2a0a60dc6d9a94e83639eb59b73789eff52977d3d3bd37a1c00713c86a4c6289e35541d0b7240ea0545ba84013713c070b4324ae1f2865ce

diff --git a/app-arch/cabextract/cabextract-1.7.ebuild 
b/app-arch/cabextract/cabextract-1.7.ebuild
new file mode 100644
index 000..694d49c73d7
--- /dev/null
+++ b/app-arch/cabextract/cabextract-1.7.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Extracts files from Microsoft cabinet archive files"
+HOMEPAGE="https://www.cabextract.org.uk/;
+SRC_URI="https://www.cabextract.org.uk/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="extras"
+
+RDEPEND="extras? ( dev-lang/perl )"
+
+src_prepare() {
+   default
+   # the code attempts to set up a fnmatch replacement, but then fails to 
code
+   # it properly leading to undefined references to rpl_fnmatch().  This 
may be
+   # removed in the future if building still works by setting "yes" to 
"no".
+   export ac_cv_func_fnmatch_works=yes
+}
+
+src_compile() {
+   emake AR="$(tc-getAR)"
+}
+
+src_install() {
+   local DOCS=( AUTHORS ChangeLog INSTALL NEWS README TODO doc/magic )
+   default
+   docinto html
+   dodoc doc/wince_cab_format.html
+   if use extras; then
+   dobin src/{wince_info,wince_rename,cabinfo,cabsplit}
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/

2018-07-26 Thread Marek Szuba
commit: f1ac06c36a288df21104ce6353e28f84b72995ec
Author: Marek Szuba  gentoo  org>
AuthorDate: Thu Jul 26 08:47:46 2018 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Thu Jul 26 08:47:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1ac06c3

net-p2p/syncthing: bump to 0.14.49

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-p2p/syncthing/Manifest |   1 +
 net-p2p/syncthing/syncthing-0.14.49.ebuild | 123 +
 2 files changed, 124 insertions(+)

diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
index fefa0b45d33..a709f42dafb 100644
--- a/net-p2p/syncthing/Manifest
+++ b/net-p2p/syncthing/Manifest
@@ -1,3 +1,4 @@
 DIST syncthing-0.14.38.tar.gz 8246629 BLAKE2B 
93c01750fedd57cc07bffa14fe65d98fc1cf48b43eaf965fc3ff9546a24acada411a89a19b47e2f5b5e7508e57646d0560559c35bb3c378b7c04e3db14b7ffaa
 SHA512 
be5f7527d63e8db427705c34b26d783d9abd7cb5727d3dcf08ee62b1ace5454b7dfed4f030ec53e847a34f560cf349460f68c859a1008c5105aef65ef42c5cc5
 DIST syncthing-0.14.46.tar.gz 10200015 BLAKE2B 
679b82af8ee5dad769ef01b77d0d3545d953ec2f2889faa129c433863094f431bf3e44a633109d944cbcaba6486a8b51257557eddfc20a2fb3f0cd8a77861b96
 SHA512 
ebf8491d1ac1dda90df35b8a9dafb808a9171d4a8083f0f24ac1c9b3aa8d2baac6cef61c5cd897a88c3fb93b114d79a31a341168859f091ed2cdef529321178c
 DIST syncthing-0.14.47.tar.gz 10278343 BLAKE2B 
8aace6ae059af3317a4f1aabfc06ff21140168428fa5a808dbb3aacbb27fdbfbe56ff910124b5b4c5b54637d444178ddc31492a59ec0bbd7fa4012a2e59ce997
 SHA512 
16718528fd4c618ea0e0eab1971405870d72ac60d391c27a06313a6ce9b9d023301eac052cfc00aab51e2b1f7c65800becfb822c5bca2d467fcb267b77ba55a9
+DIST syncthing-0.14.49.tar.gz 10952008 BLAKE2B 
a5c5b59720585a6a444d4c0a25c22639263330c1a1987471149773b257a3a0975428c3d63885f567fefbeb7cdf690f0a7ac3296448a2ca070d8ce53e3d657879
 SHA512 
7a9974e0d45582c5f184165456ea8fcaca0f7ba07a01b9f8eb2de1e1f0410ca36dc978ddde9c725a2b9d08bae8286fc2ce67595a0e510cbfe22fde9cdd9fc694

diff --git a/net-p2p/syncthing/syncthing-0.14.49.ebuild 
b/net-p2p/syncthing/syncthing-0.14.49.ebuild
new file mode 100644
index 000..00190a582b6
--- /dev/null
+++ b/net-p2p/syncthing/syncthing-0.14.49.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGO_PN="github.com/${PN}/${PN}"
+
+inherit golang-vcs-snapshot systemd user versionator
+
+DESCRIPTION="Open Source Continuous File Synchronization"
+HOMEPAGE="https://syncthing.net;
+SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="selinux tools"
+
+RDEPEND="selinux? ( sec-policy/selinux-syncthing )"
+
+DOCS=( README.md AUTHORS CONTRIBUTING.md )
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
+
+   if use tools ; then
+   # separate user for the relay server
+   enewgroup strelaysrv
+   enewuser strelaysrv -1 -1 /var/lib/strelaysrv strelaysrv
+   # and his home folder
+   keepdir /var/lib/strelaysrv
+   fowners strelaysrv:strelaysrv /var/lib/strelaysrv
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i \
+   's|^ExecStart=.*|ExecStart=/usr/libexec/syncthing/strelaysrv|' \
+   
src/${EGO_PN}/cmd/strelaysrv/etc/linux-systemd/strelaysrv.service \
+   || die
+}
+
+src_compile() {
+   export GOPATH="${S}:$(get_golibdir_gopath)"
+   cd src/${EGO_PN} || die
+   go run build.go -version "v${PV}" -no-upgrade install \
+   $(usex tools "all" "") || die "build failed"
+}
+
+src_test() {
+   cd src/${EGO_PN} || die
+   go run build.go test || die "test failed"
+}
+
+src_install() {
+   pushd src/${EGO_PN} >& /dev/null || die
+   doman man/*.[157]
+   einstalldocs
+
+   dobin bin/syncthing
+   if use tools ; then
+   exeinto /usr/libexec/syncthing
+   local exe
+   for exe in bin/* ; do
+   [[ "${exe}" == "bin/syncthing" ]] || doexe "${exe}"
+   done
+   fi
+   popd >& /dev/null || die
+
+   # openrc and systemd service files
+   systemd_dounit 
src/${EGO_PN}/etc/linux-systemd/system/${PN}{@,-resume}.service
+   systemd_douserunit src/${EGO_PN}/etc/linux-systemd/user/${PN}.service
+   newconfd "${FILESDIR}/${PN}.confd" ${PN}
+   newinitd "${FILESDIR}/${PN}.initd" ${PN}
+
+   keepdir /var/{lib,log}/${PN}
+   fowners ${PN}:${PN} /var/{lib,log}/${PN}
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/${PN}.logrotate" ${PN}
+
+   if use tools ; then
+   # openrc and systemd service files
+   systemd_dounit 
src/${EGO_PN}/cmd/strelaysrv/etc/linux-systemd/strelaysrv.service
+   newconfd "${FILESDIR}/strelaysrv.confd" strelaysrv
+   newinitd 

[gentoo-commits] repo/gentoo:master commit in: app-text/docbook-dsssl-stylesheets/

2018-07-26 Thread Michał Górny
commit: 6abeb04399e6fc2a9090d1f044146f51dcb9b2c5
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Wed Jul  4 19:54:18 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 26 08:35:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6abeb043

app-text/docbook-dsssl-stylesheets: add github remote-id

Package-Manager: Portage-2.3.41, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9057

 app-text/docbook-dsssl-stylesheets/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-text/docbook-dsssl-stylesheets/metadata.xml 
b/app-text/docbook-dsssl-stylesheets/metadata.xml
index 4c2c3e9fe56..df1f6e96210 100644
--- a/app-text/docbook-dsssl-stylesheets/metadata.xml
+++ b/app-text/docbook-dsssl-stylesheets/metadata.xml
@@ -3,6 +3,7 @@
 


+   docbook/dsssl
docbook

 



  1   2   >