[gentoo-commits] repo/gentoo:master commit in: sys-fs/btrfsmaintenance/

2018-10-11 Thread Georgy Yakovlev
commit: d8383d168e1a597353e12843f269512962ea4d45
Author: Martin Dummer  gmx  net>
AuthorDate: Sun Oct  7 08:52:22 2018 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Oct 12 03:39:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8383d16

sys-fs/btrfsmaintenance-0.4.2: version bump

new upstream version 0.4.2

Closes: https://github.com/gentoo/gentoo/pull/10091
Closes: https://bugs.gentoo.org/667932
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Martin Dummer  gmx.net>
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/btrfsmaintenance/Manifest   |  1 +
 .../btrfsmaintenance/btrfsmaintenance-0.4.2.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/sys-fs/btrfsmaintenance/Manifest b/sys-fs/btrfsmaintenance/Manifest
index a921a74949d..c4f78b634dd 100644
--- a/sys-fs/btrfsmaintenance/Manifest
+++ b/sys-fs/btrfsmaintenance/Manifest
@@ -1,2 +1,3 @@
 DIST btrfsmaintenance-0.4.1.tar.gz 21621 BLAKE2B 
36632d64022c7bf64548b0f6076640ee41cc9a6705b521fdc841f72f46808006ea6888476e05bb18bc51c44cb29eb444f816f34a1f251a8254156959aa178cdd
 SHA512 
9a7ccc874e5c62689a0c899e8cc40d0b61625a492d28d8a0fe6c8a32be5990600d55094cb203d81a66488ff363fb960208bda5c19cf2948b51ba1b2764e34000
+DIST btrfsmaintenance-0.4.2.tar.gz 21826 BLAKE2B 
0efc06b6780d7e75573958cd979b991580d518ab756ae80c9f4328f113ab7de87367c6730c23b408298919ac740da3b0ec85ae76face60ad97bf75d9aaa2a178
 SHA512 
802c131edfbc07bca13b89cd8bfc90923b2f23ba780dcb07009a4c4991a588c66a6ffe780938e66ab632201980e5087cd0751cd9185a8bae1a5faba84bf87233
 DIST btrfsmaintenance-0.4.tar.gz 21622 BLAKE2B 
844d467b7712093370c1d6391e26d5046deb84cee6fd60b5774743415c75ad00a1e27c0be21004c260680b72b5615dcfd01b84f1eba3d57f7c9c5d22b6750d8d
 SHA512 
2d19e82c03b291d157dc5f763dcb094330fd1a4aaee6215dbe576a5da44f71f4adee55fd06c60409e4699ac671d2fc73628f202f4f68270910eeba782f0ad153

diff --git a/sys-fs/btrfsmaintenance/btrfsmaintenance-0.4.2.ebuild 
b/sys-fs/btrfsmaintenance/btrfsmaintenance-0.4.2.ebuild
new file mode 100644
index 000..1b59d4752a3
--- /dev/null
+++ b/sys-fs/btrfsmaintenance/btrfsmaintenance-0.4.2.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd
+
+DESCRIPTION="Scripts for btrfs maintenance tasks like periodic scrub, balance, 
trim or defrag"
+HOMEPAGE="https://github.com/kdave/btrfsmaintenance;
+SRC_URI="https://github.com/kdave/btrfsmaintenance/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="systemd"
+
+RDEPEND="
+   sys-fs/btrfs-progs
+   virtual/cron
+   systemd? ( sys-apps/systemd )
+"
+
+src_prepare() {
+   # Fix config path into watching service
+   sed -i 
's%/etc/sysconfig/btrfsmaintenance%/etc/default/btrfsmaintenance%g' 
btrfsmaintenance-refresh.* || \
+   die "Unable to patch btrfsmaintenance-refresh.*"
+   default
+}
+
+src_install() {
+   dodoc README.md CONTRIBUTING.md CHANGES.md
+   insinto /etc/default
+   newins sysconfig.btrfsmaintenance btrfsmaintenance
+   insinto /usr/share/btrfsmaintenance
+   doins btrfsmaintenance-functions
+   exeinto /usr/share/btrfsmaintenance
+   doexe btrfs*.sh
+   systemd_dounit *.service *.timer *.path
+}
+
+pkg_postinst() {
+   elog "Installing default btrfsmaintenance scripts"
+   if use systemd; then
+   
"${EROOT%/}"/usr/share/btrfsmaintenance/btrfsmaintenance-refresh-cron.sh 
systemd-timer || die
+   else
+   
"${EROOT%/}"/usr/share/btrfsmaintenance/btrfsmaintenance-refresh-cron.sh || die
+   fi
+   elog "Now edit cron periods and mount points in 
/etc/default/btrfsmaintenance "
+   elog "then run 
/usr/share/btrfsmaintenance/btrfsmaintenance-refresh-cron.sh to"
+   elog "update cron symlinks or run"
+   elog "/usr/share/btrfsmaintenance/btrfsmaintenance-refresh-cron.sh 
systemd-timer"
+   elog "to update systemd timers."
+   elog "You can also enable btrfsmaintenance-refresh.path service in 
order to"
+   elog "monitor the config files changes and update systemd timers 
accordly."
+}
+
+pkg_prerm() {
+   if [[ -z ${REPLACED_BY_VERSION} ]] ; then
+   elog "Removing symlinks from btrfsmaintenance cron tasks"
+   
"${EROOT%/}"/usr/share/btrfsmaintenance/btrfsmaintenance-refresh-cron.sh 
uninstall || die
+   fi
+}



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

2018-10-11 Thread Virgil Dupras
commit: 3f834e59e8cbe7627d5a776dab60eaf59aa40d70
Author: Virgil Dupras  gentoo  org>
AuthorDate: Fri Oct 12 03:10:03 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Fri Oct 12 03:10:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f834e59

app-misc/mosquitto: downgrade broken package

Patches didn't apply cleanly and I pushed without having tested. Sorry.
Downgrading to 1.5, version for which the patch has been created.

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

 app-misc/mosquitto/Manifest | 2 +-
 app-misc/mosquitto/{mosquitto-1.5.1.ebuild => mosquitto-1.5.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/mosquitto/Manifest b/app-misc/mosquitto/Manifest
index edeb703fb8b..66c09e49408 100644
--- a/app-misc/mosquitto/Manifest
+++ b/app-misc/mosquitto/Manifest
@@ -1,2 +1,2 @@
 DIST mosquitto-1.4.14.tar.gz 365596 BLAKE2B 
92bcb1fd9e67711d6ce8db5e767be31a1321866205cf4cad684d8b77a8b14a2eaf5e4367a74d5dd8f814f0d229dc77ce878879632c0c34c6a23f7975bf6ae8c7
 SHA512 
dc75a971354f87deeb79f32435acfae9bc561a1a24a75ee4940a35176ff91758071930d2105d8dee2a090e07527dbfaa5692bece67e03cc87e8b4b8b46f846c2
-DIST mosquitto-1.5.1.tar.gz 430066 BLAKE2B 
ab2df1b77cfcb71c95d3412c4c3da4cf0af1a48d700642a12c8e0334762e9e8868ba0cbd69311d7aa324f2920d3be227149ba4e0bd7558ba10e5d7d1f0b24996
 SHA512 
7b076a98ca87f9fa4579eb4a6b62b171df746920719e9bd6efce0a4815c15edc9da177669819509184d2b01ed0756be8259adba344df690efe0547fd6741
+DIST mosquitto-1.5.tar.gz 419614 BLAKE2B 
d405e1e4f967f1030229a2e64793b84a3c8dc356a3b8d95a9bfc50a623cdb79517bbcfda87275f23c44002f3a41a20db58fed5a33d2c7d63da95e0d6d15951bb
 SHA512 
29b82bc0c6510fa5062cb43c06bd91ce5223be5689cba077df8b2cb5ac377cb125b8a8bb292b53bcec0d4b186977c25c3ecdd8c92d4ed996fde07f8c759c0668

diff --git a/app-misc/mosquitto/mosquitto-1.5.1.ebuild 
b/app-misc/mosquitto/mosquitto-1.5.ebuild
similarity index 98%
rename from app-misc/mosquitto/mosquitto-1.5.1.ebuild
rename to app-misc/mosquitto/mosquitto-1.5.ebuild
index cc7bf4b128f..a2251b4ffda 100644
--- a/app-misc/mosquitto/mosquitto-1.5.1.ebuild
+++ b/app-misc/mosquitto/mosquitto-1.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6



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

2018-10-11 Thread Matthew Thode
commit: bc3b58305a22daf77d7d8af9239862df5def5322
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 12 02:52:21 2018 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 12 02:54:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc3b5830

net-analyzer/icinga2: 2.10.0 bump

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

 net-analyzer/icinga2/Manifest  |   1 +
 net-analyzer/icinga2/icinga2-2.10.0.ebuild | 172 +
 2 files changed, 173 insertions(+)

diff --git a/net-analyzer/icinga2/Manifest b/net-analyzer/icinga2/Manifest
index 497f53e4a70..c1f230d8b10 100644
--- a/net-analyzer/icinga2/Manifest
+++ b/net-analyzer/icinga2/Manifest
@@ -1,3 +1,4 @@
+DIST icinga2-2.10.0.tar.gz 2227324 BLAKE2B 
fdbcb84d11b867e06804a2528ee3579dfd15df72bbe5f3b4334ee38282b710701889def9f4b44613c0196ea49f13466de86103f65049cf16f491c6f28b9390d1
 SHA512 
0997461371440521cfbb13d29f6801e889b423d46a4fb792edef5191db3cf39503b4452823fcd78a0d0934072eb7df53b17a56b6bae7c1fb21412f7022d4d0a5
 DIST icinga2-2.8.4.tar.gz 2510333 BLAKE2B 
f551a5eadc93d8455612af40e34a0922bc75f41b8064f9989c8f0c28dc2c3fb18963cf9b3272efa29f03973e7cf5824762bebff1bfa1a23c4ba39c93fc29c8e5
 SHA512 
b2cb5989962ac65da927cbdbac1b3345c913321d507b5113f32dd90bf969b2513478e68d52b9cd4cf255057d74428f9e42067288b7ddc59ad060ca7b84f4f114
 DIST icinga2-2.9.1.tar.gz 2193190 BLAKE2B 
29be491c4b43e218ef8aaa2128822040ccb0989e91d83f033cf7873216e4307cdbc8ee9052d79fd0c396efeb68759acc97938e3ee596e0820e3f6c8f73bc
 SHA512 
1d69a24f85249386e30ff1625cf522ba58e5f2ab641dbe950bf1764324a6c7516d1532942954e842002566823b0f30383747d5ec8b7bd36705aa5f0ccfa29533
 DIST icinga2-2.9.2.tar.gz 2194226 BLAKE2B 
edf3309711657437439db907f39d9dd04b57ae6b245f4299cfdfc9e8c27d18bdfa704dc5c1459a94d47985103979915a5d2d8594072586cf908e5f8a9d209ee6
 SHA512 
75a638a37f66a68f47ec161be4bcadbd1ca0e121143528d08d83170209e0b117fa12b1b9a03d1c1550f495bfd0509ca15f4d80be618177f2791b7a1a69308f99

diff --git a/net-analyzer/icinga2/icinga2-2.10.0.ebuild 
b/net-analyzer/icinga2/icinga2-2.10.0.ebuild
new file mode 100644
index 000..e5caea793dd
--- /dev/null
+++ b/net-analyzer/icinga2/icinga2-2.10.0.ebuild
@@ -0,0 +1,172 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+if [[ ${PV} !=  ]]; then
+   inherit cmake-utils depend.apache eutils systemd toolchain-funcs user 
wxwidgets
+   SRC_URI="https://github.com/Icinga/icinga2/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+else
+   inherit cmake-utils depend.apache eutils git-r3 systemd toolchain-funcs 
user wxwidgets
+   EGIT_REPO_URI="https://github.com/Icinga/icinga2.git;
+   EGIT_BRANCH="master"
+   KEYWORDS=""
+fi
+
+DESCRIPTION="Distributed, general purpose, network monitoring engine"
+HOMEPAGE="http://icinga.org/icinga2;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="classicui console libressl lto mail mariadb minimal +mysql nano-syntax 
+plugins postgres systemd +vim-syntax"
+WX_GTK_VER="3.0"
+
+CDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   >=dev-libs/boost-1.58-r1
+   console? ( dev-libs/libedit )
+   mariadb? ( dev-db/mariadb-connector-c:= )
+   mysql? ( dev-db/mysql-connector-c:= )
+   postgres? ( dev-db/postgresql:= )
+   dev-libs/yajl"
+
+DEPEND="
+   ${CDEPEND}
+   sys-devel/bison
+   >=sys-devel/flex-2.5.35"
+
+RDEPEND="
+   ${CDEPEND}
+   plugins? ( || (
+   net-analyzer/monitoring-plugins
+   net-analyzer/nagios-plugins
+   ) )
+   mail? ( virtual/mailx )
+   classicui? ( net-analyzer/icinga[web] )"
+
+REQUIRED_USE="!minimal? ( || ( mariadb mysql postgres ) )"
+
+want_apache2
+
+pkg_setup() {
+   depend.apache_pkg_setup
+   enewgroup icinga
+   enewgroup icingacmd
+   enewgroup nagios  # for plugins
+   enewuser icinga -1 -1 /var/lib/icinga2 "icinga,icingacmd,nagios"
+}
+
+src_configure() {
+   sed -i 's/FLAGS\}\ \-g/FLAGS\}\ \-lpthread\ /g' CMakeLists.txt || die
+   local mycmakeargs=(
+   -DICINGA2_UNITY_BUILD=FALSE
+   -DCMAKE_VERBOSE_MAKEFILE=ON
+   -DCMAKE_BUILD_TYPE=None
+   -DCMAKE_INSTALL_PREFIX=/usr
+   -DCMAKE_INSTALL_SYSCONFDIR=/etc
+   -DCMAKE_INSTALL_LOCALSTATEDIR=/var
+   -DICINGA2_SYSCONFIGFILE=/etc/conf.d/icinga2
+   -DICINGA2_PLUGINDIR="/usr/$(get_libdir)/nagios/plugins"
+   -DICINGA2_USER=icinga
+   -DICINGA2_GROUP=icingacmd
+   -DICINGA2_COMMAND_GROUP=icingacmd
+   -DINSTALL_SYSTEMD_SERVICE_AND_INITSCRIPT=yes
+   -DUSE_SYSTEMD=$(usex systemd ON OFF)
+   -DLOGROTATE_HAS_SU=ON
+   )
+   # default to off if minimal, allow the flags to be set otherwise
+   

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

2018-10-11 Thread Matthew Thode
commit: c8349db8b677d94a1310f9a709cd7491c8c0e4ae
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 12 02:53:52 2018 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 12 02:54:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8349db8

dev-libs/leatherman: 1.4.4 and 1.5.2 bump

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

 dev-libs/leatherman/Manifest|  2 +
 dev-libs/leatherman/leatherman-1.4.4.ebuild | 58 +
 dev-libs/leatherman/leatherman-1.5.2.ebuild | 58 +
 3 files changed, 118 insertions(+)

diff --git a/dev-libs/leatherman/Manifest b/dev-libs/leatherman/Manifest
index e1899750b6b..b56ff7c09d8 100644
--- a/dev-libs/leatherman/Manifest
+++ b/dev-libs/leatherman/Manifest
@@ -1,4 +1,6 @@
 DIST leatherman-1.3.0.tar.gz 434229 BLAKE2B 
e0c19bca2378afc4928554ac0862543504ba725aadc6cffd78220f7f7f1b725cad960fc6d9fdd2d54a43c233b35959ebcb9c71d1191a5535703599fa32e3301e
 SHA512 
5e06be7add652f69b0d4a8d778e33dfb68183c4d598217cc6542d2431f7984f0af989c27bd69e89b77ab03d6dd2adab9d70f68cd87dae20d8e24ae05923fbe9b
 DIST leatherman-1.4.2.tar.gz 814263 BLAKE2B 
5ca8123f264ed0f7843c6fc1b0966c577fb9d12933e5baa375e0beef8ba17afe4388f1e05e1022e392c50e32e159b765531137cf069bd0f5b8baa3626c860949
 SHA512 
e0cb19605163b68ac5a8fc74e875d856af5e34345f19c38f0db45da7536ec27ba6cf4b4e8c5883ceb9a5978cdc8831181ec89ad4105252366b198af4f3f22bff
 DIST leatherman-1.4.3.tar.gz 814259 BLAKE2B 
049cfab8240e5447bcb14bb4a96fa21ca7e4b7a24d8a38abf3820d6e1c25cf1e0841b04317c3d3a72ceb5f61f9b9a055ea76dcd5f731ffd567d96be60d2b8abd
 SHA512 
a28d7f852904eafb3b703d5890d9514db24ef387fa440108ae8750041d1c5c1b36240b0925b37833ed68739d92a1d22463914e0838e5f09e03035aad47c49d81
+DIST leatherman-1.4.4.tar.gz 814289 BLAKE2B 
d53ff660e28eaea1c11f95cc70348a2a5883e0dc5ae56482b0afe96e61938e4d15688f8abf9783976443c00b6a69e9037b5080194babb97200e25e2c548b9153
 SHA512 
a1955a3f7a7fd190f7d85ad07e30dee74b0f4b7ed670a4a9a7613317d2898faf776cbed0c5c7b6da25ddd5099c9638e9abb2aca16aec61c568fc2f8c9789ffe4
 DIST leatherman-1.5.1.tar.gz 814327 BLAKE2B 
133c65adb16b9eabd8dab341361d36a3736447596b019f15603e7cb45bef472a4267c5765adcb03bf9492d7f553d326c0f64ca026b4cad22e6f4744f9f12cc6e
 SHA512 
3673a6ed530ae8f30b9a037ad42a3648ad61d50eae5c3a39a4a58f190567ccd21c4132289ecc8534202502bb7435ae79c9568a3dadf0ce75ae9c7d7fb65271f9
+DIST leatherman-1.5.2.tar.gz 814349 BLAKE2B 
1bc2d85426683e9f82d31ba9e3b63b4c9185b0bfa5ae832ea252ecbd922b44dfa67b6011145489d5c5809a76011aef8b143f6b705ea0436d914fc0d8ca8091a2
 SHA512 
9cef854fd7a95c54fcfc2e639e469dfaa4625757ea8aceeb9ac2162bfc89cbcbc1d5e8217af5f1fad4f31d98528475e22157ca6b1046a36e0928074f866ddafd

diff --git a/dev-libs/leatherman/leatherman-1.4.4.ebuild 
b/dev-libs/leatherman/leatherman-1.4.4.ebuild
new file mode 100644
index 000..cc7a76208a2
--- /dev/null
+++ b/dev-libs/leatherman/leatherman-1.4.4.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils multilib
+
+DESCRIPTION="A C++ toolkit"
+HOMEPAGE="https://github.com/puppetlabs/leatherman;
+SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+IUSE="debug static-libs test"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+SLOT="0/${PV}"
+
+RDEPEND="net-misc/curl"
+DEPEND=">=dev-libs/boost-1.54:=[nls]
+   net-misc/curl
+   >=sys-devel/gcc-4.8:*"
+
+PATCHES=( "${FILESDIR}"/portage-sandbox-test-fix.patch )
+
+src_prepare() {
+   sed -i 's/\-Werror\ //g' "cmake/cflags.cmake" || die
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_VERBOSE_MAKEFILE=ON
+   -DCMAKE_BUILD_TYPE=None
+   -DCMAKE_INSTALL_PREFIX=/usr
+   )
+   if ! use static-libs; then
+   mycmakeargs+=(
+   -DLEATHERMAN_SHARED=ON
+   )
+   else
+   mycmakeargs+=(
+   -DLEATHERMAN_SHARED=OFF
+   )
+   fi
+   if use debug; then
+   mycmakeargs+=(
+ -DCMAKE_BUILD_TYPE=Debug
+   )
+   fi
+   cmake-utils_src_configure
+}
+
+src_test() {
+   "${WORKDIR}/${P}"_build/bin/leatherman_test
+}
+
+src_install() {
+   cmake-utils_src_install
+}

diff --git a/dev-libs/leatherman/leatherman-1.5.2.ebuild 
b/dev-libs/leatherman/leatherman-1.5.2.ebuild
new file mode 100644
index 000..cc7a76208a2
--- /dev/null
+++ b/dev-libs/leatherman/leatherman-1.5.2.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils multilib
+
+DESCRIPTION="A C++ toolkit"
+HOMEPAGE="https://github.com/puppetlabs/leatherman;
+SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 

[gentoo-commits] repo/gentoo:master commit in: sys-power/thermald/

2018-10-11 Thread Yixun Lan
commit: e60f8cf5da7f7e18b006fae610662e47339eef95
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Oct 12 01:58:28 2018 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Oct 12 02:00:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e60f8cf5

sys-power/thermald: fix build-time dependency

Closes: https://bugs.gentoo.org/667564
Package-Manager: Portage-2.3.50, Repoman-2.3.11

Signed-off-by: Yixun Lan  gentoo.org>

 sys-power/thermald/thermald-1.7.1.ebuild | 5 +++--
 sys-power/thermald/thermald-1.8.ebuild   | 3 ++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/sys-power/thermald/thermald-1.7.1.ebuild 
b/sys-power/thermald/thermald-1.7.1.ebuild
index d3ca3808cb9..525bb27d6f0 100644
--- a/sys-power/thermald/thermald-1.7.1.ebuild
+++ b/sys-power/thermald/thermald-1.7.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -19,7 +19,8 @@ RDEPEND="
dev-libs/glib:=
dev-libs/libxml2:=
sys-apps/dbus:="
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+   dev-util/glib-utils"
 
 S=${WORKDIR}/thermal_daemon-${PV}
 DOCS=( thermal_daemon_usage.txt README.txt )

diff --git a/sys-power/thermald/thermald-1.8.ebuild 
b/sys-power/thermald/thermald-1.8.ebuild
index 1307006a95e..525bb27d6f0 100644
--- a/sys-power/thermald/thermald-1.8.ebuild
+++ b/sys-power/thermald/thermald-1.8.ebuild
@@ -19,7 +19,8 @@ RDEPEND="
dev-libs/glib:=
dev-libs/libxml2:=
sys-apps/dbus:="
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+   dev-util/glib-utils"
 
 S=${WORKDIR}/thermal_daemon-${PV}
 DOCS=( thermal_daemon_usage.txt README.txt )



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/ms-gsl/

2018-10-11 Thread Georgy Yakovlev
commit: 336d88ac3348e5c617beae2776db5f001133b502
Author: Jan Henke  taujhe  de>
AuthorDate: Sat Sep 29 17:08:58 2018 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Oct 12 01:30:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=336d88ac

dev-cpp/ms-gsl: Version bump to 2.0.0

Closes: https://bugs.gentoo.org/666410
Closes: https://github.com/gentoo/gentoo/pull/10013
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Jan Henke  taujhe.de>
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-cpp/ms-gsl/Manifest|  1 +
 dev-cpp/ms-gsl/ms-gsl-2.0.0.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/dev-cpp/ms-gsl/Manifest b/dev-cpp/ms-gsl/Manifest
index 605a6a2172e..d1b036879f3 100644
--- a/dev-cpp/ms-gsl/Manifest
+++ b/dev-cpp/ms-gsl/Manifest
@@ -1 +1,2 @@
 DIST ms-gsl-1.0.0.tar.gz 58920 BLAKE2B 
46b71ec1fe57ec311a53895498c375c2313ed1f2858cd6b67d19d92ef10230707ce14fb757c00c92ea3475d787cda400cc449c34d54a54a3d0123f71b87b11ad
 SHA512 
cde55df9540fd08ca8d29a74b2cff360686aa75b01ee1c48bd9782a2d70d1b6eae712a51eaf9b60453f859e466df00345b0a2893137d16490cea8ee54362f7da
+DIST ms-gsl-2.0.0.tar.gz 64726 BLAKE2B 
ab40725aa38af7c5651e22ebf32d4bd9c27a10be2e206fd4c3c0173ad21da262beddef022b7b158653b185cfc3269f2b6e80d99fe65f601ffc3e770b143b03f8
 SHA512 
7339527222c8a97a94c0bb4038b3d142045ec5d80995e628574ac96f4d9d13c41ad70fbe0d8390586dc0db8d9ea55107dbc95de80f7335eb78ef9d2e7047d726

diff --git a/dev-cpp/ms-gsl/ms-gsl-2.0.0.ebuild 
b/dev-cpp/ms-gsl/ms-gsl-2.0.0.ebuild
new file mode 100644
index 000..c3af23471bc
--- /dev/null
+++ b/dev-cpp/ms-gsl/ms-gsl-2.0.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="Guideline Support Library implementation by Microsoft"
+HOMEPAGE="https://github.com/Microsoft/GSL;
+SRC_URI="https://github.com/Microsoft/GSL/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+S="${WORKDIR}/GSL-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+# header only library
+RDEPEND=""
+DEPEND="test? ( ~dev-cpp/catch-1.11.0 )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.0.0-use_system_catch-636828.patch"
+   "${FILESDIR}/${PN}-1.0.0-disable_Werror-644042.patch"
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DGSL_TEST=$(usex test)
+   )
+   use test && mycmakeargs+=( -DFORCE_SYSTEM_CATCH=ON )
+   cmake-utils_src_configure
+}



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

2018-10-11 Thread Thomas Deutschmann
commit: 3cfdb7704d4538faa85aee4abaf0a328cef9f9f1
Author: Tomas Mozes  gmail  com>
AuthorDate: Tue Oct  9 11:11:50 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Oct 12 00:56:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cfdb770

dev-python/elasticsearch-curator: require newer elasticsearch-py

Bug: https://bugs.gentoo.org/667526
Signed-off-by: Tomáš Mózes  gmail.com>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-python/elasticsearch-curator/Manifest  |   1 +
 .../elasticsearch-curator-5.5.4-r1.ebuild  | 125 +
 2 files changed, 126 insertions(+)

diff --git a/dev-python/elasticsearch-curator/Manifest 
b/dev-python/elasticsearch-curator/Manifest
index e94ad49ab4f..b8e8013ea20 100644
--- a/dev-python/elasticsearch-curator/Manifest
+++ b/dev-python/elasticsearch-curator/Manifest
@@ -6,3 +6,4 @@ DIST elasticsearch-curator-5.4.1.tar.gz 294363 BLAKE2B 
180882cee9ed3424569705bed
 DIST elasticsearch-curator-5.5.1.tar.gz 301351 BLAKE2B 
1dfcf53995c203a7201e421bc9f01a840597d8c1099ae434be52ff27e47e30f509bf1c5a42d507b549f5fe8ce45cbe74614ea76c338b0ae9de1d51877c8b32fe
 SHA512 
a0ccb35fe93cefb927020add9629d5879cb64ee41a25130150ee8c45867e210f611a5fca0a43357c6f68cbf0c3f0acf677a7f8d2b3b493f4c2815637640ed9f6
 DIST elasticsearch-curator-5.5.4.tar.gz 221161 BLAKE2B 
41828800dd9237142767d3163b3d87770ea5b904858991598cce2feb7c3a22d85c0d73275a2f232099ea82e7346fc20080a3bfef692ee808b730d3e4e6de405d
 SHA512 
99ed18592105d19791513ad713115b6e2a6b589ab8b4e3fc4435b2878e25f552e0bda8d63cb6279970afc6ba39d9f3db17af1b4fb44500fe8a14b060e1530258
 DIST elasticsearch-oss-6.3.1.tar.gz 29417012 BLAKE2B 
356665cde2f12ae5813d95302398f5fced07c53d25e6e1dc7ad41c8dc8ad42cd3d5bd4ffa6cab24af8088c29800f6ec59a483710272b756af2f76b5967d4b932
 SHA512 
3df0f7f35e150198f7ff660cf4d90fbd1c2ca587287c6340d427f968711b6390123bfafd09a744c9bdf328d57423bcb75f6e4701ce14a7257388611abea62545
+DIST elasticsearch-oss-6.3.2.tar.gz 29418577 BLAKE2B 
152640dc01a10f44ba43f87f68361cc0dd5e1cf54d0ff92377f3acd1a12a247f002ffe2d003cc53760e891278249c10b1d6d4eb978b0bb1c1ebf8879a2cfcb9a
 SHA512 
3c51a860414f7e55900b1d9a350bdbc3e673c8445e316454c2480315b4b9fc08df58090c6281cecc3ae63d12d78d6bd58e228b3371aa325db799ce18758a21f4

diff --git 
a/dev-python/elasticsearch-curator/elasticsearch-curator-5.5.4-r1.ebuild 
b/dev-python/elasticsearch-curator/elasticsearch-curator-5.5.4-r1.ebuild
new file mode 100644
index 000..e20837a88c8
--- /dev/null
+++ b/dev-python/elasticsearch-curator/elasticsearch-curator-5.5.4-r1.ebuild
@@ -0,0 +1,125 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+MY_PN="curator"
+ES_VERSION="6.3.2"
+
+inherit distutils-r1
+
+DESCRIPTION="Tending time-series indices in Elasticsearch"
+HOMEPAGE="https://github.com/elasticsearch/curator;
+SRC_URI="https://github.com/elasticsearch/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz
+   test? ( 
https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-${ES_VERSION}.tar.gz
 )"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# tests fail in chroot
+# https://github.com/elastic/elasticsearch/issues/12018
+RESTRICT="test"
+IUSE="doc test"
+
+# require >=elasticsearch-py-6.1.0 because starting with version 5.5.2, the 
package
+# was renamed to elasticsearch5 so elasticsearch-curator cannot find it #667526
+RDEPEND="
+   >=dev-python/elasticsearch-py-6.1.0[${PYTHON_USEDEP}]
+   =dev-python/click-6.7[${PYTHON_USEDEP}]
+   >=dev-python/certifi-2018.04.16[${PYTHON_USEDEP}]
+   >=dev-python/urllib3-1.20[${PYTHON_USEDEP}]
+   >=dev-python/voluptuous-0.9.3[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/six-1.11.0[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
+   test? ( ${RDEPEND}
+   virtual/jre:1.8
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/coverage[${PYTHON_USEDEP}]
+   dev-python/nosexcover[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}] )"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_prepare_all() {
+   # avoid downloading from net
+   sed -e '/^intersphinx_mapping/,+3d' -i docs/conf.py || die
+
+   # requests_aws4auth not in portage
+   sed -e '/boto3/d' \
+   -e '/requests_aws4auth/d' \
+   -i setup.cfg setup.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   emake -C docs -j1 man $(usex doc html "")
+}
+
+# running tests in non-chroot environments:
+# FEATURES="test -usersandbox" emerge dev-python/elasticsearch-curator
+python_test() {
+   ES="${WORKDIR}/elasticsearch-${ES_VERSION}"
+   

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

2018-10-11 Thread Thomas Deutschmann
commit: cf5d7766d3f092350296317c00558a035acc7246
Author: Nils Freydank  posteo  de>
AuthorDate: Mon Oct  8 10:58:03 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Oct 12 00:56:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf5d7766

games-fps/urbanterror: Bump to 4.3.4_p20180708

Signed-off-by: Nils Freydank  posteo.de>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Signed-off-by: Thomas Deutschmann  gentoo.org>

 games-fps/urbanterror/Manifest |   1 +
 ...anterror-4.3.4_p20180708-fix-build_system.patch |  94 
 .../urbanterror/urbanterror-4.3.4_p20180708.ebuild | 169 +
 3 files changed, 264 insertions(+)

diff --git a/games-fps/urbanterror/Manifest b/games-fps/urbanterror/Manifest
index d52c2c83a4b..d5f6b196cf1 100644
--- a/games-fps/urbanterror/Manifest
+++ b/games-fps/urbanterror/Manifest
@@ -1 +1,2 @@
 DIST urbanterror-4.3.4_p20180627.tar.gz 10069715 BLAKE2B 
179a952d51448af39636560e71c33dba8491fa195dd29d149f3d87d11ca2efff9a50041cdb585df9944361cfef8ac2b9efd2967cb6ffeeceb553fbc6aa17b218
 SHA512 
8eb314143fb336ff32d5b4a97075e54d5577570f1193c2220648ba7866373c8aa158015efebcb8325ade7964f4622baff8a30d89e889f64141d748bba28712ef
+DIST urbanterror-4.3.4_p20180708.tar.gz 6177724 BLAKE2B 
36439a1facc83a6151f0f6f28351bd56c196822832abbbab885312a216593b65a359187560c962caf2923b69f5519b17fe901a88c03f61ac576b6998a51ab227
 SHA512 
97c36d9ebcb4b915d077bb944808f45e88e0f544e6d0261f1e97e5a4bb33f3fd4120cf73d9463ea8da16848e4acb18218afe4042f00d9f759e7481b3e7aecd58

diff --git 
a/games-fps/urbanterror/files/urbanterror-4.3.4_p20180708-fix-build_system.patch
 
b/games-fps/urbanterror/files/urbanterror-4.3.4_p20180708-fix-build_system.patch
new file mode 100644
index 000..fddd8df5bf3
--- /dev/null
+++ 
b/games-fps/urbanterror/files/urbanterror-4.3.4_p20180708-fix-build_system.patch
@@ -0,0 +1,94 @@
+Author: Nils Freydank 
+Date:   Fri Nov 17 20:30:00 2017 +0100
+
+Respect CFLAGS, CPPFLAGS etc. This patch is inspired
+by hasufell’s patch.
+
+Edit 2018-03-19: Now with server support!
+Edit 2018-09-01: Update to take Makefile changes into account.
+
+--- a/Makefile 2018-07-08 11:00:00.0 +0200
 b/Makefile 2018-09-01 11:00:00.1 +0200
+@@ -308,34 +308,33 @@
+ CLIENT_EXTRA_FILES=
+ 
+ ifneq (,$(findstring "$(PLATFORM)", "linux" "gnu_kfreebsd" "kfreebsd-gnu" 
"gnu"))
+-  BASE_CFLAGS = -Wall -fno-strict-aliasing -Wimplicit -Wstrict-prototypes \
+--pipe -DUSE_ICON -DARCH_STRING=\\\"$(ARCH)\\\"
++  BASE_CFLAGS = -DUSE_ICON -DARCH_STRING=\\\"$(ARCH)\\\"
+   CLIENT_CFLAGS += $(SDL_CFLAGS)
+ 
+-  OPTIMIZEVM = -O3
+-  OPTIMIZE = $(OPTIMIZEVM) -ffast-math
++  OPTIMIZEVM =
++  OPTIMIZE = $(OPTIMIZEVM)
+ 
+   ifeq ($(ARCH),x86_64)
+-OPTIMIZEVM = -O3
+-OPTIMIZE = $(OPTIMIZEVM) -ffast-math
++OPTIMIZEVM =
++OPTIMIZE = $(OPTIMIZEVM)
+ HAVE_VM_COMPILED = true
+   else
+   ifeq ($(ARCH),x86)
+-OPTIMIZEVM = -O3 -march=i586
+-OPTIMIZE = $(OPTIMIZEVM) -ffast-math
++OPTIMIZEVM =
++OPTIMIZE = $(OPTIMIZEVM)
+ HAVE_VM_COMPILED=true
+   else
+   ifeq ($(ARCH),ppc)
+-ALTIVEC_CFLAGS = -maltivec
++ALTIVEC_CFLAGS =
+ HAVE_VM_COMPILED=true
+   endif
+   ifeq ($(ARCH),ppc64)
+-ALTIVEC_CFLAGS = -maltivec
++ALTIVEC_CFLAGS =
+ HAVE_VM_COMPILED=true
+   endif
+   ifeq ($(ARCH),sparc)
+-OPTIMIZE += -mtune=ultrasparc3 -mv8plus
+-OPTIMIZEVM += -mtune=ultrasparc3 -mv8plus
++OPTIMIZE +=
++OPTIMIZEVM +=
+ HAVE_VM_COMPILED=true
+   endif
+   ifeq ($(ARCH),armv7l)
+@@ -1143,7 +1142,7 @@
+ 
+ define DO_CC
+ $(echo_cmd) "CC $<"
+-$(Q)$(CC) $(NOTSHLIBCFLAGS) $(CFLAGS) $(CLIENT_CFLAGS) $(OPTIMIZE) -o $@ -c $<
++$(Q)$(CC) $(NOTSHLIBCFLAGS) $(CFLAGS) $(CPPFLAGS) $(CLIENT_CFLAGS) 
$(OPTIMIZE) -o $@ -c $<
+ endef
+ 
+ define DO_CC_ALTIVEC
+@@ -1153,7 +1152,7 @@
+ 
+ define DO_REF_CC
+ $(echo_cmd) "REF_CC $<"
+-$(Q)$(CC) $(SHLIBCFLAGS) $(CFLAGS) $(CLIENT_CFLAGS) $(OPTIMIZE) -o $@ -c $<
++$(Q)$(CC) $(SHLIBCFLAGS) $(CFLAGS) $(CPPFLAGS) $(CLIENT_CFLAGS) $(OPTIMIZE) 
-o $@ -c $<
+ endef
+ 
+ define DO_REF_CC_ALTIVEC
+@@ -1171,7 +1170,7 @@
+ 
+ define DO_BOT_CC
+ $(echo_cmd) "BOT_CC $<"
+-$(Q)$(CC) $(NOTSHLIBCFLAGS) $(CFLAGS) $(BOTCFLAGS) $(OPTIMIZE) -DBOTLIB -o $@ 
-c $<
++$(Q)$(CC) $(NOTSHLIBCFLAGS) $(CFLAGS) $(CPPFLAGS) $(BOTCFLAGS) $(OPTIMIZE) 
-DBOTLIB -o $@ -c $<
+ endef
+ 
+ ifeq ($(GENERATE_DEPENDENCIES),1)
+@@ -1185,7 +1184,7 @@
+ 
+ define DO_DED_CC
+ $(echo_cmd) "DED_CC $<"
+-$(Q)$(CC) $(NOTSHLIBCFLAGS) -DDEDICATED $(CFLAGS) $(SERVER_CFLAGS) 
$(OPTIMIZE) -o $@ -c $<
++$(Q)$(CC) $(NOTSHLIBCFLAGS) -DDEDICATED $(CFLAGS) $(CPPFLAGS) 
$(SERVER_CFLAGS) $(OPTIMIZE) -o $@ -c $<
+ endef
+ 
+ define DO_WINDRES
+

diff --git a/games-fps/urbanterror/urbanterror-4.3.4_p20180708.ebuild 
b/games-fps/urbanterror/urbanterror-4.3.4_p20180708.ebuild
new file mode 100644
index 000..2eed0405afc
--- /dev/null
+++ 

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

2018-10-11 Thread Thomas Deutschmann
commit: 516f2115fe95afeda82f45a3ff505e84e2ed2688
Author: Sarah White  poindexter  ovh>
AuthorDate: Thu Oct 11 09:54:42 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Oct 12 00:56:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=516f2115

sys-kernel/ck-sources: version 4.14.75

updated to genpatches-4.14-81

Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Sarah White  poindexter.ovh>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-kernel/ck-sources/Manifest  |  3 ++
 sys-kernel/ck-sources/ck-sources-4.14.75.ebuild | 57 +
 2 files changed, 60 insertions(+)

diff --git a/sys-kernel/ck-sources/Manifest b/sys-kernel/ck-sources/Manifest
index 4909403c8db..828279d5d87 100644
--- a/sys-kernel/ck-sources/Manifest
+++ b/sys-kernel/ck-sources/Manifest
@@ -28,6 +28,9 @@ DIST genpatches-4.14-77.extras.tar.xz 17492 BLAKE2B 
abaf103790fceab73cacd949473e
 DIST genpatches-4.14-79.base.tar.xz 1941112 BLAKE2B 
eadad4bd05e013fa68a47a420cfd76764df91f12ae1f25fc1e32fa30b7da999ac3eae42aaf6ae14a18b949f28adb4f4ec1557bc2a6cb3d496954851066b06a24
 SHA512 
8955f649752dd1bf2e8223f8bf6ac65a8b8775299a34c8d9ea3a7bb37d74fd013b30118be9041a59a54671a3f5cf517d840b2f83f9fe431bcc51e7019508
 DIST genpatches-4.14-79.experimental.tar.xz 5224 BLAKE2B 
f03b0806ab474eb5fc3fe58a873cea76c16d39fe87629a15941eee0eca9b980714f099526741df8b2ce7203cadb7b0b1680422083b61e4725152421d43f737bb
 SHA512 
5de7d487a229d26ab62518a670a55cd41f563455084c6f8a55f035c613df969e8c0698518243081859cb52c4e7df0fb6cb349c841fcb979e9a94212617ec523f
 DIST genpatches-4.14-79.extras.tar.xz 17496 BLAKE2B 
c543f7d58552cd519dd722f1d7912909a2216868201a5d5b3712a96b17f41b9f05df24fbee03d874a5fb2d8b8e32eb35907cc0ed569c85bdf4dd5be942d1680a
 SHA512 
d789ae7affb905622f1d556f07450a842974296f7fa109152a9edba74e41fdf4f5ea0f1bc6a054ca02a4fbb99f472b85b2bef4005335e6e1a7c112a993220491
+DIST genpatches-4.14-81.base.tar.xz 1993216 BLAKE2B 
96a60ade763801820a818d18973abec10833104da7f067c03863883aa94e96ea5134599e913015d551cae27b5f9a56efb87b10a60265608fd230567244bc371e
 SHA512 
bb9e356425ea24e01350384956ebaaf3f9677449b2b0393dc130c586e7b337442d3a38a6b138009838d8dfeeaf89c61e1257c8a13eb79749dc5cd96132d06c3f
+DIST genpatches-4.14-81.experimental.tar.xz 5228 BLAKE2B 
0ac2b4b56e615216918d7f5739668223d4692a9dd1273202c6b346f223b149e306797693c1ac034e4316102e774a472bc8872c9486a862f841f20c0f13ba4d4f
 SHA512 
9f143960a869c2ef2ab9ef31dc73de3f1ea9b1a34ceac332f6e7ac448d4380ceb7359b9014298a6f17cce2d12bfe270b2af112dd60a7feadf994ad28d5a717da
+DIST genpatches-4.14-81.extras.tar.xz 17496 BLAKE2B 
9668753679261522d678778c29b3637388624ab6a8ae1223241c5c47979083caaa37b4926d7239ff574977c29afc66c7147a34eb42538f1f10fa7b5006fdaea4
 SHA512 
0459e6453a44ae88870890756b9e3a852b3da0356c3df723e4f81593a52d85b5547ce18470ca831f3f0eeb43feebbc5255167c8a73e69d6b94719b4b2167ac86
 DIST genpatches-4.18-10.base.tar.xz 145340 BLAKE2B 
052e5eba856e416cfb303ec9b8a064ef8a47492134cb4632ce5ba1818bf4dcdfc6b34a3c276017214a47ac4b4483fd46272a9c284b1abbe81960de55d118b3ee
 SHA512 
af67a9316370bfbaf8999e993efb766928b729ebf1587a9804dd6ef89e5c7190577fda022b8ac128576e9e60d4ff638b780d6e324dcd244d4c8e7ce33f2a9abc
 DIST genpatches-4.18-10.experimental.tar.xz 5228 BLAKE2B 
3485bbf76b9c6ab4382a835984d9c55a052fefafbc9550f2a08bbcb383991a8ceb0ca53b5931f57bace9e8893a2ccb2c2aea15f2939a6a4e69de1d924aeb5071
 SHA512 
45ef8b07719263eb2ffd75fc0c24dd0357bc6cf2e76e129d8c2ecdfaecca4f864b5ad091685e9d94a7460422e7c49fac68cf2f4b0bb90e2faeb5f0b9b94fbc0a
 DIST genpatches-4.18-10.extras.tar.xz 17504 BLAKE2B 
2bd2aed76a5b1b9fe5200407edda412fe220d5a23f2baa5967c5930b182a74e97eb289006571a0400ad09b4397315c27fc1ca8f18f0e1c496a52c47029f61a69
 SHA512 
585de2757b97c6cfaed2ef52b00c8b6c784a0abe3937d58784bb473a1ea3c85b22a21bb978f6d6d9b772b6522370d141ea50440258aad5949ad2984723699a9a

diff --git a/sys-kernel/ck-sources/ck-sources-4.14.75.ebuild 
b/sys-kernel/ck-sources/ck-sources-4.14.75.ebuild
new file mode 100644
index 000..1156a3af4e9
--- /dev/null
+++ b/sys-kernel/ck-sources/ck-sources-4.14.75.ebuild
@@ -0,0 +1,57 @@
+# Copyright 2018 kuzetsa℠ and others
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64 ~x86"
+
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches/
+   http://kernel.kolivas.org/;
+
+IUSE="experimental"
+
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="81"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+
+PYTHON_COMPAT=( python2_7 )
+inherit python-any-r1 kernel-2
+detect_version
+detect_arch
+
+DEPEND="deblob? ( ${PYTHON_DEPS} )"
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+
+DESCRIPTION="Gentoo's genpatches for Linux ${K_BRANCH_ID}, with Con Kolivas' 
MuQSS process scheduler."
+
+MUQSS_VERSION="162"
+MUQSS_FILE="${K_BRANCH_ID}-sched-MuQSS_${MUQSS_VERSION}.patch"
+MUQSS_BASE_URL="http://ck.kolivas.org/patches/muqss/4.0;
+
+# clearly identify package name in distrdir

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

2018-10-11 Thread Thomas Deutschmann
commit: 1144457d67dc01f64062b2c97297a978b1c6f862
Author: Sarah White  poindexter  ovh>
AuthorDate: Thu Oct 11 09:53:25 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Oct 12 00:56:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1144457d

sys-kernel/ck-sources: version 4.9.132

updated to genpatches-4.9-136

Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Sarah White  poindexter.ovh>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-kernel/ck-sources/Manifest  |  3 ++
 sys-kernel/ck-sources/ck-sources-4.9.132.ebuild | 52 +
 2 files changed, 55 insertions(+)

diff --git a/sys-kernel/ck-sources/Manifest b/sys-kernel/ck-sources/Manifest
index e44d83fabf3..4909403c8db 100644
--- a/sys-kernel/ck-sources/Manifest
+++ b/sys-kernel/ck-sources/Manifest
@@ -58,6 +58,9 @@ DIST genpatches-4.9-132.extras.tar.xz 17356 BLAKE2B 
b7cbf6b4fb753c8b2155d61e8635
 DIST genpatches-4.9-134.base.tar.xz 2469148 BLAKE2B 
98d632d35eecd9965bb78d0baf8889c22999c324ab2f93a27ed606b8f1fc9fbcc3ed473bca16d5d508b7aea57f3b9db0fdfa904e4dfe59d2d2849454e8d6d1da
 SHA512 
75b10ad827435c6cf5bdc568bfb5d48d703c2117563cdd406e7d98701bb22e2944695295933ab7bae03e3647565fd8d86f3f4142ca2ea538dde4e9ea8d350ff0
 DIST genpatches-4.9-134.experimental.tar.xz 106384 BLAKE2B 
cf341a8c8f43353fead3844c549932de413380b72f5efb686031a35c5de78c13f66d606d5884bfea45333c7aaa39589d93cd6c295fc34dd103f354209a94116e
 SHA512 
491a2b541b933a0e6f0eac55eb939ab668085158d059a2bbe99826e657bba3576bd6092a83baeda8c11a29a770823228ead660a5d64cce09354fb177eb857cd0
 DIST genpatches-4.9-134.extras.tar.xz 17356 BLAKE2B 
a6a8fd7226f451ea0a42abffab2a74c2dfc2ad61130b49a51548d72c98a3f1c96dba5432fc3abf88d3c08d1cb07b28ad7d252e22ad04443e3fc251a03affa045
 SHA512 
221edf2d3ca1f11d48dafd3cb86b316153ffd6928c1dc690fe5b69f212ae20ccd7b203c272e4554f3045da51cef7a3bc50d388cfe7bee7630ccee586ae3d7986
+DIST genpatches-4.9-136.base.tar.xz 2499112 BLAKE2B 
d68b80514607892807b343ba310cd87df1e655f290e265572e6162529bf65205723dc89cf3520ada6f7f9d2d94e9f9a9ed2a9f709096e2c4fae5db07a5921540
 SHA512 
286063c44a5752162924d4a1b1a1f34dda1f9bb5f81576a96a083d1b91ff2f846d813fb7c5bf312f711e4fbb5c1cebe700907eba78d936259fff27c27db0ab6f
+DIST genpatches-4.9-136.experimental.tar.xz 106404 BLAKE2B 
7b3434f32eb16392162824e1a374f675c1e993a3e076b0d464812b420fcbb0d887bd8fc5b1316b71a4adcfeef714b9576a09c737e0c22374967d771417664757
 SHA512 
1241adbf933ec79f1ed809521c55e44a51b3060ef544ade05ee90ffbfd355613268beda4a1683f9b9a7b172f8f6305271b3caa9adea99980a0b1848f94e8cb86
+DIST genpatches-4.9-136.extras.tar.xz 17360 BLAKE2B 
e038a5f1fab6209642f023bbe789f540c2ffc4e946fa0c0d460ae9a9ee7c712c1c932317838313694a4a3312a4639e1f56db8e181825d2055c321e2f0fa6015e
 SHA512 
49ec9be3ad02078fb235e4dda2111069244c37d04d434028d4fd5eb81e495480b2fdf1953d3671254839b3ddbf50a74c1f86bce2738db05180a0f3eb0b2d25f0
 DIST linux-4.14.tar.xz 100770500 BLAKE2B 
85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a
 SHA512 
77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8
 DIST linux-4.18.tar.xz 101781564 BLAKE2B 
138bdc49dc8871e5566b5e23a9e5ed0e68fff480a7a04fc659a9efe2d4bcc778ac01368a32bc5d1dbde870102ce7294b9d315f81c4e6e762ee781135e83033f2
 SHA512 
950eb85ac743b291afe9f21cd174d823e25f11883ee62cecfbfff8fe8c5672aae707654b1b8f29a133b1f2e3529e63b9f7fba4c45d6da8000b3a9a9ae038
 DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7
 SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a

diff --git a/sys-kernel/ck-sources/ck-sources-4.9.132.ebuild 
b/sys-kernel/ck-sources/ck-sources-4.9.132.ebuild
new file mode 100644
index 000..7809ea8b79b
--- /dev/null
+++ b/sys-kernel/ck-sources/ck-sources-4.9.132.ebuild
@@ -0,0 +1,52 @@
+# Copyright 2018 kuzetsa℠ and others
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64 ~x86"
+
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches/
+   http://kernel.kolivas.org/;
+
+IUSE="experimental"
+
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="136"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+
+PYTHON_COMPAT=( python2_7 )
+inherit python-any-r1 kernel-2
+detect_version
+detect_arch
+
+DEPEND="deblob? ( ${PYTHON_DEPS} )"
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+
+DESCRIPTION="Gentoo's genpatches for Linux ${K_BRANCH_ID}, with Con Kolivas' 
MuQSS process scheduler."
+
+MUQSS_VERSION="150"
+MUQSS_FILE="${K_BRANCH_ID}-sched-MuQSS_${MUQSS_VERSION}.patch"
+MUQSS_BASE_URL="http://ck.kolivas.org/patches/muqss/4.0;
+
+# clearly identify package name in distrdir

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

2018-10-11 Thread Thomas Deutschmann
commit: e18dc802f5120db06736edde34ddeb1a3222b2a8
Author: Sarah White  poindexter  ovh>
AuthorDate: Thu Oct 11 11:38:02 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Oct 12 00:56:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e18dc802

profiles/package.mask: unmask sys-kernel/ck-sources-4.16.17

ebuild is no longer in tree (old / EOL branch)

Signed-off-by: Sarah White  poindexter.ovh>
Closes: https://github.com/gentoo/gentoo/pull/10127
Signed-off-by: Thomas Deutschmann  gentoo.org>

 profiles/package.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index c42a05a99da..fe9e61d07a1 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -259,10 +259,6 @@ dev-python/wxpython:2.8
 =virtual/perl-threads-2.220.0
 =virtual/perl-version-0.992.300
 
-# Thomas Deutschmann  (23 Jun 2018)
-# Doesn't pass QA full boot test
-=sys-kernel/ck-sources-4.16.17
-
 # Mart Raudsepp  (16 Jun 2018)
 # No upstream (website disappeared), no upstream plugin maintainer,
 # and pretty much a fringe format anyway.



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

2018-10-11 Thread Thomas Deutschmann
commit: 90634c11e58fb05e344b8259225cea15fd6ff75f
Author: Nils Freydank  posteo  de>
AuthorDate: Mon Oct  8 11:37:22 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Oct 12 00:56:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90634c11

games-fps/urbanterror: Cleanup old files

Signed-off-by: Nils Freydank  posteo.de>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/10103
Signed-off-by: Thomas Deutschmann  gentoo.org>

 games-fps/urbanterror/Manifest |   1 -
 .../files/urbanterror-4.3-fix-build_system.patch   |  99 
 .../urbanterror-4.3.3_p20180218-fix-loop.patch |  59 ---
 .../urbanterror/urbanterror-4.3.4_p20180627.ebuild | 170 -
 4 files changed, 329 deletions(-)

diff --git a/games-fps/urbanterror/Manifest b/games-fps/urbanterror/Manifest
index d5f6b196cf1..2fe3e1ecd71 100644
--- a/games-fps/urbanterror/Manifest
+++ b/games-fps/urbanterror/Manifest
@@ -1,2 +1 @@
-DIST urbanterror-4.3.4_p20180627.tar.gz 10069715 BLAKE2B 
179a952d51448af39636560e71c33dba8491fa195dd29d149f3d87d11ca2efff9a50041cdb585df9944361cfef8ac2b9efd2967cb6ffeeceb553fbc6aa17b218
 SHA512 
8eb314143fb336ff32d5b4a97075e54d5577570f1193c2220648ba7866373c8aa158015efebcb8325ade7964f4622baff8a30d89e889f64141d748bba28712ef
 DIST urbanterror-4.3.4_p20180708.tar.gz 6177724 BLAKE2B 
36439a1facc83a6151f0f6f28351bd56c196822832abbbab885312a216593b65a359187560c962caf2923b69f5519b17fe901a88c03f61ac576b6998a51ab227
 SHA512 
97c36d9ebcb4b915d077bb944808f45e88e0f544e6d0261f1e97e5a4bb33f3fd4120cf73d9463ea8da16848e4acb18218afe4042f00d9f759e7481b3e7aecd58

diff --git a/games-fps/urbanterror/files/urbanterror-4.3-fix-build_system.patch 
b/games-fps/urbanterror/files/urbanterror-4.3-fix-build_system.patch
deleted file mode 100644
index e0c4eb27f53..000
--- a/games-fps/urbanterror/files/urbanterror-4.3-fix-build_system.patch
+++ /dev/null
@@ -1,99 +0,0 @@
-Author: Nils Freydank 
-Date:   Fri Nov 17 20:30:00 2017 +0100
-
-Respect CFLAGS, CPPFLAGS etc. This patch is inspired
-by hasufell’s patch.
-
-Edit 2018-03-19: Now with server support!
-
 a/Makefile 2018-03-19 11:00:00.0 +0100
-+++ b/Makefile 2018-03-19 11:00:00.1 +0100
-@@ -223,7 +223,7 @@
- ifndef USE_ALTGAMMA
-   # Clearskies - X11-based gamma for Linux
-   USE_ALTGAMMA=1
--endif
-+  endif
- 
- ifndef USE_SKEETMOD
-   USE_SKEETMOD=0
-@@ -306,34 +306,33 @@
- CLIENT_EXTRA_FILES=
- 
- ifneq (,$(findstring "$(PLATFORM)", "linux" "gnu_kfreebsd" "kfreebsd-gnu" 
"gnu"))
--  BASE_CFLAGS = -Wall -fno-strict-aliasing -Wimplicit -Wstrict-prototypes \
---pipe -DUSE_ICON -DARCH_STRING=\\\"$(ARCH)\\\"
-+  BASE_CFLAGS = -DUSE_ICON -DARCH_STRING=\\\"$(ARCH)\\\"
-   CLIENT_CFLAGS += $(SDL_CFLAGS)
- 
--  OPTIMIZEVM = -O3
--  OPTIMIZE = $(OPTIMIZEVM) -ffast-math
-+  OPTIMIZEVM =
-+  OPTIMIZE = $(OPTIMIZEVM)
- 
-   ifeq ($(ARCH),x86_64)
--OPTIMIZEVM = -O3
--OPTIMIZE = $(OPTIMIZEVM) -ffast-math
-+OPTIMIZEVM =
-+OPTIMIZE = $(OPTIMIZEVM)
- HAVE_VM_COMPILED = true
-   else
-   ifeq ($(ARCH),x86)
--OPTIMIZEVM = -O3 -march=i586
--OPTIMIZE = $(OPTIMIZEVM) -ffast-math
-+OPTIMIZEVM =
-+OPTIMIZE = $(OPTIMIZEVM)
- HAVE_VM_COMPILED=true
-   else
-   ifeq ($(ARCH),ppc)
--BASE_CFLAGS += -maltivec
-+BASE_CFLAGS +=
- HAVE_VM_COMPILED=true
-   endif
-   ifeq ($(ARCH),ppc64)
--BASE_CFLAGS += -maltivec
-+BASE_CFLAGS +=
- HAVE_VM_COMPILED=true
-   endif
-   ifeq ($(ARCH),sparc)
--OPTIMIZE += -mtune=ultrasparc3 -mv8plus
--OPTIMIZEVM += -mtune=ultrasparc3 -mv8plus
-+OPTIMIZE +=
-+OPTIMIZEVM +=
- HAVE_VM_COMPILED=true
-   endif
-   ifeq ($(ARCH),armv7l)
-@@ -1130,12 +1129,12 @@
- 
- define DO_CC
- $(echo_cmd) "CC $<"
--$(Q)$(CC) $(NOTSHLIBCFLAGS) $(CFLAGS) $(CLIENT_CFLAGS) $(OPTIMIZE) -o $@ -c $<
-+$(Q)$(CC) $(NOTSHLIBCFLAGS) $(CFLAGS) $(CPPFLAGS) $(CLIENT_CFLAGS) 
$(OPTIMIZE) -o $@ -c $<
- endef
- 
- define DO_REF_CC
- $(echo_cmd) "REF_CC $<"
--$(Q)$(CC) $(SHLIBCFLAGS) $(CFLAGS) $(CLIENT_CFLAGS) $(OPTIMIZE) -o $@ -c $<
-+$(Q)$(CC) $(SHLIBCFLAGS) $(CFLAGS) $(CPPFLAGS) $(CLIENT_CFLAGS) $(OPTIMIZE) 
-o $@ -c $<
- endef
- 
- define DO_REF_STR
-@@ -1148,7 +1147,7 @@
- 
- define DO_BOT_CC
- $(echo_cmd) "BOT_CC $<"
--$(Q)$(CC) $(NOTSHLIBCFLAGS) $(CFLAGS) $(BOTCFLAGS) $(OPTIMIZE) -DBOTLIB -o $@ 
-c $<
-+$(Q)$(CC) $(NOTSHLIBCFLAGS) $(CFLAGS) $(CPPFLAGS) $(BOTCFLAGS) $(OPTIMIZE) 
-DBOTLIB -o $@ -c $<
- endef
- 
- ifeq ($(GENERATE_DEPENDENCIES),1)
-@@ -1162,7 +1161,7 @@
- 
- define DO_DED_CC
- $(echo_cmd) "DED_CC $<"
--$(Q)$(CC) $(NOTSHLIBCFLAGS) -DDEDICATED $(CFLAGS) $(SERVER_CFLAGS) 
$(OPTIMIZE) -o $@ -c $<
-+$(Q)$(CC) $(NOTSHLIBCFLAGS) -DDEDICATED $(CFLAGS) $(CPPFLAGS) 
$(SERVER_CFLAGS) $(OPTIMIZE) -o $@ -c $<
- endef
- 
- define DO_WINDRES
-

diff --git 
a/games-fps/urbanterror/files/urbanterror-4.3.3_p20180218-fix-loop.patch 

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

2018-10-11 Thread Thomas Deutschmann
commit: a660268309e4254ba63e659367ab2c5257e10615
Author: Sarah White  poindexter  ovh>
AuthorDate: Thu Oct 11 09:55:51 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Oct 12 00:56:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6602683

sys-kernel/ck-sources: version 4.18.13

updated to genpatches-4.18-16

Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Sarah White  poindexter.ovh>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-kernel/ck-sources/Manifest  |  3 ++
 sys-kernel/ck-sources/ck-sources-4.18.13.ebuild | 47 +
 2 files changed, 50 insertions(+)

diff --git a/sys-kernel/ck-sources/Manifest b/sys-kernel/ck-sources/Manifest
index 828279d5d87..6623381721d 100644
--- a/sys-kernel/ck-sources/Manifest
+++ b/sys-kernel/ck-sources/Manifest
@@ -40,6 +40,9 @@ DIST genpatches-4.18-12.extras.tar.xz 17508 BLAKE2B 
c324b68771942f0372d0f4f34904
 DIST genpatches-4.18-14.base.tar.xz 313244 BLAKE2B 
a47c0b01dffdc9480d99137b8d2d2ee4d125e86fdc653e6ed54acadb4818ee12b904335bd996577fb12a0132ffd8f565da9669b4033531fdb1cb53ff28a5c9a7
 SHA512 
8f59ef57c0c698932032e181044b2fd78d6f43a8022b75139c6aade451d946816329129047de8514d4c2f6c0c6eedf6a16786063584bb2c141e1a50fb83debd9
 DIST genpatches-4.18-14.experimental.tar.xz 5224 BLAKE2B 
659859efd41430c3da5c104cc8e148d85df75ec323364f845a2f15b848544aaf0d7d9cd8b595c04a9209542bdb865874b9c8928d264ba896a70d701690464869
 SHA512 
50e172f6244741ed6d5e440ab55c4928c11c7cbe9d2bdc5891bd254e2aa05b7ed0387e85d3135745af0e056dfc0be9a325581d5cf38df1659d89cf387ed72625
 DIST genpatches-4.18-14.extras.tar.xz 17512 BLAKE2B 
f9a02074660a4f2c7b24d00035f0e529a1283a853d7271dea8a459fa1d5a6a2508ad400e828e47ac1b1f610b0732a9380301951f091cc9657d15f9c784e0d9ff
 SHA512 
e27f7d5fc0ea35cb66d8478c83df36d5c28d2eaa87b65cdea77254d7cd665ba0f2a016927ba70e71c33920d80341270bc5419c610971989b1ec573631be080ab
+DIST genpatches-4.18-16.base.tar.xz 422672 BLAKE2B 
688de9ccda3e62656a046207aeaa2bf09d3c3f7138a78343e2d362099f0f3b245ac59be420db4f209dbdcf3f1d1ac6ae1ac5fc96713e91c5088123dc03d6e5e7
 SHA512 
6e55ce52f2175a897dc2ada9ba76befe48a9c19544b3df1a39540d5e66fac7351e9fbe0799f6f6f23923a48f17d6181ba580c7e3afd40029039f5e6bfc826a0e
+DIST genpatches-4.18-16.experimental.tar.xz 5228 BLAKE2B 
558fd2197c5ccdb034b6d6284dd90ccd92cba09993fa58996febf340a6225bc46c458c3e9e47f69f1f31dc4ffa31675f3f9a33f7e5c0b499afe7db2b1c2b71fe
 SHA512 
c64277edadd67d46d2e9a97c423fab5ab5e7d2a21e27b54c1118400b15d6fd5b406d3ac3fc9b6bc8ee49b94801748f88df7cbbd439e62e6061bf36d27c703dfd
+DIST genpatches-4.18-16.extras.tar.xz 17500 BLAKE2B 
f3bfb098fdb5db5651c78fdb26ce927420dc6cf08479b98cd820284e21f6323c8a3e95000c8839ae7de88b3088a96725607611979408fb553534c4531ddee69f
 SHA512 
13dc9cace14c765301deb1ad929f4564565a480c7b347b25878122fe103a528198e9601288b6b930aee3d6ac703d03e9ed236e9954f3fb2194d0ac49488bddc0
 DIST genpatches-4.18-8.base.tar.xz 61984 BLAKE2B 
fc4b575978ef25f2ac1ea23453a820cd3fce9fb99bdcc071e88d8d52113b3ad1b44725b1bddf8a9b0e17fcc4022b8a7ea1ca10925c560ebd2480ae7edbf08a93
 SHA512 
fb98eff21e6cfbf03feb1df16241e564acb086026db360136a46c78d7658cd76dbc98f698279e2e5e1c55c675acadf7da45136bcff5fc929d0fc155a70def29e
 DIST genpatches-4.18-8.experimental.tar.xz 5224 BLAKE2B 
1577cd444c84c7a8fef88e167e3027773a5574459124f007ecbcccab5f7f9d544d594616ab4c43c58edcf97e2af699c82fea4995a98aa2a4a196f5aa8d345350
 SHA512 
57b87c85d902246a38f7822f296736cc471509c5ff63e1da8999fdd285437add9e0a20ced9d1997df1e1cbf6fdcee45c62747bcda9de4cbcfa3009a0d6ded06c
 DIST genpatches-4.18-8.extras.tar.xz 17508 BLAKE2B 
2e9e8c17aacbd6894f682c6f95b767228c54673e23dd401519d69606177334408acee5c018b164c797750018d015c8abe35e48f5b00b45f5502b0dd72f776941
 SHA512 
059cf39a752f004cb3fe57f7d98118879bdd1d40c1242a012a11275a29dc7744d6333686fadda2fe08bbbea5a9b45f3f3cc9bfc20203f22184b2068baf07

diff --git a/sys-kernel/ck-sources/ck-sources-4.18.13.ebuild 
b/sys-kernel/ck-sources/ck-sources-4.18.13.ebuild
new file mode 100644
index 000..1c6f9715c18
--- /dev/null
+++ b/sys-kernel/ck-sources/ck-sources-4.18.13.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2018 kuzetsa℠ and others
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64 ~x86"
+
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches/
+   http://kernel.kolivas.org/;
+
+IUSE="experimental"
+
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="16"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+
+PYTHON_COMPAT=( python2_7 )
+inherit python-any-r1 kernel-2
+detect_version
+detect_arch
+
+DEPEND="deblob? ( ${PYTHON_DEPS} )"
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+
+DESCRIPTION="Gentoo's genpatches for Linux ${K_BRANCH_ID}, with Con Kolivas' 
MuQSS process scheduler."
+
+MUQSS_VERSION="173"
+MUQSS_FILE="0001-MultiQueue-Skiplist-Scheduler-version-v0.${MUQSS_VERSION}.patch"
+MUQSS_BASE_URL="http://ck.kolivas.org/patches/muqss/4.0;
+
+# clearly identify package name 

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

2018-10-11 Thread Thomas Deutschmann
commit: cc82e1391ac3a97a8d72e9822344c150fce51d61
Author: Tomas Mozes  gmail  com>
AuthorDate: Tue Oct  9 11:13:22 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Oct 12 00:56:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc82e139

dev-python/elasticsearch-curator: drop old

Signed-off-by: Tomáš Mózes  gmail.com>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/10114
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-python/elasticsearch-curator/Manifest  |   5 -
 .../elasticsearch-curator-5.1.2.ebuild | 120 
 .../elasticsearch-curator-5.5.1.ebuild | 121 
 .../elasticsearch-curator-5.5.4-r1.ebuild  |   4 +
 .../elasticsearch-curator-5.5.4.ebuild | 123 -
 5 files changed, 4 insertions(+), 369 deletions(-)

diff --git a/dev-python/elasticsearch-curator/Manifest 
b/dev-python/elasticsearch-curator/Manifest
index b8e8013ea20..827e0ad0155 100644
--- a/dev-python/elasticsearch-curator/Manifest
+++ b/dev-python/elasticsearch-curator/Manifest
@@ -1,9 +1,4 @@
-DIST elasticsearch-5.5.1.tar.gz 33476827 BLAKE2B 
4f37f13fcd0a236c5da5b74c4eec5ac9ce40234059643bed69b56e93a9d5b9758ebaf0f6d50155b7338c0c203cdd7296816d6c7bc5cb0ee5455e406e586c4bf8
 SHA512 
9bedd48396cdd6c39c107a7951eba8446b8574493bd44c17a79ba3443670a48b72c053006821cf69dc17bf49ff1c05904db14a07d8a6403b2d2061fc605937bd
 DIST elasticsearch-6.1.1.tar.gz 28462503 BLAKE2B 
a3ac6edf6ed110fc3832bc6b1c5e4d7acbc67ee2faeba35d9dc7215bbcf10fb3617cfbc050687d7361fc4b6f644afe9cbfc23591b5ae26e692f38dbf13872e7d
 SHA512 
dcc23ef80ad2545490508d3e9db2fd0e6ae9a99cece0990f537c522265961dad234734548d1d86288af7f65a6ee681f5624d2c0e71df0e1dcc32fdb56dcefe92
-DIST elasticsearch-6.2.4.tar.gz 29056810 BLAKE2B 
121be27ac1db4fa6bbe285161b3f2b2dd889859b50f46b57b68ed43514568c4aa9629b5ca32edcc2328a6e7245256d64901c8acc8b2dd91337f8ca97b87c46e1
 SHA512 
9e6c0de8ed0d9e27fdd18ef7bada376af5a8680bb7a4f4d805926da456b349cee731ba90328b5eda5f0e62fa3f00f34646bf1c2b6c662d055f4be338d0690941
-DIST elasticsearch-curator-5.1.2.tar.gz 290616 BLAKE2B 
57c02ddaf188b8dd08286e47d4eaf4e0af05d65d89139f77f5d71274c394defe491393a7043bb426fa4b260c199e92221c1e57b6d24922898e5e3b8e9e2de58b
 SHA512 
4ac0ae789fe662d352c3d228acc6aaf78873bb02b7108f985fd0a048d0b90cb2b30572eaa5f984025ab0d4209eda9d6fe6ac66cd8cc856f0707e3f12bb2e574d
 DIST elasticsearch-curator-5.4.1.tar.gz 294363 BLAKE2B 
180882cee9ed3424569705beda727f823cea0cfc47897d06b1cb8258166e40fc9913eb266481b09155a0f5f88b52a680b9187f69417983c2d78b5d24874489c3
 SHA512 
a2f187d99ebcf8069bfd472316aefe501719400268120c250812670e5525209cebffa913f5fb988305d963bb2a7b61cf47426905b856e34f41afd3a9d67d28f3
-DIST elasticsearch-curator-5.5.1.tar.gz 301351 BLAKE2B 
1dfcf53995c203a7201e421bc9f01a840597d8c1099ae434be52ff27e47e30f509bf1c5a42d507b549f5fe8ce45cbe74614ea76c338b0ae9de1d51877c8b32fe
 SHA512 
a0ccb35fe93cefb927020add9629d5879cb64ee41a25130150ee8c45867e210f611a5fca0a43357c6f68cbf0c3f0acf677a7f8d2b3b493f4c2815637640ed9f6
 DIST elasticsearch-curator-5.5.4.tar.gz 221161 BLAKE2B 
41828800dd9237142767d3163b3d87770ea5b904858991598cce2feb7c3a22d85c0d73275a2f232099ea82e7346fc20080a3bfef692ee808b730d3e4e6de405d
 SHA512 
99ed18592105d19791513ad713115b6e2a6b589ab8b4e3fc4435b2878e25f552e0bda8d63cb6279970afc6ba39d9f3db17af1b4fb44500fe8a14b060e1530258
-DIST elasticsearch-oss-6.3.1.tar.gz 29417012 BLAKE2B 
356665cde2f12ae5813d95302398f5fced07c53d25e6e1dc7ad41c8dc8ad42cd3d5bd4ffa6cab24af8088c29800f6ec59a483710272b756af2f76b5967d4b932
 SHA512 
3df0f7f35e150198f7ff660cf4d90fbd1c2ca587287c6340d427f968711b6390123bfafd09a744c9bdf328d57423bcb75f6e4701ce14a7257388611abea62545
 DIST elasticsearch-oss-6.3.2.tar.gz 29418577 BLAKE2B 
152640dc01a10f44ba43f87f68361cc0dd5e1cf54d0ff92377f3acd1a12a247f002ffe2d003cc53760e891278249c10b1d6d4eb978b0bb1c1ebf8879a2cfcb9a
 SHA512 
3c51a860414f7e55900b1d9a350bdbc3e673c8445e316454c2480315b4b9fc08df58090c6281cecc3ae63d12d78d6bd58e228b3371aa325db799ce18758a21f4

diff --git 
a/dev-python/elasticsearch-curator/elasticsearch-curator-5.1.2.ebuild 
b/dev-python/elasticsearch-curator/elasticsearch-curator-5.1.2.ebuild
deleted file mode 100644
index 91d448a28e3..000
--- a/dev-python/elasticsearch-curator/elasticsearch-curator-5.1.2.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-
-MY_PN="curator"
-ES_VERSION="5.5.1"
-
-# tests fail in chroot
-# https://github.com/elastic/elasticsearch/issues/12018
-RESTRICT="test"
-
-# running tests in non-chroot environments:
-# FEATURES="test -usersandbox" emerge dev-python/elasticsearch-curator
-
-inherit distutils-r1
-
-DESCRIPTION="Tending time-series indices in Elasticsearch"
-HOMEPAGE="https://github.com/elasticsearch/curator;

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

2018-10-11 Thread Virgil Dupras
commit: 7f7450a60cd31d1d78e3e084dcb7a77909bddc68
Author: Virgil Dupras  gentoo  org>
AuthorDate: Fri Oct 12 00:05:25 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Fri Oct 12 00:07:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f7450a6

dev-python/flask-wtf: remove old

This version was the last dependency of dev-python/flask-testing, which
can now be removed.

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

 dev-python/flask-wtf/flask-wtf-0.14.2.ebuild | 54 
 1 file changed, 54 deletions(-)

diff --git a/dev-python/flask-wtf/flask-wtf-0.14.2.ebuild 
b/dev-python/flask-wtf/flask-wtf-0.14.2.ebuild
deleted file mode 100644
index 102f1593796..000
--- a/dev-python/flask-wtf/flask-wtf-0.14.2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
-
-inherit distutils-r1
-
-MY_PN="Flask-WTF"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Simple integration of Flask and WTForms"
-HOMEPAGE="https://pythonhosted.org/Flask-WTF/ 
https://pypi.org/project/Flask-WTF/;
-SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc test"
-
-RDEPEND="dev-python/flask[${PYTHON_USEDEP}]
-   >=dev-python/wtforms-1.0.5[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/flask-testing[${PYTHON_USEDEP}]
-   dev-python/flask-uploads[${PYTHON_USEDEP}]
-   dev-python/speaklater[${PYTHON_USEDEP}]
-   dev-python/flask-babel[${PYTHON_USEDEP}] )
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 'dev-python/werkzeug[${PYTHON_USEDEP}]' 
python2_7 )
-   )"
-
-S="${WORKDIR}/${MY_P}"
-
-python_prepare_all() {
-   # tries to access things over the network
-   rm tests/test_recaptcha.py || die
-   distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   nosetests || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/_build/html/. )
-   distutils-r1_python_install_all
-}



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

2018-10-11 Thread Rafael Martins
commit: d8102dc3ad1f52ac662a098e0921fcc02ad0b8ef
Author: Rafael Martins  gentoo  org>
AuthorDate: Thu Oct 11 22:24:15 2018 +
Commit: Rafael Martins  gentoo  org>
CommitDate: Thu Oct 11 22:24:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8102dc3

app-emulation/simplevirt: snapshot bump

Package-Manager: Portage-2.3.49, Repoman-2.3.11
Signed-off-by: Rafael Martins  gentoo.org>

 app-emulation/simplevirt/Manifest | 2 +-
 ...implevirt-0.0_p20181009.ebuild => simplevirt-0.0_p20181011.ebuild} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-emulation/simplevirt/Manifest 
b/app-emulation/simplevirt/Manifest
index 298cde2b7a5..a9c90fbe9d0 100644
--- a/app-emulation/simplevirt/Manifest
+++ b/app-emulation/simplevirt/Manifest
@@ -3,4 +3,4 @@ DIST github.com-go-yaml-yaml-v2.2.1.tar.gz 70217 BLAKE2B 
4ba34bd9432699ec60348d1
 DIST github.com-inconshreveable-mousetrap-v1.0.0.tar.gz 2290 BLAKE2B 
bd46103e50dd916bad41aafbf8c1945d835222c131a88f4d3fba35feb4b11ae83c900280c9dafc6f0ef92f71b6a3ba02996dcb31d67eb49314b29d23fda2c8b8
 SHA512 
6f68bd6b7b1c7aa6651fe83b5230b6c8398b85561b01ca6a36ee638e186c325cc70444818de7a569db240159ba5840ed24f212e0defdf9f9890803a7641285d9
 DIST github.com-spf13-cobra-v0.0.3.tar.gz 101526 BLAKE2B 
8613eccdd5bbd31429b7aa8260ee9367e34a5cc78075b394b09db91a97445ed1dadfb53a86105b55cb6ea3b4c2f9d50553e9198d64dfb6033dd1db2805984a2c
 SHA512 
c38db9432a168f913b41a1e1b11d84bedfade82ff70791be9d343a6cc86b8a05b18bae344d67ebd8bae4c98662db7ac664a9dc86fa9b9ad4aa5c96cbf0178efb
 DIST github.com-spf13-pflag-v1.0.2.tar.gz 44042 BLAKE2B 
157fa6c2b1efa594abebd76ff03121050187974d62475b1aa66af325a2198ea64105655597703c37f25e22c4a07864d9fc31a6a29ba9233fdeefcceef400d5e5
 SHA512 
fd3cefd683329316eda4ec660193a970e38435515c16805190235e2c969c8d65a6f602fdc7c2f7cf3d9740c5a321ee5be5e8034bd6cd7c05c12722cf64d1e8ae
-DIST simplevirt-0.0_p20181009.tar.gz 14487 BLAKE2B 
ef18680c208f71686502048d611509773e5722c563b2adaa1f0020f4c36aae65550b045efdfe22f7a3fbe7600483850d3590a5be839acfdc5065e51174913a6a
 SHA512 
7cc4de465c8a399eeb8726c112492dff56696f5ca23dd0cd28c7d6da81727dfb2c2281731ff04c42ef27a5a836599dd1f36ce84eaba96d2700955e52b75193f9
+DIST simplevirt-0.0_p20181011.tar.gz 14667 BLAKE2B 
02a7ecdf9ec9983a83c31fb728fbf61ffcb2ca71683ebf24d159815314b064e465da303b5c8712b18aff3ecd1da0c5170c4aa4be365855e233497f62c44ed888
 SHA512 
b290cbff14a3679600ca2cadcfd17184ea789c0f1556a6f1de64679ef9983eb7988ac7ebadd0de729286d8a86dbdaab3a9f7b7bbc300780c3a28aa9920610288

diff --git a/app-emulation/simplevirt/simplevirt-0.0_p20181009.ebuild 
b/app-emulation/simplevirt/simplevirt-0.0_p20181011.ebuild
similarity index 96%
rename from app-emulation/simplevirt/simplevirt-0.0_p20181009.ebuild
rename to app-emulation/simplevirt/simplevirt-0.0_p20181011.ebuild
index 22eccbb29d1..0dceee42cb5 100644
--- a/app-emulation/simplevirt/simplevirt-0.0_p20181009.ebuild
+++ b/app-emulation/simplevirt/simplevirt-0.0_p20181011.ebuild
@@ -14,8 +14,8 @@ EGO_VENDOR=(
 inherit linux-info golang-vcs-snapshot user
 
 EGO_PN="github.com/rafaelmartins/simplevirt"
-GIT_COMMIT="a1569d8a63fbed7ad200039d3b45fcad41f23f36"
-GIT_VERSION="0.0.20-a156"
+GIT_COMMIT="2427500bce5bf9b365dc601790704694cd6c772e"
+GIT_VERSION="0.0.24-2427"
 ARCHIVE_URI="https://${EGO_PN}/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz"
 
 DESCRIPTION="Simple virtual machine manager for Linux (QEMU/KVM)"



[gentoo-commits] repo/gentoo:master commit in: sys-power/thermald/

2018-10-11 Thread Yixun Lan
commit: 42cb92f0d116ed602cf569c68080641525d8f960
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Oct 12 05:56:35 2018 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Oct 11 22:05:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42cb92f0

sys-power/thermald: version bump, 1.8

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

 sys-power/thermald/Manifest|  1 +
 sys-power/thermald/thermald-1.8.ebuild | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/sys-power/thermald/Manifest b/sys-power/thermald/Manifest
index f5ae52feff8..3a395068f56 100644
--- a/sys-power/thermald/Manifest
+++ b/sys-power/thermald/Manifest
@@ -1 +1,2 @@
 DIST thermald-1.7.1.tar.gz 420725 BLAKE2B 
99e176e978e56d453fe5ff409f048122d18b9c554ed3128dac1c704a61ab483ab3ca21c2c360d1dc763de9770f877948d62d8c2216072d23fa1b828913a8e766
 SHA512 
a78f8aa9ef0f3e3b57fc1ebbd7ad7e67985676ad7adf5b6a6d23e4aed4e2ccb8273fb67ccd9a2133f91f7f6b19f793c9ba68e41208aabde4248ca666061fe5e0
+DIST thermald-1.8.tar.gz 422982 BLAKE2B 
6970190182a6ebcd6b39fcd34d75221173e1bbbf32cb7c0009001cd2934cf18bbc524ec43d1e99dbf7a1a0bda53b0b2239c9e25e08c4cb9435bceb0a512c5e3b
 SHA512 
2360cfad311a804d7609b9879c5a0db749e1813085093e535eaa948b6fa289c385b8e6762ab15270e2e19170a4f48e0b0d736029651289ec23c8dfc61743

diff --git a/sys-power/thermald/thermald-1.8.ebuild 
b/sys-power/thermald/thermald-1.8.ebuild
new file mode 100644
index 000..1307006a95e
--- /dev/null
+++ b/sys-power/thermald/thermald-1.8.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools flag-o-matic out-of-source systemd
+
+DESCRIPTION="Thermal daemon for Intel architectures"
+HOMEPAGE="https://01.org/linux-thermal-daemon;
+SRC_URI="https://github.com/01org/thermal_daemon/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-libs/dbus-glib:=
+   dev-libs/glib:=
+   dev-libs/libxml2:=
+   sys-apps/dbus:="
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/thermal_daemon-${PV}
+DOCS=( thermal_daemon_usage.txt README.txt )
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+my_src_configure() {
+   # bug 618948
+   append-cxxflags -std=c++14
+
+   ECONF_SOURCE="${S}" econf \
+   --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
+}
+
+my_src_install_all() {
+   einstalldocs
+
+   rm -rf "${ED%/}"/etc/init || die
+   doinitd "${FILESDIR}"/thermald
+}



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

2018-10-11 Thread Matthias Maier
commit: b8e0488b21a6a524e928705df292807c612f00fe
Author: Matthias Maier  gentoo  org>
AuthorDate: Thu Oct 11 21:46:55 2018 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Thu Oct 11 21:46:55 2018 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b8e0488b

sci-libs/dealii: version bump to 9.0.1

Signed-off-by: Matthias Maier  gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

 sci-libs/dealii/{dealii-9.0.0.ebuild => dealii-9.0.1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/dealii/dealii-9.0.0.ebuild 
b/sci-libs/dealii/dealii-9.0.1.ebuild
similarity index 99%
rename from sci-libs/dealii/dealii-9.0.0.ebuild
rename to sci-libs/dealii/dealii-9.0.1.ebuild
index a41b1b2d0..e95ceab6e 100644
--- a/sci-libs/dealii/dealii-9.0.0.ebuild
+++ b/sci-libs/dealii/dealii-9.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6



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

2018-10-11 Thread Patrice Clement
commit: a2c00584615e69c3d3a06ad4bb0517605b481992
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Oct 11 21:37:29 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Oct 11 21:39:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2c00584

dev-python/daemonize: add python2_7 support.

Closes: https://bugs.gentoo.org/667658
Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.10

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

diff --git a/dev-python/daemonize/daemonize-2.4.7.ebuild 
b/dev-python/daemonize/daemonize-2.4.7.ebuild
index e186dc2bcd2..8a120a67f65 100644
--- a/dev-python/daemonize/daemonize-2.4.7.ebuild
+++ b/dev-python/daemonize/daemonize-2.4.7.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{5,6} )
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: media-sound/denemo/, media-sound/denemo/files/

2018-10-11 Thread Michał Górny
commit: aeb045d44b3343ffcd5105982256983e6f14cc5a
Author: Bernd Waibel  gmail  com>
AuthorDate: Tue Sep 18 22:37:58 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 11 20:49:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeb045d4

media-sound/denemo: re-add package

* remove optional usage of guile-1, package now only supports guile-2
* fix problem with portaudio if use flag is not set
see https://bugs.gentoo.org/515888#c23
and https://savannah.gnu.org/bugs/?52741 with
https://savannah.gnu.org/bugs/?53804
* add REQUIRED_USE dependency for evince on gtk+:3

Suggested-by: Nikita Zlobin  gmail.com>
Closes: https://bugs.gentoo.org/667164
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Bernd Waibel  gmail.com>
Signed-off-by: Michał Górny  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/9908

 media-sound/denemo/Manifest|   1 +
 media-sound/denemo/denemo-2.2.0.ebuild | 127 +
 .../denemo/files/denemo-2.2.0-find-guile-2.2.patch |  60 ++
 .../files/denemo-2.2.0-no-portaudio-fix.patch  |  29 +
 media-sound/denemo/metadata.xml|  53 +
 5 files changed, 270 insertions(+)

diff --git a/media-sound/denemo/Manifest b/media-sound/denemo/Manifest
new file mode 100644
index 000..ea8a1e53296
--- /dev/null
+++ b/media-sound/denemo/Manifest
@@ -0,0 +1 @@
+DIST denemo-2.2.0.tar.gz 17032009 BLAKE2B 
66732fcdaa5d5119ca2a45e5a8c6829e05092a4f0e18e3c8a991bddaaf863ea05889654af47150650d2c67397afa957de0fc3ce0ada86a22be00ae91d4add993
 SHA512 
74bef7b888abd86db42cee7ecb404e1b9211f9965207366c99980137194acd2afa6ec8b1c18da8a12fe4c6951d8a1bb873b313f5749ea629bb7eaeedf12368ef

diff --git a/media-sound/denemo/denemo-2.2.0.ebuild 
b/media-sound/denemo/denemo-2.2.0.ebuild
new file mode 100644
index 000..be5092be45e
--- /dev/null
+++ b/media-sound/denemo/denemo-2.2.0.ebuild
@@ -0,0 +1,127 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools xdg-utils
+
+DESCRIPTION="A music notation editor"
+HOMEPAGE="http://www.denemo.org/;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ OFL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# configure options currently not used:
+# --enable-mem(no) memory debugging: needs Electric fence (efence), which
+#  is not available in portage. See 
https://github.com/boundarydevices/efence
+# --enable-gtk-doc-pdf(no) doesn't work
+IUSE="alsa +aubio debug +evince doc jack +fluidsynth +gtk3 nls +portaudio
+   +portmidi +rubberband static test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-libs/libxml2:2
+   >=dev-scheme/guile-2:12=
+   gnome-base/librsvg:2
+   media-libs/fontconfig:1.0
+   >=media-libs/libsmf-1.3
+   >=media-libs/libsndfile-1.0.28-r1
+   >=media-sound/lilypond-2.19.54[guile2]
+   alsa? ( >=media-libs/alsa-lib-1.1.2 )
+   aubio? ( >=media-libs/aubio-0.4.1-r1 )
+   evince? ( >=app-text/evince-3.22.1-r1:= )
+   fluidsynth? ( >=media-sound/fluidsynth-1.1.6-r1 )
+   gtk3? (
+   x11-libs/gtk+:3
+   x11-libs/gtksourceview:3.0=
+   )
+   !gtk3? (
+   x11-libs/gtk+:2
+   x11-libs/gtksourceview:2.0
+   )
+   jack? ( virtual/jack )
+   portaudio? (
+   >=media-libs/portaudio-19_pre20140130
+   sci-libs/fftw:3.0=
+   )
+   portmidi? ( >=media-libs/portmidi-217-r1 )
+   rubberband? ( >=media-libs/rubberband-1.8.1-r1 )
+"
+
+DEPEND="${RDEPEND}
+   >=dev-util/intltool-0.51.0-r1
+   >=sys-devel/flex-2.6.1
+   virtual/pkgconfig
+   virtual/yacc
+   doc? ( >=dev-util/gtk-doc-1.25-r1 )
+   nls? ( >=sys-devel/gettext-0.19.8.1 )"
+
+REQUIRED_USE="
+   evince? ( gtk3 )
+"
+
+DOCS=( AUTHORS ChangeLog docs/{DESIGN{,.lilypond},GOALS,TODO} NEWS )
+
+PATCHES=(
+   "${FILESDIR}/${P}-no-portaudio-fix.patch"
+   "${FILESDIR}/${P}-find-guile-2.2.patch"
+)
+
+src_prepare() {
+   sed -i -e '/^Categories=/s/GNOME\;/GNOME\;GTK\;/' 
pixmaps/denemo.desktop || die
+   default
+   eautoreconf
+}
+
+src_configure() {
+   myeconfargs=(
+   --disable-gtk-doc-pdf
+   --disable-installed-tests
+   --disable-mem
+   --disable-rpath
+   --enable-x11
+   $(use_enable alsa)
+   $(use_enable aubio)
+   # --enable-doc does nothing for itself
+   $(use_enable doc)
+   $(use_enable doc gtk-doc)
+   $(use_enable doc gtk-doc-html)
+   $(use_enable evince)
+   $(use_enable fluidsynth)
+   $(use_enable jack)
+   $(use_enable nls)
+   $(use_enable portaudio)
+   $(use_enable portmidi)
+   $(use_enable rubberband)
+   $(use_enable 

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

2018-10-11 Thread Andreas Sturmlechner
commit: 55346f081efe16c4149b5664075953ee48566b79
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 20:36:31 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 20:36:31 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=55346f08

kde5-functions.eclass: Drop remaining KDE Plasma 5.12 reference

 eclass/kde5-functions.eclass | 1 -
 1 file changed, 1 deletion(-)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index 95a4dff9aa..c59a3dc01d 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -38,7 +38,6 @@ case ${CATEGORY} in
[[ ${KDE_BUILD_TYPE} = live ]] && : ${FRAMEWORKS_MINIMAL:=}
;;
kde-plasma)
-   [[ ${PV} = 5.12* ]] && : ${QT_MINIMAL:=5.9.6}
if [[ ${KDE_BUILD_TYPE} = live && ${PV} != 5.??.49* ]]; then
: ${FRAMEWORKS_MINIMAL:=}
fi



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

2018-10-11 Thread Mike Gilbert
commit: 928a014610362bc06eb709caeabbe91a5156dfa3
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Oct 11 20:35:51 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Oct 11 20:35:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=928a0146

dev-util/meson: drop test-llvm patch in the live ebuild

Package-Manager: Portage-2.3.50_p14, Repoman-2.3.11_p21
Signed-off-by: Mike Gilbert  gentoo.org>

 dev-util/meson/meson-.ebuild | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-util/meson/meson-.ebuild b/dev-util/meson/meson-.ebuild
index 0d5b9b4711c..9e0fbd73864 100644
--- a/dev-util/meson/meson-.ebuild
+++ b/dev-util/meson/meson-.ebuild
@@ -24,10 +24,6 @@ IUSE=""
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND=""
 
-PATCHES=(
-   "${FILESDIR}"/test-llvm.patch
-)
-
 python_test() {
(
# test_meson_installed



[gentoo-commits] proj/kde:master commit in: kde-plasma/powerdevil/, kde-plasma/plasma-integration/, kde-plasma/plasma-nm/, ...

2018-10-11 Thread Andreas Sturmlechner
commit: 7608a87b651940f82b9b28cf1951f1a4b02d67f2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 20:34:59 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 20:34:59 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=7608a87b

kde-plasma: Drop KDE Plasma 5.12 stable branch

Next LTS release would be in Feb 2018, we won't care anymore.

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

 kde-plasma/bluedevil/bluedevil-5.12.49..ebuild |  40 
 .../breeze-grub/breeze-grub-5.12.49..ebuild|  30 ---
 .../breeze-gtk/breeze-gtk-5.12.49..ebuild  |  12 --
 .../breeze-plymouth-5.12.49..ebuild|  26 ---
 kde-plasma/breeze/breeze-5.12.49..ebuild   |  48 -
 kde-plasma/drkonqi/drkonqi-5.12.49..ebuild |  56 --
 .../kactivitymanagerd-5.12.49..ebuild  |  35 
 .../kde-cli-tools-5.12.49..ebuild  |  59 --
 .../kde-gtk-config-5.12.49..ebuild |  52 -
 .../kdecoration/kdecoration-5.12.49..ebuild|  16 --
 .../kdeplasma-addons-5.12.49..ebuild   |  59 --
 kde-plasma/kdeplasma-addons/metadata.xml   |   1 -
 kde-plasma/kgamma/kgamma-5.12.49..ebuild   |  26 ---
 kde-plasma/khotkeys/khotkeys-5.12.49..ebuild   |  46 -
 .../kinfocenter/kinfocenter-5.12.49..ebuild|  95 -
 kde-plasma/kmenuedit/kmenuedit-5.12.49..ebuild |  44 -
 kde-plasma/kscreen/kscreen-5.12.49..ebuild |  38 
 kde-plasma/kscreenlocker/files/ck-unlock-session   | 220 -
 .../files/kscreenlocker-consolekit-unlock.patch|  13 --
 .../kscreenlocker-5.12.49..ebuild  |  96 -
 kde-plasma/kscreenlocker/metadata.xml  |   3 -
 .../ksshaskpass/ksshaskpass-5.12.49..ebuild|  49 -
 kde-plasma/ksysguard/ksysguard-5.12.49..ebuild |  47 -
 .../kwallet-pam/kwallet-pam-5.12.49..ebuild|  33 
 .../kwayland-integration-5.12.49..ebuild   |  22 ---
 .../kwin/files/kwin-5.10.95-test-optional.patch|  34 
 kde-plasma/kwin/kwin-5.12.49..ebuild   | 104 --
 kde-plasma/kwrited/kwrited-5.12.49..ebuild |  23 ---
 .../libkscreen/libkscreen-5.12.49..ebuild  |  27 ---
 .../libksysguard/libksysguard-5.12.49..ebuild  |  53 -
 kde-plasma/milou/milou-5.12.49..ebuild |  30 ---
 kde-plasma/oxygen/oxygen-5.12.49..ebuild   |  46 -
 .../plasma-desktop-5.12.49..ebuild | 162 ---
 .../plasma-integration-5.12.49..ebuild |  43 
 .../plasma-meta/plasma-meta-5.12.49..ebuild|  76 ---
 kde-plasma/plasma-nm/plasma-nm-5.12.49..ebuild |  75 ---
 kde-plasma/plasma-pa/plasma-pa-5.12.49..ebuild |  29 ---
 .../plasma-sdk/plasma-sdk-5.12.49..ebuild  |  39 
 .../plasma-vault/plasma-vault-5.12.49..ebuild  |  34 
 ...plasma-workspace-wallpapers-5.12.49..ebuild |  18 --
 .../files/plasma-workspace-5.10.4-unused-dep.patch |  19 --
 .../plasma-workspace-5.12.49..ebuild   | 171 
 .../plymouth-kcm/plymouth-kcm-5.12.49..ebuild  |  36 
 .../polkit-kde-agent-5.12.49..ebuild   |  30 ---
 .../powerdevil/powerdevil-5.12.49..ebuild  |  67 ---
 kde-plasma/sddm-kcm/sddm-kcm-5.12.49..ebuild   |  41 
 .../systemsettings-5.12.49..ebuild |  52 -
 .../user-manager/user-manager-5.12.49..ebuild  |  27 ---
 48 files changed, 2402 deletions(-)

diff --git a/kde-plasma/bluedevil/bluedevil-5.12.49..ebuild 
b/kde-plasma/bluedevil/bluedevil-5.12.49..ebuild
deleted file mode 100644
index 001050da4a..00
--- a/kde-plasma/bluedevil/bluedevil-5.12.49..ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit kde5
-
-DESCRIPTION="Bluetooth stack for KDE Plasma"
-HOMEPAGE="https://cgit.kde.org/bluedevil.git;
-KEYWORDS=""
-IUSE=""
-
-COMMON_DEPEND="
-   $(add_frameworks_dep bluez-qt)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kded)
-   $(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep plasma)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtwidgets)
-"
-DEPEND="${COMMON_DEPEND}
-   x11-misc/shared-mime-info
-"
-RDEPEND="${COMMON_DEPEND}
-   $(add_plasma_dep kde-cli-tools)
-   !app-mobilephone/obexd
-   

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

2018-10-11 Thread Andreas Sturmlechner
commit: 086f31bbcd3aa6135a9916dc445b2554e7e048f9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 20:10:03 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 20:10:03 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=086f31bb

Documentation: Drop KDE Frameworks 5.46

 Documentation/maintainers/regenerate-files |  4 +-
 .../.kde-frameworks-5.46/_HEADER_  |  2 -
 .../.kde-frameworks-5.46/kde-frameworks-5.46   |  1 -
 .../.kde-frameworks-5.46/more-deps |  0
 .../kde-frameworks-5.46.keywords   | 82 --
 Documentation/package.mask/kde-frameworks-5.46 | 82 --
 .../package.unmask/.kde-frameworks-5.46/_HEADER_   |  2 -
 .../.kde-frameworks-5.46/kde-frameworks-5.46   |  1 -
 Documentation/package.unmask/kde-frameworks-5.46   | 82 --
 9 files changed, 2 insertions(+), 254 deletions(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index d0d64193a1..07cda522bd 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -9,8 +9,8 @@ cd "$(dirname $0)"
 SCRIPT=$(basename $0)
 HEADER="# Autogenerated by ${SCRIPT}, DO NOT EDIT."
 
-KF_RELEASES="5.46 5.50 5.51"
-KF_RELEASE=${KF_RELEASE:-5.46}
+KF_RELEASES="5.50 5.51"
+KF_RELEASE=${KF_RELEASE:-5.50}
 
 PLASMA_RELEASES="5.12 5.13 5.14"
 PLASMA_RELEASE=${PLASMA_RELEASE:-5.12}

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

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

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

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

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

2018-10-11 Thread Andreas Sturmlechner
commit: 68b5f81dbdde8071eaf27f2f55e5883acda237d8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 20:10:42 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 20:10:42 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=68b5f81d

sets: Add kde-frameworks/syndication to kde-frameworks

 sets/kde-frameworks | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sets/kde-frameworks b/sets/kde-frameworks
index 1f9d315619..1fcb1812f1 100644
--- a/sets/kde-frameworks
+++ b/sets/kde-frameworks
@@ -76,5 +76,6 @@ kde-frameworks/purpose:5
 kde-frameworks/qqc2-desktop-style:5
 kde-frameworks/solid:5
 kde-frameworks/sonnet:5
+kde-frameworks/syndication:5
 kde-frameworks/syntax-highlighting:5
 kde-frameworks/threadweaver:5



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

2018-10-11 Thread Andreas Sturmlechner
commit: fb246976507a6805f8748ccdb9e6ec9c2305eaad
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 20:10:24 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 20:10:24 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=fb246976

sets: Drop kde-frameworks-5.46

 sets/kde-frameworks-5.46 | 79 
 1 file changed, 79 deletions(-)

diff --git a/sets/kde-frameworks-5.46 b/sets/kde-frameworks-5.46
deleted file mode 100644
index 61f6946463..00
--- a/sets/kde-frameworks-5.46
+++ /dev/null
@@ -1,79 +0,0 @@
-

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

2018-10-11 Thread Alfredo Tupone
commit: 44b7ca22b1a0ef980ca90be09df58165538101df
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Thu Oct 11 19:58:36 2018 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Thu Oct 11 19:58:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44b7ca22

dev-tcltk/itk: Bump to 4.1.0

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

 dev-tcltk/itk/Manifest |  1 +
 dev-tcltk/itk/itk-4.1.0.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/dev-tcltk/itk/Manifest b/dev-tcltk/itk/Manifest
index 0f32051dfc2..f40d2d58b20 100644
--- a/dev-tcltk/itk/Manifest
+++ b/dev-tcltk/itk/Manifest
@@ -1,3 +1,4 @@
 DIST itk3.4.1.tar.gz 182311 BLAKE2B 
e1db1b9f7e6e8c5b93eec5bb29fc24af7e6cc5cb3f209df346f03553d3fe7248614c9bb10e2ababd93ea56c63963c1db4ee65bedbae8c279fbe84b6d0eaad3f9
 SHA512 
4680db81a0212e695cfe2c40cabe6dceb94520cf3ee06e2e332f12316838726da14c0b925b117ea351aa14fd2d695f361bcb4062743c66099ef783ae31ab37ef
 DIST itk4.0.0.tar.gz 177838 BLAKE2B 
6bb975c414d40c81bac4b8651ce89f0d84d712114e6f60e1555071d2079f778850f4de7df1a79254db1d1152e8d43f261e0bf9827737fb69abb2801e72d72d6d
 SHA512 
4fd993e3683376bd2852a19e8ac63ec20a9319f3987737a32f7af78b645ff27416b18572b7e30fc1e41a5e4e06ac064280fd86d979738ca9906e2605069c51f3
 DIST itk4.0.1.tar.gz 182029 BLAKE2B 
fe3ed0adddf71af9bf795949b18baf7d983edc1e6e95939db18bdf896069083afbc8498935b0c59e2c5f4179fdc6f624e67198afa0755e8183d754c181d50642
 SHA512 
d64beeb42949e96b384ef2fd571971813697086df8b18af79399cedbb80eba19dc013677957959ea93dc0dcd7cdc4be012b3f9a5f0eedf0bd743550837bd78fc
+DIST itk4.1.0.tar.gz 253796 BLAKE2B 
7d51689d41871f39fbdf940f1aede2c89ee0165cc6be989f7da65df85a0d15e5db037722a5e30a284e51129b7bfff20dfde0fbc78d2d72d8acb9031f328a5d16
 SHA512 
1deed09daf66ae1d0cc88550be13814edff650f3ef2ecb5ae8d28daf92e37550b0e46921eb161da8ccc3886aaf62a4a3087df0f13610839b7c2d6f4b39c9f07e

diff --git a/dev-tcltk/itk/itk-4.1.0.ebuild b/dev-tcltk/itk/itk-4.1.0.ebuild
new file mode 100644
index 000..dacfecf0fd0
--- /dev/null
+++ b/dev-tcltk/itk/itk-4.1.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools multilib virtualx
+
+MY_PV=${PV/_beta/b}
+ITCL_VERSION=$(ver_cut 1-2)
+
+DESCRIPTION="Object Oriented Enhancements for Tcl/Tk"
+HOMEPAGE="http://incrtcl.sourceforge.net/;
+SRC_URI="mirror://sourceforge/project/incrtcl/%5Bincr%20Tcl_Tk%5D-4-source/itk%20${MY_PV}/${PN}${MY_PV}.tar.gz"
+
+IUSE=""
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+DEPEND="
+   >=dev-lang/tk-8.6:=
+   =dev-tcltk/itcl-${ITCL_VERSION}*"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}${MY_PV}"
+
+src_prepare() {
+   mv configure.{in,ac} || die
+   AT_M4DIR=.. eautoconf
+   sed 's:-pipe::g' -i configure || die
+   default
+}
+
+src_configure() {
+   source 
"${EPREFIX}"/usr/$(get_libdir)/itcl${ITCL_VERSION}*/itclConfig.sh || die
+   econf \
+   --with-tcl="${EPREFIX}"/usr/$(get_libdir) \
+   --with-tclinclude="${EPREFIX}"/usr/include \
+   --with-tk="${EPREFIX}"/usr/$(get_libdir) \
+   --with-tkinclude="${EPREFIX}"/usr/include \
+   --with-itcl="${ITCL_SRC_DIR}" \
+   --with-x
+}
+
+src_compile() {
+   emake CFLAGS_DEFAULT="${CFLAGS}"
+}
+
+src_test() {
+   virtx default
+}
+
+src_install() {
+   default
+
+   dodoc license.terms
+
+   cat >> "${T}"/34${PN} <<- EOF
+   LDPATH="${EPREFIX}/usr/$(get_libdir)/${PN}${MY_PV}/"
+   EOF
+   doenvd "${T}"/34${PN}
+}



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

2018-10-11 Thread Agostino Sarubbo
commit: 3982b498ea87aedf93ee385bc5736180cf53173d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Oct 11 19:51:09 2018 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Oct 11 19:51:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3982b498

app-emulation/libcacard: amd64 stable wrt bug #611348

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="amd64"

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

diff --git a/app-emulation/libcacard/libcacard-2.6.0.ebuild 
b/app-emulation/libcacard/libcacard-2.6.0.ebuild
index e54815fe809..56fb22308f4 100644
--- a/app-emulation/libcacard/libcacard-2.6.0.ebuild
+++ b/app-emulation/libcacard/libcacard-2.6.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://www.spice-space.org/download/libcacard/${P}.tar.xz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="+passthrough static-libs"
 
 RDEPEND=">=dev-libs/nss-3.13



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

2018-10-11 Thread Agostino Sarubbo
commit: f30537ecd54a6a1b44f036c20e63f7822c2365ec
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Oct 11 19:51:15 2018 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Oct 11 19:51:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f30537ec

dev-lang/mujs: amd64 stable wrt bug #646784

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="amd64"

 dev-lang/mujs/mujs-1.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/mujs/mujs-1.0.4.ebuild b/dev-lang/mujs/mujs-1.0.4.ebuild
index d50c055c7ae..372bb08b85d 100644
--- a/dev-lang/mujs/mujs-1.0.4.ebuild
+++ b/dev-lang/mujs/mujs-1.0.4.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://mujs.com/downloads/${P}.tar.xz;
 
 LICENSE="AGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="static-libs"
 
 PATCHES=(



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

2018-10-11 Thread Andreas Sturmlechner
commit: 996ef206e6622304fc75617b991fd7de1323bc83
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 19:46:09 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 19:46:09 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=996ef206

kde-apps/cantor: Add USE markdown, add missing DEPEND

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

 kde-apps/cantor/cantor-.ebuild | 7 +--
 kde-apps/cantor/metadata.xml   | 1 +
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/kde-apps/cantor/cantor-.ebuild 
b/kde-apps/cantor/cantor-.ebuild
index 2c26722eb3..060397632e 100644
--- a/kde-apps/cantor/cantor-.ebuild
+++ b/kde-apps/cantor/cantor-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ inherit kde5 python-r1
 DESCRIPTION="Interface for doing mathematics and scientific computing"
 HOMEPAGE="https://www.kde.org/applications/education/cantor 
https://edu.kde.org/cantor/;
 KEYWORDS=""
-IUSE="+analitza julia lua postscript python qalculate R"
+IUSE="+analitza julia lua markdown postscript python qalculate R"
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
@@ -35,6 +35,7 @@ DEPEND="
$(add_frameworks_dep ktextwidgets)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kxmlgui)
+   $(add_frameworks_dep syntax-highlighting)
$(add_qt_dep qtgui)
$(add_qt_dep qtprintsupport)
$(add_qt_dep qtsvg)
@@ -44,6 +45,7 @@ DEPEND="
analitza? ( $(add_kdeapps_dep analitza) )
julia? ( dev-lang/julia )
lua? ( dev-lang/luajit:2 )
+   markdown? ( >=app-text/discount-2.2.2 )
qalculate? (
sci-libs/cln
sci-libs/libqalculate:=
@@ -98,6 +100,7 @@ src_configure() {
$(cmake-utils_use_find_package analitza Analitza5)
$(cmake-utils_use_find_package julia Julia)
$(cmake-utils_use_find_package lua LuaJIT)
+   $(cmake-utils_use_find_package markdown Discount)
$(cmake-utils_use_find_package postscript LibSpectre)
$(cmake-utils_use_find_package python PythonLibs)
$(cmake-utils_use_find_package qalculate Qalculate)

diff --git a/kde-apps/cantor/metadata.xml b/kde-apps/cantor/metadata.xml
index 20e3a5914a..23b2f303ad 100644
--- a/kde-apps/cantor/metadata.xml
+++ b/kde-apps/cantor/metadata.xml
@@ -9,6 +9,7 @@
Enable kde-apps/analitza 
backend support
Enable dev-lang/julia backend 
support
Enable sci-libs/libqalculate 
backend support
+   Enable Markdown support via 
app-text/discount
Enable dev-lang/R backend 
support

 



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

2018-10-11 Thread Andreas Sturmlechner
commit: 1c8420509364a6ccc6531bda0496d4404efe61c0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 19:33:10 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 19:33:10 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=1c842050

kde-plasma/discover: New package

Bug: https://bugs.gentoo.org/647418
Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 kde-plasma/discover/discover-5.14.0.ebuild   | 47 
 kde-plasma/discover/discover-5.14.49..ebuild | 47 
 kde-plasma/discover/discover-.ebuild | 47 
 kde-plasma/discover/metadata.xml | 11 ++
 4 files changed, 152 insertions(+)

diff --git a/kde-plasma/discover/discover-5.14.0.ebuild 
b/kde-plasma/discover/discover-5.14.0.ebuild
new file mode 100644
index 00..14966180f4
--- /dev/null
+++ b/kde-plasma/discover/discover-5.14.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_TEST="forceoptional"
+inherit kde5
+
+DESCRIPTION="KDE Plasma resources management GUI"
+HOMEPAGE="https://cgit.kde.org/bluedevil.git;
+KEYWORDS="~amd64"
+IUSE="firmware"
+
+DEPEND="
+   $(add_frameworks_dep attica)
+   $(add_frameworks_dep karchive)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kitemmodels)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kirigami)
+   $(add_frameworks_dep knewstuff)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep kxmlgui)
+   $(add_qt_dep qtconcurrent)
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtdeclarative)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtnetwork)
+   $(add_qt_dep qtwidgets)
+   firmware? ( sys-apps/fwupd )
+"
+#  $(add_frameworks_dep kconfigwidgets)
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_FIND_PACKAGE_packagekitqt5=OFF
+   -DCMAKE_FIND_PACKAGE_AppStreamQt=OFF
+   $(cmake-utils_use_find_package firmware LIBFWUPD)
+   )
+
+   kde5_src_configure
+}

diff --git a/kde-plasma/discover/discover-5.14.49..ebuild 
b/kde-plasma/discover/discover-5.14.49..ebuild
new file mode 100644
index 00..602d92fe61
--- /dev/null
+++ b/kde-plasma/discover/discover-5.14.49..ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_TEST="forceoptional"
+inherit kde5
+
+DESCRIPTION="KDE Plasma resources management GUI"
+HOMEPAGE="https://cgit.kde.org/bluedevil.git;
+KEYWORDS=""
+IUSE="firmware"
+
+DEPEND="
+   $(add_frameworks_dep attica)
+   $(add_frameworks_dep karchive)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kitemmodels)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kirigami)
+   $(add_frameworks_dep knewstuff)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep kxmlgui)
+   $(add_qt_dep qtconcurrent)
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtdeclarative)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtnetwork)
+   $(add_qt_dep qtwidgets)
+   firmware? ( sys-apps/fwupd )
+"
+#  $(add_frameworks_dep kconfigwidgets)
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_FIND_PACKAGE_packagekitqt5=OFF
+   -DCMAKE_FIND_PACKAGE_AppStreamQt=OFF
+   $(cmake-utils_use_find_package firmware LIBFWUPD)
+   )
+
+   kde5_src_configure
+}

diff --git a/kde-plasma/discover/discover-.ebuild 
b/kde-plasma/discover/discover-.ebuild
new file mode 100644
index 00..602d92fe61
--- /dev/null
+++ b/kde-plasma/discover/discover-.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_TEST="forceoptional"
+inherit kde5
+
+DESCRIPTION="KDE Plasma resources management GUI"
+HOMEPAGE="https://cgit.kde.org/bluedevil.git;
+KEYWORDS=""
+IUSE="firmware"
+
+DEPEND="
+   $(add_frameworks_dep attica)
+   $(add_frameworks_dep karchive)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kitemmodels)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kirigami)
+   $(add_frameworks_dep knewstuff)

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

2018-10-11 Thread Andreas Sturmlechner
commit: 3a2ee5e8d82efac6eaa2f590fc56f60f05dabf42
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 19:36:13 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 19:36:13 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=3a2ee5e8

Documentation: Add kde-plasma/discover to KDE Plasma 5.14

 Documentation/package.accept_keywords/kde-plasma-5.14.keywords | 1 +
 Documentation/package.mask/kde-plasma-5.14 | 1 +
 Documentation/package.unmask/kde-plasma-5.14   | 1 +
 3 files changed, 3 insertions(+)

diff --git a/Documentation/package.accept_keywords/kde-plasma-5.14.keywords 
b/Documentation/package.accept_keywords/kde-plasma-5.14.keywords
index f847f39623..2f88846bd6 100644
--- a/Documentation/package.accept_keywords/kde-plasma-5.14.keywords
+++ b/Documentation/package.accept_keywords/kde-plasma-5.14.keywords
@@ -6,6 +6,7 @@
 

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

2018-10-11 Thread Andreas Sturmlechner
commit: 1bb7f9335c1b2d34f853015254c0f6fafe247a97
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 19:34:56 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 19:34:56 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=1bb7f933

sets: Add kde-plasma/discover to kde-plasma-5.14

 sets/kde-plasma-5.14 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sets/kde-plasma-5.14 b/sets/kde-plasma-5.14
index 6f3d7acbb1..db364d3168 100644
--- a/sets/kde-plasma-5.14
+++ b/sets/kde-plasma-5.14
@@ -3,6 +3,7 @@
 

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

2018-10-11 Thread Johannes Huber
commit: ba33d868a4661b550d0146ec679191d2d48d5ca7
Author: Johannes Huber  gentoo  org>
AuthorDate: Thu Oct 11 19:14:42 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Thu Oct 11 19:14:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba33d868

x11-misc/i3lock: Fix src_prepare

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

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

diff --git a/x11-misc/i3lock/i3lock-2.11.ebuild 
b/x11-misc/i3lock/i3lock-2.11.ebuild
index 54d9140d574..23ee3e54a4a 100644
--- a/x11-misc/i3lock/i3lock-2.11.ebuild
+++ b/x11-misc/i3lock/i3lock-2.11.ebuild
@@ -34,7 +34,7 @@ src_prepare() {
 
echo ${PV} > I3LOCK_VERSION
 
-   sed -i -e 's:login:system-auth:' ${PN}.pam || die
+   sed -i -e 's:login:system-auth:' pam/${PN} || die
 
eautoreconf
 



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

2018-10-11 Thread Andreas Sturmlechner
commit: eeb7b7910a6df1e61720aa3cbb930e2547acbd57
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 17:53:43 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 17:55:11 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=eeb7b791

kde5-functions.eclass: Sync with Gentoo ebuild repository

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 eclass/kde5-functions.eclass | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index dc0123f863..95a4dff9aa 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -38,8 +38,7 @@ case ${CATEGORY} in
[[ ${KDE_BUILD_TYPE} = live ]] && : ${FRAMEWORKS_MINIMAL:=}
;;
kde-plasma)
-   [[ ${PV} = 5.12* ]] && : ${QT_MINIMAL:=5.9.4}
-   [[ ${PV} = 5.13.?? || ${PV} = 5.14* ]] && : 
${FRAMEWORKS_MINIMAL:=5.50.0}
+   [[ ${PV} = 5.12* ]] && : ${QT_MINIMAL:=5.9.6}
if [[ ${KDE_BUILD_TYPE} = live && ${PV} != 5.??.49* ]]; then
: ${FRAMEWORKS_MINIMAL:=}
fi
@@ -47,7 +46,6 @@ case ${CATEGORY} in
;;
kde-apps)
[[ ${PV} = 18.04.3 ]] && : ${FRAMEWORKS_MINIMAL:=5.46.0}
-   : ${FRAMEWORKS_MINIMAL:=5.50.0}
;;
 esac
 
@@ -59,7 +57,7 @@ esac
 # @ECLASS-VARIABLE: FRAMEWORKS_MINIMAL
 # @DESCRIPTION:
 # Minimum version of Frameworks to require. This affects add_frameworks_dep.
-: ${FRAMEWORKS_MINIMAL:=5.46.0}
+: ${FRAMEWORKS_MINIMAL:=5.50.0}
 
 # @ECLASS-VARIABLE: PLASMA_MINIMAL
 # @DESCRIPTION:
@@ -69,7 +67,7 @@ esac
 # @ECLASS-VARIABLE: KDE_APPS_MINIMAL
 # @DESCRIPTION:
 # Minimum version of KDE Applications to require. This affects add_kdeapps_dep.
-: ${KDE_APPS_MINIMAL:=17.12.3}
+: ${KDE_APPS_MINIMAL:=18.04.3}
 
 # @ECLASS-VARIABLE: KDE_GCC_MINIMAL
 # @DEFAULT_UNSET



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

2018-10-11 Thread Andreas Sturmlechner
commit: 5b7f166da756bba76336046b694829f4497b53fe
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:56:19 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 19:02:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b7f166d

dev-libs/flatbuffers: Drop old

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

 dev-libs/flatbuffers/Manifest|  2 --
 dev-libs/flatbuffers/flatbuffers-1.8.0-r1.ebuild | 32 
 dev-libs/flatbuffers/flatbuffers-1.9.0.ebuild| 32 
 3 files changed, 66 deletions(-)

diff --git a/dev-libs/flatbuffers/Manifest b/dev-libs/flatbuffers/Manifest
index 42ce79e3025..af18d8e77c4 100644
--- a/dev-libs/flatbuffers/Manifest
+++ b/dev-libs/flatbuffers/Manifest
@@ -1,3 +1 @@
 DIST flatbuffers-1.10.0.tar.gz 817750 BLAKE2B 
1896b01afbdb8527836fa684980169890b1d5f1213d64cc88310f819c5fe7bc2a7e0a87e1abc2565ca165a0406dee9c814af382d2c8f08718ae5d9173530f98a
 SHA512 
b8382c8e9a45d6aca83270e93704b9ef2938e4ef9bb5165edbd8f286329e86353037ad6e54a99fd3d70b0c893d06cfd8766e00f05497e69be4b9e6c0506133d2
-DIST flatbuffers-1.8.0.tar.gz 616362 BLAKE2B 
545b568fbc1671005c351ba255f9dc2b5f97b618eae13bc74b717d1e08875e465a0afd3965b35ec8243c1dc80223fdab7f15abbfb4196a129700e4a1532a8965
 SHA512 
8f6c84caa6456418fc751ea9de456dd37378b3239d1a41d2205140e7b19a5b8b2e342a22dc8d7fdd0c36878455e9d7401cc6438d3b771f7875e8fcfe7bbd52f1
-DIST flatbuffers-1.9.0.tar.gz 681752 BLAKE2B 
7886895f79ad5b8b62c4acb479d60a6fe16226a1a9daadf2c457189b7a3381676ba9dd3f8e2af5ebd5f2d78c6ac37d9d83de88ee08b566fd4e4507ecdb887938
 SHA512 
0ba07dbe5b2fde1d0a6e14ee26ee2816062541d934eda204b846a30c019362f2626761b628c900293928b9b546dba8ca477c13182e022c3e0e0a142fd67f0696

diff --git a/dev-libs/flatbuffers/flatbuffers-1.8.0-r1.ebuild 
b/dev-libs/flatbuffers/flatbuffers-1.8.0-r1.ebuild
deleted file mode 100644
index 4a387f3894c..000
--- a/dev-libs/flatbuffers/flatbuffers-1.8.0-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils flag-o-matic
-
-DESCRIPTION="Memory efficient serialization library"
-HOMEPAGE="https://google.github.io/flatbuffers/;
-SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="static-libs test"
-
-src_configure() {
-   append-cppflags -std=c++11
-
-   local mycmakeargs=(
-   -DFLATBUFFERS_BUILD_FLATLIB=$(usex static-libs)
-   -DFLATBUFFERS_BUILD_SHAREDLIB=ON
-   -DFLATBUFFERS_BUILD_TESTS=$(usex test)
-   )
-
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-   dobin "${CMAKE_BUILD_DIR}"/flatc
-}

diff --git a/dev-libs/flatbuffers/flatbuffers-1.9.0.ebuild 
b/dev-libs/flatbuffers/flatbuffers-1.9.0.ebuild
deleted file mode 100644
index 4a387f3894c..000
--- a/dev-libs/flatbuffers/flatbuffers-1.9.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils flag-o-matic
-
-DESCRIPTION="Memory efficient serialization library"
-HOMEPAGE="https://google.github.io/flatbuffers/;
-SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="static-libs test"
-
-src_configure() {
-   append-cppflags -std=c++11
-
-   local mycmakeargs=(
-   -DFLATBUFFERS_BUILD_FLATLIB=$(usex static-libs)
-   -DFLATBUFFERS_BUILD_SHAREDLIB=ON
-   -DFLATBUFFERS_BUILD_TESTS=$(usex test)
-   )
-
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-   dobin "${CMAKE_BUILD_DIR}"/flatc
-}



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

2018-10-11 Thread Andreas Sturmlechner
commit: a7b6467af76565b053958ef0dc10e15f4021a01d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:53:32 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 19:02:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7b6467a

dev-libs/sink: Drop old

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

 dev-libs/sink/Manifest  |  1 -
 dev-libs/sink/sink-0.5.0.ebuild | 51 -
 2 files changed, 52 deletions(-)

diff --git a/dev-libs/sink/Manifest b/dev-libs/sink/Manifest
index 66068870c71..25227f56723 100644
--- a/dev-libs/sink/Manifest
+++ b/dev-libs/sink/Manifest
@@ -1,2 +1 @@
-DIST sink-0.5.0.tar.gz 330203 BLAKE2B 
5b0448dfb984c1aa4bdb913f8ce5e5e4e3f1a6ee33d840ed3d9fdf9e0ea6003a928970d2e6dc25e824241768da9abed7dce31ef857e4986990aad16e7aecd667
 SHA512 
e47f3d99b934abb184a5f8293f1a092fccabe0bb550573cd8c35918471a4caa94eaaec0361c43376c93cdb480612dd0f78626d6649077f777c58c5d4389f
 DIST sink-0.7.0.tar.gz 383090 BLAKE2B 
b853609889ead6f623c7288b9dfe8dba0388dc0d5e8f28d9967fa9be1d78b10bafd9d4674f11355bfe60506843d2abe033149c448ff293329db558ed00fef18b
 SHA512 
591838cb9c76d89c1794b94b02bff3d67155e1f27ae32b7ac9369d15aa109130c7792f30e74b61009765e7b7cb78141bf5e3c93304d814bce22bf91059339fd0

diff --git a/dev-libs/sink/sink-0.5.0.ebuild b/dev-libs/sink/sink-0.5.0.ebuild
deleted file mode 100644
index d83a654f28b..000
--- a/dev-libs/sink/sink-0.5.0.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
-
-KDE_TEST="false" # build breaks otherwise. tests not isolated.
-inherit kde5
-
-DESCRIPTION="A data access layer handling synchronization, caching and 
indexing"
-SRC_URI="https://github.com/KDE/sink/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64"
-IUSE=""
-
-# qtgui is bogus but is required because something else in the deptree
-# uses it as a public dependency but doesn't search for it properly
-RDEPEND="
-   $(add_frameworks_dep kcoreaddons)
-   $(add_kdeapps_dep kcontacts)
-   $(add_kdeapps_dep kmime)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   dev-db/lmdb:=
-   dev-libs/flatbuffers
-   dev-libs/kasync
-   net-libs/kdav2
-   net-libs/kimap2
-   net-misc/curl
-   sys-libs/readline:0=
-"
-DEPEND="${RDEPEND}
-   $(add_qt_dep qtconcurrent)
-"
-
-# fails to build
-RESTRICT+=" test"
-
-src_prepare() {
-   kde5_src_prepare
-   # FIXME: sink is useless without its 'examples'. Workaround our eclass
-   sed -i -e "/add_subdirectory(examples)/ s/#DONOTCOMPILE //" \
-   CMakeLists.txt || die "Failed to fix CMakeLists.txt"
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_Libgit2=ON
-   )
-   kde5_src_configure
-}



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

2018-10-11 Thread Andreas Sturmlechner
commit: cef38cfeb43d99bdcbbe725a2a16cf222c8aee91
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:46:52 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 19:02:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cef38cfe

net-p2p/ktorrent: Drop 5.1.0

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

 net-p2p/ktorrent/Manifest  |   1 -
 net-p2p/ktorrent/ktorrent-5.1.0.ebuild | 108 -
 2 files changed, 109 deletions(-)

diff --git a/net-p2p/ktorrent/Manifest b/net-p2p/ktorrent/Manifest
index 01fb39595d9..8b3e8dde4db 100644
--- a/net-p2p/ktorrent/Manifest
+++ b/net-p2p/ktorrent/Manifest
@@ -1,2 +1 @@
-DIST ktorrent-5.1.0.tar.xz 2046916 BLAKE2B 
865004b84d649774420e2bd0087c416c5de4df40dfe5800ec539049001d93f66925025780987060ad09e1ba2a20045bd6d92c9202c98c28ec68d87758a88af74
 SHA512 
7bfe3a04a2b0f62d68b41c946af34e9f6ead6aa4ff7818a9c0ce2e83629d311e9e9be5fb1689065ce2601c43bd576b27d8c6946b845d4cdf5fa6362d53e8dd25
 DIST ktorrent-5.1.1.tar.xz 2049392 BLAKE2B 
09ad841e1b6d7f332b19e2a660130b1f2b998cd6839614800cde7c99c8ec7f119f2adbdc3d9e06c8525e2dde534d73dab521c7df1d01b2fd0eb6b11fbb868d8f
 SHA512 
bbe744853018380e30efc6ef95916a9b6f0ebec812d70d7970e5e7183d860d147b0693dd0107b146a5987aa27f30cd335fad73c8967839d53eee1c5b63a53c06

diff --git a/net-p2p/ktorrent/ktorrent-5.1.0.ebuild 
b/net-p2p/ktorrent/ktorrent-5.1.0.ebuild
deleted file mode 100644
index 567c2e977b4..000
--- a/net-p2p/ktorrent/ktorrent-5.1.0.ebuild
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="optional"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="Powerful BitTorrent client based on KDE Frameworks"
-HOMEPAGE="https://www.kde.org/applications/internet/ktorrent/;
-SRC_URI="mirror://kde/stable/${PN}/${PV/%.0}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-KEYWORDS="amd64 x86"
-IUSE="+bwscheduler +downloadorder +infowidget +ipfilter +kross +logviewer 
+magnetgenerator
-+mediaplayer rss +scanfolder +search +shutdown +stats +upnp +zeroconf"
-
-COMMON_DEPEND="
-   $(add_frameworks_dep kcmutils)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep solid)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   =net-libs/libktorrent-2.1*:5
-   infowidget? ( dev-libs/geoip )
-   kross? (
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep kross)
-   )
-   mediaplayer? (
-   media-libs/phonon[qt5(+)]
-   >=media-libs/taglib-1.5
-   )
-   rss? (
-   $(add_frameworks_dep kdewebkit)
-   $(add_kdeapps_dep syndication)
-   )
-   search? (
-   $(add_frameworks_dep kdewebkit)
-   $(add_qt_dep qtwebkit)
-   )
-   shutdown? ( $(add_plasma_dep plasma-workspace) )
-   stats? ( $(add_frameworks_dep kplotting) )
-   upnp? ( $(add_frameworks_dep kcompletion) )
-   zeroconf? ( $(add_frameworks_dep kdnssd) )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-libs/boost
-   sys-devel/gettext
-"
-RDEPEND="${COMMON_DEPEND}
-   ipfilter? (
-   app-arch/bzip2
-   app-arch/unzip
-   $(add_frameworks_dep ktextwidgets)
-   $(add_kdeapps_dep kio-extras)
-   )
-   !net-p2p/ktorrent:4
-"
-
-PATCHES=(
-   "${FILESDIR}/${P}-qt-5.11.patch"
-   "${FILESDIR}/${P}-cmake-3.11.patch" #650808
-)
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_BWSCHEDULER_PLUGIN=$(usex bwscheduler)
-   -DENABLE_DOWNLOADORDER_PLUGIN=$(usex downloadorder)
-   -DENABLE_INFOWIDGET_PLUGIN=$(usex infowidget)
-   -DWITH_SYSTEM_GEOIP=$(usex infowidget)
-   -DENABLE_IPFILTER_PLUGIN=$(usex ipfilter)
-   -DENABLE_SCRIPTING_PLUGIN=$(usex kross)
-   -DENABLE_LOGVIEWER_PLUGIN=$(usex logviewer)
-   -DENABLE_MAGNETGENERATOR_PLUGIN=$(usex magnetgenerator)
-   -DENABLE_MEDIAPLAYER_PLUGIN=$(usex mediaplayer)
-   $(cmake-utils_use_find_package rss 

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

2018-10-11 Thread Andreas Sturmlechner
commit: e56243ef3312751f0a85f20606dce3b9af0f224d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:49:00 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 19:02:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e56243ef

mail-client/kube: 0.7.0 version bump

Closes: https://bugs.gentoo.org/664810
Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 mail-client/kube/Manifest  |  1 +
 mail-client/kube/kube-0.7.0.ebuild | 47 ++
 2 files changed, 48 insertions(+)

diff --git a/mail-client/kube/Manifest b/mail-client/kube/Manifest
index e4a92717f29..ef3638468a2 100644
--- a/mail-client/kube/Manifest
+++ b/mail-client/kube/Manifest
@@ -1 +1,2 @@
 DIST kube-0.5.0.tar.gz 990978 BLAKE2B 
7bdabbe89e81ab26465f7e3d8ad769b4b07fccb09bdec5a9cd905eec89de7b25a0165ec1f1b916c668cf50d9f2e889f9763bddfe49c4223b167bf69a61bd5658
 SHA512 
90579ad21b755ff151bfed362f389fdfa66185f92a8fc72b7c9eb4e0108d97a8fdfbbd7a07f81a5c6d6cdcdf79255c3e614bfd43961984863866de8f13a21d28
+DIST kube-0.7.0.tar.gz 1073502 BLAKE2B 
0636167ed1717b8e3eed8e82b805b3bf2de0131365d5f72a15c85f2eaff7c1fd4c9b27a1afc1ecadcd6276ed9307403533ee335b1b93019efb402f2f0b23d303
 SHA512 
0399eba9c39b1d35be00c502c84cb7e903ab3f23b0b9dffd154e8fb2c071d8bdfdd16b606c66e5e7d52c5440a60008771d15d8e6abf866df86d2bb3733f34deb

diff --git a/mail-client/kube/kube-0.7.0.ebuild 
b/mail-client/kube/kube-0.7.0.ebuild
new file mode 100644
index 000..f1a92d59b07
--- /dev/null
+++ b/mail-client/kube/kube-0.7.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_TEST="forceoptional-recursive"
+inherit kde5
+
+DESCRIPTION="A mail client by KDE"
+HOMEPAGE="https://kube.kde.org/;
+SRC_URI="https://github.com/KDE/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   $(add_frameworks_dep breeze-icons)
+   $(add_frameworks_dep kcodecs)
+   $(add_kdeapps_dep kcontacts)
+   $(add_kdeapps_dep kmime)
+   $(add_qt_dep qtdeclarative)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtnetwork)
+   $(add_qt_dep qtquickcontrols)
+   $(add_qt_dep qtquickcontrols2)
+   $(add_qt_dep qttest)
+   $(add_qt_dep qtwebengine 'widgets')
+   $(add_qt_dep qtwidgets)
+   >=app-crypt/gpgme-1.7.1:=[cxx,qt5]
+   dev-libs/kasync
+   >=dev-libs/sink-0.7.0
+"
+DEPEND="${RDEPEND}
+   test? ( $(add_qt_dep qttest) )
+"
+
+RESTRICT+=" test"
+
+src_prepare() {
+   kde5_src_prepare
+
+   if ! use test; then
+   sed \
+   -e "/Qt5::Test/s/^/#DISABLED/" \
+   -e "/set(BUILD_TESTING ON)/s/^/#DISABLED /" \
+   -e "/domain\/modeltest.cpp/s/^/#DISABLED /" \
+   -i framework/src/CMakeLists.txt || die
+   fi
+}



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

2018-10-11 Thread Andreas Sturmlechner
commit: 49b1de931b08df053762f5e054da27a9e2c10fbf
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:49:17 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 19:02:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49b1de93

mail-client/kube: Drop old

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

 mail-client/kube/Manifest |  1 -
 mail-client/kube/kube-0.5.0-r2.ebuild | 47 ---
 2 files changed, 48 deletions(-)

diff --git a/mail-client/kube/Manifest b/mail-client/kube/Manifest
index ef3638468a2..38b60949885 100644
--- a/mail-client/kube/Manifest
+++ b/mail-client/kube/Manifest
@@ -1,2 +1 @@
-DIST kube-0.5.0.tar.gz 990978 BLAKE2B 
7bdabbe89e81ab26465f7e3d8ad769b4b07fccb09bdec5a9cd905eec89de7b25a0165ec1f1b916c668cf50d9f2e889f9763bddfe49c4223b167bf69a61bd5658
 SHA512 
90579ad21b755ff151bfed362f389fdfa66185f92a8fc72b7c9eb4e0108d97a8fdfbbd7a07f81a5c6d6cdcdf79255c3e614bfd43961984863866de8f13a21d28
 DIST kube-0.7.0.tar.gz 1073502 BLAKE2B 
0636167ed1717b8e3eed8e82b805b3bf2de0131365d5f72a15c85f2eaff7c1fd4c9b27a1afc1ecadcd6276ed9307403533ee335b1b93019efb402f2f0b23d303
 SHA512 
0399eba9c39b1d35be00c502c84cb7e903ab3f23b0b9dffd154e8fb2c071d8bdfdd16b606c66e5e7d52c5440a60008771d15d8e6abf866df86d2bb3733f34deb

diff --git a/mail-client/kube/kube-0.5.0-r2.ebuild 
b/mail-client/kube/kube-0.5.0-r2.ebuild
deleted file mode 100644
index 99eab6a5cbd..000
--- a/mail-client/kube/kube-0.5.0-r2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_TEST="forceoptional-recursive"
-inherit kde5
-
-DESCRIPTION="A mail client by KDE"
-HOMEPAGE="https://kube.kde.org/;
-SRC_URI="https://github.com/KDE/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   $(add_frameworks_dep breeze-icons)
-   $(add_frameworks_dep kcodecs)
-   $(add_kdeapps_dep kcontacts)
-   $(add_kdeapps_dep kmime)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtquickcontrols)
-   $(add_qt_dep qtquickcontrols2)
-   $(add_qt_dep qttest)
-   $(add_qt_dep qtwebengine 'widgets')
-   $(add_qt_dep qtwidgets)
-   >=app-crypt/gpgme-1.7.1:=[cxx,qt5]
-   dev-libs/kasync
-   >=dev-libs/sink-0.5.0
-"
-DEPEND="${RDEPEND}
-   test? ( $(add_qt_dep qttest) )
-"
-
-RESTRICT+=" test"
-
-src_prepare() {
-   kde5_src_prepare
-
-   if ! use test; then
-   sed \
-   -e "/Qt5::Test/s/^/#DISABLED/" \
-   -e "/set(BUILD_TESTING ON)/s/^/#DISABLED /" \
-   -e "/domain\/modeltest.cpp/s/^/#DISABLED /" \
-   -i framework/src/CMakeLists.txt || die
-   fi
-}



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

2018-10-11 Thread Andreas Sturmlechner
commit: 8fff8c25875b1652304e6f527c3b619b622a29aa
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:53:22 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 19:02:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fff8c25

dev-libs/sink: 0.7.0 version bump

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

 dev-libs/sink/Manifest  |  1 +
 dev-libs/sink/sink-0.7.0.ebuild | 53 +
 2 files changed, 54 insertions(+)

diff --git a/dev-libs/sink/Manifest b/dev-libs/sink/Manifest
index 1bbca381387..66068870c71 100644
--- a/dev-libs/sink/Manifest
+++ b/dev-libs/sink/Manifest
@@ -1 +1,2 @@
 DIST sink-0.5.0.tar.gz 330203 BLAKE2B 
5b0448dfb984c1aa4bdb913f8ce5e5e4e3f1a6ee33d840ed3d9fdf9e0ea6003a928970d2e6dc25e824241768da9abed7dce31ef857e4986990aad16e7aecd667
 SHA512 
e47f3d99b934abb184a5f8293f1a092fccabe0bb550573cd8c35918471a4caa94eaaec0361c43376c93cdb480612dd0f78626d6649077f777c58c5d4389f
+DIST sink-0.7.0.tar.gz 383090 BLAKE2B 
b853609889ead6f623c7288b9dfe8dba0388dc0d5e8f28d9967fa9be1d78b10bafd9d4674f11355bfe60506843d2abe033149c448ff293329db558ed00fef18b
 SHA512 
591838cb9c76d89c1794b94b02bff3d67155e1f27ae32b7ac9369d15aa109130c7792f30e74b61009765e7b7cb78141bf5e3c93304d814bce22bf91059339fd0

diff --git a/dev-libs/sink/sink-0.7.0.ebuild b/dev-libs/sink/sink-0.7.0.ebuild
new file mode 100644
index 000..c2e8a3d3fa4
--- /dev/null
+++ b/dev-libs/sink/sink-0.7.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_TEST="false" # build breaks otherwise. tests not isolated.
+inherit kde5
+
+DESCRIPTION="A data access layer handling synchronization, caching and 
indexing"
+SRC_URI="https://github.com/KDE/sink/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2+"
+KEYWORDS="~amd64"
+IUSE=""
+
+# qtgui is bogus but is required because something else in the deptree
+# uses it as a public dependency but doesn't search for it properly
+RDEPEND="
+   $(add_frameworks_dep kcoreaddons)
+   $(add_kdeapps_dep kcalcore)
+   $(add_kdeapps_dep kcontacts)
+   $(add_kdeapps_dep kmime)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtnetwork)
+   dev-db/lmdb:=
+   dev-libs/flatbuffers
+   dev-libs/kasync
+   >=dev-libs/xapian-1.4.4:0=
+   net-libs/kdav2
+   net-libs/kimap2
+   net-misc/curl
+   sys-libs/readline:0=
+"
+DEPEND="${RDEPEND}
+   $(add_qt_dep qtconcurrent)
+"
+
+# fails to build
+RESTRICT+=" test"
+
+src_prepare() {
+   kde5_src_prepare
+   # FIXME: sink is useless without its 'examples'. Workaround our eclass
+   sed -i -e "/add_subdirectory(examples)/ s/#DONOTCOMPILE //" \
+   CMakeLists.txt || die "Failed to fix CMakeLists.txt"
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_DISABLE_FIND_PACKAGE_Libgit2=ON
+   )
+   kde5_src_configure
+}



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

2018-10-11 Thread Michał Górny
commit: f14bb737f623213056a24a913a1e98353597c91d
Author: Graeme Lawes  gmail  com>
AuthorDate: Thu Oct  4 14:57:45 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 11 18:52:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f14bb737

sys-cluster/teleport: add v3.0.0

Signed-off-by: Graeme Lawes  gmail.com>
Signed-off-by: Michał Górny  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/10060

 sys-cluster/teleport/Manifest  |   1 +
 sys-cluster/teleport/files/teleport.yaml   | 240 +
 sys-cluster/teleport/teleport-3.0.0.ebuild |  49 ++
 3 files changed, 290 insertions(+)

diff --git a/sys-cluster/teleport/Manifest b/sys-cluster/teleport/Manifest
index 4297926a089..648071ea426 100644
--- a/sys-cluster/teleport/Manifest
+++ b/sys-cluster/teleport/Manifest
@@ -1,2 +1,3 @@
 DIST teleport-2.6.7.tar.gz 16655508 BLAKE2B 
a020ab999b7503cb7aec54ed81532baf9d08b98000f2c659f63859d89f7f2b5fb311c41d6fcafb7d9bf72ea1c97eecfc6ac621b7c90d74f5afe2717edb8b0402
 SHA512 
45002dcf7b99108ca6fffae94d6608188eb9b0bea05cd14068618bfb11c496cad5546e261f349fee70f2acb574e7fc44093683dd991001e01406da6982c5c4c3
 DIST teleport-2.7.1.tar.gz 18222601 BLAKE2B 
86852a1c7f0b083d8fc46bb2e51e287f0d54ca8bd1a6306e21ad325b6f1487682f853eb313a1f6f6fc4dc4d25d93e909ed65dad6d00eb37f878904d6df30f98c
 SHA512 
703056eb99aa91062c8d9cfa7852e3573c8968ce9dea0ff5b076d5225caf8d67b965948a47785cdc7e4341993ef3ed005677859d37653f7d22c05cb2db51efd7
+DIST teleport-3.0.0.tar.gz 22365657 BLAKE2B 
a9cfec07ec73970b1050c51819ef4820be95fcd94dce0ffbb62deca38af28a944929c83a9ed2b443a93eb21f55d0cac024b66acf81c5d6939ba8e6b6ba40438a
 SHA512 
8cba0b7471bebe9cdac07b44f17c99b7b323061f310ef0e61a3ebe1c4ea2ca2b1c853177528c4725a83366406e8b1a5aba23ecdd5fba7290bd6cab74ada3340d

diff --git a/sys-cluster/teleport/files/teleport.yaml 
b/sys-cluster/teleport/files/teleport.yaml
new file mode 100644
index 000..0ab548c1a46
--- /dev/null
+++ b/sys-cluster/teleport/files/teleport.yaml
@@ -0,0 +1,240 @@
+# By default, this file should be stored in /etc/teleport.yaml
+
+# 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 daemon keeps its data. 
+# See "Filesystem Layout" section above for more details.
+data_dir: /var/lib/teleport
+
+# 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
+# 
+# This value can be specified as FQDN e.g. host.example.com
+# advertise_ip: 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 or 
+# a DynamoDB backend if you want to run Teleport in HA configuration.
+storage:
+# By default teleport uses the `data_dir` directory on a local 
filesystem
+type: dir
+
+# Array of locations where the audit log events will be stored. by
+# default they are stored in `/var/lib/teleport/log`
+# audit_events_uri: [file:///var/lib/teleport/log, 
dynamo://events_table_name]
+
+# Use this setting to configure teleport to store the recorded 
sessions in
+# an AWS S3 bucket. see "Using Amazon S3" chapter for more information.
+# audit_sessions_uri: s3://name-of-s3-bucket
+
+# Cipher algorithms that the server supports. This section only needs to be
+# set if you want to override the defaults.
+ciphers:
+  - aes128-ctr
+  - aes192-ctr
+  - aes256-ctr
+  - aes128-...@openssh.com
+
+# Key exchange algorithms that the server supports. This section only needs
+# to be set if you want to override the defaults.
+kex_algos:
+  - curve25519-sha...@libssh.org
+  - ecdh-sha2-nistp256
+  - ecdh-sha2-nistp384
+  - ecdh-sha2-nistp521
+  - diffie-hellman-group14-sha1
+  - diffie-hellman-group1-sha1
+
+# Message authentication code (MAC) algorithms that the server supports.
+# This section only needs to be set if you want to override the defaults.
+mac_algos:
+   

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

2018-10-11 Thread Michał Górny
commit: fa0c17775cb38c262fd74222a7bea12db379dde6
Author: Graeme Lawes  gmail  com>
AuthorDate: Thu Oct  4 00:35:04 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 11 18:52:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa0c1777

sys-cluster/teleport: use files/teleport-2.yaml for config file source

Signed-off-by: Graeme Lawes  gmail.com>
Signed-off-by: Michał Górny  gentoo.org>

 sys-cluster/teleport/files/{teleport.yaml => teleport-2.yaml} | 0
 sys-cluster/teleport/teleport-2.6.7.ebuild| 2 +-
 sys-cluster/teleport/teleport-2.7.1.ebuild| 2 +-
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-cluster/teleport/files/teleport.yaml 
b/sys-cluster/teleport/files/teleport-2.yaml
similarity index 100%
rename from sys-cluster/teleport/files/teleport.yaml
rename to sys-cluster/teleport/files/teleport-2.yaml

diff --git a/sys-cluster/teleport/teleport-2.6.7.ebuild 
b/sys-cluster/teleport/teleport-2.6.7.ebuild
index 4a7a27e42a4..e7bfb7ce040 100644
--- a/sys-cluster/teleport/teleport-2.6.7.ebuild
+++ b/sys-cluster/teleport/teleport-2.6.7.ebuild
@@ -35,7 +35,7 @@ src_install() {
dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport}
 
insinto /etc/${PN}
-   newins "${FILESDIR}"/${PN}.yaml ${PN}.yaml
+   newins "${FILESDIR}"/${PN}-2.yaml ${PN}.yaml
 
newinitd "${FILESDIR}"/${PN}.init.d ${PN}
newconfd "${FILESDIR}"/${PN}.conf.d ${PN}

diff --git a/sys-cluster/teleport/teleport-2.7.1.ebuild 
b/sys-cluster/teleport/teleport-2.7.1.ebuild
index 4a7a27e42a4..e7bfb7ce040 100644
--- a/sys-cluster/teleport/teleport-2.7.1.ebuild
+++ b/sys-cluster/teleport/teleport-2.7.1.ebuild
@@ -35,7 +35,7 @@ src_install() {
dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport}
 
insinto /etc/${PN}
-   newins "${FILESDIR}"/${PN}.yaml ${PN}.yaml
+   newins "${FILESDIR}"/${PN}-2.yaml ${PN}.yaml
 
newinitd "${FILESDIR}"/${PN}.init.d ${PN}
newconfd "${FILESDIR}"/${PN}.conf.d ${PN}



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

2018-10-11 Thread Tobias Klausmann
commit: e41a87c81c0a0d08e4ae537c5fefc7251614b997
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 17:28:22 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 18:48:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e41a87c8

dev-libs/libatomic_ops-7.6.6-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666516
Signed-off-by: Tobias Klausmann  gentoo.org>

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

diff --git a/dev-libs/libatomic_ops/libatomic_ops-7.6.6.ebuild 
b/dev-libs/libatomic_ops/libatomic_ops-7.6.6.ebuild
index eb11eae64c0..7be47542270 100644
--- a/dev-libs/libatomic_ops/libatomic_ops-7.6.6.ebuild
+++ b/dev-libs/libatomic_ops/libatomic_ops-7.6.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/ivmai/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="MIT boehm-gc GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 multilib_src_configure() {



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

2018-10-11 Thread Tobias Klausmann
commit: 377a8677aa2fbe6dc343e2bcba2d4ecfca69
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 17:28:24 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 18:49:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=377a8677

app-text/libspectre-0.2.8-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666828
Signed-off-by: Tobias Klausmann  gentoo.org>

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

diff --git a/app-text/libspectre/libspectre-0.2.8.ebuild 
b/app-text/libspectre/libspectre-0.2.8.ebuild
index df338f5da2d..04c0a3a67d2 100644
--- a/app-text/libspectre/libspectre-0.2.8.ebuild
+++ b/app-text/libspectre/libspectre-0.2.8.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://libspectre.freedesktop.org/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris"
 IUSE="debug doc static-libs"
 
 RDEPEND=">=app-text/ghostscript-gpl-8.62"



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

2018-10-11 Thread Tobias Klausmann
commit: afbc2887cd07406ed89012bbf1448d18a068437f
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 17:28:23 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 18:49:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afbc2887

dev-ruby/rspec-mocks-3.7.0-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666742
Signed-off-by: Tobias Klausmann  gentoo.org>

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

diff --git a/dev-ruby/rspec-mocks/rspec-mocks-3.7.0.ebuild 
b/dev-ruby/rspec-mocks/rspec-mocks-3.7.0.ebuild
index 9d6db9e54ca..eba0948a40a 100644
--- a/dev-ruby/rspec-mocks/rspec-mocks-3.7.0.ebuild
+++ b/dev-ruby/rspec-mocks/rspec-mocks-3.7.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz 
-> ${P}-git.tgz"
 
 LICENSE="MIT"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 SUBVERSION="$(get_version_component_range 1-2)"



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

2018-10-11 Thread Tobias Klausmann
commit: 2d32be8e1bb12b742f1d45e80c0ca17b347a2fd0
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 17:28:23 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 18:49:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d32be8e

app-arch/unrar-5.6.6-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666820
Signed-off-by: Tobias Klausmann  gentoo.org>

 app-arch/unrar/unrar-5.6.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/unrar/unrar-5.6.6.ebuild 
b/app-arch/unrar/unrar-5.6.6.ebuild
index 3b12004604d..f52e105b2d8 100644
--- a/app-arch/unrar/unrar-5.6.6.ebuild
+++ b/app-arch/unrar/unrar-5.6.6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://www.rarlab.com/rar/${MY_PN}-${PV}.tar.gz -> 
${P}.tar.gz"
 LICENSE="unRAR"
 # subslot = soname version
 SLOT="0/5"
-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 ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="!<=app-arch/unrar-gpl-0.0.1_p20080417"



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

2018-10-11 Thread Tobias Klausmann
commit: f67d0ef6e5bbfab1e87d6795868ccb57b0349fbb
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 17:28:22 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 18:48:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f67d0ef6

dev-ruby/rspec-3.7.0-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666742
Signed-off-by: Tobias Klausmann  gentoo.org>

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

diff --git a/dev-ruby/rspec/rspec-3.7.0.ebuild 
b/dev-ruby/rspec/rspec-3.7.0.ebuild
index 526489db1bd..13d20137830 100644
--- a/dev-ruby/rspec/rspec-3.7.0.ebuild
+++ b/dev-ruby/rspec/rspec-3.7.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/rspec/rspec;
 
 LICENSE="MIT"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86"
 IUSE=""
 
 SUBVERSION="$(get_version_component_range 1-2)"



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

2018-10-11 Thread Tobias Klausmann
commit: 64fc7b9706dc1c763fac1d6d68b170578db6f3de
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 17:28:23 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 18:49:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64fc7b97

dev-ruby/rspec-support-3.7.1-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666742
Signed-off-by: Tobias Klausmann  gentoo.org>

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

diff --git a/dev-ruby/rspec-support/rspec-support-3.7.1.ebuild 
b/dev-ruby/rspec-support/rspec-support-3.7.1.ebuild
index b08db986266..72744fdfbfc 100644
--- a/dev-ruby/rspec-support/rspec-support-3.7.1.ebuild
+++ b/dev-ruby/rspec-support/rspec-support-3.7.1.ebuild
@@ -19,7 +19,7 @@ SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz 
-> ${P}-git.tgz"
 
 LICENSE="MIT"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "test? ( >=dev-ruby/rspec-3.7.0:3 dev-ruby/thread_order )"



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

2018-10-11 Thread Tobias Klausmann
commit: 7f2f3421ddac7de36a97bbaa3e2b7f85e681b61c
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 17:28:22 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 18:49:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f2f3421

dev-ruby/rspec-expectations-3.7.0-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666742
Signed-off-by: Tobias Klausmann  gentoo.org>

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

diff --git a/dev-ruby/rspec-expectations/rspec-expectations-3.7.0.ebuild 
b/dev-ruby/rspec-expectations/rspec-expectations-3.7.0.ebuild
index 563a8f718fe..69138fc9f5a 100644
--- a/dev-ruby/rspec-expectations/rspec-expectations-3.7.0.ebuild
+++ b/dev-ruby/rspec-expectations/rspec-expectations-3.7.0.ebuild
@@ -19,7 +19,7 @@ SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz 
-> ${P}-git.tgz"
 
 LICENSE="MIT"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 SUBVERSION="$(get_version_component_range 1-2)"



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

2018-10-11 Thread Tobias Klausmann
commit: 1b6d47f1ca6167d28a7ceaa8ed168600d286b2ad
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 17:28:23 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 18:49:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b6d47f1

app-crypt/pinentry-1.1.0-r2: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666822
Signed-off-by: Tobias Klausmann  gentoo.org>

 app-crypt/pinentry/pinentry-1.1.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/pinentry/pinentry-1.1.0-r2.ebuild 
b/app-crypt/pinentry/pinentry-1.1.0-r2.ebuild
index 7c624a0187c..db37d78439e 100644
--- a/app-crypt/pinentry/pinentry-1.1.0-r2.ebuild
+++ b/app-crypt/pinentry/pinentry-1.1.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="caps emacs gnome-keyring fltk gtk ncurses qt5 static"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-text/docbook-sgml-dtd/

2018-10-11 Thread Tobias Klausmann
commit: 9d684d0941d4c1ae0b0a4cf591270a13b7b82f36
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 17:28:23 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 18:49:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d684d09

app-text/docbook-sgml-dtd-4.5-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666826
Signed-off-by: Tobias Klausmann  gentoo.org>

 app-text/docbook-sgml-dtd/docbook-sgml-dtd-4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/docbook-sgml-dtd/docbook-sgml-dtd-4.5.ebuild 
b/app-text/docbook-sgml-dtd/docbook-sgml-dtd-4.5.ebuild
index 47e9598ab10..39ac0c2231d 100644
--- a/app-text/docbook-sgml-dtd/docbook-sgml-dtd-4.5.ebuild
+++ b/app-text/docbook-sgml-dtd/docbook-sgml-dtd-4.5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.docbook.org/sgml/${PV}/${MY_P}.zip;
 
 LICENSE="docbook"
 SLOT="4.5"
-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 ~x86-macos 
~sparc-solaris ~x64-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~x64-solaris"
 IUSE=""
 
 DEPEND=">=app-arch/unzip-5.41"



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

2018-10-11 Thread Tobias Klausmann
commit: bb80fb14291f2b058efcad3921c3e027535e4b0e
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 17:28:22 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 18:49:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb80fb14

dev-ruby/rspec-core-3.7.1-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666742
Signed-off-by: Tobias Klausmann  gentoo.org>

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

diff --git a/dev-ruby/rspec-core/rspec-core-3.7.1.ebuild 
b/dev-ruby/rspec-core/rspec-core-3.7.1.ebuild
index 742e5d4e0e2..c8977a54f4a 100644
--- a/dev-ruby/rspec-core/rspec-core-3.7.1.ebuild
+++ b/dev-ruby/rspec-core/rspec-core-3.7.1.ebuild
@@ -22,7 +22,7 @@ SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz 
-> ${P}-git.tgz"
 
 LICENSE="MIT"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="highlight"
 
 SUBVERSION="$(get_version_component_range 1-2)"



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

2018-10-11 Thread Andreas Sturmlechner
commit: 9156d6eaa59c22d17577ead3dbab638056c03873
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:43:30 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:44:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9156d6ea

dev-libs/kdiagram: 2.6.1 amd64 stable

Closes: https://bugs.gentoo.org/667312
Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-libs/kdiagram/kdiagram-2.6.1.ebuild 
b/dev-libs/kdiagram/kdiagram-2.6.1.ebuild
index 019b73657cb..2009639a09b 100644
--- a/dev-libs/kdiagram/kdiagram-2.6.1.ebuild
+++ b/dev-libs/kdiagram/kdiagram-2.6.1.ebuild
@@ -16,7 +16,7 @@ IUSE=""
 REQUIRED_USE="test? ( examples )"
 
 if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   KEYWORDS="~amd64 x86"
+   KEYWORDS="amd64 x86"
SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
 fi
 



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

2018-10-11 Thread Andreas Sturmlechner
commit: f3d2dd5aa5153ca6da14df9efd92361f91d6f1ca
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:44:10 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:44:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3d2dd5a

dev-libs/kdiagram: Drop 2.6.0

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

 dev-libs/kdiagram/Manifest  |  1 -
 dev-libs/kdiagram/kdiagram-2.6.0.ebuild | 30 --
 2 files changed, 31 deletions(-)

diff --git a/dev-libs/kdiagram/Manifest b/dev-libs/kdiagram/Manifest
index 927f4bd7ad5..7df13b11de1 100644
--- a/dev-libs/kdiagram/Manifest
+++ b/dev-libs/kdiagram/Manifest
@@ -1,2 +1 @@
-DIST kdiagram-2.6.0.tar.xz 683792 BLAKE2B 
bc6074e4732a2eda4d8b2a321cfc8a2bad0f614c8d6dd48347f3e2f9ec013b2915a9793807b8640ee00cb1e20229741aae1e77abfd9f826016899a4178581f44
 SHA512 
243839e23171f5deafb167e5a05f1a2841f0294c9f7944cd2580c9e72830a7082a84e470da620751bcad4086325747e2308872dc272404540b13d91e4ca3
 DIST kdiagram-2.6.1.tar.xz 674016 BLAKE2B 
323fcc1101f4bba527426923652ee53a1986edff1c7a0d17a478585019c97f731675fa30477064f1e5375ef0a3da27ba1918ee21cf6758ac445ea0d7f1b7611c
 SHA512 
caa1f6f8bffb4b311224edfed115f189fa9c88e4b9d8bc9d4b7bc963c6b8c896813b438ad89fa9e91e4cde2f55ae822cfc7ba559bbdad517c60a037591dc5128

diff --git a/dev-libs/kdiagram/kdiagram-2.6.0.ebuild 
b/dev-libs/kdiagram/kdiagram-2.6.0.ebuild
deleted file mode 100644
index 49fd8352bcb..000
--- a/dev-libs/kdiagram/kdiagram-2.6.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_EXAMPLES="true"
-KDE_TEST="true"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="Powerful libraries (KChart, KGantt) for creating business 
diagrams"
-HOMEPAGE="https://www.kde.org/;
-IUSE=""
-
-REQUIRED_USE="test? ( examples )"
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   KEYWORDS="amd64 x86"
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-fi
-
-RDEPEND="
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtsvg)
-   $(add_qt_dep qtwidgets)
-"
-DEPEND="${RDEPEND}
-   $(add_qt_dep linguist-tools)
-"



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

2018-10-11 Thread Michał Górny
commit: 086e36c12dff193371ce5fe3e54fb9058f1e9d52
Author: Bernd Waibel  gmail  com>
AuthorDate: Sun Sep 30 19:45:39 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 11 18:42:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=086e36c1

media-libs/openexr: bump to version 2.3.0

Closes: https://bugs.gentoo.org/639998
Suggested-by: Jonathan Scruggs  gentoo.org>
Signed-off-by: Bernd Waibel  gmail.com>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Michał Górny  gentoo.org>

 media-libs/openexr/Manifest|  1 +
 .../files/openexr-2.3.0-fix-build-system.patch | 68 +
 media-libs/openexr/openexr-2.3.0.ebuild| 71 ++
 3 files changed, 140 insertions(+)

diff --git a/media-libs/openexr/Manifest b/media-libs/openexr/Manifest
index 12cf82682b5..dee477215a0 100644
--- a/media-libs/openexr/Manifest
+++ b/media-libs/openexr/Manifest
@@ -2,3 +2,4 @@ DIST openexr-1.7.0.tar.gz 13542910 BLAKE2B 
f187aa1b7c703bc912bfc87eb6f9d44f1ed08
 DIST openexr-2.0.1.tar.gz 12609335 BLAKE2B 
25adcf5a679a0419a7ff0ddd29d4d1c5f1c28cd3fd6c81b0a5c0cc63d907e741eaea378f4ebaa9a66afce0349edf7231ebd2bb3e493aee484860c89f05f45960
 SHA512 
b35e3e795496f9d4a56352c907bcffef14ae062b189c4e1df35f3ab08c5e9abf829fa9149db3198d60088fa9633816650011e5f7871e07324801b95549d6695b
 DIST openexr-2.1.0.tar.gz 13680816 BLAKE2B 
2d3cb4e0419160b07f1efe9a853f1d5deeb0499da4f79da201fc5eb1f57102891da666e161b2d8ec43a6f0b6ff6f5c7b92c2baae51a808892691182290192992
 SHA512 
d69924331c3392b8063229391414bb90f16ce317c76cfffe5fe0fcbb25e576f6ace8320b51c2a9987fee912cedd8e69116d4b49ba716b4a5f011131a81815403
 DIST openexr-2.2.0.tar.gz 14489661 BLAKE2B 
fae3c5a255e8bf5121561687e9d704d7de3657eb38295ff96db6ddad240391379a6624483abbe619f80f0979fd9828992d236e55b5014916d4d39d6ff51d0815
 SHA512 
017abbeeb6b814508180721bc8e8940094965c4c55b135a198c6bcb109a04bf7f72e4aee81ee72cb2185fe818a41d892b383e8d2d59f40c673198948cb79279a
+DIST openexr-2.3.0.tar.gz 18412067 BLAKE2B 
c73c4db4e414010ed8cc9f9631f3e8b17f47edf89b4ecb459aa00ff54a316b3bb1489e332bc029e0917ac4ffe7e152082244102029fd375f183da6741788dab7
 SHA512 
003f5bb3bd010be1ad9ff1798643ef711c683c8191625fe9b59070c9cb0c649c277cd506d890c6b239d9cbab80e83e16f1c1d1d74117c916ee3a80e061953123

diff --git a/media-libs/openexr/files/openexr-2.3.0-fix-build-system.patch 
b/media-libs/openexr/files/openexr-2.3.0-fix-build-system.patch
new file mode 100644
index 000..811a7af3875
--- /dev/null
+++ b/media-libs/openexr/files/openexr-2.3.0-fix-build-system.patch
@@ -0,0 +1,68 @@
+diff --git a/configure.ac b/configure.ac
+index 067f9d0..fdbe2f8 100644
+--- a/configure.ac
 b/configure.ac
+@@ -13,8 +13,7 @@ AC_SUBST(OPENEXR_VERSION_API, 
${OPENEXR_VERSION_MAJOR}_${OPENEXR_VERSION_MINOR})
+ AC_CANONICAL_HOST
+ AC_CONFIG_SRCDIR(IlmImfTest/main.cpp)
+ AC_CONFIG_HEADERS([config/OpenEXRConfig.h])
+-AM_INIT_AUTOMAKE(1.6.3)  dnl Require automake 1.6.3 or better
+-AM_MAINTAINER_MODE
++AM_INIT_AUTOMAKE
+ 
+ 
+ LIBTOOL_CURRENT=24
+@@ -28,7 +27,7 @@ AC_PROG_CXX
+ AC_PROG_INSTALL
+ AC_PROG_CC
+ AC_PROG_LN_S
+-AC_PROG_LIBTOOL
++LT_INIT
+ AC_PROG_MAKE_SET
+ 
+ dnl
+@@ -58,8 +57,8 @@ AM_PATH_PKGCONFIG(
+ [ILMBASE])
+ 
+ dnl Define the version string
+-AC_DEFINE_UNQUOTED([OPENEXR_VERSION_STRING], "${VERSION}", [OpenEXR version 
string])
+-AC_DEFINE_UNQUOTED([OPENEXR_PACKAGE_STRING], "${PACKAGE_STRING}", [OpenEXR 
version string])
++AC_DEFINE_UNQUOTED([OPENEXR_VERSION_STRING], ["${VERSION}"], [OpenEXR version 
string])
++AC_DEFINE_UNQUOTED([OPENEXR_PACKAGE_STRING], ["${PACKAGE_STRING}"], [OpenEXR 
version string])
+ AC_DEFINE_UNQUOTED([OPENEXR_VERSION_MAJOR], [${OPENEXR_VERSION_MAJOR}], 
[OpenEXR version string])
+ AC_DEFINE_UNQUOTED([OPENEXR_VERSION_MINOR], [${OPENEXR_VERSION_MINOR}], 
[OpenEXR version string])
+ AC_DEFINE_UNQUOTED([OPENEXR_VERSION_PATCH], [${OPENEXR_VERSION_PATCH}], 
[OpenEXR version string])
+@@ -110,16 +109,7 @@ AC_ARG_ENABLE(threading,
+   [multithread="${enableval}"], [multithread=yes])
+ 
+ AS_IF([test "x${multithread}" != xno], [
+-  ACX_PTHREAD(
+-[
+-  AC_DEFINE(OPENEXR_IMF_HAVE_PTHREAD)
+-  ILMBASE_LIBS="$PTHREAD_LIBS $ILMBASE_LIBS"
+-  ILMBASE_CXXFLAGS="$ILMBASE_CXXFLAGS $PTHREAD_CFLAGS"
+-  CC="$PTHREAD_CC"
+-
+-  AM_POSIX_SEM()
+-],
+-[AC_MSG_ERROR([POSIX thread support required])])
++  AX_PTHREAD
+ 
+   AC_DEFINE([OPENEXR_IMF_HAVE_PTHREAD], [1], [Define if pthreads are 
available])
+ 
+@@ -195,15 +185,6 @@ dnl AC_MSG_RESULT($complete_iomanip)
+ dnl AC_LANG_RESTORE
+ AC_DEFINE([OPENEXR_IMF_HAVE_COMPLETE_IOMANIP], [1], [Define when std::right 
is available])
+ 
+-AC_MSG_CHECKING(for gcc optimization flags)
+-old_cflags=$CFLAGS
+-CFLAGS="$CFLAGS -pipe"
+-AC_TRY_COMPILE([#include ],
+-[ printf ("hello, world"); ],
+-[ EXTRA_OPT_CFLAGS="-pipe"],[ EXTRA_OPT_CFLAGS=""])
+-CFLAGS=$old_cflags
+-AC_MSG_RESULT([$EXTRA_OPT_CFLAGS])
+-
+ 
+ dnl Check 

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

2018-10-11 Thread Michał Górny
commit: 5536d29f8eda56741b434b92f3885434dba7282a
Author: Bernd Waibel  gmail  com>
AuthorDate: Sun Sep 30 19:49:21 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 11 18:42:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5536d29f

dev-python/pyilmbase: bump to version 2.3.0

Remove multilib inherit, python isn't multilib aware
Improve ebuild functions

Closes: https://bugs.gentoo.org/639998
Suggested-by: Jonathan Scruggs  gentoo.org>
Signed-off-by: Bernd Waibel  gmail.com>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pyilmbase/Manifest  |  1 +
 .../files/pyilmbase-2.3.0-fix-build-system.patch   | 48 ++
 .../files/pyilmbase-2.3.0-link-pyimath.patch   | 13 +
 dev-python/pyilmbase/pyilmbase-2.3.0.ebuild| 59 ++
 4 files changed, 121 insertions(+)

diff --git a/dev-python/pyilmbase/Manifest b/dev-python/pyilmbase/Manifest
index d7a8cdc14e0..55654e87ea4 100644
--- a/dev-python/pyilmbase/Manifest
+++ b/dev-python/pyilmbase/Manifest
@@ -1 +1,2 @@
 DIST pyilmbase-2.2.0.tar.gz 469927 BLAKE2B 
74a806f30bf8881a4c58135110c3e805b9748074eab08e9afa17735630ee7de16ffe6a797ced926bb93d122eafdeb04c5e6e80ddba1a90bc551cb87ddeb30671
 SHA512 
111deb65a73b4d0454454d4fb64d09165fb25aad2e5714e35510c2b7ef301dc8765041de3188c2f89c9bd2770494a55a24372953fcda8dcedb23c401137e4344
+DIST pyilmbase-2.3.0.tar.gz 524975 BLAKE2B 
7c3114921392ad29198025c672c366e6c98d2da968ed213ccfb446533b81fae4b78c687aba2108e476e16c4e97f11924799d0b0474ff3f82f17632f886bb6a39
 SHA512 
c20c26155315f2ae38efc183e5f33e2c18610365f5f1bca7a50363a005ff91c8782177293290ea037cf5f164f9b404f5710ce3cccba862e5e7f830727753589f

diff --git a/dev-python/pyilmbase/files/pyilmbase-2.3.0-fix-build-system.patch 
b/dev-python/pyilmbase/files/pyilmbase-2.3.0-fix-build-system.patch
new file mode 100644
index 000..bd35f87a0e0
--- /dev/null
+++ b/dev-python/pyilmbase/files/pyilmbase-2.3.0-fix-build-system.patch
@@ -0,0 +1,48 @@
+diff --git a/configure.ac b/configure.ac
+index 5cbf273..9e80b48 100644
+--- a/configure.ac
 b/configure.ac
+@@ -4,8 +4,7 @@ AC_SUBST(PYILMBASE_VERSION, 2.3.0)
+ AC_CANONICAL_HOST
+ AC_CONFIG_SRCDIR(PyIex/iexmodule.cpp)
+ AC_CONFIG_HEADER(config/PyIlmBaseConfig.h)
+-AM_INIT_AUTOMAKE(1.6.3)  dnl Require automake 1.6.3 or better
+-AM_MAINTAINER_MODE
++AM_INIT_AUTOMAKE
+ dnl static python modules make no sense - disable static
+ AC_DISABLE_STATIC
+ 
+@@ -20,7 +19,7 @@ dnl Checks for programs.
+ AC_PROG_CXX
+ AC_PROG_INSTALL
+ AC_PROG_LN_S
+-AC_PROG_LIBTOOL
++LT_INIT
+ AC_PROG_MAKE_SET
+ 
+ dnl
+@@ -164,22 +163,13 @@ AC_C_CONST
+ AC_C_INLINE
+ AC_TYPE_SIZE_T
+ 
+-AC_MSG_CHECKING(for gcc optimization flags)
+-old_cflags=$CFLAGS
+-CFLAGS="$CFLAGS -pipe"
+-AC_TRY_COMPILE([#include ],
+-[ printf ("hello, world"); ],
+-[ EXTRA_OPT_CFLAGS="-pipe"],[ EXTRA_OPT_CFLAGS=""])
+-CFLAGS=$old_cflags
+-AC_MSG_RESULT([$EXTRA_OPT_CFLAGS])
+-
+ dnl Platform-specific stuff
+ case "$host" in
+ *linux*)
+-  AC_DEFINE(HAVE_LINUX_PROCFS)
++  AC_DEFINE([HAVE_LINUX_PROCFS], [1], [define on linux])
+   ;;
+ *darwin*) 
+-  AC_DEFINE(HAVE_DARWIN) 
++  AC_DEFINE([HAVE_DARWIN], [1], [define on OSX]) 
+   ;;
+ esac
+ 

diff --git a/dev-python/pyilmbase/files/pyilmbase-2.3.0-link-pyimath.patch 
b/dev-python/pyilmbase/files/pyilmbase-2.3.0-link-pyimath.patch
new file mode 100644
index 000..878c270a885
--- /dev/null
+++ b/dev-python/pyilmbase/files/pyilmbase-2.3.0-link-pyimath.patch
@@ -0,0 +1,13 @@
+diff --git a/PyImath/Makefile.am b/PyImath/Makefile.am
+index bf87542..ad69515 100644
+--- a/PyImath/Makefile.am
 b/PyImath/Makefile.am
+@@ -82,7 +82,7 @@ imathmodule_la_SOURCES = imathmodule.cpp \
+ PyImathBasicTypes.cpp 
+ 
+ imathmodule_la_LDFLAGS = -avoid-version -module
+-imathmodule_la_LIBADD  = -lPyImath @BOOST_PYTHON_LIBS@
++imathmodule_la_LIBADD  = libPyImath.la @BOOST_PYTHON_LIBS@
+ 
+ noinst_HEADERS = PyImathFun.h \
+ PyImathBasicTypes.h 

diff --git a/dev-python/pyilmbase/pyilmbase-2.3.0.ebuild 
b/dev-python/pyilmbase/pyilmbase-2.3.0.ebuild
new file mode 100644
index 000..fda4c62db80
--- /dev/null
+++ b/dev-python/pyilmbase/pyilmbase-2.3.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools python-single-r1
+
+DESCRIPTION="ilmbase Python bindings"
+HOMEPAGE="http://www.openexr.com;
+SRC_URI="https://github.com/openexr/openexr/releases/download/v${PV}/${P}.tar.gz;
+LICENSE="BSD"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+numpy"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEP}
+   >=dev-libs/boost-1.62.0-r1[python(+),${PYTHON_USEDEP}]
+   ~media-libs/ilmbase-${PV}:=
+   numpy? ( >=dev-python/numpy-1.10.4 )"
+DEPEND="${RDEPEND}
+   ${PYTHON_DEP}
+   >=virtual/pkgconfig-0-r1"
+
+PATCHES=(
+   

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

2018-10-11 Thread Michał Górny
commit: 4f7fbc18a745b1d120e866c2ea7d601fbe7e4a6e
Author: Bernd Waibel  gmail  com>
AuthorDate: Sun Sep 30 19:41:34 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 11 18:42:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f7fbc18

media-libs/ilmbase: bump to version 2.3.0

Remove .la files, as the package provides pkgconfig files.

Closes: https://bugs.gentoo.org/639998
Suggested-by: Jonathan Scruggs  gentoo.org>
Signed-off-by: Bernd Waibel  gmail.com>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Michał Górny  gentoo.org>

 media-libs/ilmbase/Manifest |  1 +
 media-libs/ilmbase/ilmbase-2.3.0.ebuild | 35 +
 2 files changed, 36 insertions(+)

diff --git a/media-libs/ilmbase/Manifest b/media-libs/ilmbase/Manifest
index ba2227b5163..cb8ef67725d 100644
--- a/media-libs/ilmbase/Manifest
+++ b/media-libs/ilmbase/Manifest
@@ -2,3 +2,4 @@ DIST ilmbase-1.0.2.tar.gz 496540 BLAKE2B 
1727be15753102f56d7b23bb88c68897006cdba
 DIST ilmbase-2.0.1.tar.gz 555828 BLAKE2B 
95cf3019c74c1efd95e1b7ddf2df224f4bcc93bafb9936c408f94ddaa2fa243161c91f8527ec9e67d7d48fb9d41dc84c42a2745d8e75d3a648f66bf0331d41e7
 SHA512 
0f2341fefd7c661b62bfd42590c9f29e5b58fbf303a4418e17d3bb831c40ebe23848250f360bc755113b84882665eb8c90497ee2f8d77bc5ed8e1fd43182c712
 DIST ilmbase-2.1.0.tar.gz 557552 BLAKE2B 
f210d47ab886cf9d2d76ca6ef6cc86123f887a0a3971e4063b5451293827861f10a6cc94bbe2399a9fcbacf48492e8d739b216b4baef72cc167bec1f2ed5fd6f
 SHA512 
2d168accc4f4fb8256fa7a4488c1a930bf1f088bda93f6d8272d3ce15219716d3e85dfa1e85dc2766bce10438e8fb38607a232a145c00d5d742cbde6604df342
 DIST ilmbase-2.2.0.tar.gz 525289 BLAKE2B 
951f6601075098b5f38e26d47f28a83f923d2689d306c02c855a0e8c846a339dfa589f574c6ffcb70e56ed8d7ff0202fea0709939c65aeaff3978ab9e2d58f4a
 SHA512 
0bbad14ed2bd286dff3987b16ef8631470211da54f822cb3e29b7931807216845ded81c9bf41fd2d22a8b362e8b9904a5450f61f5a242e460083e86b846513f1
+DIST ilmbase-2.3.0.tar.gz 595490 BLAKE2B 
db956fe7dbabf94632eb98635f4ebda8e937f26e26ed69f33743069fa2bf6d5ed3711f00eb33377c98b4f8ea367bbfc51b11d4cb884ce02238b537857cc19a9c
 SHA512 
db0804a7c37c2a97f9dbf81b20f40f7fdea73242baa2759d9dc3728e6849e7ecae0e178fa1c710add980d050499151650675e4b2cda6cbbaa61aca406a1f929a

diff --git a/media-libs/ilmbase/ilmbase-2.3.0.ebuild 
b/media-libs/ilmbase/ilmbase-2.3.0.ebuild
new file mode 100644
index 000..318a31fd391
--- /dev/null
+++ b/media-libs/ilmbase/ilmbase-2.3.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit multilib-minimal
+
+DESCRIPTION="OpenEXR ILM Base libraries"
+HOMEPAGE="http://openexr.com/;
+SRC_URI="https://github.com/openexr/openexr/releases/download/v${PV}/${P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0/24" # based on SONAME
+KEYWORDS="~amd64 -arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+IUSE="static-libs"
+
+DEPEND="virtual/pkgconfig[${MULTILIB_USEDEP}]"
+
+DOCS=( AUTHORS ChangeLog NEWS README.md )
+MULTILIB_WRAPPED_HEADERS=( /usr/include/OpenEXR/IlmBaseConfig.h )
+
+multilib_src_configure() {
+   # Disable use of ucontext.h wrt #482890
+   if use hppa || use ppc || use ppc64; then
+   export ac_cv_header_ucontext_h=no
+   fi
+
+   ECONF_SOURCE=${S} econf "$(use_enable static-libs static)"
+}
+
+multilib_src_install_all() {
+   einstalldocs
+
+   # package provides pkg-config files
+   find "${D}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: media-gfx/openexr_viewers/, media-gfx/openexr_viewers/files/

2018-10-11 Thread Michał Górny
commit: 7f82dcf755d6676dda0ac065883e93076afc6d84
Author: Bernd Waibel  gmail  com>
AuthorDate: Sun Sep 30 19:52:49 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 11 18:42:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f82dcf7

media-gfx/openexr_viewers: bump to version 2.3.0

Bug: https://bugs.gentoo.org/639998
Suggested-by: Jonathan Scruggs  gentoo.org>
Signed-off-by: Bernd Waibel  gmail.com>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Michał Górny  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/10030

 media-gfx/openexr_viewers/Manifest |  1 +
 .../openexr_viewers-2.3.0-fix-cg-libdir.patch  | 13 
 .../openexr_viewers-2.3.0-fix-configure.patch  | 83 ++
 .../openexr_viewers/openexr_viewers-2.3.0.ebuild   | 67 +
 4 files changed, 164 insertions(+)

diff --git a/media-gfx/openexr_viewers/Manifest 
b/media-gfx/openexr_viewers/Manifest
index 9d883fc660f..7a07e939ae0 100644
--- a/media-gfx/openexr_viewers/Manifest
+++ b/media-gfx/openexr_viewers/Manifest
@@ -1,3 +1,4 @@
 DIST openexr_viewers-2.0.1.tar.gz 495240 BLAKE2B 
4cccdcca362c59f77eb73c03c4300e64d2df9456b0108908fac96e0ae5d5c804525f9fe321ac159043b18c05727addb5e318ed0ba002132c3e2a5728256838a5
 SHA512 
75af19e4a06d31bbb21217bc75a800852d2817dd9d120b879c377316e8aa64f75c49dccbb0d2a4d11d949f48b8fac40249692d1286a77e4812e43b3e8e303235
 DIST openexr_viewers-2.1.0.tar.gz 497290 BLAKE2B 
15d8c23e8a738788f7aeb896b671a42005569a8cf177fbe193d9dbe4df418302be2beabc86344a88137a3a0e6b7b8bbfd66ec213882e52d4df5788157e182163
 SHA512 
fd3b08ad91b1b2299d01d56c7a17694538fd912302db3472a8d8621b49a699a42604de8d816288399b31207304c7684de198acecd2c8a9825d35b827b8a2ddaf
 DIST openexr_viewers-2.2.0.tar.gz 486235 BLAKE2B 
db1ebc95dfb7d5b9b1ead3cd3d1eeb4406e4ad5704c90b080d3929c7dea7a2be631e74e2cb597803f55e05783fda43fdb33edc64ba63522d31122f96a4675608
 SHA512 
ab2f15d0352fa4e9daf76c7317312dad6cfe7b65a86affaf057c8eceb48d2637fc0df58125ea2ec5ad3b7251eed392a8eccff1001cfeced969bbb66fe92284f8
+DIST openexr_viewers-2.3.0.tar.gz 532154 BLAKE2B 
353c69a6efbdab6ef7669f531be22b34c11cce3cc790b513eb99d323fc5e1827cb4b0656eab2db61ee89f01c02169c3c855cc475964156f31928ae08e015
 SHA512 
2b7ce7c75733f390bec5c3f9c49edc08da2631e3a45ae20a732dddf9fd813137c3124d0c6e90450fa2b9068f0c40c76374ee7ff9cf0d8697080b2b180c624c5d

diff --git 
a/media-gfx/openexr_viewers/files/openexr_viewers-2.3.0-fix-cg-libdir.patch 
b/media-gfx/openexr_viewers/files/openexr_viewers-2.3.0-fix-cg-libdir.patch
new file mode 100644
index 000..1c3ef1a5923
--- /dev/null
+++ b/media-gfx/openexr_viewers/files/openexr_viewers-2.3.0-fix-cg-libdir.patch
@@ -0,0 +1,13 @@
+diff --git a/m4/path.cb.m4 b/m4/path.cb.m4
+index 7e38708..832b96c 100644
+--- a/m4/path.cb.m4
 b/m4/path.cb.m4
+@@ -12,7 +12,7 @@ AC_ARG_WITH(cg-prefix,[  --with-cg-prefix=PFX  Prefix where 
Cg is installed (opt
+ 
+   if test x$cg_prefix != x ; then
+ CG_CXXFLAGS="-I$cg_prefix/include"
+-CG_LDFLAGS="-L$cg_prefix/lib -lGL -lCg -lCgGL -lGLU -lpthread -lglut"
++CG_LDFLAGS="-L$cg_prefix/lib64 -lGL -lCg -lCgGL -lGLU -lpthread -lglut"
+   else
+ case $host_os in
+   darwin*)

diff --git 
a/media-gfx/openexr_viewers/files/openexr_viewers-2.3.0-fix-configure.patch 
b/media-gfx/openexr_viewers/files/openexr_viewers-2.3.0-fix-configure.patch
new file mode 100644
index 000..f9d51d5045b
--- /dev/null
+++ b/media-gfx/openexr_viewers/files/openexr_viewers-2.3.0-fix-configure.patch
@@ -0,0 +1,83 @@
+diff --git a/configure.ac b/configure.ac
+index 0ae7531..f2cdfee 100644
+--- a/configure.ac
 b/configure.ac
+@@ -4,8 +4,7 @@ AC_SUBST(OPENEXR_VIEWERS_VERSION, 2.3.0)
+ AC_CANONICAL_HOST
+ AC_CONFIG_SRCDIR(playexr/main.cpp)
+ AM_CONFIG_HEADER(config/OpenEXR_ViewersConfig.h)
+-AM_INIT_AUTOMAKE(1.6.3)  dnl Require automake 1.6.3 or better
+-AM_MAINTAINER_MODE
++AM_INIT_AUTOMAKE
+ 
+ 
+ LIBTOOL_CURRENT=24
+@@ -19,7 +18,7 @@ AC_PROG_CXX
+ AC_PROG_INSTALL
+ AC_PROG_CC
+ AC_PROG_LN_S
+-AC_PROG_LIBTOOL
++LT_INIT
+ AC_PROG_MAKE_SET
+ 
+ dnl
+@@ -124,19 +109,8 @@ AC_ARG_ENABLE(threading,
+   [multithread="${enableval}"], [multithread=yes])
+ 
+ if test x$PKG_CONFIG == xno && test "x${multithread}" != xno ; then
+-ACX_PTHREAD(
+-[
+-  AC_DEFINE(HAVE_PTHREAD)
+-  OPENEXR_LIBS="$PTHREAD_LIBS $OPENEXR_LIBS"
+-  OPENEXR_CXXFLAGS="$OPENEXR_CXXFLAGS $PTHREAD_CFLAGS"
+-  OPENEXR_CTL_LIBS="$PTHREAD_LIBS $OPENEXR_CTL_LIBS"
+-  OPENEXR_CTL_CXXFLAGS="$OPENEXR_CTL_CXXFLAGS $PTHREAD_CFLAGS"
+-  CC="$PTHREAD_CC"
+-  
+-  AM_POSIX_SEM()
+-],
+-[AC_MSG_ERROR([POSIX thread support required])])
+-AC_MSG_NOTICE([multithread true, LIBS = $LIBS, CC = $CC, CXXFLAGS = 
$CXXFLAGS])
++AX_PTHREAD
++  AC_DEFINE([HAVE_PTHREAD], [1], [define if POSIX thread support is 
available])
+ fi
+ 
+ 
+@@ -233,10 +155,13 @@ AM_PATH_FLTK(have_fltk=yes, have_fltk=no)
+ dnl
+ dnl 

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

2018-10-11 Thread Andreas Sturmlechner
commit: d6eedc6543d3cd1e55dbf0ae466012dc35987ed7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:37:49 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:37:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6eedc65

net-misc/smb4k: 2.1.1 amd64 stable

Closes: https://bugs.gentoo.org/668112
Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-misc/smb4k/smb4k-2.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/smb4k/smb4k-2.1.1.ebuild 
b/net-misc/smb4k/smb4k-2.1.1.ebuild
index ebe70f3872d..e2bb3549dff 100644
--- a/net-misc/smb4k/smb4k-2.1.1.ebuild
+++ b/net-misc/smb4k/smb4k-2.1.1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://sourceforge.net/p/smb4k/home/Home/;
 
 if [[ ${KDE_BUILD_TYPE} = release ]]; then
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-   KEYWORDS="~amd64 x86"
+   KEYWORDS="amd64 x86"
 fi
 
 LICENSE="GPL-2"



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

2018-10-11 Thread Andreas Sturmlechner
commit: 8f3c8cb3c00a5a5101aa459f4e781afb9b138f17
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:38:08 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:38:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f3c8cb3

net-misc/smb4k: Drop 2.1.0

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

 net-misc/smb4k/Manifest   |  1 -
 net-misc/smb4k/smb4k-2.1.0.ebuild | 56 ---
 2 files changed, 57 deletions(-)

diff --git a/net-misc/smb4k/Manifest b/net-misc/smb4k/Manifest
index c5b9992753e..c68dabf4eff 100644
--- a/net-misc/smb4k/Manifest
+++ b/net-misc/smb4k/Manifest
@@ -1,2 +1 @@
-DIST smb4k-2.1.0.tar.xz 3714936 BLAKE2B 
c105909034acbdb3c8593bb06d787a6602290dadc87982ff45703e574bf978ea8a93d88cd91d062a87683559cda020d4971a7784687a74901e97c0c4a6d66d90
 SHA512 
632d916d6a9cf08c883d4a17747cf036d8d6e285ee149c487cc305d036977e86a7ef4d3ba4630b3b8f29ca9123d894418348e687b0c009653297d77059fb535c
 DIST smb4k-2.1.1.tar.xz 3718220 BLAKE2B 
99258ac57d3b8ff2861b8635b6a0799a347f3934c8d070d41c09f49b69caa7b59f502db9041d1bc4f875ae15544254faaafaae6429200ddf5526a06812983e1f
 SHA512 
d69cb9f4c22e2afdd111e73c3d99d6868f959aa5476ffe10620862d3659b5a4f3b814856b17a9dced7bf6dde524f5bcf224e62d413d2aa92b0bcc2272ddf22b7

diff --git a/net-misc/smb4k/smb4k-2.1.0.ebuild 
b/net-misc/smb4k/smb4k-2.1.0.ebuild
deleted file mode 100644
index dcc59131629..000
--- a/net-misc/smb4k/smb4k-2.1.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-inherit kde5
-
-DESCRIPTION="Advanced network neighborhood browser"
-HOMEPAGE="https://sourceforge.net/p/smb4k/home/Home/;
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-   KEYWORDS="amd64 x86"
-fi
-
-LICENSE="GPL-2"
-IUSE="plasma"
-
-DEPEND="
-   $(add_frameworks_dep kauth)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kjobwidgets)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kwallet)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep solid)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qttest)
-   $(add_qt_dep qtwidgets)
-"
-RDEPEND="${DEPEND}
-   net-fs/samba[cups]
-   plasma? ( $(add_frameworks_dep plasma) )
-"
-
-src_configure(){
-   local mycmakeargs=(
-   -DINSTALL_PLASMOID=$(usex plasma)
-   )
-   kde5_src_configure
-}



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

2018-10-11 Thread Andreas Sturmlechner
commit: 80d46313fb91941c16afa18ce8a9af71150c5fe8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:00:11 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:35:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80d46313

net-libs/kdav2: Drop 0.1.0

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

 net-libs/kdav2/Manifest   |  1 -
 net-libs/kdav2/kdav2-0.1.0.ebuild | 23 ---
 2 files changed, 24 deletions(-)

diff --git a/net-libs/kdav2/Manifest b/net-libs/kdav2/Manifest
index 0dee9424780..a5fdb40310c 100644
--- a/net-libs/kdav2/Manifest
+++ b/net-libs/kdav2/Manifest
@@ -1,2 +1 @@
-DIST kdav2-0.1.0.tar.xz 47012 BLAKE2B 
29d2c663590371dc1107a7a9408ae539780ab039af163b4e8b80c575ad7dda8d96f70ca4c43c0bbc1704c7583341b20f61ea567d912d7f4575bb2944190f93d7
 SHA512 
4d4e19ed9b8b44f5eea7d40d24dd4accd6b41ea5020b492d83d85ff7fee1e0bc72f50667a31b8021fe9aaa45fbaa6dea86fdb81a4f4db45d9d16ba98adb636b4
 DIST kdav2-0.2.0.tar.xz 49440 BLAKE2B 
965f38b854f8aa95b907fbde136fbffdfdf47690e7816cc6a5e3d8014b97a57bad991a0a1aa488a855065eeba50bd7bb73f25ac05ccc9dedee563044da293519
 SHA512 
ef2510ae36a8e5be0903eb7e576c0f62c5e17d36cb42a9e6f07bb8d06f2e2a46354cf10256509f7c252e58f281f5e32e1c9dae682c421ac96941b7785df6a6a3

diff --git a/net-libs/kdav2/kdav2-0.1.0.ebuild 
b/net-libs/kdav2/kdav2-0.1.0.ebuild
deleted file mode 100644
index 4cab5434a66..000
--- a/net-libs/kdav2/kdav2-0.1.0.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_TEST="forceoptional"
-inherit kde5
-
-DESCRIPTION="KJob based DAV protocol implementation"
-SRC_URI="mirror://kde/unstable/${PN}/${PV}/src/${P}.tar.xz"
-
-LICENSE="GPL-2+"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-   $(add_frameworks_dep kcoreaddons)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtxml)
-   $(add_qt_dep qtxmlpatterns)
-"
-RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kauth/

2018-10-11 Thread Andreas Sturmlechner
commit: 5b6dff536b8b9253415377b6e068a266c7e18dc0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:18:47 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:35:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b6dff53

kde-frameworks/kauth: Disable broken KAuthHelperTest

Bug: https://bugs.gentoo.org/654842
Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 kde-frameworks/kauth/kauth-5.50.0.ebuild | 9 +
 1 file changed, 9 insertions(+)

diff --git a/kde-frameworks/kauth/kauth-5.50.0.ebuild 
b/kde-frameworks/kauth/kauth-5.50.0.ebuild
index 573a0b5875e..9f032195dbe 100644
--- a/kde-frameworks/kauth/kauth-5.50.0.ebuild
+++ b/kde-frameworks/kauth/kauth-5.50.0.ebuild
@@ -30,3 +30,12 @@ src_configure() {
 
kde5_src_configure
 }
+
+src_test() {
+   # KAuthHelperTest test fails, bug 654842
+   local myctestargs=(
+   -E "(KAuthHelperTest)"
+   )
+
+   kde5_src_test
+}



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kaccounts-integration/

2018-10-11 Thread Andreas Sturmlechner
commit: 807d9dae5d93a5f3589465e24b833f3885e83762
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 17:37:31 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:35:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=807d9dae

kde-apps/kaccounts-integration: KAccountsMacros.cmake needs intltool

Upstream commit 3b3842d1576076de8652b9d2744e6785014bbc5a

Closes: https://bugs.gentoo.org/668304
Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 ...tion-18.08.2.ebuild => kaccounts-integration-18.08.2-r1.ebuild} | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git 
a/kde-apps/kaccounts-integration/kaccounts-integration-18.08.2.ebuild 
b/kde-apps/kaccounts-integration/kaccounts-integration-18.08.2-r1.ebuild
similarity index 90%
rename from kde-apps/kaccounts-integration/kaccounts-integration-18.08.2.ebuild
rename to kde-apps/kaccounts-integration/kaccounts-integration-18.08.2-r1.ebuild
index 9d9f33cc91d..0b2e528f317 100644
--- a/kde-apps/kaccounts-integration/kaccounts-integration-18.08.2.ebuild
+++ b/kde-apps/kaccounts-integration/kaccounts-integration-18.08.2-r1.ebuild
@@ -14,7 +14,7 @@ LICENSE="LGPL-2.1"
 KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
-RDEPEND="
+COMMON_DEPEND="
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
@@ -29,11 +29,14 @@ RDEPEND="
>=net-libs/libaccounts-glib-1.21
net-libs/signond
 "
-DEPEND="${RDEPEND}
+DEPEND="${COMMON_DEPEND}
$(add_frameworks_dep kcmutils)
$(add_plasma_dep kde-cli-tools)
sys-devel/gettext
 "
+RDEPEND="${COMMON_DEPEND}
+   dev-util/intltool
+"
 
 # bug #549444
 RESTRICT+=" test"



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kxmlgui/

2018-10-11 Thread Andreas Sturmlechner
commit: fdac79a2c943787334f02066c2fbed3c0d01689d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:12:34 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:35:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdac79a2

kde-frameworks/kxmlgui: Disable broken ktoolbar_unittest

Bug: https://bugs.gentoo.org/668198
Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 kde-frameworks/kxmlgui/kxmlgui-5.50.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kxmlgui/kxmlgui-5.50.0.ebuild 
b/kde-frameworks/kxmlgui/kxmlgui-5.50.0.ebuild
index 2d6669d553c..5ca8e7cb944 100644
--- a/kde-frameworks/kxmlgui/kxmlgui-5.50.0.ebuild
+++ b/kde-frameworks/kxmlgui/kxmlgui-5.50.0.ebuild
@@ -43,9 +43,9 @@ src_configure() {
 }
 
 src_test() {
-   # Files are missing; whatever. Bug: 650290
+   # Files are missing; whatever. Bugs 650290, 668198
local myctestargs=(
-   -E "(kxmlgui_unittest)"
+   -E "(ktoolbar_unittest|kxmlgui_unittest)"
)
 
kde5_src_test



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-desktop/

2018-10-11 Thread Andreas Sturmlechner
commit: 5bce1097e255a148a5537880c5c7c6a1058c8a87
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed May 16 09:53:53 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:35:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bce1097

kde-plasma/plasma-desktop: Re-disable broken test...

Bug: https://bugs.gentoo.org/665244
Package-Manager: Portage-2.3.36, Repoman-2.3.9
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-plasma/plasma-desktop/plasma-desktop-5.12.7.ebuild| 4 ++--
 kde-plasma/plasma-desktop/plasma-desktop-5.13.5-r2.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/kde-plasma/plasma-desktop/plasma-desktop-5.12.7.ebuild 
b/kde-plasma/plasma-desktop/plasma-desktop-5.12.7.ebuild
index 5afe6f0adf6..362030bf6b7 100644
--- a/kde-plasma/plasma-desktop/plasma-desktop-5.12.7.ebuild
+++ b/kde-plasma/plasma-desktop/plasma-desktop-5.12.7.ebuild
@@ -140,11 +140,11 @@ src_configure() {
 }
 
 src_test() {
-   # parallel tests fail, foldermodeltest hangs, bug #646890
+   # parallel tests fail, foldermodeltest,positionertest hang, bug #646890
# needs D-Bus, bug #634166
local myctestargs=(
-j1
-   -E "(foldermodeltest|test_kio_fonts)"
+   -E "(foldermodeltest|positionertest|test_kio_fonts)"
)
 
kde5_src_test

diff --git a/kde-plasma/plasma-desktop/plasma-desktop-5.13.5-r2.ebuild 
b/kde-plasma/plasma-desktop/plasma-desktop-5.13.5-r2.ebuild
index d771236bad5..b610d1f74f4 100644
--- a/kde-plasma/plasma-desktop/plasma-desktop-5.13.5-r2.ebuild
+++ b/kde-plasma/plasma-desktop/plasma-desktop-5.13.5-r2.ebuild
@@ -147,11 +147,11 @@ src_configure() {
 }
 
 src_test() {
-   # parallel tests fail, foldermodeltest hangs, bug #646890
+   # parallel tests fail, foldermodeltest,positionertest hang, bug #646890
# needs D-Bus, bug #634166
local myctestargs=(
-j1
-   -E "(foldermodeltest|test_kio_fonts)"
+   -E "(foldermodeltest|positionertest|test_kio_fonts)"
)
 
kde5_src_test



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

2018-10-11 Thread Andreas Sturmlechner
commit: 3f049f015a008b55ae8f332029c2432e09771256
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Oct  1 21:19:11 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:35:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f049f01

media-libs/openjpeg: Drop unused multilib eclass

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

 media-libs/openjpeg/openjpeg-2.3.0.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/media-libs/openjpeg/openjpeg-2.3.0.ebuild 
b/media-libs/openjpeg/openjpeg-2.3.0.ebuild
index 44197fb431a..14f1eaa8280 100644
--- a/media-libs/openjpeg/openjpeg-2.3.0.ebuild
+++ b/media-libs/openjpeg/openjpeg-2.3.0.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit multilib cmake-multilib
+
+inherit cmake-multilib
 
 # Make sure that test data are not newer than release;
 # otherwise we will see "Found-But-No-Test" test failures!



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/extra-cmake-modules/

2018-10-11 Thread Andreas Sturmlechner
commit: 3635ec05538933d41f84075292a887c91d8cd985
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Oct 10 18:02:47 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:35:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3635ec05

kde-frameworks/extra-cmake-modules: allarches stable

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

 kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.50.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.50.0.ebuild 
b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.50.0.ebuild
index 447cedb9643..3b13c99a355 100644
--- a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.50.0.ebuild
+++ b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.50.0.ebuild
@@ -15,7 +15,7 @@ DESCRIPTION="Extra modules and scripts for CMake"
 HOMEPAGE="https://cgit.kde.org/extra-cmake-modules.git;
 
 LICENSE="BSD"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~amd64-fbsd"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 x86 ~amd64-fbsd"
 IUSE="doc test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kpeople/

2018-10-11 Thread Andreas Sturmlechner
commit: 2a027fc25d9896bb7c4d4066553be07ad4d3ed34
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:24:39 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:35:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a027fc2

kde-frameworks/kpeople: Disable broken persondatatest

Bug: https://bugs.gentoo.org/668192
Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 kde-frameworks/kpeople/kpeople-5.50.0.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kpeople/kpeople-5.50.0.ebuild 
b/kde-frameworks/kpeople/kpeople-5.50.0.ebuild
index 37c4e66636b..5561061d271 100644
--- a/kde-frameworks/kpeople/kpeople-5.50.0.ebuild
+++ b/kde-frameworks/kpeople/kpeople-5.50.0.ebuild
@@ -31,8 +31,11 @@ RDEPEND="${DEPEND}
 "
 
 src_test() {
-   # bug: 612504
-   local myctestargs=( -j1 )
+   # personsmodeltest segfaults, bug 668192
+   local myctestargs=(
+   -j1
+   -E "(persondatatest)"
+   )
 
kde5_src_test
 }



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

2018-10-11 Thread Andreas Sturmlechner
commit: 10af73e47cce9a50dc1e7ad83cbf9d1282b90062
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Oct  1 21:20:06 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:35:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10af73e4

media-libs/openjpeg: https

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

 media-libs/openjpeg/openjpeg-1.5.2-r1.ebuild | 4 ++--
 media-libs/openjpeg/openjpeg-2.3.0.ebuild| 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/openjpeg/openjpeg-1.5.2-r1.ebuild 
b/media-libs/openjpeg/openjpeg-1.5.2-r1.ebuild
index d0044af4816..a12928765e7 100644
--- a/media-libs/openjpeg/openjpeg-1.5.2-r1.ebuild
+++ b/media-libs/openjpeg/openjpeg-1.5.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit cmake-multilib
 
 DESCRIPTION="An open-source JPEG 2000 library"
-HOMEPAGE="http://www.openjpeg.org;
+HOMEPAGE="https://www.openjpeg.org;
 SRC_URI="mirror://sourceforge/${PN}.mirror/${P}.tar.gz"
 
 LICENSE="BSD-2"

diff --git a/media-libs/openjpeg/openjpeg-2.3.0.ebuild 
b/media-libs/openjpeg/openjpeg-2.3.0.ebuild
index 14f1eaa8280..e447db85d6a 100644
--- a/media-libs/openjpeg/openjpeg-2.3.0.ebuild
+++ b/media-libs/openjpeg/openjpeg-2.3.0.ebuild
@@ -10,7 +10,7 @@ inherit cmake-multilib
 MY_TESTDATA_COMMIT="c07f38fae1e67adc288c2d6679df5d3652017fbe"
 
 DESCRIPTION="An open-source JPEG 2000 library"
-HOMEPAGE="http://www.openjpeg.org;
+HOMEPAGE="https://www.openjpeg.org;
 SRC_URI="https://github.com/uclouvain/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz
test? ( 
https://github.com/uclouvain/openjpeg-data/archive/${MY_TESTDATA_COMMIT}.tar.gz 
-> ${PN}-data_20170814.tar.gz )"
 



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/bluez-qt/

2018-10-11 Thread Andreas Sturmlechner
commit: 2362c81047330192328869804684551765fb61e2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 18:15:06 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:35:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2362c810

kde-frameworks/bluez-qt: Disable broken managertest

Bug: https://bugs.gentoo.org/668196
Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 kde-frameworks/bluez-qt/bluez-qt-5.50.0.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/bluez-qt/bluez-qt-5.50.0.ebuild 
b/kde-frameworks/bluez-qt/bluez-qt-5.50.0.ebuild
index 64fa718a39b..7f57fee3b2e 100644
--- a/kde-frameworks/bluez-qt/bluez-qt-5.50.0.ebuild
+++ b/kde-frameworks/bluez-qt/bluez-qt-5.50.0.ebuild
@@ -27,8 +27,11 @@ src_configure() {
 }
 
 src_test() {
-   # bug: 609248
-   local myctestargs=( -j1 )
+   # parallel tests fail, bug 609248; managertest hangs, bug 668196
+   local myctestargs=(
+   -j1
+   -E "(managertest)"
+   )
 
kde5_src_test
 }



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

2018-10-11 Thread Andreas Sturmlechner
commit: 4867c7eee1c902622ee57452f47ba53d44dc42a9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 17:58:52 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:35:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4867c7ee

media-libs/libraw: Drop old

Closes: https://bugs.gentoo.org/666306
Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 media-libs/libraw/Manifest  |  2 -
 media-libs/libraw/libraw-0.18.11.ebuild | 66 -
 media-libs/libraw/libraw-0.18.12.ebuild | 66 -
 3 files changed, 134 deletions(-)

diff --git a/media-libs/libraw/Manifest b/media-libs/libraw/Manifest
index 10ce62fd346..cc22ea0ff5d 100644
--- a/media-libs/libraw/Manifest
+++ b/media-libs/libraw/Manifest
@@ -1,5 +1,3 @@
-DIST LibRaw-0.18.11.tar.gz 1283643 BLAKE2B 
cd217a0c40d0f30ff95968c5238ad349d32f6ae44aca3847b32c236e8e82e7ff25ba5d6bb0cffe8d73b288239830982d074a306b682160bfe8c73b0df9fcff09
 SHA512 
4d114bdb589c96d95f646b1d016cfb9546ea7a53b9f23af1dc5d0e38cb4d1b2aa7270f2d4dbe7c6c323fb7f21403914a0bb75afa7b6204d0a99c72ecf0c812c9
-DIST LibRaw-0.18.12.tar.gz 1283491 BLAKE2B 
a0e23bf58ecf331ef52e529be5dd27acf8458d1a6de700b36df6172b7cfde2da62561e29c197bc360237b12c7a427b1d07a0c64862fe1cead461a6989e488218
 SHA512 
8fcf1e24295457f09a654a14d77869ca401a21e9f4386d91fb0fd5bc9aa20a882bf490a64c183108e645b5fa70401f97868c83837a057cb707f58fa31a417d44
 DIST LibRaw-0.18.13.tar.gz 1287631 BLAKE2B 
cb335dd21b897222a80ae7b486d751a080dafe93d9c4ce72ad337bc724707831a70428323027f5f343c4b0ff08820b6f68553436240a85d115eaaa30b6b0c269
 SHA512 
80e6ca48b00176e7c4dd21d8249c60e71e987c01e719abc3bda8b859645301b9dee4bb365bbcb79cbe0067220d3b966add4757b35d4b6ada0a59bbdb29925254
 DIST LibRaw-0.19.0.tar.gz 1300662 BLAKE2B 
f182f1fd7d02eaa34f8b8e2336cbc59cd8c3345cddeace2ed305d048d160bf8d6ecdf04129829b3202a16e70d987a5b2a83c036ec95d1b7b6c748dbb5b46271b
 SHA512 
33d0e9a031add901bdd10ffcde6a0f7837a4f4bec0bbbd21ad661e518dadcb1699133f17b3b2f6cd6cefe87ef3017cb7e1b816c4ce3dfebaaf5d9b2ff6b65238
 DIST LibRaw-demosaic-pack-GPL2-0.18.8.tar.gz 30868 BLAKE2B 
30cef85c49e066fa4b1d86ee4d7bfd7bff07897f91edd57aa52428f7ecf2d6e930703e496d4e55e034c6da2f68735f8b20f493a1d7a00d51b0430a4b98e6ee45
 SHA512 
c34419cec055ea976a348c342f5ec2141e2686b5eb50dd23d7b9fd707eefd86779d331f06b4570dedb1682c33fcd6ac0446b3167ca1f3e3fd2566a0c66c6fd3d

diff --git a/media-libs/libraw/libraw-0.18.11.ebuild 
b/media-libs/libraw/libraw-0.18.11.ebuild
deleted file mode 100644
index fa6cf6a88c1..000
--- a/media-libs/libraw/libraw-0.18.11.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit multilib-minimal toolchain-funcs
-
-MY_PN=LibRaw
-MY_PV="${PV/_b/-B}"
-MY_P="${MY_PN}-${MY_PV}"
-# demosaic package sometimes doesn't get bumped.
-# Otherwise you can set it to ${PV}.
-DEMOSAIC_PV="0.18.8"
-
-DESCRIPTION="LibRaw is a library for reading RAW files obtained from digital 
photo cameras"
-HOMEPAGE="https://www.libraw.org/ https://github.com/LibRaw/LibRaw;
-SRC_URI="https://www.libraw.org/data/${MY_P}.tar.gz
-   demosaic? (
-   
https://www.libraw.org/data/LibRaw-demosaic-pack-GPL2-${DEMOSAIC_PV}.tar.gz
-   
https://www.libraw.org/data/LibRaw-demosaic-pack-GPL3-${DEMOSAIC_PV}.tar.gz
-   )"
-
-LICENSE="LGPL-2.1 CDDL demosaic? ( GPL-2 GPL-3 )"
-SLOT="0/16" # subslot = libraw soname version
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux"
-IUSE="demosaic examples jpeg jpeg2k +lcms openmp"
-
-RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] )
-   jpeg2k? ( >=media-libs/jasper-1.900.1-r6:=[${MULTILIB_USEDEP}] )
-   lcms? ( >=media-libs/lcms-2.5:2[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-S="${WORKDIR}/${MY_P}"
-
-DOCS=( Changelog.txt README )
-
-pkg_pretend() {
-   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-pkg_setup() {
-   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-multilib_src_configure() {
-   local myeconfargs=(
-   --disable-static
-   $(use_enable demosaic demosaic-pack-gpl2)
-   $(use_enable demosaic demosaic-pack-gpl3)
-   $(use_enable examples)
-   $(use_enable jpeg)
-   $(use_enable jpeg2k jasper)
-   $(use_enable lcms)
-   $(use_enable openmp)
-   )
-   ECONF_SOURCE="${S}" \
-   econf "${myeconfargs[@]}"
-}
-
-multilib_src_install_all() {
-   einstalldocs
-
-   # package installs .pc files
-   find "${D}" -name '*.la' -delete || die
-}

diff --git a/media-libs/libraw/libraw-0.18.12.ebuild 
b/media-libs/libraw/libraw-0.18.12.ebuild
deleted file mode 100644
index 6412dcbf97c..000
--- 

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

2018-10-11 Thread Andreas Sturmlechner
commit: a435b84e9f90cf1e583aa0fe0ab0af6baef649cd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 17:14:23 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:35:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a435b84e

kde5-functions.eclass: Raise FRAMEWORKS_MINIMAL to 5.50.0

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 eclass/kde5-functions.eclass | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index 33c3a24408a..245d2e27a2e 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -41,7 +41,10 @@ case ${CATEGORY} in
: ${FRAMEWORKS_MINIMAL:=5.43.0}
: ${QT_MINIMAL:=5.9.1}
fi
-   [[ ${PV} = 5.12* ]] && : ${QT_MINIMAL:=5.9.4}
+   if [[ ${PV} = 5.12* || ${PV} = 5.13.5 ]]; then
+   : ${FRAMEWORKS_MINIMAL:=5.46.0}
+   : ${QT_MINIMAL:=5.9.4}
+   fi
if [[ ${KDE_BUILD_TYPE} = live && ${PV} != 5.??.49* ]]; then
: ${FRAMEWORKS_MINIMAL:=}
fi
@@ -49,7 +52,6 @@ case ${CATEGORY} in
;;
kde-apps)
[[ ${PV} = 18.04.3 ]] && : ${FRAMEWORKS_MINIMAL:=5.46.0}
-   : ${FRAMEWORKS_MINIMAL:=5.50.0}
;;
 esac
 
@@ -61,7 +63,7 @@ esac
 # @ECLASS-VARIABLE: FRAMEWORKS_MINIMAL
 # @DESCRIPTION:
 # Minimum version of Frameworks to require. This affects add_frameworks_dep.
-: ${FRAMEWORKS_MINIMAL:=5.46.0}
+: ${FRAMEWORKS_MINIMAL:=5.50.0}
 
 # @ECLASS-VARIABLE: PLASMA_MINIMAL
 # @DESCRIPTION:



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

2018-10-11 Thread Andreas Sturmlechner
commit: df6c57d6db5ce7df98502d260feb652adf2fc792
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 11 17:27:10 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 11 18:35:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df6c57d6

kde5-functions.eclass: Raise KDE_APPS_MINIMAL to 18.04.3

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 eclass/kde5-functions.eclass | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index 245d2e27a2e..e921e30fa12 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -43,6 +43,7 @@ case ${CATEGORY} in
fi
if [[ ${PV} = 5.12* || ${PV} = 5.13.5 ]]; then
: ${FRAMEWORKS_MINIMAL:=5.46.0}
+   : ${KDE_APPS_MINIMAL:=17.12.3}
: ${QT_MINIMAL:=5.9.4}
fi
if [[ ${KDE_BUILD_TYPE} = live && ${PV} != 5.??.49* ]]; then
@@ -73,7 +74,7 @@ esac
 # @ECLASS-VARIABLE: KDE_APPS_MINIMAL
 # @DESCRIPTION:
 # Minimum version of KDE Applications to require. This affects add_kdeapps_dep.
-: ${KDE_APPS_MINIMAL:=17.12.3}
+: ${KDE_APPS_MINIMAL:=18.04.3}
 
 # @ECLASS-VARIABLE: KDE_GCC_MINIMAL
 # @DEFAULT_UNSET



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

2018-10-11 Thread Virgil Dupras
commit: e8a8e22890881d806f95de192e5f79e6c708f584
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sun Oct  7 11:02:20 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Thu Oct 11 18:12:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8a8e228

dev-lang/mono-basic: restrict tests and bump to EAPI=7

Tests do need internet access, so network-sandbox must be disabled.
But tests also seems to fail. No response from upstream.

Closes: https://bugs.gentoo.org/656682
Closes: https://bugs.gentoo.org/655900
Signed-off-by: Conrad Kostecki  kostecki.com>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/10024
Signed-off-by: Virgil Dupras  gentoo.org>

 dev-lang/mono-basic/mono-basic-4.6-r2.ebuild | 18 ++
 dev-lang/mono-basic/mono-basic-4.7-r1.ebuild | 18 ++
 2 files changed, 36 insertions(+)

diff --git a/dev-lang/mono-basic/mono-basic-4.6-r2.ebuild 
b/dev-lang/mono-basic/mono-basic-4.6-r2.ebuild
new file mode 100644
index 000..9a28161ec71
--- /dev/null
+++ b/dev-lang/mono-basic/mono-basic-4.6-r2.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit mono-env
+
+DESCRIPTION="Visual Basic Compiler and Runtime"
+HOMEPAGE="https://www.mono-project.com/docs/about-mono/languages/visualbasic/;
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="LGPL-2 MIT"
+SLOT="0"
+
+RDEPEND="dev-lang/mono"
+DEPEND="${RDEPEND}"
+
+RESTRICT="test"

diff --git a/dev-lang/mono-basic/mono-basic-4.7-r1.ebuild 
b/dev-lang/mono-basic/mono-basic-4.7-r1.ebuild
new file mode 100644
index 000..9a28161ec71
--- /dev/null
+++ b/dev-lang/mono-basic/mono-basic-4.7-r1.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit mono-env
+
+DESCRIPTION="Visual Basic Compiler and Runtime"
+HOMEPAGE="https://www.mono-project.com/docs/about-mono/languages/visualbasic/;
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="LGPL-2 MIT"
+SLOT="0"
+
+RDEPEND="dev-lang/mono"
+DEPEND="${RDEPEND}"
+
+RESTRICT="test"



[gentoo-commits] proj/gnome:master commit in: sci-geosciences/geocode-glib/

2018-10-11 Thread Sobhan Mohammadpour
commit: e160b858128ff11f3c2c3e6908d56f4e8550531a
Author: Sobhan Mohammadpour  gentoo  org>
AuthorDate: Thu Oct 11 17:46:12 2018 +
Commit: Sobhan Mohammadpour  gentoo  org>
CommitDate: Thu Oct 11 17:46:12 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=e160b858

sci-geosciences/geocode-glib: start using meson

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Manifest-Sign-Key: 0x7DF238CF0AA182E1

 ...de-glib-3.26.0.ebuild => geocode-glib-3.26.0-r1.ebuild} | 14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/sci-geosciences/geocode-glib/geocode-glib-3.26.0.ebuild 
b/sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild
similarity index 80%
rename from sci-geosciences/geocode-glib/geocode-glib-3.26.0.ebuild
rename to sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild
index 8f26c11b..192e56f0 100644
--- a/sci-geosciences/geocode-glib/geocode-glib-3.26.0.ebuild
+++ b/sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit gnome-meson
+inherit meson gnome.org
 
 DESCRIPTION="GLib geocoding library that uses the Yahoo! Place Finder service"
 HOMEPAGE="https://git.gnome.org/browse/geocode-glib;
@@ -31,10 +31,12 @@ DEPEND="${RDEPEND}
 RESTRICT="test"
 
 src_configure() {
-   gnome-meson_src_configure \
-   $(meson_use test enable-installed-tests) \
-   $(meson_use introspection enable-introspection) \
-   -Denable-gtk-doc=false
+   local emesonargs=(
+   $(meson_use test enable-installed-tests)
+   $(meson_use introspection enable-introspection)
+   "-Denable-gtk-doc=true"
+   )
+   meson_src_configure
 }
 
 src_test() {



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

2018-10-11 Thread Craig Andrews
commit: f34eab08e12e6299874d04766a4ddb29e1eac191
Author: Craig Andrews  gentoo  org>
AuthorDate: Thu Oct 11 17:41:55 2018 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Thu Oct 11 17:42:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f34eab08

media-tv/kodi: dependency improvements

app-misc/inputlircd is no longer necessary,
  see https://github.com/xbmc/xbmc/pull/13761
app-pda/libplist does not require the "python" use flag

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

 media-tv/kodi/kodi-.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/media-tv/kodi/kodi-.ebuild b/media-tv/kodi/kodi-.ebuild
index 5f630dd7441..8014f17ac9c 100644
--- a/media-tv/kodi/kodi-.ebuild
+++ b/media-tv/kodi/kodi-.ebuild
@@ -41,7 +41,7 @@ REQUIRED_USE="
 
 COMMON_DEPEND="${PYTHON_DEPS}
airplay? (
-   >=app-pda/libplist-2.0.0[python,${PYTHON_USEDEP}]
+   >=app-pda/libplist-2.0.0
net-libs/shairplay
)
alsa? ( >=media-libs/alsa-lib-1.1.4.1 )
@@ -122,9 +122,7 @@ COMMON_DEPEND="${PYTHON_DEPS}
zeroconf? ( net-dns/avahi[dbus] )
 "
 RDEPEND="${COMMON_DEPEND}
-   lirc? (
-   || ( app-misc/lirc app-misc/inputlircd )
-   )
+   lirc? ( app-misc/lirc )
!media-tv/xbmc
udisks? ( sys-fs/udisks:2 )
upower? (



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

2018-10-11 Thread Tobias Klausmann
commit: 5d49a33ba48af978c73e9786075225bf7124d934
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 16:49:45 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 16:50:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d49a33b

sys-apps/portage-2.3.49-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666374
Signed-off-by: Tobias Klausmann  gentoo.org>

 sys-apps/portage/portage-2.3.49.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/portage/portage-2.3.49.ebuild 
b/sys-apps/portage/portage-2.3.49.ebuild
index c2db8bccb4b..17a87caa73e 100644
--- a/sys-apps/portage/portage-2.3.49.ebuild
+++ b/sys-apps/portage/portage-2.3.49.ebuild
@@ -16,7 +16,7 @@ DESCRIPTION="Portage is the package management and 
distribution system for Gento
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd"
 SLOT="0"
 IUSE="build doc epydoc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux xattr"
 



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

2018-10-11 Thread Tobias Klausmann
commit: e6dcd7b7eaba918209240eff35a4dd3122050684
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 16:49:44 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 16:49:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6dcd7b7

dev-lang/tcl-8.6.8-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666316
Signed-off-by: Tobias Klausmann  gentoo.org>

 dev-lang/tcl/tcl-8.6.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/tcl/tcl-8.6.8.ebuild b/dev-lang/tcl/tcl-8.6.8.ebuild
index 9cbda4fccbb..a56b52ab689 100644
--- a/dev-lang/tcl/tcl-8.6.8.ebuild
+++ b/dev-lang/tcl/tcl-8.6.8.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/tcl/${PN}-core${PV}-src.tar.gz"
 
 LICENSE="tcltk"
 SLOT="0/8.6"
-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 ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug +threads"
 
 RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]"



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

2018-10-11 Thread Tobias Klausmann
commit: 3041668061961f882d41be75c5b84ac84f0360bd
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 16:49:44 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 16:49:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30416680

dev-lang/tk-8.6.8-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666316
Signed-off-by: Tobias Klausmann  gentoo.org>

 dev-lang/tk/tk-8.6.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/tk/tk-8.6.8.ebuild b/dev-lang/tk/tk-8.6.8.ebuild
index 6d76b86c92e..f3137468500 100644
--- a/dev-lang/tk/tk-8.6.8.ebuild
+++ b/dev-lang/tk/tk-8.6.8.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/tcl/${MY_P}-src.tar.gz"
 
 LICENSE="tcltk"
 SLOT="0/8.6"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug +threads truetype aqua xscreensaver"
 
 RDEPEND="



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

2018-10-11 Thread Tobias Klausmann
commit: d24325cfee9692e848893fbef5377bb51a80
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 16:49:45 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 16:50:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d24325cf

app-portage/repoman-2.3.10-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666374
Signed-off-by: Tobias Klausmann  gentoo.org>

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

diff --git a/app-portage/repoman/repoman-2.3.10.ebuild 
b/app-portage/repoman/repoman-2.3.10.ebuild
index 28da531cca6..76890f06731 100644
--- a/app-portage/repoman/repoman-2.3.10.ebuild
+++ b/app-portage/repoman/repoman-2.3.10.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == * ]]; then
S="${WORKDIR}/${P}/repoman"
 else
SRC_URI="https://dev.gentoo.org/~zmedico/portage/archives/${P}.tar.bz2;
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+   KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 fi
 
 DESCRIPTION="Repoman is a Quality Assurance tool for Gentoo ebuilds"



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

2018-10-11 Thread Tobias Klausmann
commit: d30718842c8c56bb6d9b3e40c618947a32a72a52
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 16:49:44 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 16:49:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3071884

media-libs/libraw-0.18.13-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666306
Signed-off-by: Tobias Klausmann  gentoo.org>

 media-libs/libraw/libraw-0.18.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libraw/libraw-0.18.13.ebuild 
b/media-libs/libraw/libraw-0.18.13.ebuild
index ed73dec8a40..1510fc0e5b0 100644
--- a/media-libs/libraw/libraw-0.18.13.ebuild
+++ b/media-libs/libraw/libraw-0.18.13.ebuild
@@ -22,7 +22,7 @@ SRC_URI="https://www.libraw.org/data/${MY_P}.tar.gz
 
 LICENSE="LGPL-2.1 CDDL demosaic? ( GPL-2 GPL-3 )"
 SLOT="0/16" # subslot = libraw soname version
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="demosaic examples jpeg jpeg2k +lcms openmp"
 
 RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] )



[gentoo-commits] repo/gentoo:master commit in: net-irc/eggdrop/

2018-10-11 Thread Tobias Klausmann
commit: 52090b5dcb2ddc2d891f252ece62d4c3bd4cfc38
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 16:49:39 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 16:49:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52090b5d

net-irc/eggdrop-1.8.3-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666210
Signed-off-by: Tobias Klausmann  gentoo.org>

 net-irc/eggdrop/eggdrop-1.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/eggdrop/eggdrop-1.8.3.ebuild 
b/net-irc/eggdrop/eggdrop-1.8.3.ebuild
index 3abb84aa61f..45e57088d8b 100644
--- a/net-irc/eggdrop/eggdrop-1.8.3.ebuild
+++ b/net-irc/eggdrop/eggdrop-1.8.3.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="An IRC bot extensible with C or TCL"
 HOMEPAGE="https://www.eggheads.org/;
 SRC_URI="https://ftp.eggheads.org/pub/eggdrop/source/${PV:0:3}/${P}.tar.gz;
 
-KEYWORDS="~alpha ~amd64 ia64 ~mips ppc sparc x86"
+KEYWORDS="alpha ~amd64 ia64 ~mips ppc sparc x86"
 LICENSE="GPL-2+"
 SLOT="0"
 IUSE="debug doc ipv6 ssl static"



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

2018-10-11 Thread Tobias Klausmann
commit: 114de232e67692a45254879b5883f99d6287bb68
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Oct 11 16:49:45 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Oct 11 16:49:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=114de232

dev-db/mysql++-3.2.3-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666372
Signed-off-by: Tobias Klausmann  gentoo.org>

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

diff --git a/dev-db/mysql++/mysql++-3.2.3.ebuild 
b/dev-db/mysql++/mysql++-3.2.3.ebuild
index e314c0bc75a..4e9adb04337 100644
--- a/dev-db/mysql++/mysql++-3.2.3.ebuild
+++ b/dev-db/mysql++/mysql++-3.2.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.tangentsoft.net/mysqlpp/releases/${P}.tar.gz;
 
 LICENSE="LGPL-2"
 SLOT="0/3"
-KEYWORDS="~alpha amd64 ~hppa ~mips ppc ~sparc x86 ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~hppa ~mips ppc ~sparc x86 ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos"
 IUSE="doc"
 
 RDEPEND="virtual/libmysqlclient:="



[gentoo-commits] repo/gentoo:master commit in: ros-meta/ros_control/

2018-10-11 Thread Alexis Ballier
commit: 355a84f3e52c69e1853c2ff9ab7291d1b26a2ea8
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Oct 11 13:10:21 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Oct 11 16:28:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=355a84f3

ros-meta/ros_control: Bump to 0.15.1.

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

 ros-meta/ros_control/Manifest  |  1 +
 ros-meta/ros_control/ros_control-0.15.1.ebuild | 28 ++
 2 files changed, 29 insertions(+)

diff --git a/ros-meta/ros_control/Manifest b/ros-meta/ros_control/Manifest
index fb7156fd735..2173e32e1c0 100644
--- a/ros-meta/ros_control/Manifest
+++ b/ros-meta/ros_control/Manifest
@@ -1,3 +1,4 @@
 DIST ros_control-0.14.1.tar.gz 655028 BLAKE2B 
86bdce47b947fc4f9b8be9c791ba4247240b81e391bb3f5916b26ff67256c928ea4c68d46ac3ffbe2ddb4f3b746769799bbc6617ae7822618f47770b55a09f15
 SHA512 
c668e589361084e51359bff2af055978cfd73c99fd33ae51962a7cefa7c6fd5a7027c0b2e5ca0c045a602b33b8037d587f9b4d958eea8b2f4199bff1e4016689
 DIST ros_control-0.14.2.tar.gz 655686 BLAKE2B 
e3cf0ce87c8d5324f202c1e15ece973b004d7719e30577a5661c478278826da715cd2d54f62d6def0e447d7d7ec26c3d4f4c7b2fd3c548bff960a6bdf0258fa4
 SHA512 
8368ae786ca0621fc560f6bc32e754757da0f3e4594039425047d3370c5c55a4a2836dc220452d47df49df1e609d79de976c0fe45d83bd62cff64fd5549f993b
 DIST ros_control-0.15.0.tar.gz 657854 BLAKE2B 
102c17265df13d4454249f9752491664d9c8d4354c417e99aaf7845fbea2992fbfde674e22e8415e4b55274aba6964473cc6663c0784f78cf7bb87fc232d5c30
 SHA512 
be1b208631a3018f06384bf342f6d909b082d48e5509bb2bdac1ce04eddad56ac83f8cf5c10a0c66650c2c7defa04680950bf5417723e2f8551055051c4fcc99
+DIST ros_control-0.15.1.tar.gz 658048 BLAKE2B 
f3576199e2f0ff4314088e58d773014f115628381edbcd1e38e11b5c154a1c54d8802bc367c3a32c64c3e1c664f04ae136c69cb6fa1905d444798dcd7110a51b
 SHA512 
1d65a3e0baf427507269b0588c2d16cf8a8463d72bbc84b7158ebbbce749d7c01a497ed74a6cbbae6b4c0557dabd9e8057803199853d21d2e24e2ec602e912b8

diff --git a/ros-meta/ros_control/ros_control-0.15.1.ebuild 
b/ros-meta/ros_control/ros_control-0.15.1.ebuild
new file mode 100644
index 000..296bdc2ad2d
--- /dev/null
+++ b/ros-meta/ros_control/ros_control-0.15.1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Controller interfaces, controller managers, transmissions, 
hardware_interfaces, control_toolbox"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/combined_robot_hw
+   dev-ros/combined_robot_hw_tests
+   dev-ros/controller_interface
+   dev-ros/controller_manager
+   dev-ros/controller_manager_msgs
+   dev-ros/controller_manager_tests
+   dev-ros/hardware_interface
+   dev-ros/joint_limits_interface
+   dev-ros/rqt_controller_manager
+   dev-ros/transmission_interface
+"
+DEPEND="${RDEPEND}"



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

2018-10-11 Thread Alexis Ballier
commit: 966f87db49377754cdf71f8cb3fb5b5ccdf065e5
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Oct 11 13:15:03 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Oct 11 16:28:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=966f87db

dev-libs/sdformat: bump to 6.1.0

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

 dev-libs/sdformat/Manifest  |  1 +
 dev-libs/sdformat/sdformat-6.1.0.ebuild | 38 +
 2 files changed, 39 insertions(+)

diff --git a/dev-libs/sdformat/Manifest b/dev-libs/sdformat/Manifest
index ad929aff9da..19c8b11c3d1 100644
--- a/dev-libs/sdformat/Manifest
+++ b/dev-libs/sdformat/Manifest
@@ -1,3 +1,4 @@
 DIST sdformat-5.2.0.tar.bz2 445542 BLAKE2B 
89daf9e03613bd88aceb1a2034cf0f9efe7b28ffb7aef8add4fc484a6e78d7189b4b6183fca83db4bb8017a4901d2fb3df7dc43e995bf2da8bb0fcde9510c6c9
 SHA512 
65df9f0d351ab894af41cc2081dc8ab179336092ceba17979720bed4d58f77e9648863501d83f073ea8478197e7e0a7d7a9f8efd3a54d22ee28d74765cebcee7
 DIST sdformat-5.3.0.tar.bz2 447471 BLAKE2B 
9b511782f5d2517778fc0c977d1deab00ee7789f50628546b5ca8c1f464cc3ca132b83e1054867ec1d6678bca664232e1d9a499ff095d4f9a623f5061fc340c1
 SHA512 
63106bc438decb00157eca5fd3f7f783197a1f17a76008bee5d18d5c146f199e67852ef74cbbc53918760a0cdf382628ea84d2b4618512738cd574de1fc719d8
 DIST sdformat-6.0.0.tar.bz2 473765 BLAKE2B 
af3ed14323c2bed8ee5a22580dcb6d73a5e5c772f39ad7f806bf2cdb88d6f2c885585f36a666f2ec711dbd7ad6051ba69d79d2a9f0af7ad3b3681543b9feafe7
 SHA512 
2188de97cb1eb1117a694d54a0a42112bd7e5b5a4b00c04e049de73a10947904940565e36df93ca08ea5910e628983e234d07c57694c463e0794c48e20cedb21
+DIST sdformat-6.1.0.tar.bz2 465231 BLAKE2B 
5b12c4974662245ecb01e342632e274b58512dd2c223dfbf8e1ef9bb2ba267f16bc130b62367b09a9cac9e2ccbd2829439d055f2fa062f34df9f4a6ceb1a571e
 SHA512 
6c5a03e877cba3b734f1cb132582274249bd0cb3a8d463be9077519d8ad126bb15650947b5455b3cdd1abea727918b21369b40a12de4fc5d6806880fd8686b97

diff --git a/dev-libs/sdformat/sdformat-6.1.0.ebuild 
b/dev-libs/sdformat/sdformat-6.1.0.ebuild
new file mode 100644
index 000..bc820924627
--- /dev/null
+++ b/dev-libs/sdformat/sdformat-6.1.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit cmake-utils
+
+DESCRIPTION="Simulation Description Format (SDF) parser"
+HOMEPAGE="http://sdformat.org/;
+SRC_URI="http://osrf-distributions.s3.amazonaws.com/sdformat/releases/${P}.tar.bz2;
+
+LICENSE="Apache-2.0"
+# subslot = libsdformat major
+SLOT="0/6"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+   >=dev-libs/urdfdom-1:=
+   dev-libs/tinyxml
+   dev-libs/boost:=
+   sci-libs/ignition-math:4=
+"
+DEPEND="${RDEPEND}
+   dev-lang/ruby:*
+   virtual/pkgconfig
+"
+CMAKE_BUILD_TYPE=RelWithDebInfo
+
+src_configure() {
+   echo "set (CMAKE_C_FLAGS_ALL \"${CXXFLAGS} \${CMAKE_C_FLAGS_ALL}\")" > 
"${S}/cmake/HostCFlags.cmake"
+   sed -i -e "s/LINK_FLAGS_RELWITHDEBINFO \" \"/LINK_FLAGS_RELWITHDEBINFO 
\" ${LDFLAGS} \"/" cmake/DefaultCFlags.cmake || die
+   local mycmakeargs=(
+   "-DUSE_INTERNAL_URDF=OFF"
+   "-DUSE_EXTERNAL_TINYXML=ON"
+   )
+   cmake-utils_src_configure
+}



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

2018-10-11 Thread Alexis Ballier
commit: bcd5548f61182b5756e81172d621a51525667d6b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Oct 11 13:10:03 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Oct 11 16:28:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcd5548f

dev-ros/hardware_interface: Bump to 0.15.1.

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

 dev-ros/hardware_interface/Manifest|  1 +
 .../hardware_interface-0.15.1.ebuild   | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/dev-ros/hardware_interface/Manifest 
b/dev-ros/hardware_interface/Manifest
index d459139029c..c7729ee2f85 100644
--- a/dev-ros/hardware_interface/Manifest
+++ b/dev-ros/hardware_interface/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.14.2.tar.gz 655686 BLAKE2B 
e3cf0ce87c8d5324f202c1e15ece973b004d7719e30577a5661c478278826da715cd2d54f62d6def0e447d7d7ec26c3d4f4c7b2fd3c548bff960a6bdf0258fa4
 SHA512 
8368ae786ca0621fc560f6bc32e754757da0f3e4594039425047d3370c5c55a4a2836dc220452d47df49df1e609d79de976c0fe45d83bd62cff64fd5549f993b
 DIST ros_control-0.15.0.tar.gz 657854 BLAKE2B 
102c17265df13d4454249f9752491664d9c8d4354c417e99aaf7845fbea2992fbfde674e22e8415e4b55274aba6964473cc6663c0784f78cf7bb87fc232d5c30
 SHA512 
be1b208631a3018f06384bf342f6d909b082d48e5509bb2bdac1ce04eddad56ac83f8cf5c10a0c66650c2c7defa04680950bf5417723e2f8551055051c4fcc99
+DIST ros_control-0.15.1.tar.gz 658048 BLAKE2B 
f3576199e2f0ff4314088e58d773014f115628381edbcd1e38e11b5c154a1c54d8802bc367c3a32c64c3e1c664f04ae136c69cb6fa1905d444798dcd7110a51b
 SHA512 
1d65a3e0baf427507269b0588c2d16cf8a8463d72bbc84b7158ebbbce749d7c01a497ed74a6cbbae6b4c0557dabd9e8057803199853d21d2e24e2ec602e912b8

diff --git a/dev-ros/hardware_interface/hardware_interface-0.15.1.ebuild 
b/dev-ros/hardware_interface/hardware_interface-0.15.1.ebuild
new file mode 100644
index 000..474b9e3bcba
--- /dev/null
+++ b/dev-ros/hardware_interface/hardware_interface-0.15.1.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Hardware Interface base class"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-ros/roscpp"
+DEPEND="${RDEPEND}
+   test? ( dev-cpp/gtest )"



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

2018-10-11 Thread Alexis Ballier
commit: fff99b7a25d017619059150a464c8b4a2e833231
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Oct 11 13:09:45 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Oct 11 16:28:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fff99b7a

dev-ros/controller_interface: Bump to 0.15.1.

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

 dev-ros/controller_interface/Manifest   |  1 +
 .../controller_interface-0.15.1.ebuild  | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-ros/controller_interface/Manifest 
b/dev-ros/controller_interface/Manifest
index d459139029c..c7729ee2f85 100644
--- a/dev-ros/controller_interface/Manifest
+++ b/dev-ros/controller_interface/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.14.2.tar.gz 655686 BLAKE2B 
e3cf0ce87c8d5324f202c1e15ece973b004d7719e30577a5661c478278826da715cd2d54f62d6def0e447d7d7ec26c3d4f4c7b2fd3c548bff960a6bdf0258fa4
 SHA512 
8368ae786ca0621fc560f6bc32e754757da0f3e4594039425047d3370c5c55a4a2836dc220452d47df49df1e609d79de976c0fe45d83bd62cff64fd5549f993b
 DIST ros_control-0.15.0.tar.gz 657854 BLAKE2B 
102c17265df13d4454249f9752491664d9c8d4354c417e99aaf7845fbea2992fbfde674e22e8415e4b55274aba6964473cc6663c0784f78cf7bb87fc232d5c30
 SHA512 
be1b208631a3018f06384bf342f6d909b082d48e5509bb2bdac1ce04eddad56ac83f8cf5c10a0c66650c2c7defa04680950bf5417723e2f8551055051c4fcc99
+DIST ros_control-0.15.1.tar.gz 658048 BLAKE2B 
f3576199e2f0ff4314088e58d773014f115628381edbcd1e38e11b5c154a1c54d8802bc367c3a32c64c3e1c664f04ae136c69cb6fa1905d444798dcd7110a51b
 SHA512 
1d65a3e0baf427507269b0588c2d16cf8a8463d72bbc84b7158ebbbce749d7c01a497ed74a6cbbae6b4c0557dabd9e8057803199853d21d2e24e2ec602e912b8

diff --git a/dev-ros/controller_interface/controller_interface-0.15.1.ebuild 
b/dev-ros/controller_interface/controller_interface-0.15.1.ebuild
new file mode 100644
index 000..d2499095662
--- /dev/null
+++ b/dev-ros/controller_interface/controller_interface-0.15.1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Interface base class for controllers"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/roscpp
+   dev-ros/hardware_interface
+   dev-ros/pluginlib
+"
+DEPEND="${RDEPEND}"



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

2018-10-11 Thread Alexis Ballier
commit: d9201eda1577fa9ddd6215d4f5c63a85bb166c6e
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Oct 11 13:09:54 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Oct 11 16:28:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9201eda

dev-ros/controller_manager_msgs: Bump to 0.15.1.

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

 dev-ros/controller_manager_msgs/Manifest |  1 +
 .../controller_manager_msgs-0.15.1.ebuild| 20 
 2 files changed, 21 insertions(+)

diff --git a/dev-ros/controller_manager_msgs/Manifest 
b/dev-ros/controller_manager_msgs/Manifest
index d459139029c..c7729ee2f85 100644
--- a/dev-ros/controller_manager_msgs/Manifest
+++ b/dev-ros/controller_manager_msgs/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.14.2.tar.gz 655686 BLAKE2B 
e3cf0ce87c8d5324f202c1e15ece973b004d7719e30577a5661c478278826da715cd2d54f62d6def0e447d7d7ec26c3d4f4c7b2fd3c548bff960a6bdf0258fa4
 SHA512 
8368ae786ca0621fc560f6bc32e754757da0f3e4594039425047d3370c5c55a4a2836dc220452d47df49df1e609d79de976c0fe45d83bd62cff64fd5549f993b
 DIST ros_control-0.15.0.tar.gz 657854 BLAKE2B 
102c17265df13d4454249f9752491664d9c8d4354c417e99aaf7845fbea2992fbfde674e22e8415e4b55274aba6964473cc6663c0784f78cf7bb87fc232d5c30
 SHA512 
be1b208631a3018f06384bf342f6d909b082d48e5509bb2bdac1ce04eddad56ac83f8cf5c10a0c66650c2c7defa04680950bf5417723e2f8551055051c4fcc99
+DIST ros_control-0.15.1.tar.gz 658048 BLAKE2B 
f3576199e2f0ff4314088e58d773014f115628381edbcd1e38e11b5c154a1c54d8802bc367c3a32c64c3e1c664f04ae136c69cb6fa1905d444798dcd7110a51b
 SHA512 
1d65a3e0baf427507269b0588c2d16cf8a8463d72bbc84b7158ebbbce749d7c01a497ed74a6cbbae6b4c0557dabd9e8057803199853d21d2e24e2ec602e912b8

diff --git 
a/dev-ros/controller_manager_msgs/controller_manager_msgs-0.15.1.ebuild 
b/dev-ros/controller_manager_msgs/controller_manager_msgs-0.15.1.ebuild
new file mode 100644
index 000..70b132e01e6
--- /dev/null
+++ b/dev-ros/controller_manager_msgs/controller_manager_msgs-0.15.1.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+CATKIN_HAS_MESSAGES=yes
+CATKIN_MESSAGES_TRANSITIVE_DEPS="dev-ros/std_msgs"
+
+inherit ros-catkin
+
+DESCRIPTION="The controller manager"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-ros/rospy[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



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

2018-10-11 Thread Alexis Ballier
commit: 31e2b6f15eb2ff36dc03456f6c0be0e4d259df5a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Oct 11 16:16:23 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Oct 11 16:28:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31e2b6f1

media-libs/x265: bump to 2.9

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

 media-libs/x265/Manifest  | 1 +
 media-libs/x265/{x265-.ebuild => x265-2.9.ebuild} | 4 ++--
 media-libs/x265/x265-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/media-libs/x265/Manifest b/media-libs/x265/Manifest
index 6b08aed8c9a..7740dc8a147 100644
--- a/media-libs/x265/Manifest
+++ b/media-libs/x265/Manifest
@@ -2,3 +2,4 @@ DIST x265_2.2.tar.gz 1203801 BLAKE2B 
239b34c45b07c5bea83f0555d2d8f44322bd8fb3164
 DIST x265_2.6.tar.gz 1271976 BLAKE2B 
f649c47209af0f1cfff7ff736b9f43f20c9eaaf14e8428f6eff4fd9e3ce925de6e1ecde1be55b5d654321614fc245837d0bc603b72a92c41b92c729dc20f5cb6
 SHA512 
35c3716313e3dfd1555dd725b60f2b3b00a615d8b8d8267439722b52021d47e34eebf94b837b92a92d40c7ffab7b3198d6391365d62672b257c0a87d1db8a736
 DIST x265_2.7.tar.gz 1282742 BLAKE2B 
5f7290a71009f1ba177b2a653c48b62d8067930e8e53e4f9dd149037d3cbc69acbcae9c5364d46e6cc127f7d70e2acaaed2abf3ef065ecae303088132f341757
 SHA512 
58582ff5c282a8ca6213a98495b95fa941f323fa454924e4751dde6d2a0e87a08d6e8d98012164a3d83523f2b004e7a1420b60b64719fe30f460dd10ec075094
 DIST x265_2.8.tar.gz 1379551 BLAKE2B 
c124864a08492739cdde89e44d72c84ad94a0b236d2c59d995e53a26d1a5fb9ec1557a03640a3065a727be69bfb0c0633b50351dc875c9706a1550f488c8ee24
 SHA512 
c2a8eaec64aa022badcbcd2a96304a9abd9d08489300b6a9c4c9d76066f3d9848e6948238c84ae16ea91bff0b2fac528a67ee29950d94dcd0ea7c0e9e7baa714
+DIST x265_2.9.tar.gz 1385848 BLAKE2B 
ff14eba55cea0646ad0ffc12f9032c9033d23c9d805939fc3a049911ebae459eee097349f074dcd224bef97d6140dbc37ee9bd3db54c5473b158e135784d2179
 SHA512 
270818c7fd84947fde371e32bef225c1880cfb0bcd95378d95b51f50577a134d7cd585fcdfa43b103a24d76c5ad826b09509a07eb9e208e8f2b56f2f77365cf3

diff --git a/media-libs/x265/x265-.ebuild b/media-libs/x265/x265-2.9.ebuild
similarity index 99%
copy from media-libs/x265/x265-.ebuild
copy to media-libs/x265/x265-2.9.ebuild
index a8bb14b86fa..b62476a545d 100644
--- a/media-libs/x265/x265-.ebuild
+++ b/media-libs/x265/x265-2.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,7 +18,7 @@ HOMEPAGE="http://x265.org/;
 
 LICENSE="GPL-2"
 # subslot = libx265 soname
-SLOT="0/161"
+SLOT="0/165"
 IUSE="+10bit +12bit cpu_flags_arm_neon numa pic power8 test"
 
 ASM_DEPEND=">=dev-lang/yasm-1.2.0"

diff --git a/media-libs/x265/x265-.ebuild b/media-libs/x265/x265-.ebuild
index a8bb14b86fa..b62476a545d 100644
--- a/media-libs/x265/x265-.ebuild
+++ b/media-libs/x265/x265-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,7 +18,7 @@ HOMEPAGE="http://x265.org/;
 
 LICENSE="GPL-2"
 # subslot = libx265 soname
-SLOT="0/161"
+SLOT="0/165"
 IUSE="+10bit +12bit cpu_flags_arm_neon numa pic power8 test"
 
 ASM_DEPEND=">=dev-lang/yasm-1.2.0"



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

2018-10-11 Thread Alexis Ballier
commit: 4ca49a4572f7fd07148f21cf5f3a79c65955c84c
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Oct 11 13:09:41 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Oct 11 16:28:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ca49a45

dev-ros/combined_robot_hw_tests: Bump to 0.15.1.

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

 dev-ros/combined_robot_hw_tests/Manifest   |  1 +
 .../combined_robot_hw_tests-0.15.1.ebuild  | 27 ++
 2 files changed, 28 insertions(+)

diff --git a/dev-ros/combined_robot_hw_tests/Manifest 
b/dev-ros/combined_robot_hw_tests/Manifest
index d459139029c..c7729ee2f85 100644
--- a/dev-ros/combined_robot_hw_tests/Manifest
+++ b/dev-ros/combined_robot_hw_tests/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.14.2.tar.gz 655686 BLAKE2B 
e3cf0ce87c8d5324f202c1e15ece973b004d7719e30577a5661c478278826da715cd2d54f62d6def0e447d7d7ec26c3d4f4c7b2fd3c548bff960a6bdf0258fa4
 SHA512 
8368ae786ca0621fc560f6bc32e754757da0f3e4594039425047d3370c5c55a4a2836dc220452d47df49df1e609d79de976c0fe45d83bd62cff64fd5549f993b
 DIST ros_control-0.15.0.tar.gz 657854 BLAKE2B 
102c17265df13d4454249f9752491664d9c8d4354c417e99aaf7845fbea2992fbfde674e22e8415e4b55274aba6964473cc6663c0784f78cf7bb87fc232d5c30
 SHA512 
be1b208631a3018f06384bf342f6d909b082d48e5509bb2bdac1ce04eddad56ac83f8cf5c10a0c66650c2c7defa04680950bf5417723e2f8551055051c4fcc99
+DIST ros_control-0.15.1.tar.gz 658048 BLAKE2B 
f3576199e2f0ff4314088e58d773014f115628381edbcd1e38e11b5c154a1c54d8802bc367c3a32c64c3e1c664f04ae136c69cb6fa1905d444798dcd7110a51b
 SHA512 
1d65a3e0baf427507269b0588c2d16cf8a8463d72bbc84b7158ebbbce749d7c01a497ed74a6cbbae6b4c0557dabd9e8057803199853d21d2e24e2ec602e912b8

diff --git 
a/dev-ros/combined_robot_hw_tests/combined_robot_hw_tests-0.15.1.ebuild 
b/dev-ros/combined_robot_hw_tests/combined_robot_hw_tests-0.15.1.ebuild
new file mode 100644
index 000..9c9859bfbe6
--- /dev/null
+++ b/dev-ros/combined_robot_hw_tests/combined_robot_hw_tests-0.15.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="Combined Robot HW class tests"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/combined_robot_hw
+   dev-ros/controller_manager
+   dev-ros/controller_manager_tests
+   dev-ros/hardware_interface
+   dev-ros/roscpp
+   dev-libs/boost:=
+   dev-libs/console_bridge:=
+"
+DEPEND="${RDEPEND}
+   test? ( dev-ros/rostest[${PYTHON_USEDEP}] )"



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

2018-10-11 Thread Alexis Ballier
commit: 117ac8cc6aaee646fa8cd904564b262b1caa31d9
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Oct 11 13:09:36 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Oct 11 16:28:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=117ac8cc

dev-ros/combined_robot_hw: Bump to 0.15.1.

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

 dev-ros/combined_robot_hw/Manifest |  1 +
 .../combined_robot_hw-0.15.1.ebuild| 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-ros/combined_robot_hw/Manifest 
b/dev-ros/combined_robot_hw/Manifest
index d459139029c..c7729ee2f85 100644
--- a/dev-ros/combined_robot_hw/Manifest
+++ b/dev-ros/combined_robot_hw/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.14.2.tar.gz 655686 BLAKE2B 
e3cf0ce87c8d5324f202c1e15ece973b004d7719e30577a5661c478278826da715cd2d54f62d6def0e447d7d7ec26c3d4f4c7b2fd3c548bff960a6bdf0258fa4
 SHA512 
8368ae786ca0621fc560f6bc32e754757da0f3e4594039425047d3370c5c55a4a2836dc220452d47df49df1e609d79de976c0fe45d83bd62cff64fd5549f993b
 DIST ros_control-0.15.0.tar.gz 657854 BLAKE2B 
102c17265df13d4454249f9752491664d9c8d4354c417e99aaf7845fbea2992fbfde674e22e8415e4b55274aba6964473cc6663c0784f78cf7bb87fc232d5c30
 SHA512 
be1b208631a3018f06384bf342f6d909b082d48e5509bb2bdac1ce04eddad56ac83f8cf5c10a0c66650c2c7defa04680950bf5417723e2f8551055051c4fcc99
+DIST ros_control-0.15.1.tar.gz 658048 BLAKE2B 
f3576199e2f0ff4314088e58d773014f115628381edbcd1e38e11b5c154a1c54d8802bc367c3a32c64c3e1c664f04ae136c69cb6fa1905d444798dcd7110a51b
 SHA512 
1d65a3e0baf427507269b0588c2d16cf8a8463d72bbc84b7158ebbbce749d7c01a497ed74a6cbbae6b4c0557dabd9e8057803199853d21d2e24e2ec602e912b8

diff --git a/dev-ros/combined_robot_hw/combined_robot_hw-0.15.1.ebuild 
b/dev-ros/combined_robot_hw/combined_robot_hw-0.15.1.ebuild
new file mode 100644
index 000..3b7d67c426e
--- /dev/null
+++ b/dev-ros/combined_robot_hw/combined_robot_hw-0.15.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Combined Robot HW class"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   >=dev-ros/hardware_interface-0.15
+   dev-ros/pluginlib
+   dev-libs/tinyxml2:=
+   dev-ros/roscpp
+   dev-libs/boost:=
+   dev-libs/console_bridge:=
+"
+DEPEND="${RDEPEND}"



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

2018-10-11 Thread Alexis Ballier
commit: 6034f7c40a86e260e7b9334e08e4e3714310257d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Oct 11 13:09:50 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Oct 11 16:28:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6034f7c4

dev-ros/controller_manager: Bump to 0.15.1.

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

 dev-ros/controller_manager/Manifest|  1 +
 .../controller_manager-0.15.1.ebuild   | 31 ++
 2 files changed, 32 insertions(+)

diff --git a/dev-ros/controller_manager/Manifest 
b/dev-ros/controller_manager/Manifest
index d459139029c..c7729ee2f85 100644
--- a/dev-ros/controller_manager/Manifest
+++ b/dev-ros/controller_manager/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.14.2.tar.gz 655686 BLAKE2B 
e3cf0ce87c8d5324f202c1e15ece973b004d7719e30577a5661c478278826da715cd2d54f62d6def0e447d7d7ec26c3d4f4c7b2fd3c548bff960a6bdf0258fa4
 SHA512 
8368ae786ca0621fc560f6bc32e754757da0f3e4594039425047d3370c5c55a4a2836dc220452d47df49df1e609d79de976c0fe45d83bd62cff64fd5549f993b
 DIST ros_control-0.15.0.tar.gz 657854 BLAKE2B 
102c17265df13d4454249f9752491664d9c8d4354c417e99aaf7845fbea2992fbfde674e22e8415e4b55274aba6964473cc6663c0784f78cf7bb87fc232d5c30
 SHA512 
be1b208631a3018f06384bf342f6d909b082d48e5509bb2bdac1ce04eddad56ac83f8cf5c10a0c66650c2c7defa04680950bf5417723e2f8551055051c4fcc99
+DIST ros_control-0.15.1.tar.gz 658048 BLAKE2B 
f3576199e2f0ff4314088e58d773014f115628381edbcd1e38e11b5c154a1c54d8802bc367c3a32c64c3e1c664f04ae136c69cb6fa1905d444798dcd7110a51b
 SHA512 
1d65a3e0baf427507269b0588c2d16cf8a8463d72bbc84b7158ebbbce749d7c01a497ed74a6cbbae6b4c0557dabd9e8057803199853d21d2e24e2ec602e912b8

diff --git a/dev-ros/controller_manager/controller_manager-0.15.1.ebuild 
b/dev-ros/controller_manager/controller_manager-0.15.1.ebuild
new file mode 100644
index 000..a6d49e76c54
--- /dev/null
+++ b/dev-ros/controller_manager/controller_manager-0.15.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="The controller manager"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   >=dev-ros/controller_interface-0.15
+   
>=dev-ros/controller_manager_msgs-0.10.0[${CATKIN_MESSAGES_PYTHON_USEDEP},${CATKIN_MESSAGES_CXX_USEDEP}]
+   >=dev-ros/hardware_interface-0.10.0
+   dev-ros/pluginlib
+   dev-libs/tinyxml2:=
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   dev-ros/roslib[${PYTHON_USEDEP}]
+   dev-ros/rosparam[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+   dev-libs/console_bridge:=
+"
+DEPEND="${RDEPEND}
+   test? ( dev-ros/rostest[${PYTHON_USEDEP}] )"



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

2018-10-11 Thread Alexis Ballier
commit: f0ef5565eeb4555d370f0e899b66c3357b0c7104
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Oct 11 13:09:59 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Oct 11 16:28:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0ef5565

dev-ros/controller_manager_tests: Bump to 0.15.1.

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

 dev-ros/controller_manager_tests/Manifest  |  1 +
 .../controller_manager_tests-0.15.1.ebuild | 29 ++
 2 files changed, 30 insertions(+)

diff --git a/dev-ros/controller_manager_tests/Manifest 
b/dev-ros/controller_manager_tests/Manifest
index d459139029c..c7729ee2f85 100644
--- a/dev-ros/controller_manager_tests/Manifest
+++ b/dev-ros/controller_manager_tests/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.14.2.tar.gz 655686 BLAKE2B 
e3cf0ce87c8d5324f202c1e15ece973b004d7719e30577a5661c478278826da715cd2d54f62d6def0e447d7d7ec26c3d4f4c7b2fd3c548bff960a6bdf0258fa4
 SHA512 
8368ae786ca0621fc560f6bc32e754757da0f3e4594039425047d3370c5c55a4a2836dc220452d47df49df1e609d79de976c0fe45d83bd62cff64fd5549f993b
 DIST ros_control-0.15.0.tar.gz 657854 BLAKE2B 
102c17265df13d4454249f9752491664d9c8d4354c417e99aaf7845fbea2992fbfde674e22e8415e4b55274aba6964473cc6663c0784f78cf7bb87fc232d5c30
 SHA512 
be1b208631a3018f06384bf342f6d909b082d48e5509bb2bdac1ce04eddad56ac83f8cf5c10a0c66650c2c7defa04680950bf5417723e2f8551055051c4fcc99
+DIST ros_control-0.15.1.tar.gz 658048 BLAKE2B 
f3576199e2f0ff4314088e58d773014f115628381edbcd1e38e11b5c154a1c54d8802bc367c3a32c64c3e1c664f04ae136c69cb6fa1905d444798dcd7110a51b
 SHA512 
1d65a3e0baf427507269b0588c2d16cf8a8463d72bbc84b7158ebbbce749d7c01a497ed74a6cbbae6b4c0557dabd9e8057803199853d21d2e24e2ec602e912b8

diff --git 
a/dev-ros/controller_manager_tests/controller_manager_tests-0.15.1.ebuild 
b/dev-ros/controller_manager_tests/controller_manager_tests-0.15.1.ebuild
new file mode 100644
index 000..77cb39291f4
--- /dev/null
+++ b/dev-ros/controller_manager_tests/controller_manager_tests-0.15.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for the controller manager"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/controller_manager[${PYTHON_USEDEP}]
+   dev-ros/controller_interface
+   dev-ros/control_toolbox
+   dev-libs/boost:=
+   dev-libs/console_bridge:=
+"
+DEPEND="${RDEPEND}
+   test? (
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-ros/rosservice[${PYTHON_USEDEP}]
+   )"



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

2018-10-11 Thread Alexis Ballier
commit: 4f93d268c923d1d2a326db6004fdcb241c84c7a2
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Oct 11 13:10:07 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Oct 11 16:28:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f93d268

dev-ros/joint_limits_interface: Bump to 0.15.1.

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

 dev-ros/joint_limits_interface/Manifest|  1 +
 .../joint_limits_interface-0.15.1.ebuild   | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-ros/joint_limits_interface/Manifest 
b/dev-ros/joint_limits_interface/Manifest
index d459139029c..c7729ee2f85 100644
--- a/dev-ros/joint_limits_interface/Manifest
+++ b/dev-ros/joint_limits_interface/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.14.2.tar.gz 655686 BLAKE2B 
e3cf0ce87c8d5324f202c1e15ece973b004d7719e30577a5661c478278826da715cd2d54f62d6def0e447d7d7ec26c3d4f4c7b2fd3c548bff960a6bdf0258fa4
 SHA512 
8368ae786ca0621fc560f6bc32e754757da0f3e4594039425047d3370c5c55a4a2836dc220452d47df49df1e609d79de976c0fe45d83bd62cff64fd5549f993b
 DIST ros_control-0.15.0.tar.gz 657854 BLAKE2B 
102c17265df13d4454249f9752491664d9c8d4354c417e99aaf7845fbea2992fbfde674e22e8415e4b55274aba6964473cc6663c0784f78cf7bb87fc232d5c30
 SHA512 
be1b208631a3018f06384bf342f6d909b082d48e5509bb2bdac1ce04eddad56ac83f8cf5c10a0c66650c2c7defa04680950bf5417723e2f8551055051c4fcc99
+DIST ros_control-0.15.1.tar.gz 658048 BLAKE2B 
f3576199e2f0ff4314088e58d773014f115628381edbcd1e38e11b5c154a1c54d8802bc367c3a32c64c3e1c664f04ae136c69cb6fa1905d444798dcd7110a51b
 SHA512 
1d65a3e0baf427507269b0588c2d16cf8a8463d72bbc84b7158ebbbce749d7c01a497ed74a6cbbae6b4c0557dabd9e8057803199853d21d2e24e2ec602e912b8

diff --git 
a/dev-ros/joint_limits_interface/joint_limits_interface-0.15.1.ebuild 
b/dev-ros/joint_limits_interface/joint_limits_interface-0.15.1.ebuild
new file mode 100644
index 000..af15ec2bb5c
--- /dev/null
+++ b/dev-ros/joint_limits_interface/joint_limits_interface-0.15.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="Interface for enforcing joint limits"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/roscpp
+   dev-ros/hardware_interface
+   dev-libs/urdfdom
+   dev-ros/urdf
+"
+DEPEND="${RDEPEND}
+   test? ( dev-ros/rostest dev-cpp/gtest )"



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

2018-10-11 Thread Alexis Ballier
commit: 642bc37f2ac85fce8c760c72ae83fa2fa44d9486
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Oct 11 13:10:16 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Oct 11 16:28:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=642bc37f

dev-ros/transmission_interface: Bump to 0.15.1.

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

 dev-ros/transmission_interface/Manifest|  1 +
 .../transmission_interface-0.15.1.ebuild   | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-ros/transmission_interface/Manifest 
b/dev-ros/transmission_interface/Manifest
index d459139029c..c7729ee2f85 100644
--- a/dev-ros/transmission_interface/Manifest
+++ b/dev-ros/transmission_interface/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.14.2.tar.gz 655686 BLAKE2B 
e3cf0ce87c8d5324f202c1e15ece973b004d7719e30577a5661c478278826da715cd2d54f62d6def0e447d7d7ec26c3d4f4c7b2fd3c548bff960a6bdf0258fa4
 SHA512 
8368ae786ca0621fc560f6bc32e754757da0f3e4594039425047d3370c5c55a4a2836dc220452d47df49df1e609d79de976c0fe45d83bd62cff64fd5549f993b
 DIST ros_control-0.15.0.tar.gz 657854 BLAKE2B 
102c17265df13d4454249f9752491664d9c8d4354c417e99aaf7845fbea2992fbfde674e22e8415e4b55274aba6964473cc6663c0784f78cf7bb87fc232d5c30
 SHA512 
be1b208631a3018f06384bf342f6d909b082d48e5509bb2bdac1ce04eddad56ac83f8cf5c10a0c66650c2c7defa04680950bf5417723e2f8551055051c4fcc99
+DIST ros_control-0.15.1.tar.gz 658048 BLAKE2B 
f3576199e2f0ff4314088e58d773014f115628381edbcd1e38e11b5c154a1c54d8802bc367c3a32c64c3e1c664f04ae136c69cb6fa1905d444798dcd7110a51b
 SHA512 
1d65a3e0baf427507269b0588c2d16cf8a8463d72bbc84b7158ebbbce749d7c01a497ed74a6cbbae6b4c0557dabd9e8057803199853d21d2e24e2ec602e912b8

diff --git 
a/dev-ros/transmission_interface/transmission_interface-0.15.1.ebuild 
b/dev-ros/transmission_interface/transmission_interface-0.15.1.ebuild
new file mode 100644
index 000..5860da75624
--- /dev/null
+++ b/dev-ros/transmission_interface/transmission_interface-0.15.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Transmission Interface"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/hardware_interface
+   dev-ros/pluginlib
+   dev-libs/tinyxml2:=
+   dev-libs/console_bridge:=
+   dev-ros/resource_retriever
+   dev-ros/roscpp
+   dev-libs/tinyxml
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}"



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

2018-10-11 Thread Alexis Ballier
commit: bcc7f2b160556bb0509a7bed9b2ee50d53b074c1
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Oct 11 13:10:11 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Oct 11 16:28:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcc7f2b1

dev-ros/rqt_controller_manager: Bump to 0.15.1.

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

 dev-ros/rqt_controller_manager/Manifest |  1 +
 .../rqt_controller_manager-0.15.1.ebuild| 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-ros/rqt_controller_manager/Manifest 
b/dev-ros/rqt_controller_manager/Manifest
index d459139029c..c7729ee2f85 100644
--- a/dev-ros/rqt_controller_manager/Manifest
+++ b/dev-ros/rqt_controller_manager/Manifest
@@ -1,2 +1,3 @@
 DIST ros_control-0.14.2.tar.gz 655686 BLAKE2B 
e3cf0ce87c8d5324f202c1e15ece973b004d7719e30577a5661c478278826da715cd2d54f62d6def0e447d7d7ec26c3d4f4c7b2fd3c548bff960a6bdf0258fa4
 SHA512 
8368ae786ca0621fc560f6bc32e754757da0f3e4594039425047d3370c5c55a4a2836dc220452d47df49df1e609d79de976c0fe45d83bd62cff64fd5549f993b
 DIST ros_control-0.15.0.tar.gz 657854 BLAKE2B 
102c17265df13d4454249f9752491664d9c8d4354c417e99aaf7845fbea2992fbfde674e22e8415e4b55274aba6964473cc6663c0784f78cf7bb87fc232d5c30
 SHA512 
be1b208631a3018f06384bf342f6d909b082d48e5509bb2bdac1ce04eddad56ac83f8cf5c10a0c66650c2c7defa04680950bf5417723e2f8551055051c4fcc99
+DIST ros_control-0.15.1.tar.gz 658048 BLAKE2B 
f3576199e2f0ff4314088e58d773014f115628381edbcd1e38e11b5c154a1c54d8802bc367c3a32c64c3e1c664f04ae136c69cb6fa1905d444798dcd7110a51b
 SHA512 
1d65a3e0baf427507269b0588c2d16cf8a8463d72bbc84b7158ebbbce749d7c01a497ed74a6cbbae6b4c0557dabd9e8057803199853d21d2e24e2ec602e912b8

diff --git 
a/dev-ros/rqt_controller_manager/rqt_controller_manager-0.15.1.ebuild 
b/dev-ros/rqt_controller_manager/rqt_controller_manager-0.15.1.ebuild
new file mode 100644
index 000..c5e66c00d1f
--- /dev/null
+++ b/dev-ros/rqt_controller_manager/rqt_controller_manager-0.15.1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-controls/ros_control;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="RQT control manager plugin"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/controller_manager[${PYTHON_USEDEP}]
+   dev-ros/rqt_gui[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"



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

2018-10-11 Thread Daniel Pielmeier
commit: 010ebc0b2a5895c147c626f0d8bb95d7d28272a8
Author: Daniel Pielmeier  gentoo  org>
AuthorDate: Thu Oct 11 16:15:05 2018 +
Commit: Daniel Pielmeier  gentoo  org>
CommitDate: Thu Oct 11 16:15:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=010ebc0b

net-print/hplip: Revision bump to 3.18.6-r2. Fixes bug #668048.

Thanks to hangglider for the report and Karl-Johan Karlsson for
pointing me into the right direction.

Signed-off-by: Daniel Pielmeier  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 net-print/hplip/Manifest   |   1 +
 net-print/hplip/hplip-3.18.6-r2.ebuild | 274 +
 2 files changed, 275 insertions(+)

diff --git a/net-print/hplip/Manifest b/net-print/hplip/Manifest
index 7d3121b001e..92e4e8c3c8a 100644
--- a/net-print/hplip/Manifest
+++ b/net-print/hplip/Manifest
@@ -1,3 +1,4 @@
 DIST hplip-3.18.3-patches-2.tar.xz 8936 BLAKE2B 
58c17f3b6332de1edd88a3b458f1e9f856bc917842f62eee0808469ec14ff5793cd33c7a2ba30593eba624e58c12a6d426fa43a7d375d6ac50b985b895a85b4c
 SHA512 
cbafcd9616f9c86318007b703325d3429ed0698c3fc9d3eddd422e4cd7a16c77320ac168bfa01b5874213e1740cfaae1867d31c3cf96cd57573ad33651a674ed
 DIST hplip-3.18.6-patches-1.tar.xz 10612 BLAKE2B 
5fade89a54b5db9002ada0b1819b41cc177d1a709bdb74a32359927ddac35445275bdec4bcf64a8413fba94bde66c5f4eda2a8a460cc13afc187c59aa388
 SHA512 
ee1e4848ec7060aed688fb46263f87838a311a4d0161dd414ef6b4231c23a11090679d2525c65c2686838436735427a40de0ad80bca4cd5c48eff5207c59
+DIST hplip-3.18.6-patches-2.tar.xz 10632 BLAKE2B 
7f0732e082bf44bfd5818a86f35f95a61c5ec6d0218a2be448746a950081d6fb551aea8183763de20154ab40f77f430941d14fa537e367f59d05fc9f0f182f7c
 SHA512 
94be17d18075ea702a1fedec7ae9cc8ac55dfe5d0b2f8f4004412ae3bb84140aac11bb7f45d0ef8f06cbd560daa37859f14aedce87dc39b8368dbd07c7b85733
 DIST hplip-3.18.6.tar.gz 22590564 BLAKE2B 
edbc80120bb332de9848e528095839b8f3496404ae83482a17bb8bd196c30dd8d3fca4d3dbb60c048bfbeeddd4384b4d7844798dad993eaf52d5418a9391b4ad
 SHA512 
deb4e6e1c7e9ea7452967f7d7d7fd93e92eb59406b4978bb9b874db93bc5022b25aab012a7420ac3e991259032bc7cb749cd924c93a164544e29a4152962184f

diff --git a/net-print/hplip/hplip-3.18.6-r2.ebuild 
b/net-print/hplip/hplip-3.18.6-r2.ebuild
new file mode 100644
index 000..a7c9aebea45
--- /dev/null
+++ b/net-print/hplip/hplip-3.18.6-r2.ebuild
@@ -0,0 +1,274 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_REQ_USE="threads,xml"
+
+# 14 and 15 spit out a lot of warnings about subdirs
+WANT_AUTOMAKE="1.13"
+
+inherit autotools linux-info python-single-r1 readme.gentoo-r1 udev
+
+DESCRIPTION="HP Linux Imaging and Printing - Print, scan, fax drivers and 
service tools"
+HOMEPAGE="https://developers.hp.com/hp-linux-imaging-and-printing;
+SRC_URI="mirror://sourceforge/hplip/${P}.tar.gz
+   
https://dev.gentoo.org/~billie/distfiles/${PN}-3.18.6-patches-2.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+
+IUSE="doc fax +hpcups hpijs kde libnotify libressl -libusb0 minimal parport 
policykit qt5 scanner +snmp static-ppds X"
+
+COMMON_DEPEND="
+   net-print/cups
+   virtual/jpeg:0
+   hpijs? ( net-print/cups-filters[foomatic] )
+   !minimal? (
+   ${PYTHON_DEPS}
+   sys-apps/dbus
+   !libusb0? ( virtual/libusb:1 )
+   libusb0? ( virtual/libusb:0 )
+   scanner? ( media-gfx/sane-backends )
+   snmp? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:= )
+   net-analyzer/net-snmp
+   )
+   )
+"
+BDEPEND="
+   virtual/pkgconfig
+"
+DEPEND="
+   ${COMMON_DEPEND}
+"
+RDEPEND="
+   ${COMMON_DEPEND}
+   app-text/ghostscript-gpl
+   !minimal? (
+   >=dev-python/dbus-python-1.2.0-r1[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'dev-python/pygobject:2[${PYTHON_USEDEP}]' 'python2*')
+   $(python_gen_cond_dep 
'dev-python/pygobject:3[${PYTHON_USEDEP}]' 'python3*')
+   fax? ( dev-python/reportlab[${PYTHON_USEDEP}] )
+   kernel_linux? ( virtual/udev )
+   qt5? (
+   
>=dev-python/PyQt5-5.5.1[dbus,gui,widgets,${PYTHON_USEDEP}]
+   libnotify? ( dev-python/notify2[${PYTHON_USEDEP}] )
+   )
+   scanner? (
+   >=dev-python/reportlab-3.2[${PYTHON_USEDEP}]
+   >=dev-python/pillow-3.1.1[${PYTHON_USEDEP}]
+   X? (
+   || (
+   kde? ( kde-misc/skanlite )
+   media-gfx/xsane
+   media-gfx/sane-frontends
+   )
+   )
+

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

2018-10-11 Thread Virgil Dupras
commit: 28a61d271f12604285852fcbe20b4bfa1b454cde
Author: Virgil Dupras  gentoo  org>
AuthorDate: Thu Oct 11 15:59:54 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Thu Oct 11 15:59:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28a61d27

app-misc/mosquitto: remove old

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

 app-misc/mosquitto/Manifest   |   1 -
 app-misc/mosquitto/mosquitto-1.4.14-r1.ebuild |  97 
 app-misc/mosquitto/mosquitto-1.4.15-r3.ebuild | 102 --
 app-misc/mosquitto/mosquitto-1.4.15.ebuild|  99 -
 4 files changed, 299 deletions(-)

diff --git a/app-misc/mosquitto/Manifest b/app-misc/mosquitto/Manifest
index 83420091448..edeb703fb8b 100644
--- a/app-misc/mosquitto/Manifest
+++ b/app-misc/mosquitto/Manifest
@@ -1,3 +1,2 @@
 DIST mosquitto-1.4.14.tar.gz 365596 BLAKE2B 
92bcb1fd9e67711d6ce8db5e767be31a1321866205cf4cad684d8b77a8b14a2eaf5e4367a74d5dd8f814f0d229dc77ce878879632c0c34c6a23f7975bf6ae8c7
 SHA512 
dc75a971354f87deeb79f32435acfae9bc561a1a24a75ee4940a35176ff91758071930d2105d8dee2a090e07527dbfaa5692bece67e03cc87e8b4b8b46f846c2
-DIST mosquitto-1.4.15.tar.gz 368961 BLAKE2B 
28bfab7d41d9e057ba8b52e0c428967ecc5d0c25a3d73dca420ae883c2b462ee02da1eeb9c22f4d392f0ccf62224acab6f24d4a0798a594f4b9f90c907fa1495
 SHA512 
36b06547553cf28af3ca9b728c42fc27e849c4ae84d7964572d430233ab26e2b59eee2a215ac23ddf2d0bef419e7c70e64e2a22c397fadb3e0677314d03f1100
 DIST mosquitto-1.5.1.tar.gz 430066 BLAKE2B 
ab2df1b77cfcb71c95d3412c4c3da4cf0af1a48d700642a12c8e0334762e9e8868ba0cbd69311d7aa324f2920d3be227149ba4e0bd7558ba10e5d7d1f0b24996
 SHA512 
7b076a98ca87f9fa4579eb4a6b62b171df746920719e9bd6efce0a4815c15edc9da177669819509184d2b01ed0756be8259adba344df690efe0547fd6741

diff --git a/app-misc/mosquitto/mosquitto-1.4.14-r1.ebuild 
b/app-misc/mosquitto/mosquitto-1.4.14-r1.ebuild
deleted file mode 100644
index 96530da48cb..000
--- a/app-misc/mosquitto/mosquitto-1.4.14-r1.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit systemd user toolchain-funcs python-any-r1
-
-DESCRIPTION="An Open Source MQTT v3 Broker"
-HOMEPAGE="http://mosquitto.org/;
-SRC_URI="http://mosquitto.org/files/source/${P}.tar.gz;
-LICENSE="EPL-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="bridge examples +persistence +srv ssl tcpd websockets"
-
-RDEPEND="tcpd? ( sys-apps/tcp-wrappers )
-   ssl? ( dev-libs/openssl:0= )"
-DEPEND="${RDEPEND}
-   ${PYTHON_DEPS}
-   srv? ( net-dns/c-ares )
-   websockets? ( net-libs/libwebsockets )"
-
-pkg_setup() {
-   enewgroup mosquitto
-   enewuser mosquitto -1 -1 -1 mosquitto
-}
-
-src_prepare() {
-   eapply "${FILESDIR}/${PN}-1.4.10-conditional-tests.patch"
-   if use persistence; then
-   sed -i -e "s:^#autosave_interval:autosave_interval:" \
-   -e "s:^#persistence false$:persistence true:" \
-   -e "s:^#persistence_file:persistence_file:" \
-   -e "s:^#persistence_location$:persistence_location 
/var/lib/mosquitto/:" \
-   mosquitto.conf || die
-   fi
-
-   # Remove prestripping
-   sed -i -e 's/-s --strip-program=${CROSS_COMPILE}${STRIP}//'\
-   client/Makefile lib/cpp/Makefile src/Makefile lib/Makefile || 
die
-
-   python_setup
-   python_fix_shebang test
-   eapply_user
-}
-
-src_configure() {
-   LIBDIR=$(get_libdir)
-   makeopts=(
-   "CC=$(tc-getCC)"
-   "LIB_SUFFIX=${LIBDIR:3}"
-   "WITH_BRIDGE=$(usex bridge)"
-   "WITH_PERSISTENCE=$(usex persistence)"
-   "WITH_SRV=$(usex srv)"
-   "WITH_TLS=$(usex ssl)"
-   "WITH_WEBSOCKETS=$(usex websockets)"
-   "WITH_WRAP=$(usex tcpd)"
-   )
-}
-
-src_compile() {
-   emake "${makeopts[@]}"
-}
-
-src_test() {
-   emake "${makeopts[@]}" test
-}
-
-src_install() {
-   emake "${makeopts[@]}" DESTDIR="${D}" prefix=/usr install
-   keepdir /var/lib/mosquitto
-   fowners mosquitto:mosquitto /var/lib/mosquitto
-   dodoc readme.md CONTRIBUTING.md ChangeLog.txt
-   doinitd "${FILESDIR}"/mosquitto
-   insinto /etc/mosquitto
-   doins mosquitto.conf
-   systemd_dounit "${FILESDIR}/mosquitto.service"
-
-   if use examples; then
-   docompress -x "/usr/share/doc/${PF}/examples"
-   insinto "/usr/share/doc/${PF}/examples"
-   doins -r examples/*
-   fi
-}
-
-pkg_postinst() {
-   elog ""
-   elog "The Python module has been moved out of mosquitto."
-   elog "See http://mosquitto.org/documentation/python/;
-   elog ""
-   elog "To start the mosquitto daemon at boot, add it to 

[gentoo-commits] repo/gentoo:master commit in: app-misc/mosquitto/files/, app-misc/mosquitto/

2018-10-11 Thread Virgil Dupras
commit: 7750cd794da77bfa401364df3b29189b4ffbb04d
Author: Lucas Ramage  protonmail  com>
AuthorDate: Tue May 29 14:35:07 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Thu Oct 11 15:53:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7750cd79

app-misc/mosquitto: bump version to 1.5.1

Signed-off-by: Lucas Ramage  protonmail.com>
Bug: https://bugs.gentoo.org/656572
Closes: https://bugs.gentoo.org/658552
Closes: https://bugs.gentoo.org/658340
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Signed-off-by: Virgil Dupras  gentoo.org>

 app-misc/mosquitto/Manifest|  1 +
 .../mosquitto-1.5-fix-socket_get_address.patch | 29 ++
 ...patch => mosquitto-fix-conditional-tests.patch} |  0
 app-misc/mosquitto/metadata.xml|  2 +-
 ...1.4.15-r2.ebuild => mosquitto-1.4.15-r3.ebuild} |  2 +-
 ...tto-1.4.15-r2.ebuild => mosquitto-1.5.1.ebuild} |  8 --
 6 files changed, 38 insertions(+), 4 deletions(-)

diff --git a/app-misc/mosquitto/Manifest b/app-misc/mosquitto/Manifest
index e57c2e973ef..83420091448 100644
--- a/app-misc/mosquitto/Manifest
+++ b/app-misc/mosquitto/Manifest
@@ -1,2 +1,3 @@
 DIST mosquitto-1.4.14.tar.gz 365596 BLAKE2B 
92bcb1fd9e67711d6ce8db5e767be31a1321866205cf4cad684d8b77a8b14a2eaf5e4367a74d5dd8f814f0d229dc77ce878879632c0c34c6a23f7975bf6ae8c7
 SHA512 
dc75a971354f87deeb79f32435acfae9bc561a1a24a75ee4940a35176ff91758071930d2105d8dee2a090e07527dbfaa5692bece67e03cc87e8b4b8b46f846c2
 DIST mosquitto-1.4.15.tar.gz 368961 BLAKE2B 
28bfab7d41d9e057ba8b52e0c428967ecc5d0c25a3d73dca420ae883c2b462ee02da1eeb9c22f4d392f0ccf62224acab6f24d4a0798a594f4b9f90c907fa1495
 SHA512 
36b06547553cf28af3ca9b728c42fc27e849c4ae84d7964572d430233ab26e2b59eee2a215ac23ddf2d0bef419e7c70e64e2a22c397fadb3e0677314d03f1100
+DIST mosquitto-1.5.1.tar.gz 430066 BLAKE2B 
ab2df1b77cfcb71c95d3412c4c3da4cf0af1a48d700642a12c8e0334762e9e8868ba0cbd69311d7aa324f2920d3be227149ba4e0bd7558ba10e5d7d1f0b24996
 SHA512 
7b076a98ca87f9fa4579eb4a6b62b171df746920719e9bd6efce0a4815c15edc9da177669819509184d2b01ed0756be8259adba344df690efe0547fd6741

diff --git 
a/app-misc/mosquitto/files/mosquitto-1.5-fix-socket_get_address.patch 
b/app-misc/mosquitto/files/mosquitto-1.5-fix-socket_get_address.patch
new file mode 100644
index 000..7e9778e8b70
--- /dev/null
+++ b/app-misc/mosquitto/files/mosquitto-1.5-fix-socket_get_address.patch
@@ -0,0 +1,29 @@
+# Fix missing rename of mosquitto__socket_get_address. Mosquitto bug 810.
+
+diff --git a/src/conf.c b/src/conf.c
+index f3d812d..daf2bf4 100644
+--- a/src/conf.c
 b/src/conf.c
+@@ -735,8 +735,8 @@ int config__read_file_core(struct mosquitto__config 
*config, bool reload, struct
+   struct mosquitto__listener *cur_listener = >default_listener;
+ #ifdef WITH_BRIDGE
+   char *address;
+-  int i;
+ #endif
++  int i;
+   int lineno_ext;
+   struct mosquitto__security_options *cur_security_options = NULL;
+ 
+diff --git a/src/net.c b/src/net.c
+index 7397de5..670b7e2 100644
+--- a/src/net.c
 b/src/net.c
+@@ -114,7 +114,7 @@ int net__socket_accept(struct mosquitto_db *db, 
mosq_sock_t listensock)
+   fromhost(_req);
+   if(!hosts_access(_req)){
+   /* Access is denied */
+-  if(!mosquitto__socket_get_address(new_sock, address, 1024)){
++  if(!net__socket_get_address(new_sock, address, 1024)){
+   log__printf(NULL, MOSQ_LOG_NOTICE, "Client connection 
from %s denied access by tcpd.", address);
+   }
+   COMPAT_CLOSE(new_sock);

diff --git a/app-misc/mosquitto/files/mosquitto-1.4.15-conditional-tests.patch 
b/app-misc/mosquitto/files/mosquitto-fix-conditional-tests.patch
similarity index 100%
rename from app-misc/mosquitto/files/mosquitto-1.4.15-conditional-tests.patch
rename to app-misc/mosquitto/files/mosquitto-fix-conditional-tests.patch

diff --git a/app-misc/mosquitto/metadata.xml b/app-misc/mosquitto/metadata.xml
index 2b05da7a5d4..ec6718456c6 100644
--- a/app-misc/mosquitto/metadata.xml
+++ b/app-misc/mosquitto/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   ramage.lu...@openmailbox.org
+   ramage.lu...@protonmail.com
Lucas Ramage



diff --git a/app-misc/mosquitto/mosquitto-1.4.15-r2.ebuild 
b/app-misc/mosquitto/mosquitto-1.4.15-r3.ebuild
similarity index 97%
copy from app-misc/mosquitto/mosquitto-1.4.15-r2.ebuild
copy to app-misc/mosquitto/mosquitto-1.4.15-r3.ebuild
index 48165a4db6f..8905f6d3f49 100644
--- a/app-misc/mosquitto/mosquitto-1.4.15-r2.ebuild
+++ b/app-misc/mosquitto/mosquitto-1.4.15-r3.ebuild
@@ -24,7 +24,7 @@ DEPEND="${RDEPEND}
srv? ( net-dns/c-ares )
websockets? ( net-libs/libwebsockets )"
 
-PATCHES=( "${FILESDIR}/${P}-conditional-tests.patch" )
+PATCHES=( "${FILESDIR}/${PN}-fix-conditional-tests.patch" )
 
 _emake() {
LIBDIR=$(get_libdir)

  1   2   >