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

2017-02-01 Thread Aaron Bauman
commit: be093c9481e7a392226edbdc95eef3cec84880d6
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu Feb  2 07:28:57 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Feb  2 07:32:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be093c94

net-wireless/wpa_supplicant: remove vulnerable wrt bug #596042

Package-Manager: portage-2.3.3

 net-wireless/wpa_supplicant/Manifest   |   1 -
 .../wpa_supplicant/wpa_supplicant-2.5-r1.ebuild| 398 
 .../wpa_supplicant/wpa_supplicant-2.5-r2.ebuild| 408 -
 3 files changed, 807 deletions(-)

diff --git a/net-wireless/wpa_supplicant/Manifest 
b/net-wireless/wpa_supplicant/Manifest
index 41e9b86..40067ea 100644
--- a/net-wireless/wpa_supplicant/Manifest
+++ b/net-wireless/wpa_supplicant/Manifest
@@ -1,2 +1 @@
-DIST wpa_supplicant-2.5.tar.gz 2607336 SHA256 
cce55bae483b364eae55c35ba567c279be442ed8bab5b80a3c7fb0d057b9b316 SHA512 
e3ca36ed10b4dae8f663e98ad230c8c059c952316c21a6b0638ecb1b40a5ef1b9083138ab45207cb764a17e870b4bd0625dd6efdb65856cb4dca13ccc0559e81
 WHIRLPOOL 
7f35ba06fc4022fe21f05a54a5b108bf2111dcb22e795e1566a514400db8348e79cc80b605dab5b586ab8f3966833ade7153e63c118794a0f06c4afd7a37781d
 DIST wpa_supplicant-2.6.tar.gz 2753524 SHA256 
b4936d34c4e6cdd44954beba74296d964bc2c9668ecaa5255e499636fe2b1450 SHA512 
46442cddb6ca043b8b08d143908f149954c238e0f3a57a0df73ca4fab9c1acd91b078f3f26375a1d99cd1d65625986328018c735d8705882c8f91e389cad28a6
 WHIRLPOOL 
63f91b9f72fee65df5412e90f5a4b38f327f47b44724164aa27a6933a68c68672a129d7c01e658c7fed1f7018fe9e4b743f3c6cef2f69fd75c3f5b9a1cb67c1b

diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-2.5-r1.ebuild 
b/net-wireless/wpa_supplicant/wpa_supplicant-2.5-r1.ebuild
deleted file mode 100644
index ef48923..
--- a/net-wireless/wpa_supplicant/wpa_supplicant-2.5-r1.ebuild
+++ /dev/null
@@ -1,398 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils toolchain-funcs qt4-r2 qmake-utils systemd multilib
-
-DESCRIPTION="IEEE 802.1X/WPA supplicant for secure wireless transfers"
-HOMEPAGE="http://hostap.epitest.fi/wpa_supplicant/;
-SRC_URI="http://hostap.epitest.fi/releases/${P}.tar.gz;
-LICENSE="|| ( GPL-2 BSD )"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd"
-IUSE="ap dbus gnutls eap-sim fasteap +hs2-0 libressl p2p ps3 qt4 qt5 readline 
selinux smartcard ssl tdls uncommon-eap-types wimax wps kernel_linux 
kernel_FreeBSD"
-REQUIRED_USE="fasteap? ( !gnutls !ssl ) smartcard? ( ssl ) ?? ( qt4 qt5 )"
-
-CDEPEND="dbus? ( sys-apps/dbus )
-   kernel_linux? (
-   eap-sim? ( sys-apps/pcsc-lite )
-   dev-libs/libnl:3
-   net-wireless/crda
-   )
-   !kernel_linux? ( net-libs/libpcap )
-   qt4? (
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-qt/qtsvg:4
-   )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtsvg:5
-   )
-   readline? (
-   sys-libs/ncurses:0=
-   sys-libs/readline:0=
-   )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl )
-   )
-   !ssl? (
-   gnutls? (
-   net-libs/gnutls
-   dev-libs/libgcrypt:*
-   )
-   !gnutls? ( dev-libs/libtommath )
-   )
-"
-DEPEND="${CDEPEND}
-   virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}
-   selinux? ( sec-policy/selinux-networkmanager )
-"
-
-S="${WORKDIR}/${P}/${PN}"
-
-Kconfig_style_config() {
-   #param 1 is CONFIG_* item
-   #param 2 is what to set it = to, defaulting in y
-   CONFIG_PARAM="${CONFIG_HEADER:-CONFIG_}$1"
-   setting="${2:-y}"
-
-   if [ ! $setting = n ]; then
-   #first remove any leading "# " if $2 is not n
-   sed -i "/^# *$CONFIG_PARAM=/s/^# *//" .config || echo 
"Kconfig_style_config error uncommenting $CONFIG_PARAM"
-   #set item = $setting (defaulting to y)
-   sed -i "/^$CONFIG_PARAM/s/=.*/=$setting/" .config || 
echo "Kconfig_style_config error setting $CONFIG_PARAM=$setting"
-   else
-   #ensure item commented out
-   sed -i "/^$CONFIG_PARAM/s/$CONFIG_PARAM/# 
$CONFIG_PARAM/" .config || echo "Kconfig_style_config error commenting 
$CONFIG_PARAM"
-   fi
-}
-
-pkg_setup() {
-   if use gnutls && use ssl ; then
-   elog "You have both 'gnutls' and 'ssl' USE flags enabled: 
defaulting to USE=\"ssl\""
-   fi
-}
-
-src_prepare() {
-   # net/bpf.h needed for net-libs/libpcap on Gentoo/FreeBSD
-   sed -i \
-   -e "s:\(#include 

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

2017-02-01 Thread Aaron Bauman
commit: ebe1113981b3c4e418a8ebfbee03bc15f017f4e3
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu Feb  2 07:31:43 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Feb  2 07:32:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebe11139

net-wireless/hostapd: remove vulnerable wrt bug #596034

Package-Manager: portage-2.3.3

 net-wireless/hostapd/Manifest   |   1 -
 net-wireless/hostapd/hostapd-2.5.ebuild | 210 
 2 files changed, 211 deletions(-)

diff --git a/net-wireless/hostapd/Manifest b/net-wireless/hostapd/Manifest
index f9afe8f..d3f91f3 100644
--- a/net-wireless/hostapd/Manifest
+++ b/net-wireless/hostapd/Manifest
@@ -1,2 +1 @@
-DIST hostapd-2.5.tar.gz 1720783 SHA256 
8e272d954dc0d7026c264b79b15389ec2b2c555b32970de39f506b9f463ec74a SHA512 
bbb0547c29f4925aff8639cae3291ed020c2a9d989dd267be831b2418880916d2ec69003e36ecc796c348476086397cca8f63c52633f91c11a9c2ab72e1c83c0
 WHIRLPOOL 
a2c07e8426796a82cd01dbd4fff22c065c93dff8ea25ccce9b37d78a732941750947e934acfdac8f63841d322636271e976c43aabe419c916e405264ecd4b06a
 DIST hostapd-2.6.tar.gz 1822341 SHA256 
01526b90c1d23bec4b0f052039cc4456c2fd19347b4d830d1d58a0a6aea7117d SHA512 
e60baaa092786250b8de9935f5417c7626f5d749210cce9f83d776b65c19fc92a8141f41923389f05c16295d482a15ae8d8b744f4667425040c99e3c2f5b1bda
 WHIRLPOOL 
fa093c371a66f3aa834d44060330259dc20e3a1937ffacc4450c5c645291c2bd4b31bbe1827f7d27bfca724c5e26f53ea59f2e3aa69a4c87177212bb491b119a

diff --git a/net-wireless/hostapd/hostapd-2.5.ebuild 
b/net-wireless/hostapd/hostapd-2.5.ebuild
deleted file mode 100644
index e37951b..
--- a/net-wireless/hostapd/hostapd-2.5.ebuild
+++ /dev/null
@@ -1,210 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit toolchain-funcs eutils systemd
-
-DESCRIPTION="IEEE 802.11 wireless LAN Host AP daemon"
-HOMEPAGE="http://hostap.epitest.fi;
-SRC_URI="http://hostap.epitest.fi/releases/${P}.tar.gz;
-
-LICENSE="|| ( GPL-2 BSD )"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~mips ppc x86"
-IUSE="ipv6 logwatch netlink sqlite +ssl +wps +crda"
-
-DEPEND="ssl? ( dev-libs/openssl[-bindist] )
-   kernel_linux? (
-   dev-libs/libnl:3
-   crda? ( net-wireless/crda )
-   )
-   netlink? ( net-libs/libnfnetlink )
-   sqlite? ( >=dev-db/sqlite-3 )"
-
-RDEPEND="${DEPEND}"
-
-S="${S}/${PN}"
-
-src_prepare() {
-   sed -i -e "s:/etc/hostapd:/etc/hostapd/hostapd:g" \
-   "${S}/hostapd.conf" || die
-}
-
-src_configure() {
-   local CONFIG="${S}/.config"
-
-   # toolchain setup
-   echo "CC = $(tc-getCC)" > ${CONFIG}
-
-   # EAP authentication methods
-   echo "CONFIG_EAP=y" >> ${CONFIG}
-   echo "CONFIG_ERP=y" >> ${CONFIG}
-   echo "CONFIG_EAP_MD5=y" >> ${CONFIG}
-
-   if use ssl; then
-   # SSL authentication methods
-   echo "CONFIG_EAP_FAST=y" >> ${CONFIG}
-   echo "CONFIG_EAP_TLS=y" >> ${CONFIG}
-   echo "CONFIG_EAP_TTLS=y" >> ${CONFIG}
-   echo "CONFIG_EAP_MSCHAPV2=y" >> ${CONFIG}
-   echo "CONFIG_EAP_PEAP=y" >> ${CONFIG}
-   echo "CONFIG_TLSV11=y" >> ${CONFIG}
-   echo "CONFIG_TLSV12=y" >> ${CONFIG}
-   fi
-
-   if use wps; then
-   # Enable Wi-Fi Protected Setup
-   echo "CONFIG_WPS=y" >> ${CONFIG}
-   echo "CONFIG_WPS2=y" >> ${CONFIG}
-   echo "CONFIG_WPS_UPNP=y" >> ${CONFIG}
-   echo "CONFIG_WPS_NFC=y" >> ${CONFIG}
-   einfo "Enabling Wi-Fi Protected Setup support"
-   fi
-
-   echo "CONFIG_EAP_IKEV2=y" >> ${CONFIG}
-   echo "CONFIG_EAP_TNC=y" >> ${CONFIG}
-   echo "CONFIG_EAP_GTC=y" >> ${CONFIG}
-   echo "CONFIG_EAP_SIM=y" >> ${CONFIG}
-   echo "CONFIG_EAP_AKA=y" >> ${CONFIG}
-   echo "CONFIG_EAP_AKA_PRIME=y" >> ${CONFIG}
-   echo "CONFIG_EAP_EKE=y" >> ${CONFIG}
-   echo "CONFIG_EAP_PAX=y" >> ${CONFIG}
-   echo "CONFIG_EAP_PSK=y" >> ${CONFIG}
-   echo "CONFIG_EAP_SAKE=y" >> ${CONFIG}
-   echo "CONFIG_EAP_GPSK=y" >> ${CONFIG}
-   echo "CONFIG_EAP_GPSK_SHA256=y" >> ${CONFIG}
-   echo "CONFIG_EAP_PWD=y" >> ${CONFIG}
-
-   einfo "Enabling drivers: "
-
-   # drivers
-   echo "CONFIG_DRIVER_HOSTAP=y" >> ${CONFIG}
-   einfo "  HostAP driver enabled"
-   echo "CONFIG_DRIVER_WIRED=y" >> ${CONFIG}
-   einfo "  Wired driver enabled"
-   echo "CONFIG_DRIVER_PRISM54=y" >> ${CONFIG}
-   einfo "  Prism54 driver enabled"
-   echo "CONFIG_DRIVER_NONE=y" >> ${CONFIG}
-   einfo "  None driver enabled"
-
-   einfo "  nl80211 driver enabled"
-   echo "CONFIG_DRIVER_NL80211=y" >> ${CONFIG}
-
-   # epoll
-   echo "CONFIG_ELOOP_EPOLL=y" >> ${CONFIG}
-
-   # misc
-   echo "CONFIG_DEBUG_FILE=y" >> ${CONFIG}
-   echo "CONFIG_PKCS12=y" >> ${CONFIG}
-   

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

2017-02-01 Thread Jeroen Roovers
commit: 647013baf97035a65a860d7e7c2c0373fd177997
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 07:31:05 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 07:31:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=647013ba

media-gfx/fbida: Old.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-gfx/fbida/Manifest  |   1 -
 media-gfx/fbida/fbida-2.10.ebuild | 108 --
 2 files changed, 109 deletions(-)

diff --git a/media-gfx/fbida/Manifest b/media-gfx/fbida/Manifest
index c46d862..eecae91 100644
--- a/media-gfx/fbida/Manifest
+++ b/media-gfx/fbida/Manifest
@@ -1,3 +1,2 @@
-DIST fbida-2.10.tar.gz 283490 SHA256 
7a5a3aac61b40a6a2bbf716d270a46e2f8e8d5c97e314e927d41398a4d0b6cb6 SHA512 
b7371c19d68cc7219faca4bbfa464c85df2eb22c7bd737d4f0a6fb3de481497862ca22832801d29bab57285d5a8d7d0b0009e14426efdce2759d47340f5eca6d
 WHIRLPOOL 
78c5dc34a9f050e560ada960718a9f43e6d8c95fe4c91c052a70c93350de80eebd3e8e9b6c26361ecd8361efe96824e78b2af7a2b2e27430a11e712bb9a02ee0
 DIST fbida-2.12.tar.gz 294842 SHA256 
d33193105cce77057c919761728cee9bbe8ec8ec4f12a770a600cab33611822f SHA512 
383eb766a98137f7252cd981d0e8c9a7382223705a43332f50990ea26763d4882ed1585e72fe9199528502d7f8f9de2e90718dbce71ee08d2181c74aa3e7e515
 WHIRLPOOL 
7ea067497eee03623fe8f07afbb77c354973187edd09f40b94d73d1b2d7c823db846c277005473c169cd1ad923e378d22d3c065f3522667e544d25917cd6495a
 DIST ida.png.bz2 11928 SHA256 
ce90c13f8da8d2ced4cf0e55d2f960bc236355f6e5dd60ea6c56fbe51e6cabae SHA512 
cf3c1bc8d25fe75f10c0a0414b5c082348df2fa94864ec4537c36e0b357cf35b68e2eca205bbf48578a41c27317701aee621c6dd176e0bf3857c52f895d6bfd3
 WHIRLPOOL 
1b5e7835aa8a555a231ca58da8e249974639b29b1e15586c2d2d5a33e96908df1a3782fbe61d0c51dc888b7304c9f7541a96af4ca2b956b393909feb534ab5be

diff --git a/media-gfx/fbida/fbida-2.10.ebuild 
b/media-gfx/fbida/fbida-2.10.ebuild
deleted file mode 100644
index 3c8a0c3..
--- a/media-gfx/fbida/fbida-2.10.ebuild
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Image viewers for the framebuffer console (fbi) and X11 (ida)"
-HOMEPAGE="http://www.kraxel.org/blog/linux/fbida/;
-SRC_URI="
-   http://www.kraxel.org/releases/${PN}/${P}.tar.gz
-   mirror://gentoo/ida.png.bz2
-"
-LICENSE="GPL-2 IJG"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ppc ppc64 ~sh sparc x86"
-IUSE="curl fbcon +gif lirc pdf +png scanner +tiff X +webp"
-REQUIRED_USE="
-   pdf? ( tiff )
-"
-
-RDEPEND="
-   !media-gfx/fbi
-   >=media-libs/fontconfig-2.2
-   >=media-libs/freetype-2.0
-   media-libs/libexif
-   curl? ( net-misc/curl )
-   gif? ( media-libs/giflib:= )
-   lirc? ( app-misc/lirc )
-   png? ( media-libs/libpng:* )
-   scanner? ( media-gfx/sane-backends )
-   tiff? ( media-libs/tiff:* )
-   virtual/jpeg:*
-   virtual/ttf-fonts
-   webp? ( media-libs/libwebp )
-   X? (
-   >=x11-libs/motif-2.3:0
-   x11-libs/libX11
-   x11-libs/libXpm
-   x11-libs/libXt
-   )
-"
-
-DEPEND="
-   ${RDEPEND}
-   X? ( x11-proto/xextproto x11-proto/xproto )
-   pdf? ( app-text/ghostscript-gpl )
-"
-
-src_prepare() {
-   epatch \
-   "${FILESDIR}"/ida-desktop.patch \
-   "${FILESDIR}"/${PN}-2.10-giflib-4.2.patch
-
-   tc-export CC CPP
-}
-
-src_configure() {
-   # Let autoconf do its job and then fix things to build fbida
-   # according to our specifications
-   emake Make.config
-
-   gentoo_fbida() {
-   local useflag=${1}
-   local config=${2}
-
-   local option="no"
-   use ${useflag} && option="yes"
-
-   sed -i \
-   -e "s|HAVE_${config}.*|HAVE_${config} := ${option}|" \
-   "${S}/Make.config" || die
-   }
-
-   gentoo_fbida X MOTIF
-   gentoo_fbida curl LIBCURL
-   gentoo_fbida fbcon LINUX_FB_H
-   gentoo_fbida gif LIBUNGIF
-   gentoo_fbida lirc LIBLIRC
-   gentoo_fbida pdf LIBTIFF
-   gentoo_fbida png LIBPNG
-   gentoo_fbida scanner LIBSANE
-   gentoo_fbida tiff LIBTIFF
-   gentoo_fbida webp LIBWEBP
-}
-
-src_compile() {
-   emake verbose=yes
-}
-
-src_install() {
-   emake \
-   DESTDIR="${D}" \
-   STRIP="" \
-   prefix=/usr \
-   install
-
-   dodoc README
-
-   if use fbcon && ! use pdf; then
-   rm "${D}"/usr/bin/fbgs "${D}"/usr/share/man/man1/fbgs.1 || die
-   fi
-
-   if use X ; then
-   doicon "${WORKDIR}"/ida.png
-   domenu desktop/ida.desktop
-   fi
-}



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

2017-02-01 Thread Jeroen Roovers
commit: 282dbeaec694fa326bc2d0aeab21c31f8da0a67e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 07:27:01 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 07:27:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=282dbeae

net-misc/chrony: Version bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-misc/chrony/Manifest  |   1 +
 net-misc/chrony/chrony-3.1.ebuild | 120 ++
 2 files changed, 121 insertions(+)

diff --git a/net-misc/chrony/Manifest b/net-misc/chrony/Manifest
index ecbacbe..b9f1737 100644
--- a/net-misc/chrony/Manifest
+++ b/net-misc/chrony/Manifest
@@ -3,3 +3,4 @@ DIST chrony-2.3.tar.gz 355113 SHA256 
58bffb523012fb0fa87cc0d94d6e36de9689fe95565
 DIST chrony-2.4.1.tar.gz 390641 SHA256 
0fd59e0ef625b4459e3a9c7f221c52f56596582bce31abfae5f7369702edb6e0 SHA512 
7772065103ad95706f80374d88ba452b76cf8e29689abf22b38e7eb5ad2fcc491593e11702400daa8bf908218614df21b08ff15ab2d3d2347876119cd80abc4d
 WHIRLPOOL 
ed2c2ac8e11371e009d3e96553bb73e58b410bb38e6123a9e39a3451e5dc6860d981d45e67b4e2dc47b39f616f95146feb35efd15dbaa90932f07837172c440a
 DIST chrony-2.4.tar.gz 390077 SHA256 
8d04e7cda2333289c2104b731d39c3c1db94816e43bae35d7ee4e7ae8af6391f SHA512 
29bbeba05fb9897d438cddca7dd4e573a1e9da0d583bd737185088e8b777fdfba4056d091d2bbab78824de284b6244a8de7ada8f62be316e815a3d8ae6145485
 WHIRLPOOL 
7ad8b17ee8c29afa6734b7f096bb56bc08cfb200747141f0fa77e6a37daab118e1c571b8869abcab7e4893ae3eaae6a6d783425058bbaf8508cbd8de215cb49d
 DIST chrony-3.0.tar.gz 421433 SHA256 
a0387b91a20f047856a56d6541a1cf920c91b53b32f74c123bcb70f1a5d2cd6d SHA512 
253361219e4699815dad703cf5ebfba5902aeb331650c4f0caa0278388312dcfbbf3423c0f3a4a5849c135eeb02dbd93776fbff602160e0dcf98857c1b6f7f67
 WHIRLPOOL 
8b82ffece89e9773554ed5c4525c4ed596316a0502ea02517c343a85a54b28d22d82a6a06033e40d4bcdf2fecb9c45b4a3c71c88fd1b1dadd7cbe62bb94d246f
+DIST chrony-3.1.tar.gz 424109 SHA256 
9d9107dcdb7768a03dc129d33b2a7a25f1eea2f5620bc85eb00cfea07c1b6075 SHA512 
4ba3a75c3634050bb63ba9ee80d9be7a295f44ce4d195a050e4be4738bd7dd807fe37f2289d7ead4a75272bd5ebadbd03c233c67f859e9b68871fca5a6671427
 WHIRLPOOL 
d1b499bbcdd74a049c972c183d4b88365db4c6512d8011ca8b87f15c4e0d1bc882bde4f742591f5cfe49e820a5884f6b1960d132d5787be02a36bd57b9e2605f

diff --git a/net-misc/chrony/chrony-3.1.ebuild 
b/net-misc/chrony/chrony-3.1.ebuild
new file mode 100644
index ..d34419a
--- /dev/null
+++ b/net-misc/chrony/chrony-3.1.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils systemd toolchain-funcs
+
+DESCRIPTION="NTP client and server programs"
+HOMEPAGE="http://chrony.tuxfamily.org/;
+SRC_URI="http://download.tuxfamily.org/${PN}/${P/_/-}.tar.gz;
+LICENSE="GPL-2"
+SLOT="0"
+
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc64"
+IUSE="caps +cmdmon html ipv6 libedit +ntp +phc pps readline +refclock +rtc 
selinux +adns"
+REQUIRED_USE="
+   ?? ( libedit readline )
+"
+
+CDEPEND="
+   caps? ( sys-libs/libcap )
+   libedit? ( dev-libs/libedit )
+   readline? ( >=sys-libs/readline-4.1-r4:= )
+"
+DEPEND="
+   ${CDEPEND}
+   html? ( dev-ruby/asciidoctor )
+   pps? ( net-misc/pps-tools )
+"
+RDEPEND="
+   ${CDEPEND}
+   selinux? ( sec-policy/selinux-chronyd )
+"
+
+RESTRICT=test
+
+S="${WORKDIR}/${P/_/-}"
+
+src_prepare() {
+   sed -i \
+   -e 's:/etc/chrony\.:/etc/chrony/chrony.:g' \
+   -e 's:/var/run:/run:g' \
+   conf.c doc/*.man.in examples/* || die
+
+   default
+}
+
+src_configure() {
+   tc-export CC
+
+   local CHRONY_EDITLINE
+   # ./configure legend:
+   # --disable-readline : disable line editing entirely
+   # --without-readline : do not use sys-libs/readline (enabled by default)
+   # --without-editline : do not use dev-libs/libedit (enabled by default)
+   if ! use readline && ! use libedit; then
+   CHRONY_EDITLINE='--disable-readline'
+   else
+   CHRONY_EDITLINE+=" $(usex readline '' --without-readline)"
+   CHRONY_EDITLINE+=" $(usex libedit '' --without-editline)"
+   fi
+
+   # not an autotools generated script
+   local CHRONY_CONFIGURE="
+   ./configure \
+   $(usex caps '' --disable-linuxcaps) \
+   $(usex cmdmon '' --disable-cmdmon) \
+   $(usex ipv6 '' --disable-ipv6) \
+   $(usex ntp '' --disable-ntp) \
+   $(usex phc '' --disable-phc) \
+   $(usex pps '' --disable-pps) \
+   $(usex rtc '' --disable-rtc) \
+   $(usex refclock '' --disable-refclock) \
+   $(usex adns '' --disable-asyncdns) \
+   ${CHRONY_EDITLINE} \
+   ${EXTRA_ECONF} \
+   --docdir=/usr/share/doc/${PF} \
+   --chronysockdir=/run/chrony \
+   --mandir=/usr/share/man \

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

2017-02-01 Thread Jeroen Roovers
commit: ca45799833724d1e67a202fbb1bb71d59fd733e6
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 07:24:11 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 07:24:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca457998

media-sound/ncmpcpp: Old.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-sound/ncmpcpp/Manifest |  2 -
 media-sound/ncmpcpp/ncmpcpp-0.7.4.ebuild | 70 
 media-sound/ncmpcpp/ncmpcpp-0.7.ebuild   | 67 --
 3 files changed, 139 deletions(-)

diff --git a/media-sound/ncmpcpp/Manifest b/media-sound/ncmpcpp/Manifest
index 5aa7a74..92a26c3 100644
--- a/media-sound/ncmpcpp/Manifest
+++ b/media-sound/ncmpcpp/Manifest
@@ -1,4 +1,2 @@
-DIST ncmpcpp-0.7.4.tar.bz2 442743 SHA256 
d70425f1dfab074a12a206ddd8f37f663bce2bbdc0a20f7ecf290ebe051f1e63 SHA512 
e5171bd095baefcdf1da1e4d3de3d14a22035584da9b7ec9f176c0fb32bee61a25d989c3405711e512333b10f38a5575e90ec733afeaf7aff995386396f3b918
 WHIRLPOOL 
57f771c83bbd9afcbeb8b7b8b7a50f0e3fbc95eb74b1ad6b199358431f5f80ed891d1c27902369cf29f9a29622fe88a83aa2fcf7053e0543afb7c23486413999
 DIST ncmpcpp-0.7.5.tar.bz2 443072 SHA256 
7e4f643020b36698462879013a8b16111f8c3a4c5819cf186aed78032a41e07d SHA512 
5f3b370a5a8fdc05e85a7b748debd960c0e76d5b9e43717efceaa985baa0c543d14d8b0fd7b09550111bff3aa66ec290d6cd2c0ec21de7a0caa10df1c68c99c8
 WHIRLPOOL 
c9fb96f91f308d9937bc832a85cc50293aedcb6fb2eb62e879d08f6ee334b2bb131bbeecd83608fe050c00a3facf025070d8c586796a4a05bc70665e53b47c19
 DIST ncmpcpp-0.7.7.tar.bz2 443801 SHA256 
b7bcbec83b1f88cc7b21f196b10be09a27b430566c59f402df170163464d01ef SHA512 
a0bbe85f154c40513d41e85810de86ed21109b72fb0f2bdb0b78dcbddb3770aff5422b5bb7fbac2b76634c5b9aaf843bed5fc16fc672fcd71bbae911f65c0034
 WHIRLPOOL 
49a5e16cf583424618db5e2c38a946cc60d5ea2e17015c7e6232c91f84cf44c308389b81bb2f380045f3f9595d83a13c2a4f571930ea122e85437f4e6cccb4d1
-DIST ncmpcpp-0.7.tar.bz2 442319 SHA256 
50924ff0502c9b90ce1b679638769122defd03bc85eb8a95924c62c8d303ff77 SHA512 
00477a9044e46c5d0ce4687b16d59d81fc31323a9c23eeebb6701e20c2fe3c50e3e56030844b68bdcf319af04c1f1a3bd50d0732cc9b4614488a918165c2f112
 WHIRLPOOL 
2bc6ba5935bef72e46b568a98f49a87720d48c0d9699ab35abf3f2f7ed250bc331fc165372d3f352ed5f16ae16da614c3b6c1c6e309a2d1b8d94abefb5e66a0b

diff --git a/media-sound/ncmpcpp/ncmpcpp-0.7.4.ebuild 
b/media-sound/ncmpcpp/ncmpcpp-0.7.4.ebuild
deleted file mode 100644
index af9429f..
--- a/media-sound/ncmpcpp/ncmpcpp-0.7.4.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="featureful ncurses based MPD client inspired by ncmpc"
-HOMEPAGE="http://ncmpcpp.rybczak.net/;
-SRC_URI="http://ncmpcpp.rybczak.net/stable/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm hppa ppc ppc64 ~sparc x86"
-IUSE="clock curl outputs taglib unicode visualizer"
-
-RDEPEND="
-   !dev-libs/boost:0/1.57.0
-   >=media-libs/libmpdclient-2.1
-   dev-libs/boost:=[nls,threads]
-   sys-libs/ncurses:=[unicode?]
-   sys-libs/readline:*
-   curl? ( net-misc/curl )
-   taglib? ( media-libs/taglib )
-   unicode? (
-   dev-libs/boost:=[icu]
-   dev-libs/icu:=
-   )
-   visualizer? ( sci-libs/fftw:3.0= )
-"
-DEPEND="
-   ${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   sed -i -e '/^docdir/d' {,doc/}Makefile{.am,.in} || die
-   sed -i -e 's|COPYING||g' Makefile{.am,.in} || die
-}
-
-src_configure() {
-   econf \
-   $(use_enable clock) \
-   $(use_enable outputs) \
-   $(use_enable unicode) \
-   $(use_enable visualizer) \
-   $(use_with curl) \
-   $(use_with taglib) \
-   $(use_with visualizer fftw) \
-   --docdir=/usr/share/doc/${PF}
-}
-
-src_install() {
-   default
-
-   dodoc doc/{bindings,config}
-}
-
-pkg_postinst() {
-   echo
-   elog "Example configuration files have been installed at"
-   elog "${ROOT}usr/share/doc/${PF}"
-   elog "${P} uses ~/.ncmpcpp/config and ~/.ncmpcpp/bindings"
-   elog "as user configuration files."
-   echo
-   if use visualizer; then
-   elog "If you want to use the visualizer, you need mpd with fifo 
enabled."
-   echo
-   fi
-}

diff --git a/media-sound/ncmpcpp/ncmpcpp-0.7.ebuild 
b/media-sound/ncmpcpp/ncmpcpp-0.7.ebuild
deleted file mode 100644
index 1fa060d..
--- a/media-sound/ncmpcpp/ncmpcpp-0.7.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="featureful ncurses based MPD client inspired by ncmpc"
-HOMEPAGE="http://ncmpcpp.rybczak.net/;
-SRC_URI="http://ncmpcpp.rybczak.net/stable/${P}.tar.bz2;
-

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

2017-02-01 Thread Jeroen Roovers
commit: e5ec7f71ab895ddeea5277089d9fb3d5f438c390
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 07:25:13 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 07:25:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5ec7f71

net-misc/youtube-dl: Old.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-misc/youtube-dl/Manifest |  1 -
 net-misc/youtube-dl/youtube-dl-2017.01.18.ebuild | 99 
 2 files changed, 100 deletions(-)

diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
index f174749..3b12a9a 100644
--- a/net-misc/youtube-dl/Manifest
+++ b/net-misc/youtube-dl/Manifest
@@ -1,4 +1,3 @@
 DIST youtube-dl-2016.12.22.tar.gz 2502964 SHA256 
f5bc5eb1af17391b7a1da795f4181c3702fb2c1da2668b25f1260dbdba882524 SHA512 
87fee134da660a4feb4cfcd2cbb35cb9682e6ed08c766e3c89f6c986f991cac78c64f5bf8a1d15c4080e4df0909c6a360137407a7896b93f8f41cf4493f341cb
 WHIRLPOOL 
6909d34958e4152be3334723c68d207bb34db2996d90908829ebd3ee45d28768d7f6cba8ce0fb19de440b34fb96b46b3d5b8bf830c998037c4f4d59e574206c3
-DIST youtube-dl-2017.01.18.tar.gz 2521980 SHA256 
7c16f3ce7cf8a673a4c531e4a1fc10801467a61732cb65430e40b3ab8b2f2d2e SHA512 
12333f99ce3bd264081db42f19cf855d0739a099cd5a34cb17341fd3dd8297325bf874a1f6b6e74acb7917a5e0bfb89b5cc6bce0231587b2a15c38335a49d5d7
 WHIRLPOOL 
ae006ec199020315520173f6ae56724bb5eaa858a030e7e71e730df359a8e87caf9cb2610b6b1cd65912272891c1f19c3fd90d6304c93b45d2e51996a62cf985
 DIST youtube-dl-2017.01.28.tar.gz 2537285 SHA256 
3ca165456799a9a60c875caed37e70c8fe3279326f2715837fcdc4304c64be99 SHA512 
92329f37e743cf386d45e8f0113b79bed6465ad7fd03567c723bc6217b2b1652b8fbca93ffece4b3a75d9d33a530837451f88a4cb9d68d6a0a96d27898d8fd68
 WHIRLPOOL 
8f5b6e977575ce6a16ff8cd74fcf3066957b7c8f183f83202e9f3c536f06d17ddac75caf3aa595ca4e3bf1010e4bc7a2c261ad7a5fe2015a66fb0b137dba3c8f
 DIST youtube-dl-2017.02.01.tar.gz 2547975 SHA256 
ff77551020c4a81810cb40c9ad36e229db1955d38e390ecdd1333dfc265079ca SHA512 
6eddb325238669d84f6d99273d654a34074b38450d6815a6e6ae397989d690126d701e1f0eead147edb8021a950b116ecebee272678b63a5271613c90d7133f0
 WHIRLPOOL 
99d816b0c48af2b5cd9932a91ae2846656157e1b8f6d411666fff6254552073679f0b21fa6a5dfc44db79767a8b72f6973306e215d9e55f5608375d87cd6f046

diff --git a/net-misc/youtube-dl/youtube-dl-2017.01.18.ebuild 
b/net-misc/youtube-dl/youtube-dl-2017.01.18.ebuild
deleted file mode 100644
index 6cb3331..
--- a/net-misc/youtube-dl/youtube-dl-2017.01.18.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=(python{2_7,3_4,3_5})
-inherit bash-completion-r1 distutils-r1 eutils
-
-DESCRIPTION="Download videos from YouTube.com (and more sites...)"
-HOMEPAGE="https://rg3.github.com/youtube-dl/;
-SRC_URI="http://youtube-dl.org/downloads/${PV}/${P}.tar.gz;
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
-IUSE="offensive test"
-
-RDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-"
-DEPEND="
-   ${RDEPEND}
-   test? ( dev-python/nose[coverage(+)] )
-"
-
-S="${WORKDIR}/${PN}"
-
-python_prepare_all() {
-   if ! use offensive; then
-   sed -i -e "/__version__/s|'$|-gentoo_no_offensive_sites'|g" \
-   youtube_dl/version.py || die
-   # these have single line import statements
-   local xxx=(
-   alphaporno anysex behindkink camwithher chaturbate 
eporner
-   eroprofile extremetube fourtube foxgay goshgay hellporno
-   hentaistigma hornbunny keezmovies lovehomeporn mofosex 
motherless
-   myvidster porn91 porncom pornhd pornotube pornovoisines 
pornoxo
-   ruleporn sexu slutload spankbang spankwire sunporno 
thisav tube8
-   vporn watchindianporn xbef xnxx xtube xvideos 
xxxymovies youjizz
-   youporn
-   )
-   # these have multi-line import statements
-   local mxxx=(
-   drtuber pornhub redtube xhamster tnaflix
-   )
-   # do single line imports
-   sed -i \
-   -e $( printf '/%s/d;' ${xxx[@]} ) \
-   youtube_dl/extractor/extractors.py \
-   || die
-
-   # do multiple line imports
-   sed -i \
-   -e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \
-   youtube_dl/extractor/extractors.py \
-   || die
-
-   sed -i \
-   -e $( printf '/%s/d;' ${mxxx[@]} ) \
-   youtube_dl/extractor/generic.py \
-   || die
-
-   rm \
-   

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

2017-02-01 Thread Jeroen Roovers
commit: 0b1baf594dc9487b3696703b5d68fe9b9fe2f8eb
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 07:24:46 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 07:24:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b1baf59

net-misc/youtube-dl: Version bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-misc/youtube-dl/Manifest |  1 +
 net-misc/youtube-dl/youtube-dl-2017.02.01.ebuild | 99 
 2 files changed, 100 insertions(+)

diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
index 2fd8951..f174749 100644
--- a/net-misc/youtube-dl/Manifest
+++ b/net-misc/youtube-dl/Manifest
@@ -1,3 +1,4 @@
 DIST youtube-dl-2016.12.22.tar.gz 2502964 SHA256 
f5bc5eb1af17391b7a1da795f4181c3702fb2c1da2668b25f1260dbdba882524 SHA512 
87fee134da660a4feb4cfcd2cbb35cb9682e6ed08c766e3c89f6c986f991cac78c64f5bf8a1d15c4080e4df0909c6a360137407a7896b93f8f41cf4493f341cb
 WHIRLPOOL 
6909d34958e4152be3334723c68d207bb34db2996d90908829ebd3ee45d28768d7f6cba8ce0fb19de440b34fb96b46b3d5b8bf830c998037c4f4d59e574206c3
 DIST youtube-dl-2017.01.18.tar.gz 2521980 SHA256 
7c16f3ce7cf8a673a4c531e4a1fc10801467a61732cb65430e40b3ab8b2f2d2e SHA512 
12333f99ce3bd264081db42f19cf855d0739a099cd5a34cb17341fd3dd8297325bf874a1f6b6e74acb7917a5e0bfb89b5cc6bce0231587b2a15c38335a49d5d7
 WHIRLPOOL 
ae006ec199020315520173f6ae56724bb5eaa858a030e7e71e730df359a8e87caf9cb2610b6b1cd65912272891c1f19c3fd90d6304c93b45d2e51996a62cf985
 DIST youtube-dl-2017.01.28.tar.gz 2537285 SHA256 
3ca165456799a9a60c875caed37e70c8fe3279326f2715837fcdc4304c64be99 SHA512 
92329f37e743cf386d45e8f0113b79bed6465ad7fd03567c723bc6217b2b1652b8fbca93ffece4b3a75d9d33a530837451f88a4cb9d68d6a0a96d27898d8fd68
 WHIRLPOOL 
8f5b6e977575ce6a16ff8cd74fcf3066957b7c8f183f83202e9f3c536f06d17ddac75caf3aa595ca4e3bf1010e4bc7a2c261ad7a5fe2015a66fb0b137dba3c8f
+DIST youtube-dl-2017.02.01.tar.gz 2547975 SHA256 
ff77551020c4a81810cb40c9ad36e229db1955d38e390ecdd1333dfc265079ca SHA512 
6eddb325238669d84f6d99273d654a34074b38450d6815a6e6ae397989d690126d701e1f0eead147edb8021a950b116ecebee272678b63a5271613c90d7133f0
 WHIRLPOOL 
99d816b0c48af2b5cd9932a91ae2846656157e1b8f6d411666fff6254552073679f0b21fa6a5dfc44db79767a8b72f6973306e215d9e55f5608375d87cd6f046

diff --git a/net-misc/youtube-dl/youtube-dl-2017.02.01.ebuild 
b/net-misc/youtube-dl/youtube-dl-2017.02.01.ebuild
new file mode 100644
index ..6cb3331
--- /dev/null
+++ b/net-misc/youtube-dl/youtube-dl-2017.02.01.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=(python{2_7,3_4,3_5})
+inherit bash-completion-r1 distutils-r1 eutils
+
+DESCRIPTION="Download videos from YouTube.com (and more sites...)"
+HOMEPAGE="https://rg3.github.com/youtube-dl/;
+SRC_URI="http://youtube-dl.org/downloads/${PV}/${P}.tar.gz;
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+IUSE="offensive test"
+
+RDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"
+DEPEND="
+   ${RDEPEND}
+   test? ( dev-python/nose[coverage(+)] )
+"
+
+S="${WORKDIR}/${PN}"
+
+python_prepare_all() {
+   if ! use offensive; then
+   sed -i -e "/__version__/s|'$|-gentoo_no_offensive_sites'|g" \
+   youtube_dl/version.py || die
+   # these have single line import statements
+   local xxx=(
+   alphaporno anysex behindkink camwithher chaturbate 
eporner
+   eroprofile extremetube fourtube foxgay goshgay hellporno
+   hentaistigma hornbunny keezmovies lovehomeporn mofosex 
motherless
+   myvidster porn91 porncom pornhd pornotube pornovoisines 
pornoxo
+   ruleporn sexu slutload spankbang spankwire sunporno 
thisav tube8
+   vporn watchindianporn xbef xnxx xtube xvideos 
xxxymovies youjizz
+   youporn
+   )
+   # these have multi-line import statements
+   local mxxx=(
+   drtuber pornhub redtube xhamster tnaflix
+   )
+   # do single line imports
+   sed -i \
+   -e $( printf '/%s/d;' ${xxx[@]} ) \
+   youtube_dl/extractor/extractors.py \
+   || die
+
+   # do multiple line imports
+   sed -i \
+   -e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \
+   youtube_dl/extractor/extractors.py \
+   || die
+
+   sed -i \
+   -e $( printf '/%s/d;' ${mxxx[@]} ) \
+   youtube_dl/extractor/generic.py \
+   || die
+
+   rm \
+   

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

2017-02-01 Thread Jeroen Roovers
commit: 0061109a5187ed2df962274c966a7888f0d543ea
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 07:18:30 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 07:18:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0061109a

dev-perl/Devel-CheckBin: Mark ~hppa (bug #606514).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild 
b/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild
index ac85e49..5f86d3d 100644
--- a/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild
+++ b/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 
 DESCRIPTION="check that a command is available"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2017-02-01 Thread Jeroen Roovers
commit: ab2085c815f790fa01416704df313a1a3e1a77d3
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 07:19:49 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 07:19:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab2085c8

dev-perl/Sub-Name: Mark ~hppa (bug #606514).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild 
b/dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild
index 7161317..e1d653b 100644
--- a/dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild
+++ b/dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="(Re)name a sub"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~s390 ~sh ~x86 ~ppc-aix ~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 ~mips ~s390 ~sh ~x86 ~ppc-aix 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test suggested"
 
 RDEPEND="



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

2017-02-01 Thread Jeroen Roovers
commit: 70ce6cce9db0cfc388d4ca6ebd7d6a86364dc0e8
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 07:08:30 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 07:10:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70ce6cce

net-analyzer/iptstate: Version bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-analyzer/iptstate/Manifest  |  1 +
 net-analyzer/iptstate/iptstate-2.2.6.ebuild | 36 +
 2 files changed, 37 insertions(+)

diff --git a/net-analyzer/iptstate/Manifest b/net-analyzer/iptstate/Manifest
index 03d719f..1d8e0f6 100644
--- a/net-analyzer/iptstate/Manifest
+++ b/net-analyzer/iptstate/Manifest
@@ -1 +1,2 @@
 DIST iptstate-2.2.5.tar.bz2 28270 SHA256 
4e4d881b701fc4599a252021d6ef579eb17aea711fbc07f95df61465b38e1055 SHA512 
044bbcf96225cc52b82428792d685d19f964520f7f20a9d3fa7e53430c1f552c0f09338a5d347b08e2500206cd7634a6b4a3acffbfd9e59e4657afb6df461795
 WHIRLPOOL 
193623aeb5a082fa51613c22e01b22d7d8db83099061961ace7e753bd06e16cdc4b001f73d1b5d20e8eafeb3a1412744a95c10d3fab672c2644408ec125369d9
+DIST iptstate-2.2.6.tar.bz2 28700 SHA256 
bef8eb67a4533e53079f397b71e91dd34da23f8cbd65cb2d5b67cb907b00c068 SHA512 
411b357aced384c52caac17b23f3c6bd631ff34d41b6000b90ff6dfc3cf20e36e46416d3691ac699b06f16d6042a42681b42a5d3594ce287aa6cf3b3b637c999
 WHIRLPOOL 
59abc09fd5e493e1530eb72c11b48bcce659598fb40c979da46514c5679ab124d24ebce961b9825b22ba52443108e5718ad859140ead18448ec2d0af61baa4a3

diff --git a/net-analyzer/iptstate/iptstate-2.2.6.ebuild 
b/net-analyzer/iptstate/iptstate-2.2.6.ebuild
new file mode 100644
index ..5c73f26
--- /dev/null
+++ b/net-analyzer/iptstate/iptstate-2.2.6.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit toolchain-funcs
+
+DESCRIPTION="IP Tables State displays states being kept by iptables in a 
top-like format"
+HOMEPAGE="http://www.phildev.net/iptstate/ https://github.com/jaymzh/iptstate;
+SRC_URI="https://github.com/jaymzh/${PN}/releases/download/v${PV}/${P}.tar.bz2;
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+
+RDEPEND="
+   >=sys-libs/ncurses-5.7-r7:0=
+   >=net-libs/libnetfilter_conntrack-0.0.50
+"
+DEPEND="
+   ${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.2.5-gentoo.patch
+)
+
+src_prepare() {
+   default
+   tc-export CXX PKG_CONFIG
+}
+
+src_install() {
+   emake PREFIX="${D}"/usr install
+   dodoc BUGS Changelog CONTRIB README.md WISHLIST
+}



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

2017-02-01 Thread Jeroen Roovers
commit: d0fba380872803a559c08d0d6901d01cdbef9c10
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 07:05:48 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 07:10:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0fba380

net-analyzer/iptstate: Drop short .

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-analyzer/iptstate/metadata.xml | 15 +++
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/net-analyzer/iptstate/metadata.xml 
b/net-analyzer/iptstate/metadata.xml
index 371b269..3209c1c 100644
--- a/net-analyzer/iptstate/metadata.xml
+++ b/net-analyzer/iptstate/metadata.xml
@@ -1,12 +1,11 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   net...@gentoo.org
-   Gentoo network monitoring and analysis project
-   
-   IP Tables State displays states being kept by iptables 
in a top-like format
-   
-   iptstate
-   
+
+   net...@gentoo.org
+   Gentoo network monitoring and analysis project
+
+
+   iptstate
+
 



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

2017-02-01 Thread Jeroen Roovers
commit: 8baeb4952ef198d7b5d8f4f5f59d018249d341e4
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 06:52:30 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 07:10:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8baeb495

dev-perl/Capture-Tiny: Stable for HPPA (bug #590830).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 dev-perl/Capture-Tiny/Capture-Tiny-0.360.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Capture-Tiny/Capture-Tiny-0.360.0.ebuild 
b/dev-perl/Capture-Tiny/Capture-Tiny-0.360.0.ebuild
index 7a51b53..f89b774 100644
--- a/dev-perl/Capture-Tiny/Capture-Tiny-0.360.0.ebuild
+++ b/dev-perl/Capture-Tiny/Capture-Tiny-0.360.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Capture STDOUT and STDERR from Perl, XS or 
external programs"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2017-02-01 Thread Hans de Graaff
commit: 73b56882c3d6b80ff95462f00bfb82fbd8c0f441
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Feb  2 06:39:59 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Feb  2 07:00:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73b56882

dev-ruby/sexp_processor: add 4.8.0

Package-Manager: portage-2.3.3

 dev-ruby/sexp_processor/Manifest   |  1 +
 .../sexp_processor/sexp_processor-4.8.0.ebuild | 28 ++
 2 files changed, 29 insertions(+)

diff --git a/dev-ruby/sexp_processor/Manifest b/dev-ruby/sexp_processor/Manifest
index 9eaf1aa..574ede5 100644
--- a/dev-ruby/sexp_processor/Manifest
+++ b/dev-ruby/sexp_processor/Manifest
@@ -1 +1,2 @@
 DIST sexp_processor-4.7.0.gem 39424 SHA256 
963a1f5b21c95595fb3cf1e8531784bf3d8fe30302cf6f271b08aefdc63e453f SHA512 
6c48853f2eaca37bcddb097f6677d37835171618e4209d07baa1f361d4cdf4ce95a11f892b6b258cd91e51555aa046c404d8970560618b4e8a86fd0d6dca71c7
 WHIRLPOOL 
cad0c31e6aace9066be2d400d392206c7b9f71b2fbdbe072d0a1d98e241acc15f79c0992d45cffc261284f751d1b5046380254b0f050f62fbdad0132437e3b8a
+DIST sexp_processor-4.8.0.gem 39936 SHA256 
5b9325f28b5be80ba8d43b7660f60ad67c9304fe8181dee89d3a348b13d2fada SHA512 
041f4ca8603359ff37c408ca0f6bcce39145928f7ac5dd3d59a50142fb4ca8c41f91ecde9a5d15ac6d06ee5be302b609a5091bd6a7be5ad81f861685567a588b
 WHIRLPOOL 
5892a4d0d335bcba5d1442ea75c6558eb4d4ae1942088a1cc5cbb4cabefcc8eb531dd5ac357a72a0d36d130976b4d9d2c4997874842d2a08a634e0908146007e

diff --git a/dev-ruby/sexp_processor/sexp_processor-4.8.0.ebuild 
b/dev-ruby/sexp_processor/sexp_processor-4.8.0.ebuild
new file mode 100644
index ..b4c8979
--- /dev/null
+++ b/dev-ruby/sexp_processor/sexp_processor-4.8.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="README.txt History.txt"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Processor for s-expressions created as part of the ParseTree 
project"
+HOMEPAGE="http://www.zenspider.com/ZSS/Products/ParseTree/;
+
+LICENSE="GPL-2"
+SLOT="4"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~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/hoe-3.13
+   dev-ruby/hoe-seattlerb
+   >=dev-ruby/minitest-5.5
+   )"



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

2017-02-01 Thread Hans de Graaff
commit: 7c71d8106c560909a81e3ae4afa8f971faf68256
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Feb  2 07:06:57 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Feb  2 07:06:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c71d810

dev-ruby/dotenv: add 2.2.0

Package-Manager: portage-2.3.3

 dev-ruby/dotenv/Manifest|  1 +
 dev-ruby/dotenv/dotenv-2.2.0.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/dev-ruby/dotenv/Manifest b/dev-ruby/dotenv/Manifest
index b965898..9131985 100644
--- a/dev-ruby/dotenv/Manifest
+++ b/dev-ruby/dotenv/Manifest
@@ -1 +1,2 @@
 DIST dotenv-2.1.1.tar.gz 14019 SHA256 
c1fb9da9dd85b9e92026e49766de2ef13117b7adbcb9a21876ae478653da3d59 SHA512 
6e9e6604d698ae3bcdf2c10bcbdd169b278477eafd532c4031f592db1daf4e000e57486a4e98d032718c555cf6032189947bae02737bf2a46819b8638a8dc8ab
 WHIRLPOOL 
ddbf38c95633040774ae31268bf7eecb1a5d5c31f3cec5edad1e5fecec621d39d2418dfe73082dd3501d90d6bf9349b7261a1e8fce26599dab1c1fe74813709e
+DIST dotenv-2.2.0.tar.gz 15246 SHA256 
1b6db209aea6a07ca7605d0abe2560e7d3d36a8a5df3ca6ec1961d176f12a062 SHA512 
c681f017f85d3aaf4881519b7bc5616b1bf2dcfe5f42be1d4b279f0c61936c16378664103908c913d283bb0e58cd3128ea88451f0702337c5171a46133d497d6
 WHIRLPOOL 
006c970d4b25c9bad1c6eb99ed21fe3828ce9ec4afa34ec93011b1f999083b98849a7078d390ecd0c88d216cdd62ed9f5484e411cc2cea43fa2dcbfb3755ab56

diff --git a/dev-ruby/dotenv/dotenv-2.2.0.ebuild 
b/dev-ruby/dotenv/dotenv-2.2.0.ebuild
new file mode 100644
index ..6cb11d1
--- /dev/null
+++ b/dev-ruby/dotenv/dotenv-2.2.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_EXTRADOC="README.md Changelog.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Loads environment variables from .env into ENV"
+HOMEPAGE="https://github.com/bkeepers/dotenv;
+SRC_URI="https://github.com/bkeepers/dotenv/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~arm ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+SLOT="2"
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/spring dev-ruby/rails )"
+
+all_ruby_prepare() {
+   sed -i -e '/:guard/,/end/ s:^:#:' \
+   -e '5igem "rspec", "~> 3.0"' Gemfile || die
+
+   sed -i -e '/rubocop/ s:^:#:' -e 's/git ls-files/find/' dotenv.gemspec 
|| die
+}
+
+each_ruby_prepare() {
+   sed -i -e "s:ruby -v:${RUBY} -v:g" spec/dotenv/parser_spec.rb || die
+}



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

2017-02-01 Thread Jeroen Roovers
commit: be9709c2fc46c195e20d4946b754c1fed3203c94
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 06:39:08 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 06:40:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be9709c2

app-portage/layman: Remove old patch. Whitespace.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../layman/files/layman-2.3.0-dir_check.patch  | 31 --
 1 file changed, 31 deletions(-)

diff --git a/app-portage/layman/files/layman-2.3.0-dir_check.patch 
b/app-portage/layman/files/layman-2.3.0-dir_check.patch
deleted file mode 100644
index af5ec4a..
--- a/app-portage/layman/files/layman-2.3.0-dir_check.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From: Devan Franchini 
-Date: Sat, 30 Apr 2016 18:54:39 -0400
-Subject: [PATCH] Adds dir check for repos.conf rebuilding
-
 a/layman/updater.py2015-02-07 22:38:49.0 -0500
-+++ b/layman/updater.py2016-04-30 18:54:39.103894343 -0400
-@@ -182,6 +182,24 @@
- 
- def create_repos_conf(self):
- self.output.info("  Creating layman's repos.conf file")
-+
-+if os.path.isdir(self.config['repos_conf']):
-+msg = '  create_repos_conf() error: %s is a directory and will\n'\
-+  '  not be written to.' % self.config['repos_conf']
-+self.output.error(msg)
-+return None
-+
-+conf_dir = os.path.dirname(self.config['repos_conf'])
-+
-+if not os.path.isdir(conf_dir):
-+try:
-+os.mkdir(conf_dir)
-+except OSError as e:
-+self.output.error('  create_repos_conf() error creating: %s: 
'\
-+   % conf_dir)
-+self.output.error('  "%s"' % e)
-+return None
-+
- layman_inst = LaymanAPI(config=self.config)
- overlays = {}
- for ovl in layman_inst.get_installed():



[gentoo-commits] repo/gentoo:master commit in: app-shells/tcsh/

2017-02-01 Thread Jeroen Roovers
commit: d21cc80df227f38c97a57b881c008cabb4e3221f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 06:36:06 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 06:40:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d21cc80d

app-shells/tcsh: Stable for HPPA (bug #605850).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 app-shells/tcsh/tcsh-6.20.00.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/tcsh/tcsh-6.20.00.ebuild 
b/app-shells/tcsh/tcsh-6.20.00.ebuild
index 9fd196f..558a6f6 100644
--- a/app-shells/tcsh/tcsh-6.20.00.ebuild
+++ b/app-shells/tcsh/tcsh-6.20.00.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls doc"
 RESTRICT="test"
 



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

2017-02-01 Thread Jeroen Roovers
commit: 2e35fc57754784692f13cc2dfed61438fb1c008b
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 06:37:05 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 06:40:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e35fc57

dev-perl/Test-RequiresInternet: Mark ~hppa (bug #606514).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 dev-perl/Test-RequiresInternet/Test-RequiresInternet-0.50.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-RequiresInternet/Test-RequiresInternet-0.50.0.ebuild 
b/dev-perl/Test-RequiresInternet/Test-RequiresInternet-0.50.0.ebuild
index 698c8ae..1330c9e 100644
--- a/dev-perl/Test-RequiresInternet/Test-RequiresInternet-0.50.0.ebuild
+++ b/dev-perl/Test-RequiresInternet/Test-RequiresInternet-0.50.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Easily test network connectivity"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~hppa ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2017-02-01 Thread Jeroen Roovers
commit: 96a24e8588b5a76112eab3cf6c4a0b57efba8d32
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 06:39:50 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 06:40:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96a24e85

dev-perl/libwww-perl: Mark ~hppa (bug #606514).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 dev-perl/libwww-perl/libwww-perl-6.160.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/libwww-perl/libwww-perl-6.160.0.ebuild 
b/dev-perl/libwww-perl/libwww-perl-6.160.0.ebuild
index ca19665..062034a 100644
--- a/dev-perl/libwww-perl/libwww-perl-6.160.0.ebuild
+++ b/dev-perl/libwww-perl/libwww-perl-6.160.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="A collection of Perl Modules for the WWW"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~hppa ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="ssl test"
 
 RDEPEND="



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

2017-02-01 Thread Patrick Lauer
commit: 1a2fef46603fccacd3c7ba9dee731713682827a0
Author: Patrick Lauer  gentoo  org>
AuthorDate: Thu Feb  2 06:29:47 2017 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Thu Feb  2 06:29:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a2fef46

app-portage/layman: Whitespace

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-portage/layman/layman-2.4.2.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-portage/layman/layman-2.4.2.ebuild 
b/app-portage/layman/layman-2.4.2.ebuild
index c17c906..e0dff12 100644
--- a/app-portage/layman/layman-2.4.2.ebuild
+++ b/app-portage/layman/layman-2.4.2.ebuild
@@ -41,7 +41,6 @@ RDEPEND="
>=dev-python/ssl-fetch-0.4[${PYTHON_USEDEP}]
"
 
-
 layman_check_kernel_config() {
local CONFIG_CHECK
use squashfs && CONFIG_CHECK+=" ~BLK_DEV_LOOP ~SQUASHFS"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/libqalculate/

2017-02-01 Thread Jeroen Roovers
commit: ceff4d7fc415bafd7dfabfa3d261831e1d7fd7a0
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 06:17:14 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 06:18:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ceff4d7f

sci-libs/libqalculate: Stable for HPPA (bug #596672).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 sci-libs/libqalculate/libqalculate-0.9.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/libqalculate/libqalculate-0.9.9.ebuild 
b/sci-libs/libqalculate/libqalculate-0.9.9.ebuild
index af9445a..a2e1694 100644
--- a/sci-libs/libqalculate/libqalculate-0.9.9.ebuild
+++ b/sci-libs/libqalculate/libqalculate-0.9.9.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/Qalculate/${PN}/releases/download/v${PV}/${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0/6"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="gnuplot readline static-libs"
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-calculators/qalculate-gtk/

2017-02-01 Thread Jeroen Roovers
commit: 0bc0dc76fbba39eda4b0611d0a35f2100201b480
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Feb  2 06:18:39 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Feb  2 06:18:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bc0dc76

sci-calculators/qalculate-gtk: Stable for HPPA (bug #596672).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 sci-calculators/qalculate-gtk/qalculate-gtk-0.9.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-calculators/qalculate-gtk/qalculate-gtk-0.9.9.ebuild 
b/sci-calculators/qalculate-gtk/qalculate-gtk-0.9.9.ebuild
index 07904e9..8e159b3 100644
--- a/sci-calculators/qalculate-gtk/qalculate-gtk-0.9.9.ebuild
+++ b/sci-calculators/qalculate-gtk/qalculate-gtk-0.9.9.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/Qalculate/${PN}/releases/download/v${PV}/${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ppc sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 hppa ppc sparc x86 ~amd64-linux ~x86-linux"
 IUSE="gnome"
 
 RDEPEND=">=sci-libs/libqalculate-0.9.9:=



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

2017-02-01 Thread Matt Thode
commit: 54117db1d1baa546436b6b238091457302317f5c
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Feb  2 05:05:53 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Feb  2 05:05:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54117db1

sys-cluster/cinder: bup

Package-Manager: portage-2.3.3

 sys-cluster/cinder/Manifest|   1 +
 sys-cluster/cinder/cinder-9.1.2.ebuild | 196 +
 2 files changed, 197 insertions(+)

diff --git a/sys-cluster/cinder/Manifest b/sys-cluster/cinder/Manifest
index 7400a2e..171e2ed 100644
--- a/sys-cluster/cinder/Manifest
+++ b/sys-cluster/cinder/Manifest
@@ -1,5 +1,6 @@
 DIST cinder-8.1.1.tar.gz 3875392 SHA256 
57de9d1410e9e5a0568499e38414241167e4b2b1742aac309844da80efd127e2 SHA512 
4dfa5a11b11b684761519b33d1b45f4d65152df96fc9303e92724f88a01bea031e0dd7aaa229d5876641fa4a5089fcd197e52cf01652a89f6027435b038f3560
 WHIRLPOOL 
9815230914da588529f3f3916ddfdb25025a531015fd78fce635a6e55b6051f2a26f2e4710cd980daceb905f41caaceb274f84c34353bbc363a36e12a88c8245
 DIST cinder-9.1.1.tar.gz 4201222 SHA256 
455831c90ac6eafde83bb7b57d0c8ee0caf19a419bf760b2451aa7164cc9627d SHA512 
3bf93913749c0ed6c5ee2fec4b07d32d59daf2c494333a8812d267c797ed4dfcb2d83203c6494c8dda14770a1f1e3cd48d4770158ad18307bdada358811ab94e
 WHIRLPOOL 
5e9f3837e1576afb4ecce654d9547c7c4a857a0695b15530a8b84647ff17285f4a9e5312cc36b603248ddb81ec41628f0d6921df48c31eb43f609f6b086c87a9
+DIST cinder-9.1.2.tar.gz 4202510 SHA256 
03415a9fc0280263d9094e385ce08af1ad3daed2227baa8c258744e400cd97c2 SHA512 
bc5b8d58128df458f80120d061da5b2e097c8ce4daa6ee9b7c5e1062a1074861e9e33f547f4a5c2005316d1ad9f8f3b2f3e2d5825492ba6fa0becf8fdf3a41ee
 WHIRLPOOL 
dc8a74fdd513fdeb0cf321498a504ef9803480ae254a2f7e65853f27867699a54311fcb0ad2c248d06fccd5d914eda20335fce9f6efd983e5d03bd59f6851a40
 DIST mitaka-cinder-api-paste.ini 2416 SHA256 
3794a5e34dace60474274e93a7346662eb03a485d1b9b67afded591e764aba9d SHA512 
f6e3800557fa7efb562a69f80eea9b516c0ad2e54b9a013c92118bf91daaf2bdd2a9ced309626fab13fe9b979f0c768ac22bba63c7fa8aa3443004d50359d844
 WHIRLPOOL 
90e8c7bf065609e6a85d247c15b1022ea51bb94b000841c30a69d99c96082a08125fca58cf5b216990c6b746f52af5cedebbafc5b9450a91c0d32cdc21951952
 DIST mitaka-cinder-policy.json 4959 SHA256 
5a9cd9d5d4cf80a9271fd7a5146d6d5415d10f8d699a8499a39a3cde29f50bd6 SHA512 
b36daa51ab7719e1a56ca760e7ec62a98fb3a88ffed96196852023abf4ffe483200c9dcb934e3c7910fc6988f9c2bb9bb914121d0d649dc3b01466f467a82fe2
 WHIRLPOOL 
f288b6dba2593fa6deb8ad94862948899ec10f71e4751f108ec1fbfff814c3206b5c541aaac0bb7edd2fb5311639a1cd3a44586855912cb2e0e675d5ad78161c
 DIST mitaka-cinder-volume.filters 9819 SHA256 
20e4833aaf18b6be247e8ea2a0f63cc509ed595ea799c3ccfbcc1d0afc5bf9d8 SHA512 
7b7aacdd843b960ed075b466e0bd7d2973a7733e7db63b4cb02df4b824a9528f6b7074870bf0048674e600bed983bc66caa1914963fff4aed00e8ab40e2ef600
 WHIRLPOOL 
32fb88041b8f38c821896d82139ea712ea0fc0a71bd6154e31887e85baf58d80b2c8bfd6c60b21613e522fe32fb022078091fcdc74110e5c9968826ae218c085

diff --git a/sys-cluster/cinder/cinder-9.1.2.ebuild 
b/sys-cluster/cinder/cinder-9.1.2.ebuild
new file mode 100644
index ..1b68e3d
--- /dev/null
+++ b/sys-cluster/cinder/cinder-9.1.2.ebuild
@@ -0,0 +1,196 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_4 )
+
+inherit distutils-r1 eutils linux-info user
+
+DESCRIPTION="Cinder is the OpenStack Block storage service, a spin out of 
nova-volumes"
+HOMEPAGE="https://launchpad.net/cinder;
+SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/newton/cinder.conf.sample
 -> newton-cinder.conf.sample
+https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/newton/policy.json
 -> newton-cinder-policy.json
+https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/newton/volume.filters
 -> newton-cinder-volume.filters
+https://tarballs.openstack.org/${PN}/${P}.tar.gz;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="+api +scheduler +volume infiniband iscsi lvm mysql +memcached postgres 
rdma sqlite +tcp test +tgt"
+REQUIRED_USE="|| ( mysql postgres sqlite ) iscsi? ( tgt ) infiniband? ( rdma )"
+
+CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   ${CDEPEND}
+   app-admin/sudo"
+
+RDEPEND="
+   ${CDEPEND}
+   >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
+   >=dev-python/decorator-3.4.0[${PYTHON_USEDEP}]
+   dev-python/enum34[$(python_gen_usedep 'python2_7')]
+   >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
+   >=dev-python/greenlet-0.3.2[${PYTHON_USEDEP}]
+   >=dev-python/httplib2-0.7.5[${PYTHON_USEDEP}]
+   >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
+   virtual/python-ipaddress[${PYTHON_USEDEP}]
+   >=dev-python/keystoneauth-2.10.0[${PYTHON_USEDEP}]
+   >=dev-python/keystonemiddleware-4.0.0[${PYTHON_USEDEP}]
+   

[gentoo-commits] proj/mozilla:master commit in: eclass/, www-client/firefox/

2017-02-01 Thread Jory Pratt
commit: c411efec7ca1c033380bc0ccd219b34356055272
Author: Jory A. Pratt  gentoo  org>
AuthorDate: Thu Feb  2 03:42:36 2017 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Thu Feb  2 03:42:36 2017 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=c411efec

www-client/firefox : 52.0_beta2 update, fix skia breakage in eclass

 eclass/mozconfig-v6.51.eclass   | 2 +-
 www-client/firefox/Manifest | 2 +-
 .../firefox/{firefox-52.0_beta1.ebuild => firefox-52.0_beta2.ebuild}| 0
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/mozconfig-v6.51.eclass b/eclass/mozconfig-v6.51.eclass
index 1e451f8..d27e22a 100644
--- a/eclass/mozconfig-v6.51.eclass
+++ b/eclass/mozconfig-v6.51.eclass
@@ -286,7 +286,7 @@ mozconfig_config() {
mozconfig_annotate 'Gentoo default' --with-system-png
mozconfig_annotate '' --enable-system-ffi
mozconfig_annotate 'Gentoo default to honor system linker' 
--disable-gold
-   mozconfig_annotate '' skia
+   mozconfig_annotate '' --enable-skia
mozconfig_annotate '' --disable-gconf
mozconfig_annotate '' --with-intl-api
 

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 589fcfe..fcd2bb7 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -86,4 +86,4 @@ DIST firefox-45.7.0esr-zh-CN.xpi 475797 SHA256 
0e8eb9173e890e5ec2726c60706548f8b
 DIST firefox-45.7.0esr-zh-TW.xpi 466529 SHA256 
8c2ce7bf8a2c95eb065ae9491e3b557d1775be578f7c523080eb204de68c3b49 SHA512 
3f5370fcec1c8605a1a3d724bec8aa5fedd7e6bead2eee88209d8077a8dd8cd6096b3003d7de534f82e8e62a82c96729b4a4f95cecf71676e070b1eaf260c011
 WHIRLPOOL 
51616ece696f77d5774adee33b1c25b7b9dd06f972fc13804772f03d71caa1742c183adbf43add2f608ddce3439fb0a2c6dc7fd628a0f3c3bc5c43f85461dde9
 DIST firefox-45.7.0esr.source.tar.xz 184131284 SHA256 
4b5610691d32b77dd0dec25902f0d19e530c184cedc11babb530621cbdd33143 SHA512 
6424101b6958191ce654d0619950dfbf98d4aa6bdd979306a2df8d6d30d3fecf1ab44638061a2b4fb1af85fe972f5ff49400e8eeda30cdcb9087c4b110b97a7d
 WHIRLPOOL 
ec9ad46ec711135fa1846e60d9d3a430b446584e8156e26f88902452d8674b4a9acdee1f3672820408afe1e689bf55edc5f6bb3cde0014faa609ab70e954a022
 DIST firefox-52.0-patches-03.tar.xz 9664 SHA256 
be636821859fe86e04f3aebba677a2b55507c03a8916b4d9ba619b5a7dcbee4a SHA512 
6300168e45205fb012809e050f8e06b7388e0b63ab1405126550863a3b717da20ce342cbbb3bebbaf55e0d348c2e409410f0739d7e5cceedd3da6ad61dab702a
 WHIRLPOOL 
44fd28c56f921d23a57f04dca2d9ff99bbcfc5f1416d7e8700c025bcf07c21525bfd42343c65f0dc483efa83ccaa44d255d2c464d62169cc2e9aaf94b47df746
-DIST firefox-52.0b1.source.tar.xz 206276464 SHA256 
f82151bdae3c12818d3444084e0bbdd3975bf5861beccfcb3afdd37bae9c880b SHA512 
02d76db9d1f45149f11aef671ce533be5bc980ee0be04a2fc3eb1761932d0c22fec813cb7bbeeb9e039579e9d8d03005e1b9a2320a5cc896ca88304b68c65033
 WHIRLPOOL 
aadd3f4cb6ba12d1395d241de684a225b55fa74e21a3b42bffce20eafc6a92fe06a50d5ed83e70282a9b2b3d4c78c3aea5c7332505dd33d1531c992767ed
+DIST firefox-52.0b2.source.tar.xz 206110112 SHA256 
a3384b5b795b9729d45525ce993a0e487de7afb0330a8268c322343b488cecd9 SHA512 
baebbeb5060077ad2e8e02a802bc2b145bd46e66cc2ac6887d648e8c6f727733271642297bcda077f9a673e08df07eca12f25b95b3bf71ef5743986339a7
 WHIRLPOOL 
a125e51bddfc1215fba7cb6cd76863fcc879a21a484bc30bb4cfd4b258666046596e2d3dd82d15bf07fb72592273d291f1829bb949c18d1293e815489ee27810

diff --git a/www-client/firefox/firefox-52.0_beta1.ebuild 
b/www-client/firefox/firefox-52.0_beta2.ebuild
similarity index 100%
rename from www-client/firefox/firefox-52.0_beta1.ebuild
rename to www-client/firefox/firefox-52.0_beta2.ebuild



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

2017-02-01 Thread Jory Pratt
commit: 7c0970a092e19fd8c1df802d029d8bf630fc73ec
Author: Jory A. Pratt  gentoo  org>
AuthorDate: Thu Feb  2 03:01:57 2017 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Thu Feb  2 03:01:57 2017 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=7c0970a0

eclass/mozconfig-v6.51 : Remove skia support as being optional and force
it to be default

 eclass/mozconfig-v6.51.eclass | 12 ++--
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/eclass/mozconfig-v6.51.eclass b/eclass/mozconfig-v6.51.eclass
index 7bbed9a..1e451f8 100644
--- a/eclass/mozconfig-v6.51.eclass
+++ b/eclass/mozconfig-v6.51.eclass
@@ -83,7 +83,7 @@ inherit flag-o-matic toolchain-funcs mozcoreconf-v4
 # Set the variable to any value if the use flag should exist but not be 
default-enabled.
 
 # use-flags common among all mozilla ebuilds
-IUSE="${IUSE} dbus debug +jemalloc neon pulseaudio selinux +skia 
startup-notification system-cairo
+IUSE="${IUSE} dbus debug +jemalloc neon pulseaudio selinux 
startup-notification system-cairo
system-harfbuzz system-icu system-jpeg system-libevent system-sqlite 
system-libvpx"
 
 # some notes on deps:
@@ -286,7 +286,7 @@ mozconfig_config() {
mozconfig_annotate 'Gentoo default' --with-system-png
mozconfig_annotate '' --enable-system-ffi
mozconfig_annotate 'Gentoo default to honor system linker' 
--disable-gold
-   mozconfig_use_enable skia
+   mozconfig_annotate '' skia
mozconfig_annotate '' --disable-gconf
mozconfig_annotate '' --with-intl-api
 
@@ -404,12 +404,4 @@ mozconfig_install_prefs() {
echo 
"sticky_pref(\"gfx.font_rendering.graphite.enabled\",true);" \
>>"${prefs_file}" || die
fi
-
-   # force cairo as the canvas renderer if USE=skia is disabled
-   if ! use skia ; then
-   echo "lockPref(\"gfx.canvas.azure.backends\",\"cairo\");" \
-   >>"${prefs_file}" || die
-   echo "lockPref(\"gfx.content.azure.backends\",\"cairo\");" \
-   >>"${prefs_file}" || die
-   fi
 }



[gentoo-commits] repo/gentoo:master commit in: app-portage/layman/, app-portage/layman/files/

2017-02-01 Thread Brian Dolbec
commit: 45f3ad5b75ba8bdef00c2b149f8df3c11fdfec79
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Feb  2 02:25:15 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Feb  2 02:25:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45f3ad5b

app-portage/layman: Re-add 2.2.0-r7 due to missing keywords for g-sorcery

Clean up files dir.

Package-Manager: Portage-2.3.3_p38, Repoman-2.3.1_p31

 app-portage/layman/Manifest|  1 +
 ...yman-2.1.0-incorrect-import-make-conf-fix.patch | 29 ---
 .../layman/files/layman-2.1.0-local_overlay.patch  | 27 ---
 app-portage/layman/layman-2.2.0-r7.ebuild  | 89 ++
 4 files changed, 90 insertions(+), 56 deletions(-)

diff --git a/app-portage/layman/Manifest b/app-portage/layman/Manifest
index 6dd75d6..2064836 100644
--- a/app-portage/layman/Manifest
+++ b/app-portage/layman/Manifest
@@ -1,3 +1,4 @@
 DIST layman-2.0.0.tar.gz 81184 SHA256 
5843035ae4cc069693c05cf9821dae3d89d3ea7e2115b8137ea5a4a6c2807f33 SHA512 
30756464d71ab1e047036550b6500d7e57999d808ebe3efba1d1ae6c037f8ca777ba704a4981d75a90285133635027a7bc13f1890f34823de33ae991ed99e2da
 WHIRLPOOL 
ec362189c4757ee032dc93e079ea0f5b291d5652231a84f1175fb308ca5622882d5008f23fd6a3d5143ff0dc98c91632d19c2e6604dcaa9b6a550bc902d79c1a
+DIST layman-2.2.0.tar.gz 116210 SHA256 
4a10cfd3eb354e993886369995ae9b1243418e0370c6aabd4d0ef6c5b387b7a2 SHA512 
34cac041d7b64274debdbc42cab079fd3bb3aee511ea9e80db726df0f828207d79a5262788483ced5cbf49924e3aa4f19fe21439c98dceea973d8f83473c2e41
 WHIRLPOOL 
8c5d3cbbfef35c6294dfac899cb42f49e0761745573721e38b7d6c9ac48031f95bbb961c9d8dd9d309e4672cc1e5b050107ba025a9f28127e5d7d6d9a73a6e9a
 DIST layman-2.4.1.tar.gz 130388 SHA256 
545792a15a0a2514c79f1b3090aceef15e413c656f294b6ff84f8a36da7aa2da SHA512 
bdb713d4c7d3773129b45a385068278958040759bb564e48cfda4dda9da5224ccaa7833fce3d06151ed1fecddbb6f1a059db6e71534d0e887dff12640af6c806
 WHIRLPOOL 
b6ef18f8f3633e9bb2a08df620306441f8352174dc66f2bbb68613cff0796e0914f7008de4f185167815ba3267c3b63a4fe22d2bcd794f70cd78bc20e706d7d8
 DIST layman-2.4.2.tar.gz 137893 SHA256 
e84f8b745dd160bacf7b08dfd95b5c6d117dc8721edca370600f29ef0676ff92 SHA512 
9d32269f51f896c554e6cbf8a674c50009bce48dd83dfe773b08b75bafd567eb75c26c227ab3a60bc83c1ed511862a3979b8d851befe8ad16fd0847eb91337cf
 WHIRLPOOL 
eba1844f2279071947601a8baa9424db24e5bd1ba2d9ac14f90e4ae2c3e0b566dabf10378cf6286225d85d11940add45239df8cb5b150eea227b47223ce65485

diff --git 
a/app-portage/layman/files/layman-2.1.0-incorrect-import-make-conf-fix.patch 
b/app-portage/layman/files/layman-2.1.0-incorrect-import-make-conf-fix.patch
deleted file mode 100644
index 1396e32..
--- a/app-portage/layman/files/layman-2.1.0-incorrect-import-make-conf-fix.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 8f6005fcfb9d2012bba428863f89b6b9168c8226 Mon Sep 17 00:00:00 2001
-From: Devan Franchini 
-Date: Thu, 22 May 2014 22:57:08 -0400
-Subject: [PATCH] updater.py: Fixes incorrect import for make.conf class
-
-X-Gentoo-Bug: 521724
-X-Gentoo-Bug-URL: https://bugs.gentoo.org/521724

- layman/updater.py  |  4 ++--
- 1 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/layman/updater.py b/layman/updater.py
-index 26aeed2..b2187e3 100644
 a/layman/updater.py
-+++ b/layman/updater.py
-@@ -155,8 +155,8 @@ class Main(object):
- self.output.info("  Creating layman's make.conf file")
- # create layman's %(storage)s/make.conf
- # so portage won't error
--from layman.makeconf import MakeConf
--maker = MakeConf(self.config, None)
-+from layman.makeconf import ConfigHandler
-+maker = ConfigHandler(self.config, None)
- maker.write()
- 
- 
--- 
-1.8.5.5
-

diff --git a/app-portage/layman/files/layman-2.1.0-local_overlay.patch 
b/app-portage/layman/files/layman-2.1.0-local_overlay.patch
deleted file mode 100644
index fbe5cd0..
--- a/app-portage/layman/files/layman-2.1.0-local_overlay.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From d0e5d9120c27f678e9039bb2f65cfc0e457be6c7 Mon Sep 17 00:00:00 2001
-From: Douglas Freed 
-Date: Sat, 26 Jul 2014 15:54:11 -0700
-Subject: [PATCH] Fix a bug when an overlay isn't in the remote list
-
-If the overlay isn't in the remote list, it obviously isn't a different
-type, nor has its URL changed, so just init those to False so we can
-sync the overlay without hitting UnboundLocalError.

- layman/api.py | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/layman/api.py b/layman/api.py
-index a86970f..930f449 100755
 a/layman/api.py
-+++ b/layman/api.py
-@@ -426,6 +426,7 @@ class LaymanAPI(object):
- message = 'Overlay "%s" could not be found in the remote 
lists.\n' \
- 'Please check if it has been renamed and re-add if 
necessary.' % ovl
- warnings.append((ovl, message))
-+(diff_type, update_url) = (False, False)
- 

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

2017-02-01 Thread Brian Dolbec
commit: 7f53897a387757edd7d766214eb6c260776b17d7
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Feb  2 02:11:17 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Feb  2 02:11:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f53897a

app-portage/layman: Fix manifest out of sync

Package-Manager: Portage-2.3.3_p38, Repoman-2.3.1_p31

 app-portage/layman/Manifest | 4 
 1 file changed, 4 deletions(-)

diff --git a/app-portage/layman/Manifest b/app-portage/layman/Manifest
index 125f87c..6dd75d6 100644
--- a/app-portage/layman/Manifest
+++ b/app-portage/layman/Manifest
@@ -1,7 +1,3 @@
 DIST layman-2.0.0.tar.gz 81184 SHA256 
5843035ae4cc069693c05cf9821dae3d89d3ea7e2115b8137ea5a4a6c2807f33 SHA512 
30756464d71ab1e047036550b6500d7e57999d808ebe3efba1d1ae6c037f8ca777ba704a4981d75a90285133635027a7bc13f1890f34823de33ae991ed99e2da
 WHIRLPOOL 
ec362189c4757ee032dc93e079ea0f5b291d5652231a84f1175fb308ca5622882d5008f23fd6a3d5143ff0dc98c91632d19c2e6604dcaa9b6a550bc902d79c1a
-DIST layman-2.1.0.tar.gz 94150 SHA256 
cb96306c84da1d49ff54a31f7511c62c859565361bd59164516cd2812c439987 SHA512 
1fa21392157c811c7751b8e3a11b858308c48720e377871bdd5afc525ebb50a92772064aa1148a4c20e3019f77b676ff65552439a71361d498952e362398c67f
 WHIRLPOOL 
77643bedb4167eb371357444328d439c8b433cfc22a8bf9e39693feb68b701ec158064db8d22da0e6eb5260f27d5604d8b252a67930b38d8bed5921822f71c29
-DIST layman-2.2.0.tar.gz 116210 SHA256 
4a10cfd3eb354e993886369995ae9b1243418e0370c6aabd4d0ef6c5b387b7a2 SHA512 
34cac041d7b64274debdbc42cab079fd3bb3aee511ea9e80db726df0f828207d79a5262788483ced5cbf49924e3aa4f19fe21439c98dceea973d8f83473c2e41
 WHIRLPOOL 
8c5d3cbbfef35c6294dfac899cb42f49e0761745573721e38b7d6c9ac48031f95bbb961c9d8dd9d309e4672cc1e5b050107ba025a9f28127e5d7d6d9a73a6e9a
-DIST layman-2.3.0.tar.gz 119223 SHA256 
76559b8e202c012d124deac01b92bbe70b550afe711144a3b1e301c5d8bbd0f2 SHA512 
d110fb1781017d87e995098ecb48c4223347323d67534b584a393dc4354b761a6d960fd31e6e6787b5f37fa7e63b357c49486042c7cb527f78dd5beb5373627d
 WHIRLPOOL 
76c82f08b18830e925ffd4c97b490753de2e7d0b3c71a82a0a75fd776ed3af84d2ba2fe06dab25e5e4d2ea400b0f0b66eda65f1f4eded0521ec579a1a0c1b17f
-DIST layman-2.4.0.tar.gz 130052 SHA256 
0dd9dbcd05b5bf062139308cb812507b2c3310dd81f25c9cdc4c8f643b3f74c8 SHA512 
011ac0e7dfed8415b875898ff1eecfe77ba5a68ccac208d8f5c693b9b880355ffef572490bb98ede62092bea1a84298bbd72e6c93a234fdfa319e96551e7eb07
 WHIRLPOOL 
0fdcd09ef4347f9450897237befd6fa73187a3e5ed0eff6b08345846ff270cd9751a3f38277f7b53baffb3b9a3e18e10f08ebe33c228ed7f7ccd01ce81d05a76
 DIST layman-2.4.1.tar.gz 130388 SHA256 
545792a15a0a2514c79f1b3090aceef15e413c656f294b6ff84f8a36da7aa2da SHA512 
bdb713d4c7d3773129b45a385068278958040759bb564e48cfda4dda9da5224ccaa7833fce3d06151ed1fecddbb6f1a059db6e71534d0e887dff12640af6c806
 WHIRLPOOL 
b6ef18f8f3633e9bb2a08df620306441f8352174dc66f2bbb68613cff0796e0914f7008de4f185167815ba3267c3b63a4fe22d2bcd794f70cd78bc20e706d7d8
 DIST layman-2.4.2.tar.gz 137893 SHA256 
e84f8b745dd160bacf7b08dfd95b5c6d117dc8721edca370600f29ef0676ff92 SHA512 
9d32269f51f896c554e6cbf8a674c50009bce48dd83dfe773b08b75bafd567eb75c26c227ab3a60bc83c1ed511862a3979b8d851befe8ad16fd0847eb91337cf
 WHIRLPOOL 
eba1844f2279071947601a8baa9424db24e5bd1ba2d9ac14f90e4ae2c3e0b566dabf10378cf6286225d85d11940add45239df8cb5b150eea227b47223ce65485



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

2017-02-01 Thread Zac Medico
commit: fd6b5a895add7d896a329f066ba04ca4813186dc
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Feb  2 01:33:46 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Feb  2 02:09:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd6b5a89

dev-python/python-docs: version bump to 3.6.0

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/python-docs/Manifest |  1 +
 dev-python/python-docs/python-docs-3.6.0.ebuild | 27 +
 2 files changed, 28 insertions(+)

diff --git a/dev-python/python-docs/Manifest b/dev-python/python-docs/Manifest
index 64a42e0..595ad95 100644
--- a/dev-python/python-docs/Manifest
+++ b/dev-python/python-docs/Manifest
@@ -3,3 +3,4 @@ DIST python-2.7.12-docs-html.tar.bz2 4601696 SHA256 
40891e010cdd9a752a17bd02e30a
 DIST python-3.3.5-docs-html.tar.bz2 4955315 SHA256 
471067c514a33b4ae4fc35ba600130572840326252a565e39157feb2911ef733 SHA512 
6cf6d02bf980609561ec829407e0a4d541ddf949db0b6d3156f9fa90ed7c87f9ef16128e9c8226887568489826efcdde5ea38af246ec235a077227d73736ea71
 WHIRLPOOL 
78a6babcc5c7df64deb324368f32ae5cc5fed6fba9ff7392b7589f81187b893d9c977fa9a25168d60336b46f9237bf09ba5e6fbef888ee3489de57afd09e9067
 DIST python-3.4.3-docs-html.tar.bz2 5444773 SHA256 
87d4f8739205fe6f2cbcb10c6f1b33546d3b7f41e6bc96de34f992ccf5c10fbf SHA512 
492038df0afb05d60806d56d66e06069d195249db708e4261d39fa6206e0baec5c2db730431b5be03d8d37296d935f39a25bf1d449fb29521bdc4823584b9bf9
 WHIRLPOOL 
c55241d450c6440d4e084a8189b569046352bd65b88a576fd0a8bc9a23665f52cc534da4d32061c0cbc31f41b2b63870fe4098ef28be2fed42311fa8e0decc46
 DIST python-3.5.2-docs-html.tar.bz2 5747460 SHA256 
34bb14f352b39e7a9ed8a5e4d8332c464158d0ef3a75dccb373a40fcf6de2342 SHA512 
2a9ce5b304c6edf3165728a1fe0c189222f8b105c446ca9026ce453d013c9498b4c53085fdef776b977d058fc138ba3af5ea9bf26291469ce47239ee1a8d9286
 WHIRLPOOL 
102d9d0a1ccaa5c2ba4c295872b1059498a79e39fdb06a249b62a52a790ed1f98f3dad4903e90e94c1dde41be7cdcc5142a7022d7fec1fd4a8b6415b92c66041
+DIST python-3.6.0-docs-html.tar.bz2 5880912 SHA256 
c6a11b760124e0820adbc4d2f57e0eeed0212c17b49e82da6ea22755186990f6 SHA512 
433221763e410b1fea9a592b25fa9695af369bfc3d49055d4f912fbe34a54ebdf69a0ad2579d4f886d08d08b107c83264186851bb962c7ef2c1fc863e984f529
 WHIRLPOOL 
a80b14dcfdb21d640218d574cb4f6c28ccd72197edbb93b2dad2f8bcbe38cfa2d50b889e397db9a15baeb38966d14fb720d8fc4839acefb45e06b085bb0a98a8

diff --git a/dev-python/python-docs/python-docs-3.6.0.ebuild 
b/dev-python/python-docs/python-docs-3.6.0.ebuild
new file mode 100644
index ..2723667
--- /dev/null
+++ b/dev-python/python-docs/python-docs-3.6.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+DESCRIPTION="HTML documentation for Python"
+HOMEPAGE="http://www.python.org/doc/;
+SRC_URI="mirror://gentoo/python-${PV}-docs-html.tar.bz2"
+# The upstream digest is unstable, see https://bugs.python.org/issue25170
+#SRC_URI="https://docs.python.org/${PV%.*}/archives/python-${PV}-docs-html.tar.bz2;
+
+LICENSE="PSF-2"
+SLOT="3.6"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+S="${WORKDIR}/python-${PV}-docs-html"
+
+src_install() {
+   dohtml -A xml -A inv -r ./
+   echo 
"PYTHONDOCS_${SLOT//./_}=\"${EPREFIX}/usr/share/doc/${PF}/html/library\"" > 
"60python-docs-${SLOT}"
+   doenvd "60python-docs-${SLOT}"
+}



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

2017-02-01 Thread Brian Dolbec
commit: a7f08b04e4230e81dc33603597d9e2cd7ba7f8f3
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Feb  2 01:51:38 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Feb  2 01:57:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7f08b04

app-portage/layman: Version bump, Fix pyGPG dep on recent versions

Cheange the pyGPG dep to >=-0.2.
Clean out old ~arch versions.

Package-Manager: Portage-2.3.3_p38, Repoman-2.3.1_p31

 app-portage/layman/Manifest|  1 +
 app-portage/layman/layman-2.1.0-r3.ebuild  | 72 -
 app-portage/layman/layman-2.2.0-r7.ebuild  | 89 -
 app-portage/layman/layman-2.3.0-r1.ebuild  | 93 --
 app-portage/layman/layman-2.4.1-r1.ebuild  |  4 +-
 ...{layman-2.4.0-r1.ebuild => layman-2.4.2.ebuild} |  5 +-
 app-portage/layman/layman-.ebuild  |  4 +-
 7 files changed, 8 insertions(+), 260 deletions(-)

diff --git a/app-portage/layman/Manifest b/app-portage/layman/Manifest
index 416c82c..125f87c 100644
--- a/app-portage/layman/Manifest
+++ b/app-portage/layman/Manifest
@@ -4,3 +4,4 @@ DIST layman-2.2.0.tar.gz 116210 SHA256 
4a10cfd3eb354e993886369995ae9b1243418e037
 DIST layman-2.3.0.tar.gz 119223 SHA256 
76559b8e202c012d124deac01b92bbe70b550afe711144a3b1e301c5d8bbd0f2 SHA512 
d110fb1781017d87e995098ecb48c4223347323d67534b584a393dc4354b761a6d960fd31e6e6787b5f37fa7e63b357c49486042c7cb527f78dd5beb5373627d
 WHIRLPOOL 
76c82f08b18830e925ffd4c97b490753de2e7d0b3c71a82a0a75fd776ed3af84d2ba2fe06dab25e5e4d2ea400b0f0b66eda65f1f4eded0521ec579a1a0c1b17f
 DIST layman-2.4.0.tar.gz 130052 SHA256 
0dd9dbcd05b5bf062139308cb812507b2c3310dd81f25c9cdc4c8f643b3f74c8 SHA512 
011ac0e7dfed8415b875898ff1eecfe77ba5a68ccac208d8f5c693b9b880355ffef572490bb98ede62092bea1a84298bbd72e6c93a234fdfa319e96551e7eb07
 WHIRLPOOL 
0fdcd09ef4347f9450897237befd6fa73187a3e5ed0eff6b08345846ff270cd9751a3f38277f7b53baffb3b9a3e18e10f08ebe33c228ed7f7ccd01ce81d05a76
 DIST layman-2.4.1.tar.gz 130388 SHA256 
545792a15a0a2514c79f1b3090aceef15e413c656f294b6ff84f8a36da7aa2da SHA512 
bdb713d4c7d3773129b45a385068278958040759bb564e48cfda4dda9da5224ccaa7833fce3d06151ed1fecddbb6f1a059db6e71534d0e887dff12640af6c806
 WHIRLPOOL 
b6ef18f8f3633e9bb2a08df620306441f8352174dc66f2bbb68613cff0796e0914f7008de4f185167815ba3267c3b63a4fe22d2bcd794f70cd78bc20e706d7d8
+DIST layman-2.4.2.tar.gz 137893 SHA256 
e84f8b745dd160bacf7b08dfd95b5c6d117dc8721edca370600f29ef0676ff92 SHA512 
9d32269f51f896c554e6cbf8a674c50009bce48dd83dfe773b08b75bafd567eb75c26c227ab3a60bc83c1ed511862a3979b8d851befe8ad16fd0847eb91337cf
 WHIRLPOOL 
eba1844f2279071947601a8baa9424db24e5bd1ba2d9ac14f90e4ae2c3e0b566dabf10378cf6286225d85d11940add45239df8cb5b150eea227b47223ce65485

diff --git a/app-portage/layman/layman-2.1.0-r3.ebuild 
b/app-portage/layman/layman-2.1.0-r3.ebuild
deleted file mode 100644
index 9628c45..
--- a/app-portage/layman/layman-2.1.0-r3.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python{2_7,3_4} pypy )
-PYTHON_REQ_USE="xml(+)"
-
-inherit eutils distutils-r1 prefix
-
-DESCRIPTION="Tool to manage Gentoo overlays"
-HOMEPAGE="http://layman.sourceforge.net;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="bazaar cvs darcs +git mercurial subversion test"
-
-DEPEND="test? ( dev-vcs/subversion )"
-
-RDEPEND="
-   bazaar? ( dev-vcs/bzr )
-   cvs? ( dev-vcs/cvs )
-   darcs? ( dev-vcs/darcs )
-   git? ( dev-vcs/git )
-   mercurial? ( dev-vcs/mercurial )
-   subversion? (
-   || (
-   >=dev-vcs/subversion-1.5.4[http]
-   >=dev-vcs/subversion-1.5.4[webdav-neon]
-   >=dev-vcs/subversion-1.5.4[webdav-serf]
-   )
-   )
-   sys-apps/portage[${PYTHON_USEDEP}]
-   >=dev-python/ssl-fetch-0.2[${PYTHON_USEDEP}]
-   "
-
-python_prepare_all()  {
-   distutils-r1_python_prepare_all
-   epatch "${FILESDIR}"/${P}-local_overlay.patch
-   epatch "${FILESDIR}"/${P}-incorrect-import-make-conf-fix.patch
-   eprefixify etc/layman.cfg layman/config.py
-}
-
-python_test() {
-   for suite in layman/tests/{dtest,external}.py ; do
-   PYTHONPATH="." "${PYTHON}" ${suite} \
-   || die "test suite '${suite}' failed"
-   done
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   insinto /etc/layman
-   doins etc/layman.cfg
-
-   doman doc/layman.8
-   dohtml doc/layman.8.html
-
-   keepdir /var/lib/layman
-   keepdir 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/WWW-Form-UrlEncoded/

2017-02-01 Thread Kent Fredric
commit: f777b52d0d645bd7eb1c2a7389594266e592ffea
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Feb  2 00:53:01 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Feb  2 01:13:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f777b52d

dev-perl/WWW-Form-UrlEncoded: Add w/ version 0.230.0

Required for newer Apache-AuthenCookie

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-perl/WWW-Form-UrlEncoded/Manifest  |  1 +
 .../WWW-Form-UrlEncoded-0.230.0.ebuild | 26 ++
 dev-perl/WWW-Form-UrlEncoded/metadata.xml  | 13 +++
 3 files changed, 40 insertions(+)

diff --git a/dev-perl/WWW-Form-UrlEncoded/Manifest 
b/dev-perl/WWW-Form-UrlEncoded/Manifest
new file mode 100644
index ..1793c58
--- /dev/null
+++ b/dev-perl/WWW-Form-UrlEncoded/Manifest
@@ -0,0 +1 @@
+DIST WWW-Form-UrlEncoded-0.23.tar.gz 15068 SHA256 
c87de2c895cf8a526bf5d3a231e6ca0e6d4cfdca72f8840b3fb039dbde478852 SHA512 
1570edff2b2eaa8fb9a918ebb33ea8d4a26f883ad66093f291370ae96fcc1f06bf45b1c08f6099bff4064cbd20942f50f94d0455bf49a135373a3bffc5a2c50d
 WHIRLPOOL 
07a4cca601c7189fdcd3940323485ae0648f9112c5c5ae20ddd54ee1cc0cc25c99c4ed8ac1425d96bca74dfb42a23be2043b9d9c5eff7f79883832d1a3c121fe

diff --git a/dev-perl/WWW-Form-UrlEncoded/WWW-Form-UrlEncoded-0.230.0.ebuild 
b/dev-perl/WWW-Form-UrlEncoded/WWW-Form-UrlEncoded-0.230.0.ebuild
new file mode 100644
index ..7ac2b3a
--- /dev/null
+++ b/dev-perl/WWW-Form-UrlEncoded/WWW-Form-UrlEncoded-0.230.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=KAZEBURO
+DIST_VERSION=0.23
+DIST_EXAMPLES=( "eg/*" )
+inherit perl-module
+
+DESCRIPTION="parser and builder for application/x-www-form-urlencoded"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   virtual/perl-Exporter
+"
+DEPEND="${RDEPEND}
+   >=dev-perl/Module-Build-0.380.0
+   test? (
+   >=dev-perl/JSON-2.0.0
+   >=virtual/perl-Test-Simple-0.980.0
+   )
+"

diff --git a/dev-perl/WWW-Form-UrlEncoded/metadata.xml 
b/dev-perl/WWW-Form-UrlEncoded/metadata.xml
new file mode 100644
index ..7610689
--- /dev/null
+++ b/dev-perl/WWW-Form-UrlEncoded/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+WWW-Form-UrlEncoded
+WWW::Form::UrlEncoded
+WWW::Form::UrlEncoded::PP
+  
+



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

2017-02-01 Thread Kent Fredric
commit: 41b914df3793d21edb8ec82ebd7db856488a95f6
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Feb  2 01:12:54 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Feb  2 01:13:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41b914df

dev-perl/Apache-AuthCookie: Bump to version 3.260.0

Upstream:
- Remove unused autobox modules
- Replace CGI.pm deps with new deps
- Add optional charset encoding support
- Add optional support for decoding httpd.conf requires directives
- Add decoded_user function to return r->user as characters
  instead of an encoded bytestring
- Add encoding() function which returns current encoding

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../Apache-AuthCookie-3.260.0.ebuild   | 37 ++
 dev-perl/Apache-AuthCookie/Manifest|  1 +
 2 files changed, 38 insertions(+)

diff --git a/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.260.0.ebuild 
b/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.260.0.ebuild
new file mode 100644
index ..894d96f
--- /dev/null
+++ b/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.260.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MSCHOUT
+DIST_VERSION=3.26
+inherit perl-module
+
+DESCRIPTION="Perl Authentication and Authorization via cookies"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   >=www-apache/mod_perl-2
+   virtual/perl-Carp
+   >=dev-perl/Class-Load-0.30.0
+   virtual/perl-Encode
+   dev-perl/HTTP-Body
+   dev-perl/Hash-MultiValue
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=dev-perl/Apache-Test-1.390.0
+   >=dev-perl/URI-1.310.0
+   >=virtual/perl-Test-Simple-0.940.0
+   !www-apache/mpm_itk
+   )
+"
+src_test() {
+   perl_rm_files t/author-* t/signature.t
+   perl-module_src_test
+}

diff --git a/dev-perl/Apache-AuthCookie/Manifest 
b/dev-perl/Apache-AuthCookie/Manifest
index be2332a..818f9a6 100644
--- a/dev-perl/Apache-AuthCookie/Manifest
+++ b/dev-perl/Apache-AuthCookie/Manifest
@@ -1,3 +1,4 @@
 DIST Apache-AuthCookie-3.23.tar.gz 45053 SHA256 
c40c7f28447ad1e17f00ac63c0855d0af41b31d212fcc72ae91cc284e5aee9a7 SHA512 
e8948725c1f2ae3631004ec666ecd20b9c3b5fda86408b980e5d0a3e0d36a8780d905718b1c7b5ca117fc15e130bf35f59ef83c598870dc5b874ee362a4fdcb7
 WHIRLPOOL 
016a518371301209d4c81370e95afb071e013b4b85ad26b6b544f0a9e7383aae3b23fbfb0de446f84d55cf928eda7c64ab705698b636710bdd1460d53f5b7e13
 DIST Apache-AuthCookie-3.24.tar.gz 48349 SHA256 
af153ba6ad362d5834565b4484b0e06e2eca64a5d3e8d83eda6be03e23f9b5f9 SHA512 
023cc9c695d5b43a92a46b80a2c8ce556d89f0f3ed83d05cb068db5b50d96e1a0e4cd52491d2eb5f0e680e073bc16b36c214b2527a5c5d31eee1a37ed6cd2f60
 WHIRLPOOL 
f8f024bf663ad420057897763d034680366eeefe856b3512189dfbe1fea72c511c303b1adda01c84b934563980395520b7474a8cbddd15247da1478645456c05
 DIST Apache-AuthCookie-3.25.tar.gz 50318 SHA256 
30e8066eed5518fd7f686c621aefb2db0c7d1a6d7e2b926dcf8f2a20d008 SHA512 
73eb4c20170629e71663df7ef0cf9bcf780d25795e007674e797e78de2540a2eef04e9afa6e31cc1d372348c23af718750d610f67851ef17c8d39e8d6ae6ca42
 WHIRLPOOL 
9b749e631c811003f2f8318128eb05267a0f2187ce0cff5860c0d4382092dd1cc8b492eaa91736d441ad6ff4f315f3c9fd047ad3eca2a8590f91914b7ca0d360
+DIST Apache-AuthCookie-3.26.tar.gz 57062 SHA256 
2a37c984a470c69ca28c74bd23a8b7c8629fc728d1af36071796f2c478fb348a SHA512 
afb156f305b1accfc796516238d68eb2c4d270e0ff0cf592ef11f93f476e4c7ecd7c93366447cf547abd5aa7d5b390800b24a7065552336a6647cefa2ff9f5ed
 WHIRLPOOL 
0949e3b11dd0a6b7cc2b5c52459c86b6b663f8ff9f3d84bea85e0dfba123ea7976c179eee01eaf3710416fa6c15047b06ecd848cea2ae45960af67df24f638b4



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

2017-02-01 Thread Devan Franchini
commit: fc23ec8246c2700111cbf8f4a4eb55ac4a5eb000
Author: Devan Franchini  gentoo  org>
AuthorDate: Thu Feb  2 00:47:27 2017 +
Commit: Devan Franchini  gentoo  org>
CommitDate: Thu Feb  2 00:47:33 2017 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=fc23ec82

argparser.py: Fixed typo in --help output

Thank you dewey for pointing this out.

 layman/argsparser.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/layman/argsparser.py b/layman/argsparser.py
index f3cc8fa..272ac47 100644
--- a/layman/argsparser.py
+++ b/layman/argsparser.py
@@ -193,7 +193,7 @@ class ArgsParser(BareConfig):
action = 'store',
default = self.defaults['overlay_defs'],
# Force interpolation (to prevent argparse 
tracebacks)
-   help = 'Path to aditional overlay.xml files 
[default: '
+   help = 'Path to additional overlay.xml files 
[default: '
'%s].' % (self.defaults['overlay_defs'] 
%self.defaults))
 
 path_opts.add_argument('-z',



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

2017-02-01 Thread William Hubbs
commit: 240052d72782c8b18d524b951e5d314703412e63
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Feb  2 00:33:02 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Feb  2 00:35:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=240052d7

dev-lang/go: 1.7.5 version bump for #607402

Package-Manager: portage-2.3.3

 dev-lang/go/Manifest|   1 +
 dev-lang/go/go-1.7.5.ebuild | 222 
 2 files changed, 223 insertions(+)

diff --git a/dev-lang/go/Manifest b/dev-lang/go/Manifest
index 3ba43f4..9474bd5 100644
--- a/dev-lang/go/Manifest
+++ b/dev-lang/go/Manifest
@@ -10,3 +10,4 @@ DIST go-linux-ppc64le-bootstrap.tbz 50134685 SHA256 
ca816a3e3cbd7721200522fa3984
 DIST go-linux-s390x-bootstrap.tbz 49809007 SHA256 
80a87bc5ac2239c99f8d7425fbc6f4fefba63f549b0835505c25378c08114656 SHA512 
1b7500e6c42508b6cb07214620070065262349d2cd3698deeac0638d0bf0bfeb89c59c2d72a284af34f3071b4cfb9ce543c5fdec7add4a46adc9580295909439
 WHIRLPOOL 
d3782cb515ab67720105224e02d96ab1ca86518db661719b2d0f7c48aa1f4f896a7cc5fed5b6ddc032c8206e8a10c6262646be0e59def61723936044d6ceb143
 DIST go-solaris-amd64-bootstrap.tbz 48367195 SHA256 
92ebdbf001f243a78a6c2d8ee30e929ba2cecbedf8e0fc07e129b04b107453ad SHA512 
cf8725db0d001d61badee71624799a3c9e75f61f77ab090c1f6c490d694c4be367019b28d88306045d877ab5a324a1f9b0674293caf3acb19c193fc3746a48f2
 WHIRLPOOL 
672c6642e340b6d4f38b633f67fdc3202e3725022a8a61e2129276fccd6c42ddc24ed06c1d57eb31a25ea8056b79686619cbb36431b9c23b6d4be5bcb715bd89
 DIST go1.7.4.src.tar.gz 14198817 SHA256 
4c189111e9ba651a2bb3ee868aa881fab36b2f2da3409e80885ca758a6b614cc SHA512 
dc9950c3ea7100e536ad58fd93505d584276b7c50d4b8fe2ba7f20fd043dcf0d315b735c48945302055e91517594cc2b0061ccec9478a8ab48f1f2836c20afb3
 WHIRLPOOL 
054f496555dd30e0ba6a3c449b915ea048d5f85f1cf6d2ef6e8aa84939b6e9674b30cfccee99d050c5d75d028cf43d83bf0267703ffb02dfc5bc780fd0a1706f
+DIST go1.7.5.src.tar.gz 14204325 SHA256 
4e834513a2079f8cbbd357502cccaac9507fd00a1efe672375798858ff291815 SHA512 
2dda0780a8b24d71fec4ddeb6858c58a42845f51d9afc171d924a7b763101878cc7f29ae1dd35f129b4ee45b84d45211093a1d20639745fed36b49fb7fe1ba07
 WHIRLPOOL 
b28ab10558d9f8fba87d5db2c839a84eab0b61244d75f4b3d42b443365ca8a1ae1c60c2e1073ef2b4a854d957c26111fcc286b7caae4be892e6cba0e4b24e21d

diff --git a/dev-lang/go/go-1.7.5.ebuild b/dev-lang/go/go-1.7.5.ebuild
new file mode 100644
index ..4432f8a
--- /dev/null
+++ b/dev-lang/go/go-1.7.5.ebuild
@@ -0,0 +1,222 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+export CBUILD=${CBUILD:-${CHOST}}
+export CTARGET=${CTARGET:-${CHOST}}
+
+MY_PV=${PV/_/}
+
+inherit toolchain-funcs
+
+BOOTSTRAP_DIST="https://dev.gentoo.org/~williamh/dist;
+SRC_URI="!gccgo? (
+kernel_Darwin? (
+   x64-macos? ( ${BOOTSTRAP_DIST}/go-darwin-amd64-bootstrap.tbz )
+)
+kernel_FreeBSD? (
+amd64-fbsd? ( ${BOOTSTRAP_DIST}/go-freebsd-amd64-bootstrap.tbz )
+x86-fbsd? ( ${BOOTSTRAP_DIST}/go-freebsd-386-bootstrap-1.tbz )
+)
+kernel_linux? (
+   amd64? ( ${BOOTSTRAP_DIST}/go-linux-amd64-bootstrap.tbz )
+   arm? ( ${BOOTSTRAP_DIST}/go-linux-arm-bootstrap.tbz )
+   arm64? ( ${BOOTSTRAP_DIST}/go-linux-arm64-bootstrap.tbz )
+   ppc64? (
+   ${BOOTSTRAP_DIST}/go-linux-ppc64-bootstrap.tbz
+   ${BOOTSTRAP_DIST}/go-linux-ppc64le-bootstrap.tbz
+   )
+   s390? ( ${BOOTSTRAP_DIST}/go-linux-s390x-bootstrap.tbz )
+   x86? ( ${BOOTSTRAP_DIST}/go-linux-386-bootstrap-1.tbz )
+)
+kernel_SunOS? (
+   x64-solaris? ( ${BOOTSTRAP_DIST}/go-solaris-amd64-bootstrap.tbz )
+)
+)
+"
+
+if [[ ${PV} =  ]]; then
+   EGIT_REPO_URI="git://github.com/golang/go.git"
+   inherit git-r3
+else
+   SRC_URI+="https://storage.googleapis.com/golang/go${MY_PV}.src.tar.gz;
+   case ${PV} in
+   **|*_rc*) ;;
+   *)
+   KEYWORDS="-* ~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd 
~x86-fbsd ~x64-macos ~x64-solaris"
+   ;;
+   esac
+fi
+
+DESCRIPTION="A concurrent garbage collected and typesafe programming language"
+HOMEPAGE="http://www.golang.org;
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+IUSE="gccgo"
+
+DEPEND="gccgo? ( >=sys-devel/gcc-5[go] )"
+RDEPEND="!https://golang.org/issue/2775
+   doins -r bin doc lib pkg src
+   fperms -R +x /usr/lib/go/bin /usr/lib/go/pkg/tool
+
+   cp -a misc "${D}"/usr/lib/go/misc
+
+   if go_cross_compile; then
+   bin_path="bin/$(go_tuple)"
+   else
+   bin_path=bin
+   fi
+   for x in ${bin_path}/*; do
+   f=${x##*/}
+   dosym ../lib/go/${bin_path}/${f} /usr/bin/${f}
+   done
+   dodoc AUTHORS CONTRIBUTORS PATENTS README.md
+}



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

2017-02-01 Thread Kent Fredric
commit: 90cf2646e546668d7f07ccbad70800a322ebc816
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Feb  2 00:25:40 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Feb  2 00:26:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90cf2646

dev-perl/Apache-AuthCookie: Block against www-apache/mpm_itk with USE=test re 
bug #607970

Tests still fail for me (Test::More looks to be the culprit), but
they actually run now instead of blocking while the server starts.

Bug: https://bugs.gentoo.org/607970

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.230.0.ebuild | 7 +--
 dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.240.0.ebuild | 7 +--
 dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.250.0.ebuild | 3 ++-
 3 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.230.0.ebuild 
b/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.230.0.ebuild
index 90a0717..542bd59 100644
--- a/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.230.0.ebuild
+++ b/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.230.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -22,7 +22,10 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
-   test? ( >=dev-perl/Apache-Test-1.390.0 )
+   test? (
+   >=dev-perl/Apache-Test-1.390.0
+   !www-apache/mpm_itk
+   )
 "
 
 SRC_TEST="do parallel"

diff --git a/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.240.0.ebuild 
b/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.240.0.ebuild
index b9623a5..7274078 100644
--- a/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.240.0.ebuild
+++ b/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.240.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -22,5 +22,8 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
-   test? ( >=dev-perl/Apache-Test-1.390.0 )
+   test? (
+   >=dev-perl/Apache-Test-1.390.0
+   !www-apache/mpm_itk
+   )
 "

diff --git a/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.250.0.ebuild 
b/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.250.0.ebuild
index 6fac489..a72bc0c 100644
--- a/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.250.0.ebuild
+++ b/dev-perl/Apache-AuthCookie/Apache-AuthCookie-3.250.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -24,5 +24,6 @@ DEPEND="${RDEPEND}
test? (
>=dev-perl/Apache-Test-1.390.0
>=virtual/perl-Test-Simple-0.940.0
+   !www-apache/mpm_itk
)
 "



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

2017-02-01 Thread Brian Dolbec
commit: 6b6c68dcf42f70b3128b74bf5d96af081e73f93f
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Feb  2 00:14:56 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Feb  2 00:22:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b6c68dc

dev-util/buildbot-worker: Re-add the 0.9.0_p1 release due to a regression in 
newer versions

Package-Manager: Portage-2.3.3_p38, Repoman-2.3.1_p31

 dev-util/buildbot-worker/Manifest  |  1 +
 .../buildbot-worker-0.9.0_p1.ebuild| 67 ++
 2 files changed, 68 insertions(+)

diff --git a/dev-util/buildbot-worker/Manifest 
b/dev-util/buildbot-worker/Manifest
index 6bed4df..428234f 100644
--- a/dev-util/buildbot-worker/Manifest
+++ b/dev-util/buildbot-worker/Manifest
@@ -1,3 +1,4 @@
+DIST buildbot-worker-0.9.0.post1.tar.gz 95780 SHA256 
9da22fdf23462680a37d3995cde75410f204d3cb417491363e3f6561fc9011b9 SHA512 
50eb98ad4f870f15b1cc34113db139b3b290bef377b4f66ac7c023590f277c102b8776e3a009f296209cf524377c10f60435b18f47cc39d6c27af04778d3296e
 WHIRLPOOL 
1dd5d4274281fe4f582b5e7b83a99693c41282cb2a5262b8899319d3a1e95888417174b8db4ed9f8dcd52ee66785adac98f0d2ecc8abc158a661dfdfa6cd33da
 DIST buildbot-worker-0.9.1.tar.gz 65852 SHA256 
1d8ec4fd51e7a3a7dd4de7c512b282c221951cbacc6b2eaf15a157f371a0e902 SHA512 
cf5749c6fd67fb72cd7043392efb502608cd2d11374cd43af351904a1b4e82d790338e5f745b47465b5cbf9501d2454d983648a70246c6ae55603ba51261a0d0
 WHIRLPOOL 
e576879f141688e3f79e3cf746491bcc106cb4851f14d4960b10be45b7b01c33c6850fb856d6f083d8510ff78f73016e11250e9ef8864e33bace1834c315dafc
 DIST buildbot-worker-0.9.2.tar.gz 66043 SHA256 
3d05791ac0c556e3e4fe0ef78911ce47eab4fcbb0b5a51a436234ba49b9c236e SHA512 
146c2f2b0c44f5c349459edbe61b448e88f9e42eb1c3b7769a0a07260533e4ad40d2d7bc3df2ebecd355d636834108debe8c2d165a9cdc6d849a537cf5743cc4
 WHIRLPOOL 
f786c3a7ac486a2421877082da08a73079b7655ec0941a9509663983c03874bc8b5c12cb990628d0684db757d493528fab9ea3d99d09c22f2d2bbf606c69d0b5
 DIST buildbot-worker-0.9.3.tar.gz 98622 SHA256 
57b319a34d0118933e7b2488ee29732bc78c55be978fe34a90ef30f208b8d39c SHA512 
a0b6b441eeb71e322a5009d6aa0049cbddc4bd4fc78c14cfd362f80d35385b3ffcf5546614b5920c7cdd574df195f5c510b4acdb925c37ad7e6823f7ab62df33
 WHIRLPOOL 
c349bf7ed402fb90318f89135005976b0dbb8c8fc57679b1d5958ce0fdc52fc7f006aeccc9a3119cdd8c66912a8e6fd7e079471461181effd17d75ce9b16ddba

diff --git a/dev-util/buildbot-worker/buildbot-worker-0.9.0_p1.ebuild 
b/dev-util/buildbot-worker/buildbot-worker-0.9.0_p1.ebuild
new file mode 100644
index ..7d8e88b
--- /dev/null
+++ b/dev-util/buildbot-worker/buildbot-worker-0.9.0_p1.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_COMPAT=( python2_7 )
+
+EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit readme.gentoo user distutils-r1
+
+DESCRIPTION="BuildBot Slave Daemon"
+HOMEPAGE="http://trac.buildbot.net/ http://code.google.com/p/buildbot/ 
http://pypi.python.org/pypi/buildbot-slave;
+
+MY_V="0.9.0.post1"
+MY_P="${PN}-${MY_V}"
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+IUSE="test"
+
+RDEPEND=">=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+   || ( >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+   >=dev-python/twisted-core-8.0.0[${PYTHON_USEDEP}]
+   )
+   dev-python/future[${PYTHON_USEDEP}]
+   !

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

2017-02-01 Thread Brian Dolbec
commit: 51bcd5a5800f2ae3f34ad5e732b64c178515ee9b
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Feb  2 00:11:39 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Feb  2 00:22:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51bcd5a5

dev-util/buildbot-www: Re-add the 0.9.0_p1 release due to a regression in newer 
versions

Package-Manager: Portage-2.3.3_p38, Repoman-2.3.1_p31

 dev-util/buildbot-www/Manifest |  1 +
 dev-util/buildbot-www/buildbot-www-0.9.0_p1.ebuild | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/dev-util/buildbot-www/Manifest b/dev-util/buildbot-www/Manifest
index 0b160ea..8dd131a 100644
--- a/dev-util/buildbot-www/Manifest
+++ b/dev-util/buildbot-www/Manifest
@@ -1,3 +1,4 @@
+DIST buildbot-www-0.9.0.post1.tar.gz 687998 SHA256 
54b6438d46001b97c09b37490e0359d4515357574a9f3f83b796ce4b74897c11 SHA512 
e1ed618c7467ac8d3620a9ab1ff14010ed6826562ef117c893cecaab18c06cc4619d9883a45f85ea22b76259bdc1a5bba050afe112aba9449917b7f4c3b3f5ef
 WHIRLPOOL 
870d349a9a52fc9d12a162cd0b5fa94cb9b44c7aacfbaa1d148151e753c11b9fa906f92b85f2858cdc796a2573694c93f560a5fd99ecd19adaed9be68342ed8e
 DIST buildbot-www-0.9.1.tar.gz 686034 SHA256 
795a951f62d5313543d6cdb848dfd6c658cf58871021ac7b33a153b76de773b6 SHA512 
0700d73f1b039571082e9209db09d4faa5ffeeff50db5ac1da9cfade70594b680b083d7421244a0d111b80b36699fee4eb01a9fbbd06248e22c1a38d17b8dc11
 WHIRLPOOL 
fcc86e430918876dc45aa12b5d17e976171eb25a1473e18acd91ec045bbc54eeddd2d5e5917b05bde743241560597243ae246173c1be1ac81d086c5cc6fcef18
 DIST buildbot-www-0.9.2.tar.gz 689448 SHA256 
063660ff23874e24b713d16d966beaaff5e0d67c437e3627db834f0631c49f82 SHA512 
a5edf4da2a7e626b329b75242a5f1588c6ee95f4f242f155e23c4fd4c4ea4e372ba74cd23508f1ff4a3105f8086ed6171f9631d96cffbe8c7216a3ead9ac2320
 WHIRLPOOL 
58f2273dc425e6c1219a7dfdc25dcd647a7a94aada970777dd97c5607249ace710fda5c8c728feff703fa7976ac14873595ec4497ff1ddccfd958eecf66d74b4
 DIST buildbot-www-0.9.3.tar.gz 690646 SHA256 
ff0edacd78702f3b2a2052dc2a51c60eaf5859dd0f1aed17fa5ae91579fafa0e SHA512 
3f4d1992ea9da7789a7dbeb06d500e8129d285146ef90e868da2cfc88bdab3de8342befdfd222f0641688353a9dc0a3aedd5324dfd39d1fbca96326176bd9651
 WHIRLPOOL 
17a0acbca3e1d8333772a8a4567e41851901c0f72ffee451d868756f3a3635aa3f88e6dccf1e3a7f83c1daa6c853caed1bd67eeab4f8479b898bab59059d90e3

diff --git a/dev-util/buildbot-www/buildbot-www-0.9.0_p1.ebuild 
b/dev-util/buildbot-www/buildbot-www-0.9.0_p1.ebuild
new file mode 100644
index ..51485e2
--- /dev/null
+++ b/dev-util/buildbot-www/buildbot-www-0.9.0_p1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 )
+
+EGIT_REPO_URI="git://github.com/buildbot/buildbot.git"
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit distutils-r1
+
+DESCRIPTION="BuildBot base web interface, use with 
buildbot-{console-view,waterfall-view}..."
+HOMEPAGE="http://trac.buildbot.net/ https://github.com/buildbot/buildbot 
http://pypi.python.org/pypi/buildbot;
+
+MY_V="0.9.0.post1"
+MY_P="${PN}-${MY_V}"
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+RDEPEND=""
+
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-pkg-${PV}[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/${MY_P}"
+#[[ ${PV} == * ]] && S=${S}/www/base
+
+python_install_all() {
+   distutils-r1_python_install_all
+}



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

2017-02-01 Thread Brian Dolbec
commit: 61899fb5bfabb1ff2f1a60c5023eb7a81663072a
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Feb  2 00:13:54 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Feb  2 00:22:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61899fb5

dev-util/buildbot-waterfall-view: Re-add the 0.9.0_p1 release due to a 
regression in newer versions

Package-Manager: Portage-2.3.3_p38, Repoman-2.3.1_p31

 dev-util/buildbot-waterfall-view/Manifest  |  1 +
 .../buildbot-waterfall-view-0.9.0_p1.ebuild| 45 ++
 2 files changed, 46 insertions(+)

diff --git a/dev-util/buildbot-waterfall-view/Manifest 
b/dev-util/buildbot-waterfall-view/Manifest
index fc5b24f..e0813d0 100644
--- a/dev-util/buildbot-waterfall-view/Manifest
+++ b/dev-util/buildbot-waterfall-view/Manifest
@@ -1,3 +1,4 @@
+DIST buildbot-waterfall-view-0.9.0.post1.tar.gz 704789 SHA256 
0f5469dfa30572b5f8f12588003188d68c9541c80876860727f2fd5f02df3b75 SHA512 
45e055f694f208f97d11c20db56a107eae3ee7c6308e4e74b5569b46baeb0a24bc3a2d99a30f28c3231570f2bbb3c492d503e7128a569d9d33ec684f8f59b72f
 WHIRLPOOL 
bc8ba2e309a6674c0afbb8781e1038d2b693217a45fd8cbdbaceda8cf9fefc705fea23c21ac74c23e87866676df0323e5a3eac4504da91df53dd108a044910b6
 DIST buildbot-waterfall-view-0.9.1.tar.gz 704434 SHA256 
b5026f746a0bea9af544f4ad46b21781e4dccaf64bf645ee5dc747e442100fbb SHA512 
f97d974aee73cc84c4f9699a1bf4765434e31ed3b6ad2da58fff1da13a59f4cd327b736da19018c7e5ad609da5a3ba87ab9f4f11c28e8d3120d3c1a2796673ef
 WHIRLPOOL 
c481e3b8afe3ef7ea071b2259ea5df02e569e468043de58e1dc2eb34a827be8e99eb46bd1f9f9f22b75c2ee9068917b5ecf588c8b06124251b08ba4713dd8b67
 DIST buildbot-waterfall-view-0.9.2.tar.gz 704942 SHA256 
1be89234e8555c7c058a4b176e19e751edcbca4e0e415f09bec492668ac0da1e SHA512 
b7c20175da7746ea650507dc79eb64fdb8d601ccfa7778120e9aa4653ae14f951d80fa79d016a77d0259ac56a3acb0326dad1325150e5db88bad044c31d79d74
 WHIRLPOOL 
bb3b6560e55c9e4a4b146b8e9bc27e6bf2560b972dfd14fd75ed823cc33250fbf3bcd2e8b86b54ffdbde82010de0d0d1753c72620befef285a24501304473dcc
 DIST buildbot-waterfall-view-0.9.3.tar.gz 705482 SHA256 
cf3c83a3bc5682d235800c17dc5cf0fe54c165b5c7004e810c13da0f34137d0c SHA512 
8eda91f327c73b674bc474bdd2139e9565482e59b4acc9ee9eb6d940ba8606c1f2985bce53511a827974552708ab1c6e31e64a5874deb4d16dea434c0b11067e
 WHIRLPOOL 
3c57366b27f26b554762eb056ea938384572c0975a873582f54545d5e53d78e3d3d7ed7de1b88a0f5b68ab7fae93e7e59b0c3568e0f346b62a79e8eb1c0a6c09

diff --git 
a/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.0_p1.ebuild 
b/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.0_p1.ebuild
new file mode 100644
index ..17574e8
--- /dev/null
+++ b/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.0_p1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 )
+
+EGIT_REPO_URI="git://github.com/buildbot/buildbot.git"
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit distutils-r1
+
+DESCRIPTION="Buildbot waterfall-view plugin"
+HOMEPAGE="http://trac.buildbot.net/ https://github.com/buildbot/buildbot 
http://pypi.python.org/pypi/buildbot;
+
+MY_V="0.9.0.post1"
+MY_P="${PN}-${MY_V}"
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+RDEPEND="
+   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
+"
+
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/${MY_P}"
+#[[ ${PV} == * ]] && S=${S}/www/base
+
+python_install_all() {
+   distutils-r1_python_install_all
+}



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

2017-02-01 Thread Brian Dolbec
commit: 6cb30aa05a58202a8fca9803d6172bcee7d67d49
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Feb  2 00:10:14 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Feb  2 00:22:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cb30aa0

dev-util/buildbot-pkg: Re-add the 0.9.0_p1 release due to a regression in newer 
versions

Package-Manager: Portage-2.3.3_p38, Repoman-2.3.1_p31

 dev-util/buildbot-pkg/Manifest |  1 +
 dev-util/buildbot-pkg/buildbot-pkg-0.9.0_p1.ebuild | 43 ++
 2 files changed, 44 insertions(+)

diff --git a/dev-util/buildbot-pkg/Manifest b/dev-util/buildbot-pkg/Manifest
index 38f44d1..7e3d808 100644
--- a/dev-util/buildbot-pkg/Manifest
+++ b/dev-util/buildbot-pkg/Manifest
@@ -1,3 +1,4 @@
+DIST buildbot-pkg-0.9.0.post1.tar.gz 3369 SHA256 
7149d8f4d906914b77375855c3de30ec2c9edb26f5da6c654dcceb360eb3353b SHA512 
decef481958f4f85797260e00a501a55e6c8f0b3938ca9d8b98f773481a7484f221ceb5eb4e45ed7efc32e88bb16a4431ae0c2e7a8203c384915beea2f32f295
 WHIRLPOOL 
d33a88b2c8ee8f21a62d46eaa8099fb3b579ba9c1c21cbf1cdc8569840cf66f4b8415c7a662344d3a2e472947984bb248c81e761df73d8aa2bb8ee471bc5e8d7
 DIST buildbot-pkg-0.9.1.tar.gz 3800 SHA256 
6dab917d6bc689fef1c6bc30d6af041ce4fc56c3dacd0378957c3d606094f3a3 SHA512 
28b644c64a38d53305c6955a45596c6a27f988363a0d0bd980922842f3d6712b6ee35d74f7124eae5269b95c8755eb4922546d1ea9237b93f8694f4993baa1e8
 WHIRLPOOL 
09fed25389b43f2688db2e60b0ea7ad73fabd5acca893f2ed958214ccc5449373e950bacc297e403560ae0cabf9f588dae63763e3d8204b955d0705ecc6f2230
 DIST buildbot-pkg-0.9.2.tar.gz 3803 SHA256 
7c9c8e0e9c85d129e2147c596588df81f29aec72411b7284a57ebb7cfdba1a6e SHA512 
b64f48fe2fe645282856ac5e720490cdb9af7b0a4763eeeb95777d652d46b8cb5f2b904b8c109ab6bc18a3f9fb01292a3ddc106ef1e89b84059c7ec025bcdda6
 WHIRLPOOL 
58765b2ef28d774d7b862f240017fe90ca1f519fee61e3f33045569418777c6ffe2c48f1bea0affb7b60846c1b139856857bce10b09ce23416dc6be33c8f03ed
 DIST buildbot-pkg-0.9.3.tar.gz 3799 SHA256 
d240d342be4ca01c4597bda039133af8db713ba7b7c2104718d0c357374b2409 SHA512 
64fbcd8afee051afe9b76afec63eb463cf7cd2c89c320dafca2f024923a1dbc49fd67dd9f514d8108b85990ca2981be36ed650fcf37486c7b909bd1329efd832
 WHIRLPOOL 
2bb200ba9b703cec056f3fc1e92130881164193e46a170315bca84b0fac8d743a40e12b0005764b0517133bee973059ce5731a0eb1d5343c28a5bc20556365b1

diff --git a/dev-util/buildbot-pkg/buildbot-pkg-0.9.0_p1.ebuild 
b/dev-util/buildbot-pkg/buildbot-pkg-0.9.0_p1.ebuild
new file mode 100644
index ..3fe2cca
--- /dev/null
+++ b/dev-util/buildbot-pkg/buildbot-pkg-0.9.0_p1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 )
+
+EGIT_REPO_URI="git://github.com/buildbot/buildbot.git"
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit distutils-r1
+
+MY_V="0.9.0.post1"
+MY_P="${PN}-${MY_V}"
+
+DESCRIPTION="BuildBot common www build tools for packaging releases"
+HOMEPAGE="http://trac.buildbot.net/ https://github.com/buildbot/buildbot 
http://pypi.python.org/pypi/buildbot;
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+RDEPEND="
+   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+"
+
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+"
+
+S=${WORKDIR}/${MY_P}
+
+python_install_all() {
+   distutils-r1_python_install_all
+}



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

2017-02-01 Thread Brian Dolbec
commit: 93a46f7e484e1de5e943e1e78b8f853ed416685b
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Feb  2 00:12:43 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Feb  2 00:22:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93a46f7e

dev-util/buildbot-console-view: Re-add the 0.9.0_p1 release due to a regression 
in newer versions

Package-Manager: Portage-2.3.3_p38, Repoman-2.3.1_p31

 dev-util/buildbot-console-view/Manifest|  1 +
 .../buildbot-console-view-0.9.0_p1.ebuild  | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/dev-util/buildbot-console-view/Manifest 
b/dev-util/buildbot-console-view/Manifest
index 6bc0875..f443e25 100644
--- a/dev-util/buildbot-console-view/Manifest
+++ b/dev-util/buildbot-console-view/Manifest
@@ -1,3 +1,4 @@
+DIST buildbot-console-view-0.9.0.post1.tar.gz 630459 SHA256 
1415fb5afaa5a450a38349ce799190de34749449f1147ae42b6adf5ccfca8735 SHA512 
c209c8dd320df2a7a9ab8bd8276a081c981981645ca85511320e5dc755957623cc051feb57904c5208e6f7e2b9f7c4ac6f204c574445cdff643685a2d5dafe17
 WHIRLPOOL 
c81860f92bc6d55a5fa925d2b415ad640f4150573abfde878cf3e02c8f7cecba60de6e8d87571b8dd8f6d0d7ae24fcf29afbce532bb517e90f93644f4c80ec57
 DIST buildbot-console-view-0.9.1.tar.gz 630486 SHA256 
028288d2ba8f7c79043c8b0751a53cfedf50f3134dbf57740d310dc708f71cef SHA512 
d5936c0494e626ad8db5b1f75994978805d0e65d57b9c4bcce7b1584f32699b4ca2023504b647b54f91ab669e084b7d18973060b512a316808cd892aca2e8fdd
 WHIRLPOOL 
7476cb96e63da87953a6602ceca3aa75eaa0cb6d10e3d49871d333c476b185a068a0fe17ed07d9715ad7c148d686701a702a5366fdf05d96149a6ffb49ae5839
 DIST buildbot-console-view-0.9.2.tar.gz 630903 SHA256 
a5acb36e20410bd8fe7a6a34c3afd83115e80651f92f1705a0641e526344e74a SHA512 
6b1e05b7b846ecd5cd0d1f091c5cb2f3fe9a7cb6db5651ad406cf7f62fc04ebe68390b459fab78c166b864305135dee7f982f1fbc02ec67060ac3d64c0b90edc
 WHIRLPOOL 
c3796d9b60149592d2c0c1c92f91c11039f47fb0260e3ce549b48f251637c0a49a6b83c69b71383838984fdf6b4aeab3508a93b8303c14bada2de0d87cc4d4e7
 DIST buildbot-console-view-0.9.3.tar.gz 631462 SHA256 
b389b4024e52824463e696d3ed9a56de8ea5de60abb01ddbb6e2f402ea547fe6 SHA512 
0fc51252e323917f64f175ee2cfd46bdab7dc07a921d0fb74c0b5828cc5212ef5f5d2ae43c1f1fe5e2c32a0dab19a52d6bb7c7bb3ce50bdfdb18af02eaf4de82
 WHIRLPOOL 
63ad18e39c228226ce2ab5441785b013051c732738e54190c214a0a35476fc78e0f5b3c731ecce520f5920777bf728f20e2f0a42615ea9a4049c6f7fab4956df

diff --git 
a/dev-util/buildbot-console-view/buildbot-console-view-0.9.0_p1.ebuild 
b/dev-util/buildbot-console-view/buildbot-console-view-0.9.0_p1.ebuild
new file mode 100644
index ..8870a30
--- /dev/null
+++ b/dev-util/buildbot-console-view/buildbot-console-view-0.9.0_p1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 )
+
+EGIT_REPO_URI="git://github.com/buildbot/buildbot.git"
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit distutils-r1
+
+DESCRIPTION="Buildbot console-view plugin"
+HOMEPAGE="http://trac.buildbot.net/ https://github.com/buildbot/buildbot 
http://pypi.python.org/pypi/buildbot;
+
+MY_V="0.9.0.post1"
+MY_P="${PN}-${MY_V}"
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+RDEPEND="
+   ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   ~dev-util/buildbot-www-${PV}[${PYTHON_USEDEP}]
+"
+
+DEPEND="${RDEPEND}
+   >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/${MY_P}"
+#[[ ${PV} == * ]] && S=${S}/www/base
+
+python_install_all() {
+   distutils-r1_python_install_all
+}



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

2017-02-01 Thread Brian Dolbec
commit: c8199d763ede76963ba51ef8d2605a3060be2ebd
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Feb  2 00:06:55 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Feb  2 00:22:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8199d76

dev-util/buildbot: Re-add the 0.9.0_p1 release due to a regression in newer 
versions

Package-Manager: Portage-2.3.3_p38, Repoman-2.3.1_p31

 dev-util/buildbot/Manifest |   1 +
 dev-util/buildbot/buildbot-0.9.0_p1.ebuild | 200 +
 2 files changed, 201 insertions(+)

diff --git a/dev-util/buildbot/Manifest b/dev-util/buildbot/Manifest
index 8a67937..f8e3b15 100644
--- a/dev-util/buildbot/Manifest
+++ b/dev-util/buildbot/Manifest
@@ -1,5 +1,6 @@
 DIST buildbot-0.8.10.tar.gz 4822307 SHA256 
c4964d2ebd81cb80a14cb058fb2aab0572a1d8d86672d514e775b42deb08a5f4 SHA512 
e148a1670a56837587d858d1697fe117661cbbfedab42bf7be905f9e8e4266e4ff0170b0cd81aed61234d30497a05427061c3084033f09811d0bc306b200661b
 WHIRLPOOL 
26397b6f914266201aba4feb4df7353facad4fd0f51bdf7e35cf25205c45eadcf83f24c265e540b13d327750ce9561362be6a5aa237152cf1298d970c504f76c
 DIST buildbot-0.8.12.tar.gz 4834352 SHA256 
c6b66976dff712268566574d57131ec15e5682f6d4390cd5c8559bab0980c4d6 SHA512 
18c5144132fb033f3581d3c494d5e8ff35d3e8b1548764452ce9ae543d710e58a2c6e3e8e46a0ef237804f9a6a45485890ae4616ab655fb00d4ccf328d6f6645
 WHIRLPOOL 
5754b7c0278fb5e7da8a7dd66253f6f4d12f54c125f6a78aa9018a2b6b22fd88a27e79e6821ab05e4cd9e87bf0dd08c3c73c7914d4c499ac13c48ca232ed21c8
+DIST buildbot-0.9.0.post1.tar.gz 3013406 SHA256 
afd8229c9fd33daa6d8227cd665c75b1b25c47ffcc4046ab5fd5b290ccd536a3 SHA512 
0b171ca6ed15b15b4df23d0618cb7d98f6ae922efaa1e35a9458efaaf676b80a6ff3be36231b8ca31cadf89c3968425c560a0bff3630e8792d179462eba0da67
 WHIRLPOOL 
e440826e4a027b42d28c0f3a0afca3c46ec5dc0b4d629fcef75de4b3350cffa2208e0024983f0ffebd1df38a5d860c6bd541fc1c3e28f8b6669ee93a4d4be8b4
 DIST buildbot-0.9.1.tar.gz 3051975 SHA256 
a9f385f66f5cc3021f4cbfce92496673ebf9171578fa9e5ae4f66732276d64ce SHA512 
c3b845a3607c5eaa0a5076755bc0e285ba7c6809f9d7934fab7c6cf8299610e921034656cf3792113961176a821138c6d069122d4d1f1698f16badf3ef9a0dea
 WHIRLPOOL 
6767878665f09ff7b6219ddcda73487b441f3e33ce580fc2df2f16d430217d4ac38b93e22a3f3abd9c8380ac6e6c93de6767faec1aa5615f82fbe8d8e20759e1
 DIST buildbot-0.9.2.tar.gz 3026977 SHA256 
d33ec059941cf830c8f7b7f336a76e32e7122e2690a27b784efeddc6dbf4564a SHA512 
a1c6345bcceb5c8f4ed600542625eee81e59af00a1b12054fe77e3b4ed5536b7004fcbd07cfc96baa3061193eb79e4290e056cf7157b71831370654c057a2c57
 WHIRLPOOL 
075a00d85df5321180345348a02ac12cc8a1bea36d6e60617ebe54de71ce5a989fcf009822834dad1994a6f83ebb5c6132f350902fd31d5b279c5c13014bb4b9
 DIST buildbot-0.9.3.tar.gz 3031033 SHA256 
c2bc6a8139b0f97d304bfa047a4c414e42ea12ba94e34d82ae7cb356a69d87fb SHA512 
a6f18e88c33fe1eafe0b9b154fb77f0d93db71145faab527ecd5ce53fcbbff48b915de4a02461da87eefbd58a649a56d3a9b16ba759d978e70a70898a15681b7
 WHIRLPOOL 
b62fd5bea0b647b703674024e50731e7713e9488dec570d8e42beabaa2135a81349b955164cf01898b12ab0123d9a8f3b76e3364f65003b8af85a54755b6ad22

diff --git a/dev-util/buildbot/buildbot-0.9.0_p1.ebuild 
b/dev-util/buildbot/buildbot-0.9.0_p1.ebuild
new file mode 100644
index ..84329ac
--- /dev/null
+++ b/dev-util/buildbot/buildbot-0.9.0_p1.ebuild
@@ -0,0 +1,200 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_REQ_USE="sqlite"
+PYTHON_COMPAT=( python2_7 )
+
+EGIT_REPO_URI="https://github.com/buildbot/${PN}.git;
+
+[[ ${PV} == * ]] && inherit git-r3
+inherit readme.gentoo-r1 user systemd distutils-r1
+
+MY_V="0.9.0.post1"
+MY_P="${PN}-${MY_V}"
+
+DESCRIPTION="BuildBot build automation system"
+HOMEPAGE="http://trac.buildbot.net/ https://github.com/buildbot/buildbot 
http://pypi.python.org/pypi/buildbot;
+[[ ${PV} == * ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+if [[ ${PV} == * ]]; then
+   KEYWORDS=""
+else
+   KEYWORDS="~amd64"
+fi
+
+IUSE="crypt doc examples irc mail manhole test"
+
+RDEPEND=">=dev-python/jinja-2.1[${PYTHON_USEDEP}]
+   || (
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+   >=dev-python/twisted-web-14.0.1[${PYTHON_USEDEP}]
+   )
+   >=dev-python/autobahn-0.16.0[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-0.8[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-migrate-0.9[${PYTHON_USEDEP}]
+   crypt? (
+   >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]
+   dev-python/idna[${PYTHON_USEDEP}]
+   dev-python/service_identity[${PYTHON_USEDEP}]
+   )
+   irc? (
+   dev-python/txrequests[${PYTHON_USEDEP}]
+   || ( >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+   >=dev-python/twisted-words-14.0.1[${PYTHON_USEDEP}]
+   )
+   )
+   mail? (
+   || ( 

[gentoo-commits] repo/gentoo:master commit in: www-apache/mod_perl/

2017-02-01 Thread Kent Fredric
commit: cf9fef3ca4b6cf1c6cec68e4be1a5969186a03c3
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Feb  2 00:05:26 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Feb  2 00:06:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf9fef3c

www-apache/mod_perl: Block testing with mpm-itk installed re bug #603378

mpm_itk needs root or things running apache as non-root fail.
mod_perl tests needs to be not run as root or it will skip tests.

Therefor, mod_perl's tests and mpm_itk can't coexist.

Bug: https://bugs.gentoo.org/603378

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 www-apache/mod_perl/mod_perl-2.0.10.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www-apache/mod_perl/mod_perl-2.0.10.ebuild 
b/www-apache/mod_perl/mod_perl-2.0.10.ebuild
index b13af32..000d701 100644
--- a/www-apache/mod_perl/mod_perl-2.0.10.ebuild
+++ b/www-apache/mod_perl/mod_perl-2.0.10.ebuild
@@ -41,6 +41,7 @@ DEPEND="${RDEPEND}
dev-perl/IPC-Run3
dev-perl/libwww-perl

www-servers/apache[apache2_modules_version,-apache2_modules_unique_id]
+   !www-apache/mpm_itk
)
 "
 PDEPEND="



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

2017-02-01 Thread Matthias Maier
commit: d8501d0c3fee993f69cd03af030bbd21b9383a24
Author: Matthias Maier  gentoo  org>
AuthorDate: Wed Feb  1 23:10:05 2017 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Wed Feb  1 23:11:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8501d0c

dev-cpp/eigen: version bump to 3.3.2

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-cpp/eigen/Manifest   |   1 +
 dev-cpp/eigen/eigen-3.3.2.ebuild | 116 +++
 2 files changed, 117 insertions(+)

diff --git a/dev-cpp/eigen/Manifest b/dev-cpp/eigen/Manifest
index 760e925..821ad72 100644
--- a/dev-cpp/eigen/Manifest
+++ b/dev-cpp/eigen/Manifest
@@ -3,3 +3,4 @@ DIST eigen-3.2.10.tar.bz2 1168527 SHA256 
760e6656426fde71cc48586c971390816f456d3
 DIST eigen-3.2.8.tar.bz2 1161201 SHA256 
722a63d672b70f39c271c5e2a4a43ba14d12015674331790414fcb167c357e55 SHA512 
53c27ba530c985dfef52188e03273eeef33abbc67e3f150cacd3371c8b9ddbd399228730595821c4c56c061d109cf509266c1dab2b8a7c730902cbd6fb18c100
 WHIRLPOOL 
75e54f5620299f49a540483b0b4163e3cf6c48695f30f5e258343925cb488c3915588862a3fbe2341b5dbe17ea20756409265000f19ea2f45e7706837cb2488a
 DIST eigen-3.2.9.tar.bz2 1163762 SHA256 
4d1e036ec1ed4f4805d5c6752b76072d67538889f4003fadf2f6e00a825845ff SHA512 
2734ce70e0b04dc5839715a3cc9b8f90e05b341cfca42a7d586df213a9a14fe5642c76ccf36c16d020ae167c0d6e4d5cc306f0b3bf1f519c58372b0736ca7e63
 WHIRLPOOL 
7caba7b0676bc5dc203c8d8b5f57fc3a31a95171ddbb63b21ba8c84e58e5c5fde242d232299183e41886e970c3ea84bce821d506b6c32526ae44703ee3a599f9
 DIST eigen-3.3.1.tar.bz2 1638315 SHA256 
a0b4cebaabd8f371d1b364f9723585fbcc7c9640ca60273b99835e6cf115f056 SHA512 
d679bc04279bad351a35caeb04c4a95ebdd7d69153209573603e0c4c1d15b0c4d23d74f8651928ad04d7f03ad132fa7184d662801be75f58be38fd78802c7724
 WHIRLPOOL 
abbd43be2121aa43192b007f9ed3471fe163fbe71a41a0c0ef61308e96e7c52767c1900dca29b855c8358fc0390630f9bb0deddfb0c951782cbd5499dc53103f
+DIST eigen-3.3.2.tar.bz2 1639615 SHA256 
3e1fa6e8c45635938193f84fee6c35a87fac26ee7c39c68c230e5080c4a8fe98 SHA512 
a1e1894eba8139a52a5cae33cd880e886352bed11af39a997ba65b0cd24f76c275ea54381f37db10dc54db4257c9485e7f8692c9f27a25be08f0fe1c03290d0a
 WHIRLPOOL 
ecf12c5780830ee133e477b9805dbbff6b933c815dd65242404366a013152ad4dfbf829f5a33692e97f0654e598ddcc06c0b8cd7d125dcf80644437a7016b720

diff --git a/dev-cpp/eigen/eigen-3.3.2.ebuild b/dev-cpp/eigen/eigen-3.3.2.ebuild
new file mode 100644
index ..7c58917
--- /dev/null
+++ b/dev-cpp/eigen/eigen-3.3.2.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+FORTRAN_NEEDED="test"
+
+inherit cmake-utils cuda fortran-2
+
+DESCRIPTION="C++ template library for linear algebra"
+HOMEPAGE="http://eigen.tuxfamily.org/;
+SRC_URI="https://bitbucket.org/eigen/eigen/get/${PV}.tar.bz2 -> ${P}.tar.bz2"
+
+LICENSE="LGPL-2 GPL-3"
+SLOT="3"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+IUSE="altivec c++11 cuda debug doc neon openmp test" #zvector vsx
+
+IUSE_CPU_FLAGS=" avx avx2 f16c fma3 sse2 sse3 sse4_1 sse4_2 ssse3" #x87
+IUSE+=" ${IUSE_CPU_FLAGS// / cpu_flags_x86_}"
+
+RDEPEND="!dev-cpp/eigen:0"
+DEPEND="
+   doc? ( app-doc/doxygen[dot,latex] )
+   test? (
+   dev-libs/gmp:0
+   dev-libs/mpfr:0
+   media-libs/freeglut
+   media-libs/glew
+   sci-libs/adolc
+   sci-libs/cholmod
+   sci-libs/fftw:3.0
+   sci-libs/pastix
+   sci-libs/umfpack
+   sci-libs/scotch
+   sci-libs/spqr
+   sci-libs/superlu
+   dev-qt/qtcore:4
+   virtual/opengl
+   virtual/pkgconfig
+   cuda? ( dev-util/nvidia-cuda-toolkit )
+   )
+"
+# Missing:
+# METIS-5
+# GOOGLEHASH
+
+src_unpack() {
+   default
+   mv ${PN}* ${P} || die
+}
+
+src_prepare() {
+   sed \
+   -e 's:-g2::g' \
+   -i cmake/EigenConfigureTesting.cmake || die
+
+   sed -i CMakeLists.txt \
+   -e "/add_subdirectory(demos/d" \
+   || die "sed disable unused bundles failed"
+
+   if ! use test; then
+   sed -i CMakeLists.txt \
+   -e "/add_subdirectory(test/d" \
+   || die "sed disable tests failed"
+
+   sed -i CMakeLists.txt \
+   -e "/add_subdirectory(blas/d" \
+   -e "/add_subdirectory(lapack/d" \
+   || die "sed disable unused bundles failed"
+   fi
+
+   sed -i -e "/Unknown build type/d" CMakeLists.txt || die
+
+   use cuda && cuda_src_prepare
+
+   cmake-utils_src_prepare
+}
+
+src_compile() {
+   cmake-utils_src_compile
+   use doc && cmake-utils_src_compile doc
+}
+
+src_test() {
+   local mycmakeargs=(
+   -DEIGEN_TEST_ALTIVEC="$(usex altivec)"
+   

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

2017-02-01 Thread Matthias Maier
commit: b3a2bf0b197f03a9ad671f8b1835e34e60a9432b
Author: Matthias Maier  gentoo  org>
AuthorDate: Wed Feb  1 23:08:52 2017 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Wed Feb  1 23:11:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3a2bf0b

dev-util/cloc: keyword for ~arm

As requested by https://github.com/gentoo/gentoo/pull/3524

Package-Manager: Portage-2.3.3, Repoman-2.3.1

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

diff --git a/dev-util/cloc/cloc-1.72.ebuild b/dev-util/cloc/cloc-1.72.ebuild
index d487d30..4e53d06 100644
--- a/dev-util/cloc/cloc-1.72.ebuild
+++ b/dev-util/cloc/cloc-1.72.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/AlDanial/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 
 DEPEND="dev-lang/perl"
 RDEPEND="${DEPEND}



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

2017-02-01 Thread Matthias Maier
commit: e75fe5b590c251baf45963809a52f1d2432738eb
Author: Matthias Maier  gentoo  org>
AuthorDate: Wed Feb  1 23:01:10 2017 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Wed Feb  1 23:11:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e75fe5b5

dev-cpp/eigen: fix sandbox violation, use system fortran compiler, bug #607800

Apply the patch proposed by Guilherme Amadio  gentoo.org> to fix
test configuration and compiler setup.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-cpp/eigen/eigen-3.3.1.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-cpp/eigen/eigen-3.3.1.ebuild b/dev-cpp/eigen/eigen-3.3.1.ebuild
index fb5d8fe..7c58917 100644
--- a/dev-cpp/eigen/eigen-3.3.1.ebuild
+++ b/dev-cpp/eigen/eigen-3.3.1.ebuild
@@ -62,6 +62,10 @@ src_prepare() {
 
if ! use test; then
sed -i CMakeLists.txt \
+   -e "/add_subdirectory(test/d" \
+   || die "sed disable tests failed"
+
+   sed -i CMakeLists.txt \
-e "/add_subdirectory(blas/d" \
-e "/add_subdirectory(lapack/d" \
|| die "sed disable unused bundles failed"
@@ -81,7 +85,6 @@ src_compile() {
 
 src_test() {
local mycmakeargs=(
-   -DEIGEN_BUILD_TESTS=ON
-DEIGEN_TEST_ALTIVEC="$(usex altivec)"
-DEIGEN_TEST_CXX11="$(usex c++11)"
-DEIGEN_TEST_CUDA="$(usex cuda)"



[gentoo-commits] proj/pax-utils:master commit in: /

2017-02-01 Thread Mike Frysinger
commit: 4609f57a690b4a5670baeb93167dab5300d07d4e
Author: Mike Frysinger  gentoo  org>
AuthorDate: Wed Feb  1 19:29:10 2017 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Feb  1 19:29:10 2017 +
URL:https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=4609f57a

dumpelf: check for invalid section entry sizes

URL: https://bugs.gentoo.org/607894
Reported-by: Agostino Sarubbo  gentoo.org>

 dumpelf.c | 50 --
 1 file changed, 28 insertions(+), 22 deletions(-)

diff --git a/dumpelf.c b/dumpelf.c
index 6b2458a..44da3ee 100644
--- a/dumpelf.c
+++ b/dumpelf.c
@@ -413,17 +413,20 @@ static void dump_shdr(elfobj *elf, const void *shdr_void, 
size_t shdr_cnt, const
case SHT_DYNSYM: { \
Elf##B##_Sym *sym = vdata; \
printf("\n\t/%c section dump:\n", '*'); \
-   for (i = 0; i < EGET(shdr->sh_size) / 
EGET(shdr->sh_entsize); ++i) { \
-   printf("\t * Elf%i_Sym sym%zu = {\n", B, i); \
-   printf("\t * \t.st_name  = %u,\n", 
(uint32_t)EGET(sym->st_name)); \
-   printf("\t * \t.st_value = 0x%"PRIX64",\n", 
EGET(sym->st_value)); \
-   printf("\t * \t.st_size  = %"PRIu64", 
(bytes)\n", EGET(sym->st_size)); \
-   printf("\t * \t.st_info  = %u,\n", (unsigned 
char)EGET(sym->st_info)); \
-   printf("\t * \t.st_other = %u,\n", (unsigned 
char)EGET(sym->st_other)); \
-   printf("\t * \t.st_shndx = %u\n", 
(uint16_t)EGET(sym->st_shndx)); \
-   printf("\t * };\n"); \
-   ++sym; \
-   } \
+   if (EGET(shdr->sh_entsize) < sizeof(*sym)) \
+   printf(" /* corrupt section ! */ "); \
+   else \
+   for (i = 0; i < EGET(shdr->sh_size) / 
EGET(shdr->sh_entsize); ++i) { \
+   printf("\t * Elf%i_Sym sym%zu = {\n", 
B, i); \
+   printf("\t * \t.st_name  = %u,\n", 
(uint32_t)EGET(sym->st_name)); \
+   printf("\t * \t.st_value = 
0x%"PRIX64",\n", EGET(sym->st_value)); \
+   printf("\t * \t.st_size  = %"PRIu64", 
(bytes)\n", EGET(sym->st_size)); \
+   printf("\t * \t.st_info  = %u,\n", 
(unsigned char)EGET(sym->st_info)); \
+   printf("\t * \t.st_other = %u,\n", 
(unsigned char)EGET(sym->st_other)); \
+   printf("\t * \t.st_shndx = %u\n", 
(uint16_t)EGET(sym->st_shndx)); \
+   printf("\t * };\n"); \
+   ++sym; \
+   } \
printf("\t */\n"); \
break; \
} \
@@ -433,17 +436,20 @@ static void dump_shdr(elfobj *elf, const void *shdr_void, 
size_t shdr_cnt, const
case SHT_GNU_LIBLIST: { \
Elf##B##_Lib *lib = vdata; \
printf("\n\t/%c section dump:\n", '*'); \
-   for (i = 0; i < EGET(shdr->sh_size) / 
EGET(shdr->sh_entsize); ++i) { \
-   printf("\t * Elf%i_Lib lib%zu = {\n", B, i); \
-   printf("\t * \t.l_name   = %"PRIu64",\n", 
EGET(lib->l_name)); \
-   printf("\t * \t.l_time_stamp = 0x%"PRIX64", 
(%s)\n", \
-  EGET(lib->l_time_stamp), 
timestamp(EGET(lib->l_time_stamp))); \
-   printf("\t * \t.l_checksum   = 0x%"PRIX64",\n", 
EGET(lib->l_checksum)); \
-   printf("\t * \t.l_version= %"PRIu64",\n", 
EGET(lib->l_version)); \
-   printf("\t * \t.l_flags  = 0x%"PRIX64"\n", 
EGET(lib->l_flags)); \
-   printf("\t * };\n"); \
-   ++lib; \
-   } \
+   if (EGET(shdr->sh_entsize) < sizeof(*lib)) \
+   printf(" /* corrupt section ! */ "); \
+   else \
+   for (i = 0; i < EGET(shdr->sh_size) / 
EGET(shdr->sh_entsize); ++i) { \
+   printf("\t * Elf%i_Lib lib%zu = {\n", 
B, i); \
+   printf("\t * \t.l_name   = 
%"PRIu64",\n", EGET(lib->l_name)); \
+   printf("\t * \t.l_time_stamp = 
0x%"PRIX64", (%s)\n", \
+  EGET(lib->l_time_stamp), 
timestamp(EGET(lib->l_time_stamp))); \
+   

[gentoo-commits] proj/pax-utils:master commit in: /

2017-02-01 Thread Mike Frysinger
commit: 10a9643d90a1ba6058a66066803fac6cf43f6917
Author: Mike Frysinger  gentoo  org>
AuthorDate: Wed Feb  1 22:40:09 2017 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Feb  1 22:40:09 2017 +
URL:https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=10a9643d

dumpelf: check for invalid notes

Handle cases where the size fields would overflow the additions.

URL: https://bugs.gentoo.org/607898
Reported-by: Agostino Sarubbo  gentoo.org>

 dumpelf.c | 23 ---
 1 file changed, 16 insertions(+), 7 deletions(-)

diff --git a/dumpelf.c b/dumpelf.c
index a9c6e05..60c78a3 100644
--- a/dumpelf.c
+++ b/dumpelf.c
@@ -209,6 +209,7 @@ static void dump_notes(elfobj *elf, size_t B, const void 
*memory, const void *me
 * world, the two structs are exactly the same.  So avoid ugly CPP.
 */
size_t i;
+   bool corrupt = false;
const void *ndata = memory;
const char *name;
const unsigned char *desc;
@@ -223,23 +224,31 @@ static void dump_notes(elfobj *elf, size_t B, const void 
*memory, const void *me
}
 
printf("\n\t/%c note section dump:\n", '*');
-   for (i = 0; ndata < memory_end; ++i) {
+   for (i = 0; ndata < memory_end && !corrupt; ++i) {
note = ndata;
namesz = EGET(note->n_namesz);
descsz = EGET(note->n_descsz);
-   name = namesz ? ndata + sizeof(*note) : "";
-   desc = descsz ? ndata + sizeof(*note) + ALIGN_UP(namesz, 4) : 
"";
+   if (namesz > elf->len || descsz > elf->len)
+   corrupt = true;
+   name = namesz ? ndata + sizeof(*note) : NULL;
+   desc = descsz ? ndata + sizeof(*note) + ALIGN_UP(namesz, 4) : 
NULL;
ndata += sizeof(*note) + ALIGN_UP(namesz, 4) + ALIGN_UP(descsz, 
4);
 
-   if (ndata > memory_end) {
+   if (ndata > memory_end)
+   corrupt = true;
+   if (corrupt) {
+   name = NULL;
+   desc = NULL;
printf("\tNote is corrupt\n");
-   break;
}
 
printf("\t * Elf%zu_Nhdr note%zu = {\n", B, i);
-   printf("\t * \t.n_namesz = %u, (bytes) [%s]\n", namesz, name);
+   printf("\t * \t.n_namesz = %u, (bytes)", namesz);
+   if (name)
+   printf(" [%s]", name);
+   printf("\n");
printf("\t * \t.n_descsz = %u, (bytes)", descsz);
-   if (descsz) {
+   if (desc) {
printf(" [ ");
for (i = 0; i < descsz; ++i)
printf("%.2X ", desc[i]);



[gentoo-commits] proj/pax-utils:master commit in: /

2017-02-01 Thread Mike Frysinger
commit: 18ded0e30ee5a84260cceb80d818b9c21ade4c76
Author: Mike Frysinger  gentoo  org>
AuthorDate: Wed Feb  1 20:05:09 2017 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Feb  1 20:05:09 2017 +
URL:https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=18ded0e3

dumpelf: check for invalid program headers

URL: https://bugs.gentoo.org/607896
Reported-by: Agostino Sarubbo  gentoo.org>

 dumpelf.c | 8 
 paxelf.h  | 5 +
 2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/dumpelf.c b/dumpelf.c
index 44da3ee..a9c6e05 100644
--- a/dumpelf.c
+++ b/dumpelf.c
@@ -293,9 +293,6 @@ static void dump_phdr(elfobj *elf, const void *phdr_void, 
size_t phdr_cnt)
Elf ## B ## _Off offset = EGET(phdr->p_offset); \
void *vdata = elf->vdata + offset; \
uint32_t p_type = EGET(phdr->p_type); \
-   switch (p_type) { \
-   case PT_DYNAMIC: phdr_dynamic_void = phdr_void; break; \
-   } \
printf("/* Program Header #%zu 0x%tX */\n{\n", \
   phdr_cnt, (uintptr_t)phdr_void - elf->udata); \
printf("\t.p_type   = %-10u , /* [%s] */\n", p_type, 
get_elfptype(p_type)); \
@@ -307,12 +304,15 @@ static void dump_phdr(elfobj *elf, const void *phdr_void, 
size_t phdr_cnt)
printf("\t.p_flags  = 0x%-8X , /* %s */\n", 
(uint32_t)EGET(phdr->p_flags), dump_p_flags(p_type, EGET(phdr->p_flags))); \
printf("\t.p_align  = %-10"PRIu64" , /* (min mem alignment in bytes) 
*/\n", EGET(phdr->p_align)); \
\
-   if ((off_t)EGET(phdr->p_offset) > elf->len) { \
+   if (!VALID_PHDR(elf, phdr)) { \
printf("\t/* Warning: Program segment is corrupt. */\n"); \
goto done##B; \
} \
\
switch (p_type) { \
+   case PT_DYNAMIC: \
+   phdr_dynamic_void = phdr_void; \
+   break; \
case PT_NOTE: \
dump_notes(elf, B, vdata, vdata + EGET(phdr->p_filesz)); \
break; \

diff --git a/paxelf.h b/paxelf.h
index 56fa9f3..90b283c 100644
--- a/paxelf.h
+++ b/paxelf.h
@@ -45,6 +45,11 @@ typedef struct {
 EGET(shdr->sh_offset) < (uint64_t)elf->len && \
 EGET(shdr->sh_size) < (uint64_t)elf->len && \
 EGET(shdr->sh_offset) <= elf->len - EGET(shdr->sh_size))
+#define VALID_PHDR(elf, phdr) \
+   (phdr && \
+EGET(phdr->p_filesz) < (uint64_t)elf->len && \
+EGET(phdr->p_offset) < (uint64_t)elf->len && \
+EGET(phdr->p_filesz) <= elf->len - EGET(phdr->p_offset))
 
 /* prototypes */
 extern char *pax_short_hf_flags(unsigned long flags);



[gentoo-commits] repo/gentoo:master commit in: sys-apps/rename/, sys-apps/rename/files/

2017-02-01 Thread Patrice Clement
commit: bc1a6557a6d235d554374cc2aab96b9dc9ea533a
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Feb  1 22:52:04 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Feb  1 22:55:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc1a6557

sys-apps/rename: EAPI 6 bump.

Package-Manager: portage-2.3.3

 sys-apps/rename/files/rename-1.3-build.patch  |  4 +--
 sys-apps/rename/files/rename-1.3-gcc44.patch  |  4 +--
 sys-apps/rename/files/rename-1.3-rename.patch |  8 ++---
 sys-apps/rename/rename-1.3-r2.ebuild  | 43 +++
 4 files changed, 51 insertions(+), 8 deletions(-)

diff --git a/sys-apps/rename/files/rename-1.3-build.patch 
b/sys-apps/rename/files/rename-1.3-build.patch
index 942a2c1..6d18443 100644
--- a/sys-apps/rename/files/rename-1.3-build.patch
+++ b/sys-apps/rename/files/rename-1.3-build.patch
@@ -1,5 +1,5 @@
 Makefile.in
-+++ Makefile.in
+--- a/Makefile.in
 b/Makefile.in
 @@ -16,7 +16,7 @@
  all: rename
  

diff --git a/sys-apps/rename/files/rename-1.3-gcc44.patch 
b/sys-apps/rename/files/rename-1.3-gcc44.patch
index 0cbd396..71f5e88 100644
--- a/sys-apps/rename/files/rename-1.3-gcc44.patch
+++ b/sys-apps/rename/files/rename-1.3-gcc44.patch
@@ -1,6 +1,6 @@
 diff -NrU5 rename-1.3.original/rename.c rename-1.3/rename.c
 rename-1.3.original/rename.c   2009-06-14 00:21:43.0 -0600
-+++ rename-1.3/rename.c2009-06-14 00:22:21.0 -0600
+--- a/rename.c 2009-06-14 00:21:43.0 -0600
 b/rename.c 2009-06-14 00:22:21.0 -0600
 @@ -63,11 +63,11 @@
#endif
  #endif

diff --git a/sys-apps/rename/files/rename-1.3-rename.patch 
b/sys-apps/rename/files/rename-1.3-rename.patch
index 52a3d9a..127959f 100644
--- a/sys-apps/rename/files/rename-1.3-rename.patch
+++ b/sys-apps/rename/files/rename-1.3-rename.patch
@@ -1,5 +1,5 @@
 rename/rename.c
-+++ rename/rename.c
+--- a/rename.c
 b/rename.c
 @@ -594,7 +594,7 @@
  } else {
rs = rename(oldp, new);
@@ -20,8 +20,8 @@
  Rename SOURCE to DEST, or substitute characters match the specified pattern\n\
  in the filename.\n\
  \n\
 rename/rename.1
-+++ rename/rename.1
+--- a/rename.1
 b/rename.1
 @@ -1,16 +1,16 @@
  .TH NAME SECTION
  .SH Name

diff --git a/sys-apps/rename/rename-1.3-r2.ebuild 
b/sys-apps/rename/rename-1.3-r2.ebuild
new file mode 100644
index ..a5fbc51
--- /dev/null
+++ b/sys-apps/rename/rename-1.3-r2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs eutils
+
+DESCRIPTION="Easily rename files"
+HOMEPAGE="http://rename.sourceforge.net/;
+SRC_URI="http://${PN}/sourceforge.net/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+
+MY_PATCHES=(
+   "${FILESDIR}"/${P}-rename.patch
+   "${FILESDIR}"/${P}-build.patch
+   "${FILESDIR}"/${P}-gcc44.patch
+)
+
+DOCS=( README ChangeLog )
+
+src_prepare() {
+   default
+   sed -i \
+   -e '/^CFLAGS/s:-O3:@CFLAGS@:' \
+   -e '/strip /s:.*::' \
+   Makefile.in || die
+   epatch "${MY_PATCHES[@]}"
+   tc-export CC
+}
+
+src_install() {
+   newbin "${PN}" "${PN}xm"
+   newman "${PN}.1" "${PN}xm.1"
+}
+
+pkg_postinst() {
+   ewarn "This has been renamed to '${PN}xm' to avoid"
+   ewarn "a naming conflict with sys-apps/util-linux."
+}



[gentoo-commits] gentoo commit in src/patchsets/gcc/5.4.0/gentoo: 71_all_gcc-5-march-native-pr67310.patch README.history

2017-02-01 Thread Magnus Granberg (zorry)
zorry   17/02/01 22:59:49

  Modified: README.history
  Added:71_all_gcc-5-march-native-pr67310.patch
  Log:
  sys-devel/gcc-5.4.0: Readd 71_all_gcc-5-march-native-pr67310.patch to 1.3

Revision  ChangesPath
1.4  src/patchsets/gcc/5.4.0/gentoo/README.history

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/README.history?rev=1.4=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/README.history?rev=1.4=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/README.history?r1=1.3=1.4

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/5.4.0/gentoo/README.history,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- README.history  1 Feb 2017 21:03:53 -   1.3
+++ README.history  1 Feb 2017 22:59:49 -   1.4
@@ -1,4 +1,5 @@
 1.301 Feb 2017
+   + 71_all_gcc-5-march-native-pr67310.patch
+ 78_all_gcc-5-pr71442
- 95_all_gcc5-head-snapshot-diff-20161227.patch
 1.227 Dec 2016



1.3  
src/patchsets/gcc/5.4.0/gentoo/71_all_gcc-5-march-native-pr67310.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/71_all_gcc-5-march-native-pr67310.patch?rev=1.3=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/71_all_gcc-5-march-native-pr67310.patch?rev=1.3=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/71_all_gcc-5-march-native-pr67310.patch?r1=1.2=1.3







[gentoo-commits] repo/gentoo:master commit in: sys-auth/oath-toolkit/

2017-02-01 Thread Robin H. Johnson
commit: 8d14d3d9d83bac85ca36a0eb1372f1d440c6a06c
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Wed Feb  1 06:38:50 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Wed Feb  1 22:49:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d14d3d9

sys-auth/oath-toolkit: Update to version 2.6.2

(cherry picked from commit c3879f88f49d45bb548681b4d90b683bb7394d94)
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Fixes: https://github.com/gentoo/gentoo/pull/3758
Signed-off-by: Robin H. Johnson  gentoo.org>

 sys-auth/oath-toolkit/Manifest  |  1 +
 sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild | 59 +
 2 files changed, 60 insertions(+)

diff --git a/sys-auth/oath-toolkit/Manifest b/sys-auth/oath-toolkit/Manifest
index d3d9253..8465e52 100644
--- a/sys-auth/oath-toolkit/Manifest
+++ b/sys-auth/oath-toolkit/Manifest
@@ -1 +1,2 @@
 DIST oath-toolkit-2.6.1.tar.gz 4238966 SHA256 
9c57831907bc26eadcdf90ba1827d0bd962dd1f737362e817a1dd6d6ec036f79 SHA512 
59feadbc06d11a52bf5879493227c40358fc1f4f17ec3ff92e3a313e47b92f3154396fa3ff38ef163852b32c8bfcef1f59753b614d0138478b8f7e7971f55e62
 WHIRLPOOL 
4c32514c265f430272d255eb6557f3b3d434c1700d4f6a5c3607808ba761d182dde679f9248b486f9e3c45d402d902bf4863b630d3415529303b2013aabe0223
+DIST oath-toolkit-2.6.2.tar.gz 4295786 SHA256 
b03446fa4b549af5ebe4d35d7aba51163442d255660558cd861ebce536824aa0 SHA512 
201a702a05a2e9fb3a66d04750e1a34e293342126caf02c344954a0d9fd0daafe73ca7f1fe273be129ae555a29b82b72fa2b4770ea2ad10711924e1926ec2cfb
 WHIRLPOOL 
7321ba452070a92d60453ca3b1cb2d9c886b9fcbe48dcf8e8f00485fed809274fd2c4f6eee7cdd86d83f6f512682c3642ffe991c996140a0121c6314faf4

diff --git a/sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild 
b/sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild
new file mode 100644
index ..ca54179
--- /dev/null
+++ b/sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+EAPI=6
+
+inherit pam eutils autotools
+DESCRIPTION="Toolkit for using one-time password authentication with HOTP/TOTP 
algorithms"
+HOMEPAGE="http://www.nongnu.org/oath-toolkit/ 
http://gitorious.org/oath-toolkit/;
+SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz;
+LICENSE="GPL-3 LGPL-2.1"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="pam pskc test"
+
+RDEPEND="
+   pam? ( virtual/pam )
+   pskc? ( dev-libs/xmlsec )"
+DEPEND="${RDEPEND}
+   test? ( dev-libs/libxml2 )
+   dev-util/gtk-doc-am"
+
+src_prepare() {
+   # These tests need git/cvs and don't reflect anything in the final app
+   sed -i -r \
+   -e '/TESTS/s,test-vc-list-files-(git|cvs).sh,,g' \
+   gl/tests/Makefile.am
+   # disable portability warnings, caused by gtk-doc.make
+   sed -i \
+   -e '/AM_INIT_AUTOMAKE/ s:-Wall:\0 -Wno-portability:' \
+   {liboath,libpskc}/configure.ac
+   eautoreconf
+   default
+}
+
+src_configure() {
+   econf \
+   $(use_enable test xmltest ) \
+   $(use_enable pam) \
+   $(use_with pam pam-dir $(getpam_mod_dir)) \
+   $(use_enable pskc)
+}
+
+src_install() {
+   default
+   if use pam; then
+   newdoc pam_oath/README README.pam
+   fi
+   if use pskc; then
+   doman pskctool/pskctool.1
+   fi
+}
+
+src_test() {
+   # without keep-going, it will bail out after the first testsuite 
failure,
+   # skipping the other testsuites. as they are mostly independant, this 
sucks.
+   emake --keep-going check
+   [ $? -ne 0 ] && die "At least one testsuite failed"
+}



[gentoo-commits] repo/gentoo:master commit in: sci-calculators/units/

2017-02-01 Thread Jeroen Roovers
commit: 9d36fb1f08fda6a9b69ffbb357ee67c482559f8d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Feb  1 22:48:31 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Feb  1 22:48:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d36fb1f

sci-calculators/units: Old.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sci-calculators/units/Manifest  |  1 -
 sci-calculators/units/units-2.12.ebuild | 61 -
 2 files changed, 62 deletions(-)

diff --git a/sci-calculators/units/Manifest b/sci-calculators/units/Manifest
index 9b34f6f..fd62456 100644
--- a/sci-calculators/units/Manifest
+++ b/sci-calculators/units/Manifest
@@ -1,2 +1 @@
-DIST units-2.12.tar.gz 875884 SHA256 
7868ea5118f1fe8e9f9f7256ecc7f1ee0dd7027ba9f32cc739184af1ed94bbcb SHA512 
90065c03ecc2cb821b8a8c5bd2c6b577ea35aef7c26de83d066b216f5aa9cf071f0fcb57edff24f83b538690a98a57c1a8677a8e06d8a4a8286c84cd02a336ac
 WHIRLPOOL 
179155bc8b97ed2c7f27c5e640bcb7d1d5820dc554f3ea66f411f27af856c79709e4694c4981c8da58a9f3d0c4dd5cca087fbf1c85ef3ed7d4783f61b75f8d05
 DIST units-2.13.tar.gz 1170233 SHA256 
0ba5403111f8e5ea22be7d51ab74c8ccb576dc30ddfbf18a46cb51f9139790ab SHA512 
39b380480ab6f48e56a7f122bb66f53ec49667f5ae3479a128536c58d29b1a1bfe281374f06911e8f713fe21459f57d13974c3629180b22968761cad15b10de2
 WHIRLPOOL 
f1a4f85483e2cc9b4d2112a8ed36f51de7efc09b0ab6da926282d474615441f0196697d459cadb13aed1e5fa586261f7c45af2cc980be04b0fc810c57a7acb3e

diff --git a/sci-calculators/units/units-2.12.ebuild 
b/sci-calculators/units/units-2.12.ebuild
deleted file mode 100644
index 46a30ad..
--- a/sci-calculators/units/units-2.12.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4} )
-PYTHON_REQ_USE="xml"
-inherit eutils python-r1
-
-DESCRIPTION="Unit conversion program"
-HOMEPAGE="https://www.gnu.org/software/units/units.html;
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="FDL-1.3 GPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
-IUSE="+units_cur"
-
-DEPEND="
-   sys-libs/readline:=
-   units_cur? (
-   dev-lang/python-exec:2
-   )
-"
-RDEPEND="
-   ${DEPEND}
-   units_cur? (
-   dev-python/unidecode[${PYTHON_USEDEP}]
-   ${PYTHON_DEPS}
-   )
-"
-
-units_cur_prepare() {
-   local UNITS_PYTHON_MAJOR
-   UNITS_PYTHON_MAJOR=$(
-   UNITS_PYTHON_MAJOR=${EPYTHON/.*}
-   shopt -s extglob
-   echo ${UNITS_PYTHON_MAJOR/*([[:alpha:]])}
-   )
-   sed -e "/^outfile/s|'.*'|'/usr/share/units/currency.units'|g" 
units_cur${UNITS_PYTHON_MAJOR} > units_cur-${EPYTHON}
-}
-
-src_prepare() {
-   use units_cur && python_foreach_impl units_cur_prepare
-}
-
-src_compile() {
-   emake HAVE_PYTHON=no
-}
-
-units_cur_install() {
-   python_newexe units_cur-${EPYTHON} units_cur
-}
-
-src_install() {
-   emake DESTDIR="${D}" HAVE_PYTHON=no install
-
-   dodoc ChangeLog NEWS README
-
-   use units_cur && python_foreach_impl units_cur_install
-}



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/electric/files/

2017-02-01 Thread David Seifert
commit: bff49afa090b4a26f8a00f3d677e79d0ae27c1e0
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 31 17:42:24 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:40:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bff49afa

sci-electronics/electric: remove unused patches

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

 .../electric/files/7.00-fix-sandbox.patch  | 11 -
 sci-electronics/electric/files/7.00-qt.patch   | 35 
 .../files/electric-7.00-gcc4.1-gentoo.patch| 11 -
 .../electric/files/electric-7.00-qt-gentoo.patch   | 48 --
 4 files changed, 105 deletions(-)

diff --git a/sci-electronics/electric/files/7.00-fix-sandbox.patch 
b/sci-electronics/electric/files/7.00-fix-sandbox.patch
deleted file mode 100644
index 29c3654..
--- a/sci-electronics/electric/files/7.00-fix-sandbox.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 Makefile.in2004-12-03 16:27:37.0 +0100
-+++ Makefile.in.new2004-12-03 16:38:28.203830495 +0100
-@@ -936,7 +936,7 @@
-   rm -f src/vhdl/*~ src/vhdl/"#"*"#"
- 
- install: all
--  $(INSTALL) -d -m755 @bindir@ $(DESTDIR)@datadir@/electric/lib
-+  $(INSTALL) -d -m755 ${DESTDIR}/@bindir@ $(DESTDIR)@datadir@/electric/lib
-   $(INSTALL) -m755 $(PROGNAME) $(DESTDIR)@bindir@/$(PROGNAME)
-   $(INSTALL) -m644 lib/.cadrc $(DESTDIR)@datadir@/electric/lib
-   @(cd lib ; \

diff --git a/sci-electronics/electric/files/7.00-qt.patch 
b/sci-electronics/electric/files/7.00-qt.patch
deleted file mode 100644
index 137f1e9..
--- a/sci-electronics/electric/files/7.00-qt.patch
+++ /dev/null
@@ -1,35 +0,0 @@
 Makefile.in.oric   2004-03-15 10:31:14.0 +1030
-+++ Makefile.in2004-03-15 10:39:14.0 +1030
-@@ -1,10 +1,10 @@
- ## USING QT
- # If using Qt, uncomment these five lines
--# GRAPH_FLAGS = -DUSEQT -DQT_THREAD_SUPPORT -I$(QTDIR)/include $(QUI_CFLAGS)
--# GRAPH_LIBS = -L$(QTDIR)/lib $(QUI_LIBS) $(QT_LIB_EXTRAS)
--# GRAPH_OBJS = $(GRAPH_OBJS_QT)
--# GRAPH_SRC = $(GRAPH_SRC_QT)
--# CCOMPILER = @CXX@
-+GRAPH_FLAGS = -DUSEQT -DQT_THREAD_SUPPORT -I$(QTDIR)/include $(QUI_CFLAGS)
-+GRAPH_LIBS = -L$(QTDIR)/lib $(QUI_LIBS) $(QT_LIB_EXTRAS)
-+GRAPH_OBJS = $(GRAPH_OBJS_QT)
-+GRAPH_SRC = $(GRAPH_SRC_QT)
-+CCOMPILER = @CXX@
- 
- # Qt on UNIX/Linux: uncomment the next two lines:
- ELECTRIC_TARGET = electric-target-unix
-@@ -20,11 +20,11 @@
- 
- ### USING MOTIF
- # If using Motif (or OpenMotif/Lesstif), uncomment these five lines
--GRAPH_FLAGS = @X_CFLAGS@
--GRAPH_LIBS = -lXm @XMULIB@ -lXt @XPLIB@ @XEXTLIB@ -lX11
--GRAPH_OBJS = $(GRAPH_OBJS_XT)
--GRAPH_SRC = $(GRAPH_SRC_XT)
--CCOMPILER = @PTHREAD_CC@
-+#GRAPH_FLAGS = @X_CFLAGS@
-+#GRAPH_LIBS = -lXm @XMULIB@ -lXt @XPLIB@ @XEXTLIB@ -lX11
-+#GRAPH_OBJS = $(GRAPH_OBJS_XT)
-+#GRAPH_SRC = $(GRAPH_SRC_XT)
-+#CCOMPILER = @PTHREAD_CC@
- 
- # For the general-purpose X facility, uncomment this line
- XPOWER = -DANYDEPTH

diff --git a/sci-electronics/electric/files/electric-7.00-gcc4.1-gentoo.patch 
b/sci-electronics/electric/files/electric-7.00-gcc4.1-gentoo.patch
deleted file mode 100644
index b2e678d..
--- a/sci-electronics/electric/files/electric-7.00-gcc4.1-gentoo.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -Naur electric-7.00/src/graph/graphqtdlg.h 
electric-7.00-new/src/graph/graphqtdlg.h
 electric-7.00/src/graph/graphqtdlg.h   2004-07-15 20:59:53.0 
-0500
-+++ electric-7.00-new/src/graph/graphqtdlg.h   2006-03-15 22:11:39.0 
-0600
-@@ -59,6 +59,7 @@
- class QSignalMapper;
- class EScrollField;
- class EDialogPrivate;
-+class EDialog;
- 
- class EDialogPrivate: public QDialog
- {

diff --git a/sci-electronics/electric/files/electric-7.00-qt-gentoo.patch 
b/sci-electronics/electric/files/electric-7.00-qt-gentoo.patch
deleted file mode 100644
index f21c4c5..
--- a/sci-electronics/electric/files/electric-7.00-qt-gentoo.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-diff -Naur electric-7.00/Makefile.in electric-7.00-new/Makefile.in
 electric-7.00/Makefile.in  2004-07-15 20:59:50.0 -0500
-+++ electric-7.00-new/Makefile.in  2006-03-15 22:19:08.0 -0600
-@@ -1,10 +1,10 @@
- ## USING QT
- # If using Qt, uncomment these five lines
--# GRAPH_FLAGS = -DUSEQT -DQT_THREAD_SUPPORT -I$(QTDIR)/include $(QUI_CFLAGS)
--# GRAPH_LIBS = -L$(QTDIR)/lib $(QUI_LIBS) $(QT_LIB_EXTRAS)
--# GRAPH_OBJS = $(GRAPH_OBJS_QT)
--# GRAPH_SRC = $(GRAPH_SRC_QT)
--# CCOMPILER = @CXX@
-+GRAPH_FLAGS = -DUSEQT -DQT_THREAD_SUPPORT -I$(QTDIR)/include $(QUI_CFLAGS)
-+GRAPH_LIBS = -L$(QTDIR)/lib $(QUI_LIBS) $(QT_LIB_EXTRAS)
-+GRAPH_OBJS = $(GRAPH_OBJS_QT)
-+GRAPH_SRC = $(GRAPH_SRC_QT)
-+CCOMPILER = @CXX@
- 
- # Qt on UNIX/Linux: uncomment the 

[gentoo-commits] repo/gentoo:master commit in: sci-electronics/klayout/files/

2017-02-01 Thread David Seifert
commit: 83c998928d5743cb0a4c2a15d279bcc086588bd9
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 31 17:44:17 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:40:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83c99892

sci-electronics/klayout: remove unused patch/file

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

 .../klayout-0.21.7-Makefile.conf.linux-gentoo  | 43 --
 .../klayout/files/klayout-0.22.8-noautoruby.patch  | 18 -
 2 files changed, 61 deletions(-)

diff --git 
a/sci-electronics/klayout/files/klayout-0.21.7-Makefile.conf.linux-gentoo 
b/sci-electronics/klayout/files/klayout-0.21.7-Makefile.conf.linux-gentoo
deleted file mode 100644
index 32d75df..
--- a/sci-electronics/klayout/files/klayout-0.21.7-Makefile.conf.linux-gentoo
+++ /dev/null
@@ -1,43 +0,0 @@
-
-# Configuration file for gentoo-linux
-# Compiler options
-
-# Compiler general
-INC=-I$(TOP_SOURCE) -I$(SOURCE) -I. -I$(QTINCLUDE) 
-DEFS=-DQT_THREAD_SUPPORT -DQT3_SUPPORT
-
-# C++
-CXXOPT_DEP=-MM -MG 
-CXXWARN=-Wall -pedantic -Wno-deprecated -Woverloaded-virtual \
-   -Wsign-promo -Wsynth -Wno-long-long -Wno-strict-aliasing
-CXXOPT=-c $(CXXFLAGS) -o
-CXXOPT_SO=-fPIC $(CXXOPT) 
-
-# C
-CCOPT_DEP=-MM -MG 
-CCWARN=
-CCOPT=-c $(CFLAGS) -o
-CCOPT_SO=-fPIC $(CCOPT) 
-
-# Linker
-LINK=$(CXX)
-LOPT=-Wl,-E ${LDFLAGS} -o
-LOPT_SO=-shared -fPIC $(LOPT) -o
-
-LIBS=-L$(QTLIB) -lQtGui -lQtCore -lQtXml -lrt -lstdc++ -lcrypt -ldl -lz
-
-.PHONY: install
-install:
-   mkdir -p $(INSTALL_BINDIR)
-   cp main/$(EXEC_NAME) $(INSTALL_BINDIR)
-   for bin in $(OTHER_BIN) ; \
-   do \
- cp main/$$bin $(INSTALL_BINDIR) ; \
-   done
-   for plugin in $(PLUGINS) ; \
-   do \
- cp $$plugin/*.so $(INSTALL_BINDIR) ; \
-   done
-   chmod 755 $(INSTALL_BINDIR) $(INSTALL_BINDIR)/*
-
-

diff --git a/sci-electronics/klayout/files/klayout-0.22.8-noautoruby.patch 
b/sci-electronics/klayout/files/klayout-0.22.8-noautoruby.patch
deleted file mode 100644
index fe96fb9..
--- a/sci-electronics/klayout/files/klayout-0.22.8-noautoruby.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -ruN klayout-0.22.8.orig/build.sh klayout-0.22.8/build.sh
 klayout-0.22.8.orig/build.sh   2013-06-22 00:43:11.0 +0200
-+++ klayout-0.22.8/build.sh2013-10-13 20:13:36.493108910 +0200
-@@ -62,10 +62,10 @@
- RUBYINCLUDE2="not-used"
- RUBYLIBFILE=""
- 
--RUBY=""
--if [ "`ruby1.9 -v`" != "" ]; then RUBY="ruby1.9"; fi
--if [ "`ruby1.8 -v`" != "" ]; then RUBY="ruby1.8"; fi
--if [ "`ruby -v`" != "" ]; then RUBY="ruby"; fi
-+#RUBY=""
-+#if [ "`ruby1.9 -v`" != "" ]; then RUBY="ruby1.9"; fi
-+#if [ "`ruby1.8 -v`" != "" ]; then RUBY="ruby1.8"; fi
-+#if [ "`ruby -v`" != "" ]; then RUBY="ruby"; fi
- if [ "$RUBY" != "" ]; then
- 
-   echo "Found ruby interpreter: $RUBY"



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/iverilog/files/

2017-02-01 Thread David Seifert
commit: 64ccb624b18f1714e653ea129fefa61d10c3b30d
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 31 17:43:24 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:40:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64ccb624

sci-electronics/iverilog: remove unused patch

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

 .../iverilog/files/iverilog-0.9.1-gcc45.patch  | 37 --
 1 file changed, 37 deletions(-)

diff --git a/sci-electronics/iverilog/files/iverilog-0.9.1-gcc45.patch 
b/sci-electronics/iverilog/files/iverilog-0.9.1-gcc45.patch
deleted file mode 100644
index 4a69142..
--- a/sci-electronics/iverilog/files/iverilog-0.9.1-gcc45.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Fixing build with gcc 4.5
-
-https://bugs.gentoo.org/show_bug.cgi?id=319361
-
 pform_disciplines.cc
-+++ pform_disciplines.cc
-@@ -27,8 +27,8 @@
- map disciplines;
- map access_function_nature;
- 
--static perm_string nature_name = perm_string::perm_string();
--static perm_string nature_access = perm_string::perm_string();
-+static perm_string nature_name = perm_string();
-+static perm_string nature_access = perm_string();
- 
- void pform_start_nature(const char*name)
- {
-@@ -82,8 +82,8 @@
-   // expressions that use the access function can find it.
-   access_function_nature[nature_access] = tmp;
- 
--  nature_name = perm_string::perm_string();
--  nature_access = perm_string::perm_string();
-+  nature_name = perm_string();
-+  nature_access = perm_string();
- }
- 
- 
-@@ -171,7 +171,7 @@
-   FILE_NAME(tmp, loc);
- 
-   /* Clear the static variables for the next item. */
--  discipline_name = perm_string::perm_string();
-+  discipline_name = perm_string();
-   discipline_domain = IVL_DIS_NONE;
-   discipline_potential = 0;
-   discipline_flow = 0;



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/ngspice/files/

2017-02-01 Thread David Seifert
commit: bd5fa342444bedd5a739dea6488f85d8366013a0
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 31 17:44:49 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:40:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd5fa342

sci-electronics/ngspice: remove unused patch

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

 .../ngspice/files/ngspice-23-flags.patch   | 40 --
 1 file changed, 40 deletions(-)

diff --git a/sci-electronics/ngspice/files/ngspice-23-flags.patch 
b/sci-electronics/ngspice/files/ngspice-23-flags.patch
deleted file mode 100644
index ad5c231..
--- a/sci-electronics/ngspice/files/ngspice-23-flags.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-diff -Nadurp ngspice-23.orig//configure.ac ngspice-23/configure.ac
 ngspice-23.orig//configure.ac  2011-05-30 12:47:05.0 -0600
-+++ ngspice-23/configure.ac2011-07-14 10:47:14.668378976 -0600
-@@ -203,10 +203,10 @@ dnl the above AC_PROG_CC may set CFLAGS
- if test "$enable_debug" = "no"; then
-   if test "x$GCC" = "xyes"; then
-   AC_MSG_WARN(Removing debugging option!)
--  CFLAGS="$ext_CFLAGS -O2 -Wall -Wextra -Wmissing-prototypes 
-Wstrict-prototypes -Wimplicit-function-declaration -Wnested-externs 
-Wold-style-definition -Wredundant-decls -s"
-+  CFLAGS="$ext_CFLAGS -Wall -Wextra -Wmissing-prototypes 
-Wstrict-prototypes -Wimplicit-function-declaration -Wnested-externs 
-Wold-style-definition -Wredundant-decls"
-   else
-   AC_MSG_WARN(Removing debugging option!)
--  CFLAGS="$ext_CFLAGS -O2"
-+  CFLAGS="$ext_CFLAGS"
-   fi
- else
- AC_DEFINE(NGDEBUG,1,[Compile with debug info])
-diff -Nadurp ngspice-23.orig//src/xspice/icm/makedefs.in 
ngspice-23/src/xspice/icm/makedefs.in
 ngspice-23.orig//src/xspice/icm/makedefs.in2011-01-25 
11:34:11.0 -0700
-+++ ngspice-23/src/xspice/icm/makedefs.in  2011-07-14 10:58:25.521002437 
-0600
-@@ -41,16 +41,16 @@ endif
- CMPP = $(top_builddir)/src/xspice/cmpp/cmpp
- 
- # Flags to use when linking shared library
--LDFLAGS = -shared
-+LDFLAGS += -shared
- ifeq ($(ISMINGW), 1)
--  LDFLAGS = -shared @LDFLAGS@
-+  LDFLAGS += -shared @LDFLAGS@
- endif
- ifeq "$(strip $(uname))" "Darwin"
--  LDFLAGS = -bundle -flat_namespace -undefined suppress
-+  LDFLAGS += -bundle -flat_namespace -undefined suppress
- endif
- ifeq "$(strip $(uname))" "SunOS"
-   ifneq "$(CC)" "gcc"
--LDFLAGS = -G
-+LDFLAGS += -G
-   endif
- endif
- 



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/alliance/files/

2017-02-01 Thread David Seifert
commit: 23ac745ae8067eca97c28dffb5d17eadd4049c96
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 31 17:41:49 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:40:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23ac745a

sci-electronics/alliance: remove unused patches

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

 .../alliance/files/alliance-5.0-gcc43.patch| 24 --
 .../files/alliance-5.0.20070718-test.patch | 11 --
 2 files changed, 35 deletions(-)

diff --git a/sci-electronics/alliance/files/alliance-5.0-gcc43.patch 
b/sci-electronics/alliance/files/alliance-5.0-gcc43.patch
deleted file mode 100644
index fbca8ff..
--- a/sci-electronics/alliance/files/alliance-5.0-gcc43.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -ur alliance-5.0-orig/nero/src/MDefs.h alliance-5.0/nero/src/MDefs.h
 alliance-5.0-orig/nero/src/MDefs.h 2008-11-26 16:41:06.0 -0500
-+++ alliance-5.0/nero/src/MDefs.h  2008-11-26 16:44:40.0 -0500
-@@ -24,6 +24,8 @@
- # define  __MDefs__  1
- 
- 
-+# include  
-+# include  
- # include  "UDefs.h"
- 
- 
-diff -ur alliance-5.0-orig/ocp/src/placer/PPlacement.h 
alliance-5.0/ocp/src/placer/PPlacement.h
 alliance-5.0-orig/ocp/src/placer/PPlacement.h  2008-11-26 
16:41:06.0 -0500
-+++ alliance-5.0/ocp/src/placer/PPlacement.h   2008-11-26 16:46:06.0 
-0500
-@@ -43,6 +43,7 @@
- #include 
- #include 
- #include 
-+#include 
- using namespace std;
- 
- #include "mut.h"
-

diff --git a/sci-electronics/alliance/files/alliance-5.0.20070718-test.patch 
b/sci-electronics/alliance/files/alliance-5.0.20070718-test.patch
deleted file mode 100644
index b9725e6..
--- a/sci-electronics/alliance/files/alliance-5.0.20070718-test.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-#fixes test run (bug 282490)
 bvl/src/bvl_bcomp_y.y.orig 2010-10-13 09:29:48.0 +0200
-+++ bvl/src/bvl_bcomp_y.y  2010-10-13 09:30:13.0 +0200
-@@ -17,6 +17,7 @@
- #include "bvl.h"
- #include "bvl_byacc.h"
- #include "bvl_bedef.h"
-+#include "bvl_bcomp_y.h"
- 
- /* ###--### */
- /* function   : bvl_y_error   */



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/gnucap/files/

2017-02-01 Thread David Seifert
commit: d3477dc16a229e4a7e709b771838e5063b844135
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 31 17:42:54 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:40:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3477dc1

sci-electronics/gnucap: remove unused patch

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

 .../gnucap/files/gnucap-0.35-gcc43.patch   | 22 --
 1 file changed, 22 deletions(-)

diff --git a/sci-electronics/gnucap/files/gnucap-0.35-gcc43.patch 
b/sci-electronics/gnucap/files/gnucap-0.35-gcc43.patch
deleted file mode 100644
index 3bd6489..
--- a/sci-electronics/gnucap/files/gnucap-0.35-gcc43.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -Naur gnucap-0.35-orig/modelgen/md.h gnucap-0.35/modelgen/md.h
 gnucap-0.35-orig/modelgen/md.h 2006-08-28 00:15:43.0 -0600
-+++ gnucap-0.35/modelgen/md.h  2009-02-15 14:31:22.0 -0600
-@@ -44,6 +44,7 @@
- #include 
- #include 
- #include 
-+#include 
- // types
- #include 
- #include 
-diff -Naur gnucap-0.35-orig/src/md.h gnucap-0.35/src/md.h
 gnucap-0.35-orig/src/md.h  2006-08-28 00:15:43.0 -0600
-+++ gnucap-0.35/src/md.h   2009-02-15 14:31:22.0 -0600
-@@ -44,6 +44,7 @@
- #include 
- #include 
- #include 
-+#include 
- // types
- #include 
- #include 



[gentoo-commits] repo/gentoo:master commit in: sci-libs/libgeotiff/files/

2017-02-01 Thread David Seifert
commit: 44a08dbcb8b70a2d16271d772e3622637e9d0730
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 31 18:14:55 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:40:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44a08dbc

sci-libs/libgeotiff: remove unused patch

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

 sci-libs/libgeotiff/files/libgeotiff-1.2.4-soname.patch | 13 -
 1 file changed, 13 deletions(-)

diff --git a/sci-libs/libgeotiff/files/libgeotiff-1.2.4-soname.patch 
b/sci-libs/libgeotiff/files/libgeotiff-1.2.4-soname.patch
deleted file mode 100644
index e23ef6f..
--- a/sci-libs/libgeotiff/files/libgeotiff-1.2.4-soname.patch
+++ /dev/null
@@ -1,13 +0,0 @@
 configure.in.orig  2008-03-01 14:32:39.0 -0800
-+++ configure.in   2008-03-01 14:37:27.0 -0800
-@@ -36,7 +36,9 @@
- GEOTIFF_DLL=cyggeotiff-1.dll
- GEOTIFF_IMP=libgeotiff.dll.a
-   LD_SHARED="gcc -shared -Wl,--export-all 
-Wl,--out-implib=\$(GEOTIFF_IMP)" ;;
--*) 
GEOTIFF_SO=libgeotiff.${SO_EXT}.$VERSION_MAJOR.$VERSION_MINOR.$VERSION_POINT ;;
-+*) 
GEOTIFF_SO=libgeotiff.${SO_EXT}.$VERSION_MAJOR.$VERSION_MINOR.$VERSION_POINT
-+   GEOTIFF_SONAME=libgeotiff.${SO_EXT}.$VERSION_MAJOR.$VERSION_MINOR
-+   LD_SHARED="gcc -shared -Wl,-soname -Wl,$GEOTIFF_SONAME" ;;
-   esac
- fi
- AC_SUBST(GEOTIFF_SO,$GEOTIFF_SO)



[gentoo-commits] repo/gentoo:master commit in: sci-libs/linux-gpib/files/

2017-02-01 Thread David Seifert
commit: 76c4d2068dde37aada763ccf8c855adf5ca09d19
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 31 17:45:45 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:40:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76c4d206

sci-libs/linux-gpib: remove unused patch

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

 .../linux-gpib/files/linux-gpib-3.2.15-build.patch | 44 --
 1 file changed, 44 deletions(-)

diff --git a/sci-libs/linux-gpib/files/linux-gpib-3.2.15-build.patch 
b/sci-libs/linux-gpib/files/linux-gpib-3.2.15-build.patch
deleted file mode 100644
index 14a1868..
--- a/sci-libs/linux-gpib/files/linux-gpib-3.2.15-build.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-diff -ruN linux-gpib-3.2.15-0-orig/drivers/Makefile.am 
linux-gpib-3.2.15/drivers/Makefile.am
 linux-gpib-3.2.15-0-orig/drivers/Makefile.am   2007-04-19 
17:21:04.0 +0200
-+++ linux-gpib-3.2.15/drivers/Makefile.am  2011-01-24 23:20:59.0 
+0100
-@@ -27,39 +27,13 @@
-   CC="$(LINUX_CC) -I@abs_top_srcdir@ 
-I@abs_top_srcdir@/drivers/gpib/include -I@abs_top_srcdir@/include" \
-   SUBDIRS="$(GPIB_ABS_MODULE_SUBDIR)"
- 
--install-data-hook: device-file-check /etc/gpib.conf
-+install-data-hook: /etc/gpib.conf
-   $(MAKE) -C $(LINUX_SRCDIR) V=1 modules_install\
-   CC="$(LINUX_CC) -I@abs_top_srcdir@ 
-I@abs_top_srcdir@/driver/include -I@abs_top_srcdir@/include" \
-   SUBDIRS="$(GPIB_ABS_MODULE_SUBDIR)" INSTALL_MOD_DIR="gpib"
--  $(DEPMOD) -ae
--
--/dev/gpib0:
--  groupadd gpib || echo "group gpib exists"
--  for i in `seq 0 15`; \
--  do \
--  mknod -m u=rw,g=rw,o= /dev/gpib$${i} c $(IBMAJOR) $${i} || exit 
1; \
--  chown root:gpib /dev/gpib$${i}; \
--  done
--
--.PHONY : device-file-check
--device-file-check: /dev/gpib0
--  @if [ ! -c /dev/gpib0 ]; then \
--  if [ -a /dev/gpib0 ]; then \
--  echo "A file or directory called /dev/gpib0 exists but 
it is not" \
--  "a character device.  Delete or move it and try 
again."; \
--  exit 1; \
--  fi; \
--  fi
--  @ls -l /dev/gpib0 | grep -q "$(IBMAJOR)"; \
--  if [ $$? != 0 ]; then \
--  echo "/dev/gpib0 has the wrong major number. " \
--  "Delete your /dev/gpibX files and try again."; \
--  exit 1; \
--  fi
- 
- #should move this to util/templates Makefile.am when it exists
- /etc/gpib.conf:
--  $(INSTALL_DATA) -D $(top_srcdir)/util/templates/gpib.conf /etc/gpib.conf
- 
- #make sure compiled files, etc don't make it into distribution tarballs
- dist-hook:



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/unuran/files/

2017-02-01 Thread David Seifert
commit: 222aa83673154c6d50b1c2de4b444b90e995d9af
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Feb  1 18:48:44 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:39:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=222aa836

sci-mathematics/unuran: remove unused patch

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

 .../unuran/files/unuran-1.8.0-nogsl.patch  | 48 --
 1 file changed, 48 deletions(-)

diff --git a/sci-mathematics/unuran/files/unuran-1.8.0-nogsl.patch 
b/sci-mathematics/unuran/files/unuran-1.8.0-nogsl.patch
deleted file mode 100644
index f626653..
--- a/sci-mathematics/unuran/files/unuran-1.8.0-nogsl.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-diff -Nur unuran-1.8.0.orig/configure.ac unuran-1.8.0/configure.ac
 unuran-1.8.0.orig/configure.ac 2010-12-22 05:11:07.0 +
-+++ unuran-1.8.0/configure.ac  2010-12-22 05:15:35.0 +
-@@ -62,10 +62,6 @@
- dnl libm: the standard math library
- AC_CHECK_LIB([m], [sqrt])
- 
--dnl libmgsl: the GNU Scientific library 
--dnl (only used for experimental code)
--AC_CHECK_LIB([gsl], [gsl_integration_qagiu])
--
- dnl Optional support for external uniform random number generators
- 
- dnl RngStream: Pierre L'Ecuyer's multiple random stream generator
-@@ -80,6 +76,11 @@
- AX_ADD_URNG_LIB([gsl],[GSL],[random number generators from GNU Scientific 
Library],
- [gsl],[gsl_rng_alloc],[gsl/gsl_rng.h])
- 
-+if test -n $UNURAN_SUPPORTS_GSL; then
-+  AC_PATH_PROG(GSL_CONFIG, gsl-config, no)
-+  LIBS="$LIBS `$GSL_CONFIG --libs`"
-+fi
-+
- dnl Default URNG
- AC_ARG_WITH(urng_default,
-   [AS_HELP_STRING([--with-urng-default],
-@@ -215,7 +216,8 @@
-   [],
-   [enable_experimental=no])
- AS_IF([test "x$enable_experimental" = xyes],
--  [AC_DEFINE([USE_EXPERIMENTAL_CODE], [1], 
-+  [AC_CHECK_LIB([gsl], [gsl_integration_qagiu])
-+   AC_DEFINE([USE_EXPERIMENTAL_CODE], [1], 
-  [Define to 1 if you want to use experimental code])], 
-   [])
- AM_CONDITIONAL(ENABLE_EXPERIMENTAL, test x$enable_experimental = xyes)
-diff -Nur unuran-1.8.0.orig/tests/Makefile.am unuran-1.8.0/tests/Makefile.am
 unuran-1.8.0.orig/tests/Makefile.am2010-12-22 05:11:07.0 
+
-+++ unuran-1.8.0/tests/Makefile.am 2010-12-22 05:11:19.0 +
-@@ -9,7 +9,7 @@
-  -I$(top_srcdir)/src \
-  -I$(top_srcdir)/src/tests
- 
--noinst_LTLIBRARIES = libtestroutines.la
-+check_LTLIBRARIES = libtestroutines.la
- libtestroutines_la_SOURCES = testroutines.c testcounter.c
- 
- LDADD = \



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad/files/

2017-02-01 Thread David Seifert
commit: 66c01bd53b7f13d75df1c8e44c4854390b04c4c5
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 31 17:48:15 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:41:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66c01bd5

sci-electronics/kicad: remove unused patch

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

 .../kicad/files/kicad-4.0.2-boost-context.patch| 107 -
 .../files/kicad-4.0.2-swig-import-helper.patch |  31 --
 2 files changed, 138 deletions(-)

diff --git a/sci-electronics/kicad/files/kicad-4.0.2-boost-context.patch 
b/sci-electronics/kicad/files/kicad-4.0.2-boost-context.patch
deleted file mode 100644
index 00e80f3..
--- a/sci-electronics/kicad/files/kicad-4.0.2-boost-context.patch
+++ /dev/null
@@ -1,107 +0,0 @@
-diff -Naur kicad-4.0.2-orig/common/system/libcontext.cpp 
kicad-4.0.2/common/system/libcontext.cpp
 kicad-4.0.2-orig/common/system/libcontext.cpp   2016-06-16 
22:30:58.0 -0700
-+++ kicad-4.0.2/common/system/libcontext.cpp2016-06-16 22:35:46.654719468 
-0700
-@@ -13,7 +13,7 @@
- http://www.boost.org/LICENSE_1_0.txt)
-
- */
--#include "libcontext.h"
-+#include 
- #if defined(LIBCONTEXT_PLATFORM_windows_i386) && 
defined(LIBCONTEXT_COMPILER_gcc)
- __asm (
- ".text\n"
-diff -Naur kicad-4.0.2-orig/CMakeLists.txt kicad-4.0.2/CMakeLists.txt
 kicad-4.0.2-orig/CMakeLists.txt2016-02-13 13:14:42.0 -0800
-+++ kicad-4.0.2/CMakeLists.txt 2016-06-11 01:11:25.623484908 -0700
-@@ -561,7 +561,7 @@
- # Download boost and possibly build parts of it
- #
- if( KICAD_SKIP_BOOST )
--find_package( Boost 1.54.0 REQUIRED COMPONENTS context date_time 
filesystem iostreams locale
-+find_package( Boost 1.54.0 REQUIRED COMPONENTS date_time filesystem 
iostreams locale
-program_options regex 
system thread )
- 
- if( NOT Boost_FOUND )
-diff -Naur kicad-4.0.2-orig/common/CMakeLists.txt 
kicad-4.0.2/common/CMakeLists.txt
 kicad-4.0.2-orig/common/CMakeLists.txt 2016-02-13 13:14:42.0 
-0800
-+++ kicad-4.0.2/common/CMakeLists.txt  2016-06-11 01:10:04.886830434 -0700
-@@ -256,6 +256,8 @@
- view/view_item.cpp
- view/view_group.cpp
- 
-+system/libcontext.cpp
-+
- math/math_util.cpp
- 
- tool/tool_action.cpp
-diff -Naur kicad-4.0.2-orig/include/tool/coroutine.h 
kicad-4.0.2/include/tool/coroutine.h
 kicad-4.0.2-orig/include/tool/coroutine.h  2016-02-13 13:14:42.0 
-0800
-+++ kicad-4.0.2/include/tool/coroutine.h   2016-06-11 01:07:06.035378422 
-0700
-@@ -27,8 +27,7 @@
- 
- #include 
- 
--#include 
--#include 
-+#include 
- 
- #include "delegate.h"
- 
-@@ -92,10 +91,8 @@
- if( m_saved )
- delete m_saved;
- 
--#if BOOST_VERSION >= 105600
- if( m_self )
- delete m_self;
--#endif
- 
- if( m_stack )
- free( m_stack );
-@@ -156,13 +153,9 @@
- assert( m_saved == NULL );
- 
- m_args = 
--#if BOOST_VERSION >= 105600
--m_self = new boost::context::fcontext_t();
--*m_self = boost::context::make_fcontext( sp, m_stackSize, callerStub 
);
--#else
--m_self = boost::context::make_fcontext( sp, m_stackSize, callerStub );
--#endif
--m_saved = new boost::context::fcontext_t();
-+m_self = new fcontext_t();
-+*m_self = make_fcontext( sp, m_stackSize, callerStub );
-+m_saved = new fcontext_t();
- 
- m_running = true;
- // off we go!
-@@ -222,14 +215,10 @@
- }
- 
- ///> Wrapper for jump_fcontext to assure compatibility between different 
boost versions
--static inline intptr_t jump(boost::context::fcontext_t* aOld, 
boost::context::fcontext_t* aNew,
-+static inline intptr_t jump(fcontext_t* aOld, fcontext_t* aNew,
- intptr_t aP, bool aPreserveFPU = true )
- {
--#if BOOST_VERSION >= 105600
--return boost::context::jump_fcontext( aOld, *aNew, aP, aPreserveFPU );
--#else
--return boost::context::jump_fcontext( aOld, aNew, aP, aPreserveFPU );
--#endif
-+return jump_fcontext( aOld, *aNew, aP, aPreserveFPU );
- }
- 
- template 
-@@ -252,10 +241,10 @@
- ReturnType m_retVal;
- 
- ///< saved caller context
--boost::context::fcontext_t* m_saved;
-+fcontext_t* m_saved;
- 
- ///< saved coroutine context
--boost::context::fcontext_t* m_self;
-+fcontext_t* m_self;
- 
- ///< coroutine stack
- void* m_stack;

diff --git a/sci-electronics/kicad/files/kicad-4.0.2-swig-import-helper.patch 
b/sci-electronics/kicad/files/kicad-4.0.2-swig-import-helper.patch
deleted file mode 100644
index 9202acc..
--- a/sci-electronics/kicad/files/kicad-4.0.2-swig-import-helper.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff -Naur 

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

2017-02-01 Thread David Seifert
commit: 3cc9385bf226e834ca96d55d369c26cd7432d27e
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 31 18:12:30 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:39:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cc9385b

sci-geosciences/gpsd: remove unused patches

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

 .../gpsd/files/2.95-disable-strip.patch|  10 -
 sci-geosciences/gpsd/files/2.95-fix-ldflags.patch  |  12 --
 sci-geosciences/gpsd/files/2.96-fix-ldflags.patch  |  21 --
 sci-geosciences/gpsd/files/2.96-fix-tests.patch|  23 ---
 sci-geosciences/gpsd/files/2.96-pkgconfig.patch|  37 
 .../gpsd/files/gpsd-3.11-hotplug-config.patch  |  27 ---
 .../gpsd/files/gpsd-3.11-no-ntpshm.patch   |  97 -
 sci-geosciences/gpsd/files/gpsd-3.11-rpath.patch   |  12 --
 sci-geosciences/gpsd/files/gpsd-3.13-ntpshm.patch  |  25 ---
 sci-geosciences/gpsd/files/gpsd-3.3-ldflags.patch  |  15 --
 .../gpsd/files/gpsd-3.3-msocks-init.patch  |  33 ---
 .../gpsd/files/gpsd-3.3-pkg-config.patch   |  49 -
 .../gpsd/files/gpsd-3.3-release-rev.patch  |  39 
 .../gpsd/files/gpsd-3.3-udev-install.patch |  31 ---
 .../files/gpsd-3.4-always-install-man-pages.patch  |  36 
 .../gpsd/files/gpsd-3.4-cfgetispeed.patch  |  47 -
 sci-geosciences/gpsd/files/gpsd-3.4-chrpath.patch  |  69 ---
 .../gpsd/files/gpsd-3.4-gpsmon-lm.patch|  29 ---
 sci-geosciences/gpsd/files/gpsd-3.4-strptime.patch |  26 ---
 sci-geosciences/gpsd/files/gpsd-3.5-clock.patch|  42 
 sci-geosciences/gpsd/files/gpsd-3.6-debug.patch| 221 -
 sci-geosciences/gpsd/files/gpsd-3.6-rpath.patch|  13 --
 .../gpsd/files/gpsd-3.7-gps_regress.patch  |  63 --
 .../gpsd/files/gpsd-3.7-no-export-t.patch  |  44 
 sci-geosciences/gpsd/files/gpsd-3.8-libgps.patch   |  38 
 .../gpsd/files/gpsd-3.8-no-export-t.patch  |  44 
 sci-geosciences/gpsd/files/gpsd-3.8-udev.patch |  38 
 27 files changed, 1141 deletions(-)

diff --git a/sci-geosciences/gpsd/files/2.95-disable-strip.patch 
b/sci-geosciences/gpsd/files/2.95-disable-strip.patch
deleted file mode 100644
index 7348539..
--- a/sci-geosciences/gpsd/files/2.95-disable-strip.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 gpsd-2.95/Makefile.am  2010-07-12 02:40:22.0 +0200
-+++ gpsd-2.95.new/Makefile.am  2010-10-03 18:04:10.0 +0200
-@@ -340,6 +340,7 @@
-"QMAKE_CC=$(CC)" \
-"QMAKE_CFLAGS+=$(CFLAGS)" \
-"QMAKE_LFLAGS+=$(LDFLAGS)" \
-+   "QMAKE_STRIP=" \
-"VERSION=$(libgps_VERSION)" \
-"TARGET_LIBDIR=${libdir}" \
-"TARGET_INCLUDEDIR=${includedir}"

diff --git a/sci-geosciences/gpsd/files/2.95-fix-ldflags.patch 
b/sci-geosciences/gpsd/files/2.95-fix-ldflags.patch
deleted file mode 100644
index bcb8bdb..
--- a/sci-geosciences/gpsd/files/2.95-fix-ldflags.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -urN gpsd-2.95//Makefile.am gpsd-2.95.new//Makefile.am
 gpsd-2.95//Makefile.am 2010-07-12 02:40:22.0 +0200
-+++ gpsd-2.95.new//Makefile.am 2010-10-03 18:12:23.0 +0200
-@@ -137,7 +137,7 @@
- libgps_VERSION__REVISION = 0
- libgps_VERSION_AGE = 0
- libgps_VERSION_NUMBER = 
$(libgps_VERSION_AGE):$(libgps_VERSION__REVISION):$(libgps_VERSION_AGE)
--libgps_la_LDFLAGS = -version-number 
$(libgps_VERSION_CURRENT):$(libgps_VERSION__REVISION):$(libgps_VERSION_AGE)
-+libgps_la_LDFLAGS = ${LDFLAGS} -version-number 
$(libgps_VERSION_CURRENT):$(libgps_VERSION__REVISION):$(libgps_VERSION_AGE)
- lib_LTLIBRARIES = libgps.la libgpsd.la
- 
- libgps_SONAME = $(shell expr $(libgps_VERSION_CURRENT) - 
$(libgps_VERSION_AGE))

diff --git a/sci-geosciences/gpsd/files/2.96-fix-ldflags.patch 
b/sci-geosciences/gpsd/files/2.96-fix-ldflags.patch
deleted file mode 100644
index f643a35..
--- a/sci-geosciences/gpsd/files/2.96-fix-ldflags.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -urN gpsd-2.96.old/Makefile.am gpsd-2.96/Makefile.am
 gpsd-2.96.old/Makefile.am  2011-05-16 11:41:11.763256750 +0200
-+++ gpsd-2.96/Makefile.am  2011-05-16 11:44:02.742119221 +0200
-@@ -130,7 +130,7 @@
- libgps_VERSION_REVISION = 0
- libgps_VERSION_AGE = 0
- libgps_VERSION_NUMBER = 
$(libgps_VERSION_CURRENT):$(libgps_VERSION_REVISION):$(libgps_VERSION_AGE)
--libgps_la_LDFLAGS = -version-number $(libgps_VERSION_NUMBER)
-+libgps_la_LDFLAGS = $(LDFLAGS) -version-number $(libgps_VERSION_NUMBER)
- lib_LTLIBRARIES = libgps.la libgpsd.la
- 
- libgps_SONAME = $(shell expr $(libgps_VERSION_CURRENT) - 
$(libgps_VERSION_AGE))
-@@ -425,7 +425,7 @@
- # Build test_qgpsmm
- #
- test_qgpsmm_SOURCES = test_gpsmm.cpp
--test_qgpsmm_LDFLAGS = -Wl,-rpath,$(srcdir)/libQgpsmm/binaries
-+test_qgpsmm_LDFLAGS = $(LDFLAGS) -Wl,-rpath,$(srcdir)/libQgpsmm/binaries
- test_qgpsmm_LDADD = $(LIBC) $(LIBUSB) 

[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/calc/files/

2017-02-01 Thread David Seifert
commit: bf941305ecf017155f944048a6ca61a519d352fe
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Feb  1 18:39:01 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:38:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf941305

sci-mathematics/calc: remove unused patch

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

 .../calc/files/calc-2.12.4.0-prefix.patch  | 96 --
 1 file changed, 96 deletions(-)

diff --git a/sci-mathematics/calc/files/calc-2.12.4.0-prefix.patch 
b/sci-mathematics/calc/files/calc-2.12.4.0-prefix.patch
deleted file mode 100644
index 68d0572..
--- a/sci-mathematics/calc/files/calc-2.12.4.0-prefix.patch
+++ /dev/null
@@ -1,96 +0,0 @@
-diff --git a/Makefile b/Makefile
-index cc84386..b526442 100644
 a/Makefile
-+++ b/Makefile
-@@ -959,7 +959,7 @@ LD_DEBUG=
- #
- # If in doubt, use CALC_ENV= CALCPATH=./cal LD_LIBRARY_PATH=.:./custom
- #
--CALC_ENV= CALCPATH=./cal LD_LIBRARY_PATH=.
-+CALC_ENV= CALCPATH=./cal LD_LIBRARY_PATH=. DYLD_LIBRARY_PATH=.
- #CALC_ENV= CALCPATH=./cal MALLOC_VERBOSE=1 MALLOC_TRACING=1 \
- #   MALLOC_FASTCHK=1 MALLOC_FULLWARN=1 LD_LIBRARY_PATH=.:./custom
- #CALC_ENV= CALCPATH=./cal MALLOC_VERBOSE=1 MALLOC_TRACING=1 \
-@@ -1143,9 +1143,7 @@ ifeq ($(target),Linux)
- BLD_TYPE= calc-dynamic-only
- #
- CC_SHARE= -fPIC
--DEFAULT_LIB_INSTALL_PATH= ${PWD}:/lib:/usr/lib:${LIBDIR}:/usr/local/lib
--LD_SHARE= "-Wl,-rpath,${DEFAULT_LIB_INSTALL_PATH}" \
--"-Wl,-rpath-link,${DEFAULT_LIB_INSTALL_PATH}"
-+LD_SHARE=
- LIBCALC_SHLIB= -shared "-Wl,-soname,libcalc${LIB_EXT_VERSION}"
- ifdef ALLOW_CUSTOM
- LIBCUSTCALC_SHLIB= -shared "-Wl,-soname,libcustcalc${LIB_EXT_VERSION}"
-@@ -1177,9 +1175,8 @@ ifeq ($(target),Darwin)
- BLD_TYPE= calc-dynamic-only
- #
- CC_SHARE= -fPIC
--DEFAULT_LIB_INSTALL_PATH= ${PWD}:${LIBDIR}:/usr/local/lib
- LD_SHARE= ${DARWIN_ARCH}
--LIBCALC_SHLIB= -single_module -undefined dynamic_lookup -dynamiclib
-+LIBCALC_SHLIB= -single_module -undefined dynamic_lookup -dynamiclib 
-install_name ${LIBDIR}/libcalc${LIB_EXT_VERSION}
- ifdef ALLOW_CUSTOM
- LIBCUSTCALC_SHLIB= -single_module -undefined dynamic_lookup -dynamiclib
- else
-@@ -1196,7 +1193,7 @@ CCWERR=
- CCOPT= ${DEBUG}
- CCMISC= ${DARWIN_ARCH}
- #
--LCC= MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET} gcc
-+LCC= gcc
- CC= ${PURIFY} ${LCC} ${CCWERR}
- #
- # Darmin dynamic shared lib filenames
-@@ -1211,7 +1208,6 @@ LDCONFIG:=
- # DARWIN_ARCH= -arch i386 # Intel binary
- # DARWIN_ARCH= -arch ppc  # PPC binary
- DARWIN_ARCH=  # native binary
--MACOSX_DEPLOYMENT_TARGET=10.4
- #
- endif
- 
-@@ -1230,9 +1226,7 @@ ifeq ($(target),FreeBSD)
- BLD_TYPE= calc-dynamic-only
- #
- CC_SHARE= -fPIC
--DEFAULT_LIB_INSTALL_PATH= ${PWD}:/lib:/usr/lib:${LIBDIR}:/usr/local/lib
--LD_SHARE= "-Wl,-rpath,${DEFAULT_LIB_INSTALL_PATH}" \
--"-Wl,-rpath-link,${DEFAULT_LIB_INSTALL_PATH}"
-+LD_SHARE=
- LIBCALC_SHLIB= -shared "-Wl,-soname,libcalc${LIB_EXT_VERSION}"
- ifdef ALLOW_CUSTOM
- LIBCUSTCALC_SHLIB= -shared "-Wl,-soname,libcustcalc${LIB_EXT_VERSION}"
-@@ -1272,9 +1266,7 @@ ifeq ($(target),OpenBSD)
- BLD_TYPE= calc-dynamic-only
- #
- CC_SHARE= -fPIC
--DEFAULT_LIB_INSTALL_PATH= ${PWD}:/lib:/usr/lib:${LIBDIR}:/usr/local/lib
--LD_SHARE= "-Wl,-rpath,${DEFAULT_LIB_INSTALL_PATH}" \
--"-Wl,-rpath-link,${DEFAULT_LIB_INSTALL_PATH}"
-+LD_SHARE= 
- LIBCALC_SHLIB= -shared "-Wl,-soname,libcalc${LIB_EXT_VERSION}"
- ifdef ALLOW_CUSTOM
- LIBCUSTCALC_SHLIB= -shared "-Wl,-soname,libcustcalc${LIB_EXT_VERSION}"
-@@ -1347,9 +1339,7 @@ ifeq ($(target),simple)
- BLD_TYPE= calc-static-only
- #
- CC_SHARE= -fPIC
--DEFAULT_LIB_INSTALL_PATH= ${PWD}:/lib:/usr/lib:${LIBDIR}:/usr/local/lib
--LD_SHARE= "-Wl,-rpath,${DEFAULT_LIB_INSTALL_PATH}" \
--"-Wl,-rpath-link,${DEFAULT_LIB_INSTALL_PATH}"
-+LD_SHARE= 
- LIBCALC_SHLIB= -shared "-Wl,-soname,libcalc${LIB_EXT_VERSION}"
- LIBCUSTCALC_SHLIB= -shared "-Wl,-soname,libcustcalc${LIB_EXT_VERSION}"
- #
-@@ -1403,9 +1393,7 @@ CALCRC= ${CALC_SHAREDIR}/startup;~/.calcrc;./.calcinit
- BLD_TYPE= calc-static-only
- #
- CC_SHARE= -fPIC
--DEFAULT_LIB_INSTALL_PATH= ${PWD}:/lib:/usr/lib:${LIBDIR}:/usr/local/lib
--LD_SHARE= "-Wl,-rpath,${DEFAULT_LIB_INSTALL_PATH}" \
--"-Wl,-rpath-link,${DEFAULT_LIB_INSTALL_PATH}"
-+LD_SHARE= 
- LIBCALC_SHLIB= -shared "-Wl,-soname,libcalc${LIB_EXT_VERSION}"
- ifdef ALLOW_CUSTOM
- LIBCUSTCALC_SHLIB= -shared "-Wl,-soname,libcustcalc${LIB_EXT_VERSION}"



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/glpk/files/

2017-02-01 Thread David Seifert
commit: c8e9d2336ab0cd6dd0fc18d3f9f4b17375070528
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Feb  1 18:41:11 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:39:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8e9d233

sci-mathematics/glpk: remove unused patch

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

 .../files/glpk-4.53-debundle-system-libs.patch | 87 --
 1 file changed, 87 deletions(-)

diff --git a/sci-mathematics/glpk/files/glpk-4.53-debundle-system-libs.patch 
b/sci-mathematics/glpk/files/glpk-4.53-debundle-system-libs.patch
deleted file mode 100644
index 326e613..
--- a/sci-mathematics/glpk/files/glpk-4.53-debundle-system-libs.patch
+++ /dev/null
@@ -1,87 +0,0 @@
-Remove suitesparse (camd,colamd) and zlib bundles
-
 configure.ac.orig  2014-03-24 10:40:24.406906149 -0700
-+++ configure.ac   2014-03-24 10:41:15.637207696 -0700
-@@ -140,6 +140,13 @@
-AC_MSG_RESULT([no])
- fi
- 
-+AC_CHECK_LIB([amd], [amd_1])
-+AC_CHECK_LIB([colamd], [colamd])
-+
-+AC_CHECK_HEADER([amd.h])
-+
-+AC_CHECK_LIB([z], [gzopen])
-+
- AC_CONFIG_FILES(
-[src/Makefile examples/Makefile Makefile])
- AC_OUTPUT
 src/Makefile.am.orig   2014-03-24 10:40:24.413906191 -0700
-+++ src/Makefile.am2014-03-24 10:41:15.636207690 -0700
-@@ -6,15 +6,12 @@
- 
- libglpk_la_CPPFLAGS = \
- -I$(srcdir) \
---I$(srcdir)/amd \
- -I$(srcdir)/bflib \
- -I$(srcdir)/cglib \
---I$(srcdir)/colamd \
- -I$(srcdir)/env \
- -I$(srcdir)/minisat \
- -I$(srcdir)/misc \
---I$(srcdir)/proxy \
---I$(srcdir)/zlib
-+-I$(srcdir)/proxy
- 
- libglpk_la_LDFLAGS = \
- -version-info 37:0:1 \
-@@ -93,18 +90,6 @@
- glpssx02.c \
- glptsp.c \
- lux.c \
--amd/amd_1.c \
--amd/amd_2.c \
--amd/amd_aat.c \
--amd/amd_control.c \
--amd/amd_defaults.c \
--amd/amd_dump.c \
--amd/amd_info.c \
--amd/amd_order.c \
--amd/amd_post_tree.c \
--amd/amd_postorder.c \
--amd/amd_preprocess.c \
--amd/amd_valid.c \
- bflib/fhv.c \
- bflib/fhvint.c \
- bflib/ifu.c \
-@@ -114,7 +99,6 @@
- bflib/sva.c \
- cglib/cfg.c \
- cglib/cfg1.c \
--colamd/colamd.c \
- env/alloc.c \
- env/dlsup.c \
- env/env.c \
-@@ -147,21 +131,6 @@
- misc/wclique.c \
- misc/wclique1.c \
- proxy/proxy.c \
--proxy/proxy1.c \
--zlib/adler32.c \
--zlib/compress.c \
--zlib/crc32.c \
--zlib/deflate.c \
--zlib/gzclose.c \
--zlib/gzlib.c \
--zlib/gzread.c \
--zlib/gzwrite.c \
--zlib/inffast.c \
--zlib/inflate.c \
--zlib/inftrees.c \
--zlib/trees.c \
--zlib/uncompr.c \
--zlib/zio.c \
--zlib/zutil.c
-+proxy/proxy1.c
- 
- ## eof ##



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/freemat/files/

2017-02-01 Thread David Seifert
commit: 5023dc2db5f79ef9d2339417ee606f44490ce08b
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Feb  1 18:40:15 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:39:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5023dc2d

sci-mathematics/freemat: remove unused patches

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

 .../freemat/files/freemat-4.0-gcc45.patch  | 208 -
 .../files/freemat-4.0-no_implicit_GLU.patch|  14 --
 .../freemat/files/freemat-4.1-have_fftw.patch  |  78 
 .../freemat/files/freemat-4.1-local_libffi.patch   |  13 --
 .../freemat/files/freemat-4.1-portaudio.patch  |  10 -
 .../freemat/files/freemat-4.1-use_llvm.patch   |  29 ---
 6 files changed, 352 deletions(-)

diff --git a/sci-mathematics/freemat/files/freemat-4.0-gcc45.patch 
b/sci-mathematics/freemat/files/freemat-4.0-gcc45.patch
deleted file mode 100644
index 7492e16..
--- a/sci-mathematics/freemat/files/freemat-4.0-gcc45.patch
+++ /dev/null
@@ -1,208 +0,0 @@
-Fix building with gcc-4.5
-
-http://bugs.gentoo.org/show_bug.cgi?id=318045
-
 libs/libFreeMat/Array.cpp
-+++ libs/libFreeMat/Array.cpp
-@@ -465,7 +465,7 @@
- 
- void Array::set(const QString& field, ArrayVector& data) {
-   if (isEmpty() && m_type.Class != Struct)
--*this = Array::Array(Struct);
-+*this = Array(Struct);
-   if (m_type.Class != Struct) throw Exception("Unsupported type for 
A.field=B");
-   StructArray (structPtr());
-   if (isEmpty()) 
 libs/libFreeMat/Math.cpp
-+++ libs/libFreeMat/Math.cpp
-@@ -1590,9 +1590,9 @@
- 
- Array Not(const Array& A) {
-   if (A.isScalar())
--return Array::Array(!A.toClass(Bool).constRealScalar());
-+return Array(!A.toClass(Bool).constRealScalar());
-   const Array (A.toClass(Bool));
--  return Array::Array(Apply(Abool.constReal(),notfunc));
-+  return Array(Apply(Abool.constReal(),notfunc));
- }
- 
- Array Plus(const Array& A) {
 libs/libFreeMat/Operators.hpp
-+++ libs/libFreeMat/Operators.hpp
-@@ -142,11 +142,11 @@
-   if (!Bcast.isScalar()) Bcast = Bcast.asDenseArray();
-   if (Acast.isScalar() && Bcast.isScalar()) {
- if (Acast.allReal() && Bcast.allReal()) {
--  F = Array::Array(Op::func(Acast.constRealScalar(),
-+  F = Array(Op::func(Acast.constRealScalar(),
-   Bcast.constRealScalar()));
- } else {
-   Acast.forceComplex(); Bcast.forceComplex();
--  F = Array::Array(T(0),T(0));
-+  F = Array(T(0),T(0));
-   Op::func(Acast.constRealScalar(),
-  Acast.constImagScalar(),
-  Bcast.constRealScalar(),
-@@ -155,7 +155,7 @@
- }
-   } else if (Acast.isScalar()) {
- if (Acast.allReal() && Bcast.allReal()) {
--  F = Array::Array(Tclass,Bcast.dimensions());
-+  F = Array(Tclass,Bcast.dimensions());
-   T* ret = F.real().data();
-   const T& Ap = Acast.constRealScalar();
-   const T* Bp = Bcast.constReal().constData();
-@@ -163,7 +163,7 @@
-   for (uint64 i=0;i

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

2017-02-01 Thread David Seifert
commit: 40732adec0f65e53ce8d5dc651a900788541243d
Author: Lukáš Hrázký  email  cz>
AuthorDate: Sat Jan 28 14:23:35 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:41:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40732ade

media-sound/mpd: use upstream systemd user service

Copying over the system service stopped working after upstream changes,
a user service file was provided instead.

https://bugs.musicpd.org/view.php?id=4608
Closes: https://github.com/gentoo/gentoo/pull/3181

 media-sound/mpd/mpd-0.19.21-r1.ebuild | 254 ++
 1 file changed, 254 insertions(+)

diff --git a/media-sound/mpd/mpd-0.19.21-r1.ebuild 
b/media-sound/mpd/mpd-0.19.21-r1.ebuild
new file mode 100644
index ..5ef50bf
--- /dev/null
+++ b/media-sound/mpd/mpd-0.19.21-r1.ebuild
@@ -0,0 +1,254 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools eutils flag-o-matic linux-info multilib systemd user
+
+DESCRIPTION="The Music Player Daemon (mpd)"
+HOMEPAGE="https://www.musicpd.org;
+SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd ~x64-macos"
+IUSE="adplug +alsa ao audiofile bzip2 cdio +curl debug +eventfd expat faad
+   +fifo +ffmpeg flac fluidsynth +glib gme +icu +id3tag +inotify +ipv6 jack
+   lame mms libav libmpdclient libsamplerate libsoxr +mad mikmod modplug
+   mpg123 musepack +network nfs ogg openal opus oss pipe pulseaudio 
recorder
+   samba selinux sid +signalfd sndfile soundcloud sqlite systemd tcpd 
twolame
+   unicode upnp vorbis wavpack wildmidi zeroconf zip zlib"
+
+OUTPUT_PLUGINS="alsa ao fifo jack network openal oss pipe pulseaudio recorder"
+DECODER_PLUGINS="adplug audiofile faad ffmpeg flac fluidsynth mad mikmod
+   modplug mpg123 musepack ogg flac sid vorbis wavpack wildmidi"
+ENCODER_PLUGINS="audiofile flac lame twolame vorbis"
+
+REQUIRED_USE="|| ( ${OUTPUT_PLUGINS} )
+   || ( ${DECODER_PLUGINS} )
+   ao? ( glib )
+   gme? ( glib )
+   jack? ( glib )
+   network? ( || ( ${ENCODER_PLUGINS} )
+   glib )
+   recorder? ( || ( ${ENCODER_PLUGINS} ) )
+   sid? ( glib )
+   soundcloud? ( glib )
+   sqlite? ( glib )
+   opus? ( ogg )
+   upnp? ( expat )
+   vorbis? ( glib )
+   wavpack? ( glib )"
+
+CDEPEND="!=media-libs/game-music-emu-0.6.0_pre20120802 )
+   icu? ( dev-libs/icu:= )
+   id3tag? ( media-libs/libid3tag )
+   jack? ( media-sound/jack-audio-connection-kit )
+   lame? ( network? ( media-sound/lame ) )
+   libmpdclient? ( media-libs/libmpdclient )
+   libsamplerate? ( media-libs/libsamplerate )
+   mad? ( media-libs/libmad )
+   mikmod? ( media-libs/libmikmod:0 )
+   mms? ( media-libs/libmms )
+   modplug? ( media-libs/libmodplug )
+   mpg123? ( >=media-sound/mpg123-1.12.2 )
+   musepack? ( media-sound/musepack-tools )
+   network? ( >=media-libs/libshout-2
+   !lame? ( !vorbis? ( media-libs/libvorbis ) ) )
+   nfs? ( net-fs/libnfs )
+   ogg? ( media-libs/libogg )
+   openal? ( media-libs/openal )
+   opus? ( media-libs/opus )
+   pulseaudio? ( media-sound/pulseaudio )
+   samba? ( || ( =net-fs/samba-4.0.25 ) )
+   sid? ( || ( media-libs/libsidplay:2 media-libs/libsidplayfp ) )
+   sndfile? ( media-libs/libsndfile )
+   soundcloud? ( >=dev-libs/yajl-2 )
+   libsoxr? ( media-libs/soxr )
+   sqlite? ( dev-db/sqlite:3 )
+   systemd? ( sys-apps/systemd )
+   tcpd? ( sys-apps/tcp-wrappers )
+   twolame? ( media-sound/twolame )
+   upnp? ( net-libs/libupnp )
+   vorbis? ( media-libs/libvorbis )
+   wavpack? ( media-sound/wavpack )
+   wildmidi? ( media-sound/wildmidi )
+   zeroconf? ( net-dns/avahi[dbus] )
+   zip? ( dev-libs/zziplib )
+   zlib? ( sys-libs/zlib )"
+DEPEND="${CDEPEND}
+   dev-libs/boost
+   virtual/pkgconfig"
+RDEPEND="${CDEPEND}
+   selinux? ( sec-policy/selinux-mpd )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.18.conf.patch
+   "${FILESDIR}"/${PN}-0.9.15-systemd.patch # bug 584742
+)
+
+pkg_setup() {
+   use network || ewarn "Icecast and Shoutcast streaming needs networking."
+   use fluidsynth && ewarn "Using fluidsynth is discouraged by upstream."
+
+   enewuser mpd "" "" "/var/lib/mpd" audio
+
+   if use eventfd; then
+   CONFIG_CHECK+=" ~EVENTFD"
+   ERROR_EVENTFD="${P} requires eventfd in-kernel support."
+   fi
+   if use signalfd; then
+   CONFIG_CHECK+=" ~SIGNALFD"
+   ERROR_SIGNALFD="${P} requires signalfd in-kernel support."
+   fi
+   if use inotify; then
+   CONFIG_CHECK+=" ~INOTIFY_USER"
+   ERROR_INOTIFY_USER="${P} requires 

[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/normaliz/files/

2017-02-01 Thread David Seifert
commit: ef2abb4669103067db05bf61bca5c179c9c2c364
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Feb  1 18:44:24 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:39:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef2abb46

sci-mathematics/normaliz: remove unused patch

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

 .../files/normaliz-3.0.0-gmp61-compat.patch| 70 --
 1 file changed, 70 deletions(-)

diff --git a/sci-mathematics/normaliz/files/normaliz-3.0.0-gmp61-compat.patch 
b/sci-mathematics/normaliz/files/normaliz-3.0.0-gmp61-compat.patch
deleted file mode 100644
index cf6f81f..
--- a/sci-mathematics/normaliz/files/normaliz-3.0.0-gmp61-compat.patch
+++ /dev/null
@@ -1,70 +0,0 @@
-diff --git a/source/libnormaliz/HilbertSeries.cpp 
b/source/libnormaliz/HilbertSeries.cpp
-index 311b839..47a84cd 100644
 a/source/libnormaliz/HilbertSeries.cpp
-+++ b/source/libnormaliz/HilbertSeries.cpp
-@@ -399,7 +399,7 @@ void HilbertSeries::computeHilbertQuasiPolynomial() const {
- //divide by gcd //TODO operate directly on vector
- Matrix QP(quasi_poly);
- mpz_class g = QP.matrix_gcd();
--g = gcd(g,quasi_denom);
-+g = libnormaliz::gcd(g,quasi_denom);
- quasi_denom /= g;
- QP.scalar_division(g);
- //we use a normed shift, so that the cylcic shift % period always yields 
a non-negative integer
-diff --git a/source/libnormaliz/matrix.cpp b/source/libnormaliz/matrix.cpp
-index d643eca..ae7684c 100644
 a/source/libnormaliz/matrix.cpp
-+++ b/source/libnormaliz/matrix.cpp
-@@ -735,7 +735,7 @@ Integer Matrix::matrix_gcd() const{
- Integer g=0,h;
- for (size_t i = 0; i  1) {
- c /= g;
- B.scalar_division(g);
-diff --git a/source/libnormaliz/vector_operations.cpp 
b/source/libnormaliz/vector_operations.cpp
-index 7c676e9..7103775 100644
 a/source/libnormaliz/vector_operations.cpp
-+++ b/source/libnormaliz/vector_operations.cpp
-@@ -240,7 +240,7 @@ Integer v_gcd(const vector& v){
- size_t i, size=v.size();
- Integer g=0;
- for (i = 0; i < size; i++) {
--g=gcd(g,v[i]);
-+g = libnormaliz::gcd(g,v[i]);
- if (g==1) {
- return 1;
- }
-@@ -255,7 +255,7 @@ Integer v_lcm(const vector& v){
- size_t i,size=v.size();
- Integer g=1;
- for (i = 0; i < size; i++) {
--g=lcm(g,v[i]);
-+g = libnormaliz::lcm(g,v[i]);
- if (g==0) {
- return 0;
- }



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

2017-02-01 Thread David Seifert
commit: 88d063fca542cf1a5b271ee80bf97087107de261
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 31 18:13:32 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:40:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88d063fc

sci-geosciences/viking: remove unused patches

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

 sci-geosciences/viking/files/1.3-autoreconf.patch  | 12 -
 .../viking/files/viking-1.5.1-gpsd-3.13.patch  | 53 --
 2 files changed, 65 deletions(-)

diff --git a/sci-geosciences/viking/files/1.3-autoreconf.patch 
b/sci-geosciences/viking/files/1.3-autoreconf.patch
deleted file mode 100644
index c8ddd6f..
--- a/sci-geosciences/viking/files/1.3-autoreconf.patch
+++ /dev/null
@@ -1,12 +0,0 @@
 configure.ac.orig   2012-05-31 09:40:33.543090992 +0200
-+++ configure.ac2012-05-31 09:40:44.372640811 +0200
-@@ -350,9 +350,6 @@
-  help/Makefile
-  doc/Makefile
-  doc/examples/Makefile])
--if test x$enable_gtk_doc = xyes; then
--AC_CONFIG_FILES([doc/reference/Makefile])
--fi
- AC_OUTPUT([
-   viking.spec
-   ])

diff --git a/sci-geosciences/viking/files/viking-1.5.1-gpsd-3.13.patch 
b/sci-geosciences/viking/files/viking-1.5.1-gpsd-3.13.patch
deleted file mode 100644
index d559746..
--- a/sci-geosciences/viking/files/viking-1.5.1-gpsd-3.13.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-commit 25043ca24a55468dc9eeaa7335a24d132c51b07d
-Author: Rob Norris 
-Date:   Mon Mar 9 23:25:15 2015 +
-
-SF Bugs#117: Confirm capability with GPSD_API_MAJOR_VERSION=6 (gpsd 3.12 / 
libgps.so.22)
-
-diff --git a/src/vikgpslayer.c b/src/vikgpslayer.c
-index daf6d42..ca4be29 100644
 a/src/vikgpslayer.c
-+++ b/src/vikgpslayer.c
-@@ -1673,7 +1673,7 @@ static gboolean gpsd_data_available(GIOChannel *source, 
GIOCondition condition,
-   if (condition == G_IO_IN) {
- #if GPSD_API_MAJOR_VERSION == 3 || GPSD_API_MAJOR_VERSION == 4
- if (!gps_poll(>vgpsd->gpsd)) {
--#elif GPSD_API_MAJOR_VERSION == 5
-+#elif GPSD_API_MAJOR_VERSION == 5 || GPSD_API_MAJOR_VERSION == 6
- if (gps_read(>vgpsd->gpsd) > -1) {
-   // Reuse old function to perform operations on the new GPS data
-   gpsd_raw_hook(vgl->vgpsd, NULL);
-@@ -1718,7 +1718,7 @@ static gboolean rt_gpsd_try_connect(gpointer *data)
-   vgl->vgpsd = g_malloc(sizeof(VglGpsd));
- 
-   if (gps_open_r(vgl->gpsd_host, vgl->gpsd_port, /*(struct gps_data_t 
*)*/vgl->vgpsd) != 0) {
--#elif GPSD_API_MAJOR_VERSION == 5
-+#elif GPSD_API_MAJOR_VERSION == 5 || GPSD_API_MAJOR_VERSION == 6
-   vgl->vgpsd = g_malloc(sizeof(VglGpsd));
-   if (gps_open(vgl->gpsd_host, vgl->gpsd_port, >vgpsd->gpsd) != 0) {
- #else
-@@ -1757,7 +1757,7 @@ static gboolean rt_gpsd_try_connect(gpointer *data)
- #if GPSD_API_MAJOR_VERSION == 3
-   gps_query(>vgpsd->gpsd, "w+x");
- #endif
--#if GPSD_API_MAJOR_VERSION == 4 || GPSD_API_MAJOR_VERSION == 5
-+#if GPSD_API_MAJOR_VERSION == 4 || GPSD_API_MAJOR_VERSION == 5 || 
GPSD_API_MAJOR_VERSION == 6
-   gps_stream(>vgpsd->gpsd, WATCH_ENABLE, NULL);
- #endif
- 
-@@ -1813,13 +1813,13 @@ static void rt_gpsd_disconnect(VikGpsLayer *vgl)
- vgl->realtime_io_channel = NULL;
-   }
-   if (vgl->vgpsd) {
--#if GPSD_API_MAJOR_VERSION == 4 || GPSD_API_MAJOR_VERSION == 5
-+#if GPSD_API_MAJOR_VERSION == 4 || GPSD_API_MAJOR_VERSION == 5 || 
GPSD_API_MAJOR_VERSION == 6
- gps_stream(>vgpsd->gpsd, WATCH_DISABLE, NULL);
- #endif
- gps_close(>vgpsd->gpsd);
- #if GPSD_API_MAJOR_VERSION == 3
- free(vgl->vgpsd);
--#elif GPSD_API_MAJOR_VERSION == 4 || GPSD_API_MAJOR_VERSION == 5
-+#elif GPSD_API_MAJOR_VERSION == 4 || GPSD_API_MAJOR_VERSION == 5 || 
GPSD_API_MAJOR_VERSION == 6
- g_free(vgl->vgpsd);
- #endif
- vgl->vgpsd = NULL;



[gentoo-commits] repo/gentoo:master commit in: sci-libs/libcore/files/

2017-02-01 Thread David Seifert
commit: cce4991b1c1b2f8a8ec9ebbe16608db0ebe2041c
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 31 18:14:25 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:40:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cce4991b

sci-libs/libcore: remove unused patches

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

 sci-libs/libcore/files/libcore-1.7.patch   | 96 -
 .../libcore/files/libcore-2.0.8-makefiles.patch| 97 --
 2 files changed, 193 deletions(-)

diff --git a/sci-libs/libcore/files/libcore-1.7.patch 
b/sci-libs/libcore/files/libcore-1.7.patch
deleted file mode 100644
index dcc2c77..
--- a/sci-libs/libcore/files/libcore-1.7.patch
+++ /dev/null
@@ -1,96 +0,0 @@
 src/Makefile   2004-11-11 19:10:53.0 +0100
-+++ src/Makefile   2006-10-12 20:25:40.0 +0200
-@@ -7,7 +7,7 @@
- 
- CORE_PATH=..
- 
--INCLUDE=-I${CORE_PATH}/inc -I${CORE_PATH}/gmp/include
-+INCLUDE=-I${CORE_PATH}/inc
- 
- # VAR indicates variants of the Core library
- # E.g., if VAR=(empty) then we compile the release version.
-@@ -31,7 +31,8 @@
- 
- # The following library will be built:
- CORE_LIB=$(CORE_PATH)/lib/libcore++${VAR}.a
--CORE_SHARED_LIB=$(CORE_PATH)/lib/libcore++${VAR}.so
-+CORE_SHARED_LIB_NAME=libcore++${VAR}.so
-+CORE_SHARED_LIB=$(CORE_PATH)/lib/$(CORE_SHARED_LIB_NAME)
- 
- TARGET=$(CORE_LIB)
- 
-@@ -49,7 +50,7 @@
-   $(AR) $@ $?
- 
- ${CORE_SHARED_LIB}:   $(EXPROBJS)
--  $(CXX) $(CORE_LDFLAGS) -o $@ $^
-+  $(CXX) $(LDFLAGS) $(CORE_LDFLAGS) -Wl,-soname,$(CORE_SHARED_LIB_NAME).1 
-o $@ $^
- 
- %${VAR}.o:%.cpp
- # Aug 8, 2004 by Chee (TEMP CHANGE! FOR DEBUGGING)
 ext/Makefile   2004-11-11 19:10:55.0 +0100
-+++ ext/Makefile   2006-10-12 20:26:00.0 +0200
-@@ -13,7 +13,7 @@
- # =
- 
- CORE_PATH=..
--INCLUDE=-I${CORE_PATH}/inc -I${CORE_PATH}/gmp/include
-+INCLUDE=-I${CORE_PATH}/inc
- 
- MODULES := linearAlgebra geometry2d geometry3d
- 
-@@ -29,9 +29,12 @@
- COREX_LIB_LEVEL3=${CORE_PATH}/lib/libcorex++$(VAR)_level3.a
- COREX_LIB_LEVEL2=${CORE_PATH}/lib/libcorex++$(VAR)_level2.a
- COREX_LIB_LEVEL1=${CORE_PATH}/lib/libcorex++$(VAR)_level1.a
--COREX_SHARED_LIB_LEVEL3=${CORE_PATH}/lib/libcorex++$(VAR)_level3.so
--COREX_SHARED_LIB_LEVEL2=${CORE_PATH}/lib/libcorex++$(VAR)_level2.so
--COREX_SHARED_LIB_LEVEL1=${CORE_PATH}/lib/libcorex++$(VAR)_level1.so
-+COREX_SHARED_LIB_LEVEL3_NAME=libcorex++$(VAR)_level3.so
-+COREX_SHARED_LIB_LEVEL2_NAME=libcorex++$(VAR)_level2.so
-+COREX_SHARED_LIB_LEVEL1_NAME=libcorex++$(VAR)_level1.so
-+COREX_SHARED_LIB_LEVEL3=${CORE_PATH}/lib/$(COREX_SHARED_LIB_LEVEL3_NAME)
-+COREX_SHARED_LIB_LEVEL2=${CORE_PATH}/lib/$(COREX_SHARED_LIB_LEVEL2_NAME)
-+COREX_SHARED_LIB_LEVEL1=${CORE_PATH}/lib/$(COREX_SHARED_LIB_LEVEL1_NAME)
- 
- TARGET=${COREX_LIB_LEVEL3} ${COREX_LIB_LEVEL2} ${COREX_LIB_LEVEL1}
- 
-@@ -59,7 +62,7 @@
- 
- ${COREX_SHARED_LIB_LEVEL3}: ${L3_OBJS}
-   -@rm -rf $@ 
--  $(CXX) $(CORE_LDFLAGS) -o $@ $?
-+  $(CXX) $(LDFLAGS) $(CORE_LDFLAGS) 
-Wl,-soname,$(COREX_SHARED_LIB_LEVEL3_NAME).1 -o $@ $?
- 
- ${COREX_LIB_LEVEL2}: ${L2_OBJS}
-   -@rm -rf $@ 
-@@ -67,7 +70,7 @@
- 
- ${COREX_SHARED_LIB_LEVEL2}: ${L2_OBJS}
-   -@rm -rf $@ 
--  $(CXX) $(CORE_LDFLAGS) -o $@ $?
-+  $(CXX) $(LDFLAGS) $(CORE_LDFLAGS) 
-Wl,-soname,$(COREX_SHARED_LIB_LEVEL2_NAME).1 -o $@ $?
- 
- ${COREX_LIB_LEVEL1}: ${L1_OBJS}
-   -@rm -rf $@ 
-@@ -75,16 +78,16 @@
- 
- ${COREX_SHARED_LIB_LEVEL1}: ${L1_OBJS}
-   -@rm -rf $@ 
--  $(CXX) $(CORE_LDFLAGS) -o $@ $?
-+  $(CXX) $(LDFLAGS) $(CORE_LDFLAGS) 
-Wl,-soname,$(COREX_SHARED_LIB_LEVEL1_NAME).1 -o $@ $?
- 
- %_level3.o:   %.cpp
--  ${CXX} $(CORE_CXXFLAGS) -DCORE_LEVEL=3 $(INCLUDE) -c $< -o $@
-+  ${CXX} -ffriend-injection -fpermissive $(CORE_CXXFLAGS) -DCORE_LEVEL=3 
$(INCLUDE) -c $< -o $@
- 
- %_level2.o:   %.cpp
--  ${CXX} $(CORE_CXXFLAGS) -DCORE_LEVEL=2 $(INCLUDE) -c $< -o $@
-+  ${CXX} -ffriend-injection -fpermissive $(CORE_CXXFLAGS) -DCORE_LEVEL=2 
$(INCLUDE) -c $< -o $@
- 
- %_level1.o:   %.cpp
--  ${CXX} $(CORE_CXXFLAGS) -DCORE_LEVEL=1 $(INCLUDE) -c $< -o $@
-+  ${CXX} -ffriend-injection -fpermissive $(CORE_CXXFLAGS) -DCORE_LEVEL=1 
$(INCLUDE) -c $< -o $@
- 
- clean:
-   -@test -z "*.o" || rm -f *.o

diff --git a/sci-libs/libcore/files/libcore-2.0.8-makefiles.patch 
b/sci-libs/libcore/files/libcore-2.0.8-makefiles.patch
deleted file mode 100644
index 6980332..
--- a/sci-libs/libcore/files/libcore-2.0.8-makefiles.patch
+++ /dev/null
@@ -1,97 +0,0 @@
 src/Makefile.orig  2009-08-12 22:52:51.0 +0100
-+++ src/Makefile   2009-08-12 23:38:51.0 +0100
-@@ -7,7 +7,7 @@
- 
- CORE_PATH=..
- 
--INCLUDE=-I${CORE_PATH}/inc -I${CORE_PATH}/mpfr/include 
-I${CORE_PATH}/gmp/include
-+INCLUDE=-I${CORE_PATH}/inc
- 
- # VAR indicates 

[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/osm-gps-map/files/

2017-02-01 Thread David Seifert
commit: 8f0c08a8a1935f5834734fa1abe2fd0bf2bf6de9
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jan 31 18:13:01 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:39:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f0c08a8

sci-geosciences/osm-gps-map: remove unused patch

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

 .../files/osm-gps-map-0.7.3-disable-compiler-warnings.patch  | 12 
 1 file changed, 12 deletions(-)

diff --git 
a/sci-geosciences/osm-gps-map/files/osm-gps-map-0.7.3-disable-compiler-warnings.patch
 
b/sci-geosciences/osm-gps-map/files/osm-gps-map-0.7.3-disable-compiler-warnings.patch
deleted file mode 100644
index a91e091..
--- 
a/sci-geosciences/osm-gps-map/files/osm-gps-map-0.7.3-disable-compiler-warnings.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ur osm-gps-map-0.7.3/configure.ac osm-gps-map-0.7.3-new/configure.ac
 osm-gps-map-0.7.3/configure.ac 2011-03-19 10:55:04.0 +
-+++ osm-gps-map-0.7.3-new/configure.ac 2011-10-20 22:55:59.392575220 +
-@@ -62,7 +62,7 @@
- 
- GOBJECT_INTROSPECTION_CHECK([0.6.7])
- 
--GNOME_COMPILE_WARNINGS([maximum])
-+#GNOME_COMPILE_WARNINGS([maximum])
- GNOME_MAINTAINER_MODE_DEFINES
- 
- AC_OUTPUT([



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/isabelle/files/

2017-02-01 Thread David Seifert
commit: b9ce9015c6035daa3519c3ccca481bb51ffb7d32
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Feb  1 18:42:47 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:39:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9ce9015

sci-mathematics/isabelle: remove unused patch

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

 sci-mathematics/isabelle/files/isabelle-2016-libsha1.patch | 13 -
 1 file changed, 13 deletions(-)

diff --git a/sci-mathematics/isabelle/files/isabelle-2016-libsha1.patch 
b/sci-mathematics/isabelle/files/isabelle-2016-libsha1.patch
deleted file mode 100644
index 04dc405..
--- a/sci-mathematics/isabelle/files/isabelle-2016-libsha1.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: work/Isabelle2016/src/Pure/General/sha1_polyml.ML
-===
 work.orig/Isabelle2016/src/Pure/General/sha1_polyml.ML
-+++ work/Isabelle2016/src/Pure/General/sha1_polyml.ML
-@@ -18,7 +18,7 @@ fun hex_string arr i =
-   in (op ^) (apply2 hex_digit (Integer.div_mod (Char.ord c) 16)) end
- 
- val lib_path =
--  ("$ML_HOME/" ^ (if ML_System.platform_is_windows then "sha1.dll" else 
"libsha1.so"))
-+  ("$SHA1_HOME/" ^ (if ML_System.platform_is_windows then "sha1.dll" else 
"libsha1.so"))
-   |> Path.explode;
- 
- val STRING_INPUT_BYTES =



[gentoo-commits] repo/gentoo:master commit in: sci-libs/opencascade/files/

2017-02-01 Thread David Seifert
commit: 24245dad85ece9d1f34a3874a258271f2d73328f
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Feb  1 18:36:54 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:39:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24245dad

sci-libs/opencascade: remove unused file

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

 sci-libs/opencascade/files/env.sh.template | 40 --
 1 file changed, 40 deletions(-)

diff --git a/sci-libs/opencascade/files/env.sh.template 
b/sci-libs/opencascade/files/env.sh.template
deleted file mode 100644
index 146c86b..
--- a/sci-libs/opencascade/files/env.sh.template
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh -f
-
-export CASROOT=VAR_CASROOT
-
-if [ -z "PATH" ];
-then PATH=VAR_CASROOT/Linux/bin;
-else PATH=VAR_CASROOT/Linux/bin:$PATH;
-fi
-export PATH
-if [ -z "LD_LIBRARY_PATH" ];
-then LD_LIBRARY_PATH=VAR_CASROOT/Linux/lib;
-else LD_LIBRARY_PATH=VAR_CASROOT/Linux/lib:$LD_LIBRARY_PATH;
-fi
-export LD_LIBRARY_PATH
-export CSF_MDTVFontDirectory=VAR_CASROOT/src/FontMFT
-export CSF_LANGUAGE=us
-export MMGT_CLEAR=1
-export CSF_EXCEPTION_PROMPT=1
-export CSF_SHMessage=VAR_CASROOT/src/SHMessage
-export CSF_MDTVTexturesDirectory=VAR_CASROOT/src/Textures
-export CSF_XSMessage=VAR_CASROOT/src/XSMessage
-export CSF_StandardDefaults=VAR_CASROOT/src/StdResource
-export CSF_PluginDefaults=VAR_CASROOT/src/StdResource
-export CSF_XCAFDefaults=VAR_CASROOT/src/StdResource
-export CSF_StandardLiteDefaults=VAR_CASROOT/src/StdResource
-export CSF_GraphicShr=VAR_CASROOT/Linux/lib/libTKOpenGl.so
-export CSF_UnitsLexicon=VAR_CASROOT/src/UnitsAPI/Lexi_Expr.dat
-export CSF_UnitsDefinition=VAR_CASROOT/src/UnitsAPI/Units.dat
-export CSF_IGESDefaults=VAR_CASROOT/src/XSTEPResource
-export CSF_STEPDefaults=VAR_CASROOT/src/XSTEPResource
-export CSF_XmlOcafResource=VAR_CASROOT/src/XmlOcafResource
-export CSF_MIGRATION_TYPES=VAR_CASROOT/src/StdResource/MigrationSheet.txt
-
-export TCLHOME=VAR_SYS_BIN
-export TCLLIBPATH=VAR_SYS_LIB
-export ITK_LIBRARY=VAR_SYS_LIB/VAR_ITK
-export ITCL_LIBRARY=VAR_SYS_LIB/VAR_ITCL
-export TIX_LIBRARY=VAR_SYS_LIB/VAR_TIX
-export TK_LIBRARY=VAR_SYS_LIB/VAR_TK
-export TCL_LIBRARY=VAR_SYS_LIB/VAR_TCL



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/sha1-polyml/files/

2017-02-01 Thread David Seifert
commit: b99a4404cb1e672d31e66f4d26996f19af0cfdc9
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Feb  1 18:48:06 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:39:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b99a4404

sci-mathematics/sha1-polyml: remove unused patch

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

 .../files/sha1-polyml-5.6_p1-build.patch   | 60 --
 1 file changed, 60 deletions(-)

diff --git a/sci-mathematics/sha1-polyml/files/sha1-polyml-5.6_p1-build.patch 
b/sci-mathematics/sha1-polyml/files/sha1-polyml-5.6_p1-build.patch
deleted file mode 100644
index 86645b9..
--- a/sci-mathematics/sha1-polyml/files/sha1-polyml-5.6_p1-build.patch
+++ /dev/null
@@ -1,60 +0,0 @@
 polyml-5.6-1-orig/sha1/build   2015-09-09 03:05:54.0 +1000
-+++ polyml-5.6-1/sha1/build2016-12-28 19:10:36.148579115 +1100
-@@ -32,34 +32,34 @@
- 
- case "$target" in
-   x86-linux)
--CFLAGS="-fPIC -I. -m32"
--LDFLAGS="-fPIC -m32 -shared"
-+CFLAGS="-O2 -march=native -ggdb -fvar-tracking-assignments -fvar-tracking 
-pipe -fPIC -I. -m32"
-+LDFLAGS="-Wl,-O1 -Wl,--as-needed -fPIC -m32 -shared"
- library="$target/libsha1.so"
- test_sha1="test_sha1"
- ;;
-   x86_64-linux)
--CFLAGS="-fPIC -I. -m64"
--LDFLAGS="-fPIC -m64 -shared"
-+CFLAGS="-O2 -march=native -ggdb -fvar-tracking-assignments -fvar-tracking 
-pipe -fPIC -I. -m64"
-+LDFLAGS="-Wl,-O1 -Wl,--as-needed -fPIC -m64 -shared"
- library="$target/libsha1.so"
- test_sha1="test_sha1"
- ;;
-   x86-darwin)
- LD=libtool
--CFLAGS="-fPIC -I. -m32"
--LDFLAGS="-dynamic -lc"
-+CFLAGS="-O2 -march=native -ggdb -fvar-tracking-assignments -fvar-tracking 
-pipe -fPIC -I. -m32"
-+LDFLAGS="-Wl,-O1 -Wl,--as-needed -dynamic -lc"
- library="$target/libsha1.so"
- test_sha1="test_sha1"
- ;;
-   x86_64-darwin)
- LD=libtool
--CFLAGS="-fPIC -I. -m64"
--LDFLAGS="-dynamic -lc"
-+CFLAGS="-O2 -march=native -ggdb -fvar-tracking-assignments -fvar-tracking 
-pipe -fPIC -I. -m64"
-+LDFLAGS="-Wl,-O1 -Wl,--as-needed -dynamic -lc"
- library="$target/libsha1.so"
- test_sha1="test_sha1"
- ;;
-   x86-cygwin)
--CFLAGS="-I. -m32"
--LDFLAGS="-shared"
-+CFLAGS="-O2 -march=native -ggdb -fvar-tracking-assignments -fvar-tracking 
-pipe -I. -m32"
-+LDFLAGS="-Wl,-O1 -Wl,--as-needed -shared"
- library="$target/sha1.dll"
- test_sha1="test_sha1.exe"
- ;;
-@@ -105,10 +105,6 @@
- $CC $CFLAGS -o $test_sha1 test_sha1.c -ldl
- [ "$?" -ne 0 ] && { exit 1; }
- 
--echo "Running tests ..."
--./$test_sha1 $library
--[ "$?" -ne 0 ] && { exit 1; }
--
--rm test_sha1 sha1.o
-+exit 0
- 
- fi
-\ No newline at end of file



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/nusmv/files/

2017-02-01 Thread David Seifert
commit: 780124247d0b04dea820d7b44790893023ee650d
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Feb  1 18:44:53 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:39:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78012424

sci-mathematics/nusmv: remove unused patches

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

 .../nusmv/files/MiniSat_v1.14-optimizedlib.patch   | 44 ---
 .../nusmv/files/MiniSat_v1.14_gcc41.patch  | 92 --
 sci-mathematics/nusmv/files/cudd-no-pentium4.patch | 11 ---
 3 files changed, 147 deletions(-)

diff --git a/sci-mathematics/nusmv/files/MiniSat_v1.14-optimizedlib.patch 
b/sci-mathematics/nusmv/files/MiniSat_v1.14-optimizedlib.patch
deleted file mode 100644
index a291339..
--- a/sci-mathematics/nusmv/files/MiniSat_v1.14-optimizedlib.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-diff -Nuar MiniSat_v1.14/Makefile MiniSat_v1.14.new/Makefile
 MiniSat_v1.14/Makefile 2006-04-02 01:33:46.0 -0800
-+++ MiniSat_v1.14.new/Makefile 2006-04-02 01:31:39.0 -0800
-@@ -26,10 +26,11 @@
- RANLIB = ranlib
- AR = ar
- 
--.PHONY : ls s p d r build clean depend
-+.PHONY : lr ls s p d r build clean depend
- 
- s:WAY=standard
- ls:   WAY=standard
-+lr: WAY=release
- p:WAY=profile
- d:WAY=debug
- r:WAY=release
-@@ -38,8 +39,7 @@
- s:CFLAGS+=$(COPTIMIZE) -ggdb -D DEBUG
- p:CFLAGS+=$(COPTIMIZE) -pg -ggdb -D DEBUG
- d:CFLAGS+=-O0 -ggdb -D DEBUG
--r:CFLAGS+=$(COPTIMIZE) -D NDEBUG
--rs:   CFLAGS+=$(COPTIMIZE) -D NDEBUG
-+r rs ls lr:   CFLAGS+=$(COPTIMIZE) -D NDEBUG
- 
- s:build $(EXEC)
- p:build $(EXEC)_profile
-@@ -48,7 +48,7 @@
- rs:   build $(EXEC)_static
- 
- s:CFLAGS+=$(COPTIMIZE) -ggdb -D DEBUG
--ls:   lbuild $(LIB)_s 
-+ls lr:lbuild $(LIB)_s 
- 
- build:
-   @echo Building $(EXEC) "("$(WAY)")"
-@@ -63,7 +63,7 @@
- ## Build rule
- %.o %.op %.od %.or:   %.C
-   @echo Compiling: $<
--  @$(CXX) $(CFLAGS) -c -o $@ $<
-+  $(CXX) $(CFLAGS) -c -o $@ $<
- 
- ## Linking rules (standard/profile/debug/release)
- $(EXEC): $(COBJS)

diff --git a/sci-mathematics/nusmv/files/MiniSat_v1.14_gcc41.patch 
b/sci-mathematics/nusmv/files/MiniSat_v1.14_gcc41.patch
deleted file mode 100644
index dd5856a..
--- a/sci-mathematics/nusmv/files/MiniSat_v1.14_gcc41.patch
+++ /dev/null
@@ -1,92 +0,0 @@
-Index: MiniSat/MiniSat_v1.14/SolverTypes.h
-===
 MiniSat/MiniSat_v1.14/SolverTypes.h(revision 1040)
-+++ MiniSat/MiniSat_v1.14/SolverTypes.h(working copy)
-@@ -42,19 +42,32 @@
- public:
- Lit() : x(2*var_Undef) {}   // (lit_Undef)
- explicit Lit(Var var, bool sign = false) : x((var+var) + (int)sign) { }
--friend Lit operator ~ (Lit p) { Lit q; q.x = p.x ^ 1; return q; }
-+friend Lit operator ~ (Lit p);
- 
--friend bool sign  (Lit p) { return p.x & 1; }
--friend int  var   (Lit p) { return p.x >> 1; }
--friend int  index (Lit p) { return p.x; }// A "toInt" 
method that guarantees small, positive integers suitable for array indexing.
--friend Lit  toLit (int i) { Lit p; p.x = i; return p; }  // Inverse of 
'index()'.
--friend Lit  unsign(Lit p) { Lit q; q.x = p.x & ~1; return q; }
--friend Lit  id(Lit p, bool sgn) { Lit q; q.x = p.x ^ (int)sgn; return 
q; }
-+friend bool sign  (Lit p);
-+friend int  var   (Lit p);
-+friend int  index (Lit p); // A "toInt" method that guarantees small, 
positive integers suitable for array indexing.
-+friend Lit  toLit (int i); // Inverse of 'index()'.
-+friend Lit  unsign(Lit p);
-+friend Lit  id(Lit p, bool sgn);
- 
--friend bool operator == (Lit p, Lit q) { return index(p) == index(q); }
--friend bool operator <  (Lit p, Lit q) { return index(p)  < index(q); }  
// '<' guarantees that p, ~p are adjacent in the ordering.
-+friend bool operator == (Lit p, Lit q);
-+friend bool operator <  (Lit p, Lit q); // '<' guarantees that p, ~p are 
adjacent in the ordering.
- };
- 
-+inline Lit operator ~ (Lit p) { Lit q; q.x = p.x ^ 1; return q; }
-+
-+inline bool sign  (Lit p) { return p.x & 1; }
-+inline int  var   (Lit p) { return p.x >> 1; }
-+inline int  index (Lit p) { return p.x; }// A "toInt" method 
that guarantees small, positive integers suitable for array indexing.
-+inline Lit  toLit (int i) { Lit p; p.x = i; return p; }  // Inverse of 
'index()'.
-+inline Lit  unsign(Lit p) { Lit q; q.x = p.x & ~1; return q; }
-+inline Lit  id(Lit p, bool sgn) { Lit q; q.x = p.x ^ (int)sgn; return q; }
-+
-+inline bool operator == (Lit p, Lit q) { return index(p) == index(q); }
-+inline bool operator <  (Lit p, Lit q) { return index(p)  < index(q); }  // 
'<' guarantees that p, ~p are adjacent in the ordering.
-+
-+
- const Lit lit_Undef(var_Undef, false);  // }- Useful special constants.

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

2017-02-01 Thread Patrick McLean
commit: 63ab8f5018576fc957feef2f1cc35fc7aabd12df
Author: Patrick McLean  gentoo  org>
AuthorDate: Wed Feb  1 22:35:58 2017 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Feb  1 22:36:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63ab8f50

sys-fs/ntfs3g: Revision bump to 2016.2.22-r2 to add patch for CVE-2017-0358

Gentoo-Bug: 607912

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../files/ntfs3g-2016.2.22-CVE-2017-0358.patch | 40 ++
 sys-fs/ntfs3g/ntfs3g-2016.2.22-r2.ebuild   | 91 ++
 2 files changed, 131 insertions(+)

diff --git a/sys-fs/ntfs3g/files/ntfs3g-2016.2.22-CVE-2017-0358.patch 
b/sys-fs/ntfs3g/files/ntfs3g-2016.2.22-CVE-2017-0358.patch
new file mode 100644
index ..1ce7e9c
--- /dev/null
+++ b/sys-fs/ntfs3g/files/ntfs3g-2016.2.22-CVE-2017-0358.patch
@@ -0,0 +1,40 @@
+diff --git a/src/lowntfs-3g.c b/src/lowntfs-3g.c
+index 0bb38f97..c6d1dad3 100644
+--- a/src/lowntfs-3g.c
 b/src/lowntfs-3g.c
+@@ -3827,13 +3827,14 @@ static fuse_fstype load_fuse_module(void)
+   struct stat st;
+   pid_t pid;
+   const char *cmd = "/sbin/modprobe";
++  char *env = (char*)NULL;
+   struct timespec req = { 0, 1 };   /* 100 msec */
+   fuse_fstype fstype;
+ 
+   if (!stat(cmd, ) && !geteuid()) {
+   pid = fork();
+   if (!pid) {
+-  execl(cmd, cmd, "fuse", NULL);
++  execle(cmd, cmd, "fuse", NULL, );
+   _exit(1);
+   } else if (pid != -1)
+   waitpid(pid, NULL, 0);
+diff --git a/src/ntfs-3g.c b/src/ntfs-3g.c
+index 268b0569..945fc0be 100644
+--- a/src/ntfs-3g.c
 b/src/ntfs-3g.c
+@@ -3612,13 +3612,14 @@ static fuse_fstype load_fuse_module(void)
+   struct stat st;
+   pid_t pid;
+   const char *cmd = "/sbin/modprobe";
++  char *env = (char*)NULL;
+   struct timespec req = { 0, 1 };   /* 100 msec */
+   fuse_fstype fstype;
+   
+   if (!stat(cmd, ) && !geteuid()) {
+   pid = fork();
+   if (!pid) {
+-  execl(cmd, cmd, "fuse", NULL);
++  execle(cmd, cmd, "fuse", NULL, );
+   _exit(1);
+   } else if (pid != -1)
+   waitpid(pid, NULL, 0);

diff --git a/sys-fs/ntfs3g/ntfs3g-2016.2.22-r2.ebuild 
b/sys-fs/ntfs3g/ntfs3g-2016.2.22-r2.ebuild
new file mode 100644
index ..65d95f8
--- /dev/null
+++ b/sys-fs/ntfs3g/ntfs3g-2016.2.22-r2.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+inherit eutils linux-info udev toolchain-funcs libtool
+
+MY_PN=${PN/3g/-3g}
+MY_P=${MY_PN}_ntfsprogs-${PV}
+
+DESCRIPTION="Open source read-write NTFS driver that runs under FUSE"
+HOMEPAGE="http://www.tuxera.com/community/ntfs-3g-download/;
+SRC_URI="http://tuxera.com/opensource/${MY_P}.tgz;
+
+LICENSE="GPL-2"
+# The subslot matches the SONAME major #.
+SLOT="0/87"
+KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~arm-linux 
~x86-linux"
+IUSE="acl debug +external-fuse ntfsdecrypt +ntfsprogs static-libs suid xattr"
+
+RDEPEND="!=dev-libs/libgcrypt-1.2.2:0
+   >=net-libs/gnutls-1.4.4
+   )
+   external-fuse? ( >=sys-fs/fuse-2.8.0 )"
+DEPEND="${RDEPEND}
+   sys-apps/attr
+   virtual/pkgconfig"
+
+S="${WORKDIR}/${MY_P}"
+
+DOCS="AUTHORS ChangeLog CREDITS README"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2014.2.15-no-split-usr.patch
+   "${FILESDIR}"/${PN}-2016.2.22-sysmacros.patch #580136
+   "${FILESDIR}"/${PN}-2016.2.22-CVE-2017-0358.patch #607912
+)
+
+pkg_setup() {
+   if use external-fuse && use kernel_linux; then
+   if kernel_is lt 2 6 9; then
+   die "Your kernel is too old."
+   fi
+   CONFIG_CHECK="~FUSE_FS"
+   FUSE_FS_WARNING="You need to have FUSE module built to use 
ntfs-3g"
+   linux-info_pkg_setup
+   fi
+}
+
+src_prepare() {
+   epatch "${PATCHES[@]}"
+   # Keep the symlinks in the same place we put the main binaries.
+   # Having them in / when all the progs are in /usr is pointless.
+   sed -i \
+   -e 's:/sbin:$(sbindir):g' \
+   {ntfsprogs,src}/Makefile.in || die #578336
+   # Note: patches apply to Makefile.in, so don't run autotools here.
+   elibtoolize
+}
+
+src_configure() {
+   tc-ld-disable-gold
+   econf \
+   --prefix="${EPREFIX}"/usr \
+   --exec-prefix="${EPREFIX}"/usr \
+   --docdir="${EPREFIX}"/usr/share/doc/${PF} \
+   $(use_enable debug) \
+   --enable-ldscript \
+   --disable-ldconfig \
+   $(use_enable acl posix-acls) \
+   $(use_enable xattr xattr-mappings) \
+   $(use_enable ntfsdecrypt 

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

2017-02-01 Thread Jeroen Roovers
commit: 29906faa4ca0471b13eed34579b0c6167c7b76d8
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Feb  1 22:34:31 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Feb  1 22:34:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29906faa

media-libs/gd: Stable for HPPA (bug #607718).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

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

diff --git a/media-libs/gd/gd-2.2.4.ebuild b/media-libs/gd/gd-2.2.4.ebuild
index a287cb2..b9c5d73 100644
--- a/media-libs/gd/gd-2.2.4.ebuild
+++ b/media-libs/gd/gd-2.2.4.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libgd/libgd/releases/download/${P}/lib${P}.tar.xz;
 
 LICENSE="gd IJG HPND BSD"
 SLOT="2/3"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
 IUSE="fontconfig jpeg png static-libs tiff truetype webp xpm zlib"
 
 # fontconfig has prefixed font paths, details see bug #518970



[gentoo-commits] repo/gentoo:master commit in: net-im/bitlbee/

2017-02-01 Thread Tim Harder
commit: b88292933045504e17c969385ab46df7661a9d80
Author: Tim Harder  gentoo  org>
AuthorDate: Wed Feb  1 22:30:18 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Wed Feb  1 22:32:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8829293

net-im/bitlbee: version bump to 3.5.1

 net-im/bitlbee/Manifest |   1 +
 net-im/bitlbee/bitlbee-3.5.1.ebuild | 168 
 2 files changed, 169 insertions(+)

diff --git a/net-im/bitlbee/Manifest b/net-im/bitlbee/Manifest
index 1afab0c..09af66d 100644
--- a/net-im/bitlbee/Manifest
+++ b/net-im/bitlbee/Manifest
@@ -1,2 +1,3 @@
 DIST bitlbee-3.4.2.tar.gz 719456 SHA256 
69c85554def74f314e3b6e390389a30b0e748f23ef37883e9d7545ee2c45ea57 SHA512 
2b839c014cfad037d815aa0e0867dda1b4628ff076d8de6fec1e80ab1499bca565d9afbe104929d492ff68c86b745cc3f76acbeba102766d656f2d359b70302e
 WHIRLPOOL 
43803ba2bbe6297e05e465912d22b0547bb0f9c3cd184a6c0c924dc023b9d505e3666aa732de83c79249e59aa0e2d6f621ee15c508ccc17eed1898b755f0112e
+DIST bitlbee-3.5.1.tar.gz 680351 SHA256 
9636d7fd89ebb3756c13a9a3387736ca6d56ccf66ec0580d512f07b21db0fa69 SHA512 
4eb3b0d3a92910c8dd789cd23338cc6296bf40212c5244fcb27a88ede10e86424ea59c78e719841863701a7fdd8c61819f2775f7b58833e287d9110e49d036f3
 WHIRLPOOL 
fd8645bb72e2cae336a5d627de0631f5858ffaf4d4d43e7efc5656605068179d86d0deff2810f56e5154995ffdd58ee8be90bc459ff9766dacd5e74d08aaefc7
 DIST bitlbee-3.5.tar.gz 657177 SHA256 
549d02181ab303dfe8a219faafd7a1aea7ee642eb071b767f668782a57388319 SHA512 
7f044474fff5b1213dddc29e19aae102d1bbe4361cddcf9e58f965c01a58b6f7ed41cbf6ecec050a96f91f55dca15f6df948dee105eff001086d9daa15ba0499
 WHIRLPOOL 
72434e9d7d43a0d1bf6d1f8c0eda10a099fca262d5431430d0001a7dc7b34e7594e5a6dc0942eebc04f7073bc73d4d8b3f7d00991b21b47d1cfb15ea542715c7

diff --git a/net-im/bitlbee/bitlbee-3.5.1.ebuild 
b/net-im/bitlbee/bitlbee-3.5.1.ebuild
new file mode 100644
index ..c27ab7a
--- /dev/null
+++ b/net-im/bitlbee/bitlbee-3.5.1.ebuild
@@ -0,0 +1,168 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit user systemd toolchain-funcs
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://github.com/bitlbee/bitlbee.git;
+   inherit git-r3
+else
+   SRC_URI="https://get.bitlbee.org/src/${P}.tar.gz;
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
+fi
+
+DESCRIPTION="irc to IM gateway that support multiple IM protocols"
+HOMEPAGE="https://www.bitlbee.org/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE_PROTOCOLS="msn oscar purple twitter +xmpp"
+IUSE="debug +gnutls ipv6 libevent libressl nss otr +plugins selinux test xinetd
+   ${IUSE_PROTOCOLS}"
+
+REQUIRED_USE="
+   || ( purple xmpp msn oscar )
+   xmpp? ( !nss )
+"
+
+COMMON_DEPEND="
+   >=dev-libs/glib-2.16
+   purple? ( net-im/pidgin )
+   libevent? ( dev-libs/libevent:= )
+   otr? ( >=net-libs/libotr-4 )
+   gnutls? ( net-libs/gnutls:= )
+   !gnutls? (
+   nss? ( dev-libs/nss )
+   !nss? (
+   libressl? ( dev-libs/libressl:= )
+   !libressl? ( dev-libs/openssl:0= )
+   )
+   )
+"
+DEPEND="${COMMON_DEPEND}
+   virtual/pkgconfig
+   selinux? ( sec-policy/selinux-bitlbee )
+   test? ( dev-libs/check )"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/logger
+   xinetd? ( sys-apps/xinetd )"
+
+pkg_setup() {
+   enewgroup bitlbee
+   enewuser bitlbee -1 -1 /var/lib/bitlbee bitlbee
+}
+
+src_prepare() {
+   if [[ ${PV} != "" ]]; then
+   eapply \
+   "${FILESDIR}"/${PN}-3.5-systemd-user.patch \
+   "${FILESDIR}"/${PN}-3.5-verbose-build.patch
+   fi
+
+   eapply_user
+}
+
+src_configure() {
+   local myconf
+
+   # setup plugins, protocol, ipv6 and debug
+   myconf+=( --jabber=$(usex xmpp 1 0) )
+   for flag in debug ipv6 plugins ${IUSE_PROTOCOLS/+xmpp/} ; do
+   myconf+=( --${flag}=$(usex ${flag} 1 0) )
+   done
+
+   # set otr
+   if use otr && use plugins ; then
+   myconf+=( --otr=plugin )
+   else
+   if use otr ; then
+   ewarn "OTR support has been disabled automatically 
because it"
+   ewarn "requires the plugins USE flag."
+   fi
+   myconf+=( --otr=0 )
+   fi
+
+   # setup ssl use flags
+   if use gnutls ; then
+   myconf+=( --ssl=gnutls )
+   einfo "Using gnutls for SSL support"
+   else
+   ewarn "Only gnutls is officially supported by upstream."
+   if use nss ; then
+   myconf+=( --ssl=nss )
+   einfo "Using nss for SSL support"
+   else
+   myconf+=( --ssl=openssl )
+   einfo "Using openssl for SSL support"
+   fi
+   fi

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

2017-02-01 Thread Jeroen Roovers
commit: 1772e6eb9d103212bea807bddf894b4c85f758e7
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Feb  1 22:29:41 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Feb  1 22:29:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1772e6eb

media-libs/gd: Stable for PPC64 (bug #607718).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

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

diff --git a/media-libs/gd/gd-2.2.4.ebuild b/media-libs/gd/gd-2.2.4.ebuild
index d0643e9..a287cb2 100644
--- a/media-libs/gd/gd-2.2.4.ebuild
+++ b/media-libs/gd/gd-2.2.4.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libgd/libgd/releases/download/${P}/lib${P}.tar.xz;
 
 LICENSE="gd IJG HPND BSD"
 SLOT="2/3"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
 IUSE="fontconfig jpeg png static-libs tiff truetype webp xpm zlib"
 
 # fontconfig has prefixed font paths, details see bug #518970



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

2017-02-01 Thread Jeroen Roovers
commit: 8747a84088f84f4e5a73575854035d168a318397
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Feb  1 22:27:14 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Feb  1 22:27:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8747a840

dev-libs/librdkafka: Stable for HPPA (bug #607394).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

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

diff --git a/dev-libs/librdkafka/librdkafka-0.9.2-r1.ebuild 
b/dev-libs/librdkafka/librdkafka-0.9.2-r1.ebuild
index 6e5a2a5..673e392 100644
--- a/dev-libs/librdkafka/librdkafka-0.9.2-r1.ebuild
+++ b/dev-libs/librdkafka/librdkafka-0.9.2-r1.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/edenhill/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~hppa x86"
+   KEYWORDS="amd64 ~arm hppa x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: app-backup/backuppc/

2017-02-01 Thread Kent Fredric
commit: 6787ee8c5e83ee250d6df5d61d38aa8cba75eb53
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Feb  1 18:41:34 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Feb  1 22:21:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6787ee8c

app-backup/backuppc: Cleanup versions broken by Perl 5.22

Bug: https://bugs.gentoo.org/580254

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-backup/backuppc/Manifest |   1 -
 app-backup/backuppc/backuppc-3.3.0-r2.ebuild | 223 ---
 app-backup/backuppc/backuppc-3.3.1-r2.ebuild | 195 ---
 3 files changed, 419 deletions(-)

diff --git a/app-backup/backuppc/Manifest b/app-backup/backuppc/Manifest
index 07d6999..8201ca7 100644
--- a/app-backup/backuppc/Manifest
+++ b/app-backup/backuppc/Manifest
@@ -1,2 +1 @@
-DIST BackupPC-3.3.0.tar.gz 554155 SHA256 
8a9c1b6faa4502b4c40617be97e806813815d9e22544854d99983c3da7c1f69b SHA512 
67ec1ca4d22ab1e81f9c0f409c758347a6c772e3d1aa39c93207f9d328176ac7b4e679d0b03972fc5870c37dde0480d28c61ae19975d54e144235ea0e84e9901
 WHIRLPOOL 
23a9ce5dd600843cea72354e1afe595e3779f883839f8d3feca7f1355ed20048026090097ddfbcf394632672b42bef4884bc6661203542d6fe2c6bc2e8ad7b96
 DIST BackupPC-3.3.1.tar.gz 556461 SHA256 
c9cc4aec28a7474a68d40f4bc460ff15140e05c96900c7f98ff3ef06c4f6ae4c SHA512 
b6bb9de3103c5062098d80755055b7461ae9133a4a46a66b3d0af89d081086571694db1898e7d85880defa15b030bad522812116ae5361c0fbde90b877d139c6
 WHIRLPOOL 
1d895f530932fc1287cde9db584befc6ca0850b5841cc4e60927442d0db662ec092bda4efa4953650d3bfa13deb6e9fafa25c10f82e19b39c67969bb4e143bac

diff --git a/app-backup/backuppc/backuppc-3.3.0-r2.ebuild 
b/app-backup/backuppc/backuppc-3.3.0-r2.ebuild
deleted file mode 100644
index 7ea269c..
--- a/app-backup/backuppc/backuppc-3.3.0-r2.ebuild
+++ /dev/null
@@ -1,223 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit eutils systemd webapp user
-
-MY_P="BackupPC-${PV}"
-
-DESCRIPTION="A high-performance system for backing up computers to a server's 
disk"
-HOMEPAGE="http://backuppc.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm x86"
-
-IUSE="rss samba"
-
-DEPEND="dev-lang/perl
-   app-admin/apache-tools
-   app-admin/makepasswd"
-RDEPEND="${DEPEND}
-   virtual/perl-IO-Compress
-   dev-perl/Archive-Zip
-   dev-perl/libwww-perl
-   >=app-arch/tar-1.13.20
-   app-arch/par2cmdline
-   app-arch/gzip
-   app-arch/bzip2
-   virtual/mta
-   www-apache/mod_perl
-   www-servers/apache
-   net-misc/rsync
-   >=dev-perl/File-RsyncP-0.68
-   rss? ( dev-perl/XML-RSS )
-   samba? ( net-fs/samba )"
-
-WEBAPP_MANUAL_SLOT="yes"
-SLOT="0"
-
-S=${WORKDIR}/${MY_P}
-
-CONFDIR="/etc/BackupPC"
-DATADIR="/var/lib/backuppc"
-LOGDIR="/var/log/BackupPC"
-
-pkg_setup() {
-   webapp_pkg_setup
-   enewgroup backuppc
-   enewuser backuppc -1 /bin/bash /var/lib/backuppc backuppc
-}
-
-src_prepare() {
-   epatch "${FILESDIR}/3.3.0/01-fix-configure.pl.patch"
-   epatch "${FILESDIR}/3.3.0/02-fix-config.pl-formatting.patch"
-   epatch "${FILESDIR}/3.3.0/03-reasonable-config.pl-defaults.patch"
-
-   # Fix the documentation location in the CGI interface
-   epatch "${FILESDIR}/3.2.0/04-add-docdir-marker.patch"
-   sed -i "s+__DOCDIR__+/usr/share/doc/${PF}+" "lib/BackupPC/CGI/View.pm"
-
-   epatch "${FILESDIR}/3.2.0/05-nicelevel.patch"
-   sed -i -e 's/--chuid ${USER}//' "${S}"/init.d/src/gentoo-backuppc || 
die "Failed to fix the init script"
-}
-
-src_test() {
-   true
-}
-
-src_install() {
-   webapp_src_preinst
-
-   local myconf
-   myconf=""
-   if use samba ; then
-   myconf="--bin-path smbclient=$(type -p smbclient)"
-   myconf="${myconf} --bin-path nmblookup=$(type -p nmblookup)"
-   fi
-
-   /usr/bin/env perl ./configure.pl \
-   --batch \
-   --bin-path perl=$(type -p perl) \
-   --bin-path tar=$(type -p tar) \
-   --bin-path rsync=$(type -p rsync) \
-   --bin-path ping=$(type -p ping) \
-   --bin-path df=$(type -p df) \
-   --bin-path ssh=$(type -p ssh) \
-   --bin-path sendmail=$(type -p sendmail) \
-   --bin-path hostname=$(type -p hostname) \
-   --bin-path gzip=$(type -p gzip) \
-   --bin-path bzip2=$(type -p bzip2) \
-   --config-dir ${CONFDIR} \
-   --install-dir /usr \
-   --data-dir ${DATADIR} \
-   --hostname $(hostname) \
-   --uid-ignore \
-   --dest-dir "${D%/}" \
-   --html-dir ${MY_HTDOCSDIR}/image \
-   --html-dir-url /image \
-   --cgi-dir ${MY_HTDOCSDIR} \
-   --fhs \
-  

[gentoo-commits] repo/gentoo:master commit in: app-backup/backuppc/files/3.3.0/

2017-02-01 Thread Kent Fredric
commit: fb99cd30c126791ca56dcbc538706ce3e977de09
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Feb  1 20:10:43 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Feb  1 22:21:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb99cd30

app-backup/backuppc: Prune unnecessary formatting changes from patches

Patch set included 22kb of cosmetic changes, some of which were not really
cosmetic at all, while being pretended as being cosmetic.

For instance, changing the default umask from 027 to 27 ignores the fact
that a '0' prefix implies octal, so removing the '0' turned the umask from
027 to 033 

That is, changes:

  - u=rwx,g=rx,o=rx
  + u=rwx,g=r,o=r

However, some of the changes had real semantic differences that could
affect picky enough code, so I've preserved some of them, while culling
those that were completely unnesscary.

If this revert-of-patch introduces problems for you, please file a bug
so we can triage the real problems under an umbrella more well defined than
"formatting"

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../files/3.3.0/02-fix-config.pl-formatting.patch  | 730 +
 .../3.3.0/03-reasonable-config.pl-defaults.patch   |  67 +-
 2 files changed, 75 insertions(+), 722 deletions(-)

diff --git a/app-backup/backuppc/files/3.3.0/02-fix-config.pl-formatting.patch 
b/app-backup/backuppc/files/3.3.0/02-fix-config.pl-formatting.patch
index ae37cda..79ad654 100644
--- a/app-backup/backuppc/files/3.3.0/02-fix-config.pl-formatting.patch
+++ b/app-backup/backuppc/files/3.3.0/02-fix-config.pl-formatting.patch
@@ -1,96 +1,6 @@
 --- conf/config.pl.dist2013-09-23 23:05:50.332064754 +0300
 +++ conf/config.pl 2013-09-23 23:07:44.110943607 +0300
-@@ -87,7 +87,7 @@
- # Default value prevents any access from group other, and prevents
- # group write.
- #
--$Conf{UmaskMode} = 027;
-+$Conf{UmaskMode} = 27;
- 
- #
- # Times at which we wake up, check all the PCs, and schedule necessary
-@@ -113,7 +113,31 @@
- # you want BackupPC_nightly to run (eg: when you don't expect a lot
- # of regular backups to run).
- #
--$Conf{WakeupSchedule} = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 
16, 17, 18, 19, 20, 21, 22, 23];
-+$Conf{WakeupSchedule} = [
-+  1,
-+  2,
-+  3,
-+  4,
-+  5,
-+  6,
-+  7,
-+  8,
-+  9,
-+  10,
-+  11,
-+  12,
-+  13,
-+  14,
-+  15,
-+  16,
-+  17,
-+  18,
-+  19,
-+  20,
-+  21,
-+  22,
-+  23
-+];
- 
- #
- # Maximum number of simultaneous backups to run.  If there
-@@ -224,9 +248,9 @@
- # Full path to various commands for archiving
- #
- $Conf{SplitPath} = '';
--$Conf{ParPath}   = '';
--$Conf{CatPath}   = '';
--$Conf{GzipPath}  = '';
-+$Conf{ParPath} = '';
-+$Conf{CatPath} = '';
-+$Conf{GzipPath} = '';
- $Conf{Bzip2Path} = '';
- 
- #
-@@ -302,11 +326,11 @@
- # a symbolic link to the new location, or mount the new BackupPC
- # store at the existing $Conf{TopDir} setting.
- #
--$Conf{TopDir}  = '';
--$Conf{ConfDir} = '';
--$Conf{LogDir}  = '';
--$Conf{InstallDir}  = '';
--$Conf{CgiDir}  = '';
-+$Conf{TopDir} = '';
-+$Conf{ConfDir} = '';
-+$Conf{LogDir} = '';
-+$Conf{InstallDir} = '';
-+$Conf{CgiDir} = '';
- 
- #
- # Whether BackupPC and the CGI script BackupPC_Admin verify that they
-@@ -316,7 +340,7 @@
- # BackupPC might be accidently started as root or the wrong user,
- # or if the CGI script is not installed correctly.
- #
--$Conf{BackupPCUserVerify} = 1;
-+$Conf{BackupPCUserVerify} = '1';
- 
- #
- # Maximum number of hardlinks supported by the $TopDir file system
-@@ -333,7 +357,7 @@
- # Advanced option for asking BackupPC to load additional perl modules.
- # Can be a list (array ref) of module names to load at startup.
- #
--$Conf{PerlModuleLoad} = undef;
-+$Conf{PerlModuleLoad} = undef;
- 
- #
- # Path to init.d script and command to use that script to start the
-@@ -355,7 +379,7 @@
+@@ -355,7 +355,7 @@
  # needs to be a full path and you can't include shell syntax like
  # redirection and pipes; put that in a script if you need it.
  #
@@ -99,7 +9,7 @@
  $Conf{ServerInitdStartCmd} = '';
  
  
-@@ -373,7 +397,7 @@
+@@ -373,7 +373,7 @@
  # time taken for the backup, plus the granularity of $Conf{WakeupSchedule}
  # will make the actual backup interval a bit longer.
  #
@@ -108,7 +18,7 @@
  
  #
  # Minimum period in days between incremental backups (a user requested
-@@ -383,7 +407,7 @@
+@@ -383,7 +383,7 @@
  # time taken for the backup, plus the granularity of $Conf{WakeupSchedule}
  # will make the actual backup interval a bit longer.
  #
@@ -117,56 +27,16 @@
  
  #
  # Number of full backups to keep.  Must be >= 1.
-@@ -458,7 +482,9 @@
+@@ -458,7 +458,7 @@
  #$Conf{FullKeepCnt} = 4;
  #$Conf{FullKeepCnt} = [4];
  #
 -$Conf{FullKeepCnt} = 1;
-+$Conf{FullKeepCnt} = [
-+  1
-+];
++$Conf{FullKeepCnt} = [1];
  
  #
  # Very old full backups are removed after $Conf{FullAgeMax} days.  However,
-@@ -470,7 +496,7 @@
- # full backups to exceed $Conf{FullAgeMax}.

[gentoo-commits] repo/gentoo:master commit in: app-backup/backuppc/

2017-02-01 Thread Kent Fredric
commit: 978d5d8983f35c57202e938a012dfa319e05c1ca
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Feb  1 22:21:13 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Feb  1 22:21:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=978d5d89

app-backup/backuppc: -r1 bump for RDEP propagation

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../backuppc/{backuppc-3.3.1-r3.ebuild => backuppc-3.3.1-r4.ebuild}   | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/app-backup/backuppc/backuppc-3.3.1-r3.ebuild 
b/app-backup/backuppc/backuppc-3.3.1-r4.ebuild
similarity index 100%
rename from app-backup/backuppc/backuppc-3.3.1-r3.ebuild
rename to app-backup/backuppc/backuppc-3.3.1-r4.ebuild



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

2017-02-01 Thread Kent Fredric
commit: 942c161389f49f41ce3d1390f06b806cbd9976aa
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Feb  1 19:17:47 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Feb  1 22:21:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=942c1613

app-backup/backuppc: Remove unused patches

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../backuppc/files/3.2.0/01-fix-configure.pl.patch |  30 --
 .../3.2.0/03-reasonable-config.pl-defaults.patch   |  47 ---
 app-backup/backuppc/files/apache2-backuppc.conf|  73 -
 app-backup/backuppc/files/apache2-backuppc.init| 170 ---
 app-backup/backuppc/files/httpd.conf   | 332 -
 5 files changed, 652 deletions(-)

diff --git a/app-backup/backuppc/files/3.2.0/01-fix-configure.pl.patch 
b/app-backup/backuppc/files/3.2.0/01-fix-configure.pl.patch
deleted file mode 100644
index 060cf95..
--- a/app-backup/backuppc/files/3.2.0/01-fix-configure.pl.patch
+++ /dev/null
@@ -1,30 +0,0 @@
 configure.pl.orig  2010-07-31 20:52:58.0 +0300
-+++ configure.pl   2010-09-03 22:09:46.437788435 +0300
-@@ -158,7 +158,7 @@
- # config file to get all the defaults.
- #
- my $ConfigPath = "";
--my $ConfigFileOK = 1;
-+my $ConfigFileOK = 0;
- while ( 1 ) {
- if ( $ConfigFileOK && -f "/etc/BackupPC/config.pl" ) {
- $ConfigPath = "/etc/BackupPC/config.pl";
-@@ -213,7 +213,8 @@
- $bpc->{LogDir} = $Conf{LogDir}  = "$Conf{TopDir}/log"
- if ( $Conf{LogDir} eq '' );
- }
--$bpc->{ConfDir} = $Conf{ConfDir} = $confDir;
-+# Disable this as it's not really neccessary for this ebuild
-+# $bpc->{ConfDir} = $Conf{ConfDir} = $confDir;
- my $err = $bpc->ServerConnect($Conf{ServerHost}, $Conf{ServerPort}, 1);
- if ( $err eq "" ) {
- print < administrative users are only craig and celia'.
- #
- $Conf{CgiAdminUserGroup} = '';
--$Conf{CgiAdminUsers} = '';
-+$Conf{CgiAdminUsers} = 'backuppc';
- 
- #
- # URL of the BackupPC_Admin CGI script.  Used for email messages.
-@@ -2062,7 +2066,7 @@
- # dates (MM/DD), a value of 2 uses full -MM-DD format, and zero
- # for international dates (DD/MM).
- #
--$Conf{CgiDateFormatMMDD} = 1;
-+$Conf{CgiDateFormatMMDD} = 2;
- 
- #
- # If set, the complete list of hosts appears in the left navigation
-@@ -2248,7 +2252,7 @@
-   ClientTimeout => 1,
-   MaxOldPerPCLogFiles => 1,
-   CompressLevel => 1,
--  ClientNameAlias => 1,
-+  ClientNameAlias => 0,
-   DumpPreUserCmd => 0,
-   DumpPostUserCmd => 0,
-   RestorePreUserCmd => 0,

diff --git a/app-backup/backuppc/files/apache2-backuppc.conf 
b/app-backup/backuppc/files/apache2-backuppc.conf
deleted file mode 100644
index 4df0b4e..
--- a/app-backup/backuppc/files/apache2-backuppc.conf
+++ /dev/null
@@ -1,73 +0,0 @@
-# /etc/conf.d/apache2: config file for /etc/init.d/apache2
-
-# When you install a module it is easy to activate or deactivate the modules
-# and other features of apache using the APACHE2_OPTS line. Every module should
-# install a configuration in /etc/apache2/modules.d. In that file will have an
-#  directive where NNN is the option to enable that module.
-#
-# Here are the options available in the default configuration:
-#
-#  AUTH_DIGEST  Enables mod_auth_digest
-#  AUTHNZ_LDAP  Enables authentication through mod_ldap (available if USE=ldap)
-#  CACHEEnables mod_cache
-#  DAV  Enables mod_dav
-#  ERRORDOCSEnables default error documents for many languages.
-#  INFO Enables mod_info, a useful module for debugging
-#  LANGUAGE Enables content-negotiation based on language and charset.
-#  LDAP Enables mod_ldap (available if USE=ldap)
-#  MANUAL   Enables /manual/ to be the apache manual (available if 
USE=docs)
-#  MEM_CACHE

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

2017-02-01 Thread Kent Fredric
commit: 1557f67e72b1bb69fb3d16bdd0173d967e938b71
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Feb  1 21:20:40 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Feb  1 22:21:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1557f67e

dev-perl/Apache-SizeLimit: Block tests against mpm-itk re bug #607964

mpm-itk is pretty much impossible to run as anyone other than root
due to its need to have permission to change UID to any other user on the 
system.

Subsequently, anything that has to spawn apache for testing anything will
be inherently broken by design.

Bug: https://bugs.gentoo.org/607964

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-perl/Apache-SizeLimit/Apache-SizeLimit-0.970.0-r1.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Apache-SizeLimit/Apache-SizeLimit-0.970.0-r1.ebuild 
b/dev-perl/Apache-SizeLimit/Apache-SizeLimit-0.970.0-r1.ebuild
index 7d9c6a0..e2dde52 100644
--- a/dev-perl/Apache-SizeLimit/Apache-SizeLimit-0.970.0-r1.ebuild
+++ b/dev-perl/Apache-SizeLimit/Apache-SizeLimit-0.970.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -19,6 +19,9 @@ RDEPEND="dev-perl/Linux-Pid
!=www-apache/mod_perl-2.0.5"
 DEPEND="${RDEPEND}
-   test? ( >=dev-perl/Apache-Test-1.360.0 )"
+   test? (
+   >=dev-perl/Apache-Test-1.360.0
+   !www-apache/mpm_itk
+   )"
 
 SRC_TEST="do"



[gentoo-commits] repo/gentoo:master commit in: app-backup/backuppc/

2017-02-01 Thread Kent Fredric
commit: 93239e393a2a58e0484776e5cf7bb457f646671f
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Feb  1 22:19:54 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Feb  1 22:21:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93239e39

app-backup/backuppc: Fix missing dependency on dev-perl/CGI

Reported by Rob Ownens via funtoo

Bug: https://bugs.funtoo.org/browse/FL-3525

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-backup/backuppc/backuppc-3.3.1-r3.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-backup/backuppc/backuppc-3.3.1-r3.ebuild 
b/app-backup/backuppc/backuppc-3.3.1-r3.ebuild
index 6a779f4..d0c712b 100644
--- a/app-backup/backuppc/backuppc-3.3.1-r3.ebuild
+++ b/app-backup/backuppc/backuppc-3.3.1-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -32,6 +32,7 @@ DEPEND="dev-lang/perl
 RDEPEND="${DEPEND}
virtual/perl-IO-Compress
dev-perl/Archive-Zip
+   dev-perl/CGI
dev-perl/libwww-perl
app-arch/tar
app-arch/par2cmdline



[gentoo-commits] repo/gentoo:master commit in: sys-apps/guix/, sys-apps/guix/files/

2017-02-01 Thread Sergei Trofimovich
commit: f7663b92c6722a14a928fde1809e52748cb2e97a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Feb  1 22:18:04 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Feb  1 22:18:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7663b92

sys-apps/guix: new package, the GNU Purely Functional Package Manager

Internal data model and command UI is a lot like
one of sys-apps/nix.

Package description mechanism is a bit different
in both surface syntax (guile vs nix expression language)
and evaluation method (compiled versus lazy loaded configs)

guix (as well as nix) is a source-based package manager with
strong support for binary packages. It uses multiple tricks
to make package source dependencies robust:

- guix installs every package into it's own --prefix=.
  Example: /gnu/store/6np03bm99hg7gprcwmzpbpaj00cka8p8-icecat-45.5.1-gnu1
- guix builds packages with PATH (and similar) only including explicitly
  listed depends. This eliminates automagic dependency.
- guix tracks full environment where package was built.
  Once environment changes new package needs to be built.

That's how you install firef^Wicecat just for your current user:

$ guix package --install icecat

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-apps/guix/Manifest |  1 +
 sys-apps/guix/files/guix-0.12.0-AR.patch   |  8 ++
 .../guix/files/guix-0.12.0-no-json-crate.patch | 38 +
 sys-apps/guix/files/guix-daemon.initd  | 16 
 sys-apps/guix/guix-0.12.0-r1.ebuild| 92 ++
 sys-apps/guix/metadata.xml |  8 ++
 6 files changed, 163 insertions(+)

diff --git a/sys-apps/guix/Manifest b/sys-apps/guix/Manifest
new file mode 100644
index ..1cef361
--- /dev/null
+++ b/sys-apps/guix/Manifest
@@ -0,0 +1 @@
+DIST guix-0.12.0.tar.gz 15823786 SHA256 
6201e21186a7098af256d97562662d95353b1047799b9b216e1dd6e7692dfec9 SHA512 
d61cb289d3773977400fa3c49869f30a3feb5e0364368017b9b8eaadee814c5c31897be398d6ff142349337334eb51cb6d0354bee27c0365de69ce1a09e858d3
 WHIRLPOOL 
9515967a05a449f24da49e95340a60fb91cc471fcc532ce6cfaaea82c9161e3a65a1adc4d95e9997f019565243ca385845edc484981adfc5956112092687a0ec

diff --git a/sys-apps/guix/files/guix-0.12.0-AR.patch 
b/sys-apps/guix/files/guix-0.12.0-AR.patch
new file mode 100644
index ..c9c91c2
--- /dev/null
+++ b/sys-apps/guix/files/guix-0.12.0-AR.patch
@@ -0,0 +1,8 @@
+diff --git a/config-daemon.ac b/config-daemon.ac
+index 056c939..b04deed 100644
+--- a/config-daemon.ac
 b/config-daemon.ac
+@@ -7,2 +7,3 @@ dnl C++ environment.  This macro must be used unconditionnaly.
+ AC_PROG_CXX
++AM_PROG_AR
+ AC_LANG([C++])

diff --git a/sys-apps/guix/files/guix-0.12.0-no-json-crate.patch 
b/sys-apps/guix/files/guix-0.12.0-no-json-crate.patch
new file mode 100644
index ..57b4308
--- /dev/null
+++ b/sys-apps/guix/files/guix-0.12.0-no-json-crate.patch
@@ -0,0 +1,38 @@
+commit 6023041346c79f7ac4105bba2552a82019fae840
+Author: David Thompson 
+Date:   Fri Dec 30 14:15:35 2016 -0500
+
+import: crate: Do not build when guile-json is not available.
+
+* Makefile.am (MODULES): Add 'guix/import/crate.scm' and
+'guix/scripts/import/crate.scm' only when HAVE_GUILE_JSON.
+
+diff --git a/Makefile.am b/Makefile.am
+index 15939af12..97629f26e 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -122,7 +122,6 @@ MODULES =  \
+   guix/import/snix.scm\
+   guix/import/cabal.scm   \
+   guix/import/cran.scm\
+-  guix/import/crate.scm   \
+   guix/import/hackage.scm \
+   guix/import/elpa.scm\
+   guix/scripts.scm\
+@@ -142,7 +141,6 @@ MODULES =  \
+   guix/scripts/lint.scm   \
+   guix/scripts/challenge.scm  \
+   guix/scripts/import/cran.scm\
+-  guix/scripts/import/crate.scm   \
+   guix/scripts/import/gnu.scm \
+   guix/scripts/import/nix.scm \
+   guix/scripts/import/hackage.scm \
+@@ -162,6 +160,8 @@ if HAVE_GUILE_JSON
+ MODULES +=\
+   guix/import/github.scm  \
+   guix/import/json.scm\
++  guix/import/crate.scm   \
++  guix/scripts/import/crate.scm   \
+   guix/import/pypi.scm\
+   guix/scripts/import/pypi.scm\
+   guix/import/cpan.scm\

diff --git a/sys-apps/guix/files/guix-daemon.initd 
b/sys-apps/guix/files/guix-daemon.initd
new file mode 100644
index ..c4f2579
--- /dev/null
+++ 

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

2017-02-01 Thread Sergei Trofimovich
commit: 5050debfedd9ef939113ab1c2e3f0de3be6e15c0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Feb  1 22:10:46 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Feb  1 22:18:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5050debf

sys-apps/nix: don't hardcode UID/GID for nix internal groups

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-apps/nix/nix-1.11.6-r1.ebuild  | 114 -
 .../{nix-1.11.6-r2.ebuild => nix-1.11.6-r3.ebuild} |   4 +-
 2 files changed, 2 insertions(+), 116 deletions(-)

diff --git a/sys-apps/nix/nix-1.11.6-r1.ebuild 
b/sys-apps/nix/nix-1.11.6-r1.ebuild
deleted file mode 100644
index 4553ec6..
--- a/sys-apps/nix/nix-1.11.6-r1.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit readme.gentoo-r1 user
-
-DESCRIPTION="A purely functional package manager"
-HOMEPAGE="https://nixos.org/nix;
-
-SRC_URI="http://nixos.org/releases/${PN}/${P}/${P}.tar.xz;
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+etc_profile +gc doc sodium"
-
-RDEPEND="
-   app-arch/bzip2
-   app-arch/xz-utils
-   dev-db/sqlite
-   dev-libs/openssl:0=
-   net-misc/curl
-   sys-libs/zlib
-   gc? ( dev-libs/boehm-gc )
-   doc? ( dev-libs/libxml2
-   dev-libs/libxslt
-   app-text/docbook-xsl-stylesheets
-   )
-   sodium? ( dev-libs/libsodium )
-   dev-lang/perl:=
-   dev-perl/DBD-SQLite
-   dev-perl/WWW-Curl
-   dev-perl/DBI
-"
-DEPEND="${RDEPEND}
-   >=sys-devel/bison-2.6
-   >=sys-devel/flex-2.5.35
-   virtual/perl-ExtUtils-ParseXS
-"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-systemd.patch
-   "${FILESDIR}"/${P}-per-user.patch
-)
-
-DISABLE_AUTOFORMATTING=yes
-DOC_CONTENTS=" Quick start user guide on Gentoo:
-
-[as root] enable nix-daemon service:
-   [systemd] # systemctl enable nix-daemon
-   [openrc]  # rc-update add nix-daemon
-[as an user] relogin to get environment and profile update
-[as an user] fetch nixpkgs update:
-   \$ nix-channel --update
-[as an user] install nix packages:
-   \$ nix-env -i mc
-[as an user] configure environment:
-   Somewhere in .bash_profile you might want to set
-   LOCALE_ARCHIVE=\$HOME/.nix-profile/lib/locale/locale-archive
-   but please read https://github.com/NixOS/nixpkgs/issues/21820
-
-Next steps:
-   nix package manager user manual: http://nixos.org/nix/manual/
-"
-
-pkg_setup() {
-   enewgroup nixbld 3
-   for i in {1..10}; do
-   # we list 'nixbld' twice to
-   # both assign a primary group for user
-   # and add an user to /etc/group
-   enewuser nixbld${i} $((3 +$i)) -1 /var/empty nixbld,nixbld
-   done
-}
-
-src_configure() {
-   econf \
-   --localstatedir="${EPREFIX}"/nix/var \
-   $(use_enable gc)
-}
-
-src_install() {
-   # TODO: emacs highlighter
-   default
-
-   readme.gentoo_create_doc
-
-   # here we an eager variant of something that
-   # is lazily done by  nix-daemo and root nix-env
-
-   # TODO: will need a tweak for prefix
-   keepdir /nix/store
-   fowners root:nixbld /nix/store
-   fperms 1775 /nix/store
-
-   keepdir /nix/var/nix/profiles/per-user
-   fperms 1777 /nix/var/nix/profiles/per-user
-
-   doenvd "${FILESDIR}"/60nix-remote-daemon
-   newinitd "${FILESDIR}"/nix-daemon.initd nix-daemon
-
-   if ! use etc_profile; then
-   rm "${ED}"/etc/profile.d/nix.sh || die
-   fi
-}
-
-pkg_postinst() {
-   if ! use etc_profile; then
-   ewarn "${EROOT}etc/profile.d/nix.sh was removed (due to 
USE=-etc_profile)."
-   fi
-
-   readme.gentoo_print_elog
-}

diff --git a/sys-apps/nix/nix-1.11.6-r2.ebuild 
b/sys-apps/nix/nix-1.11.6-r3.ebuild
similarity index 96%
rename from sys-apps/nix/nix-1.11.6-r2.ebuild
rename to sys-apps/nix/nix-1.11.6-r3.ebuild
index c9c976b..d7eec9b 100644
--- a/sys-apps/nix/nix-1.11.6-r2.ebuild
+++ b/sys-apps/nix/nix-1.11.6-r3.ebuild
@@ -67,12 +67,12 @@ Next steps:
 "
 
 pkg_setup() {
-   enewgroup nixbld 3
+   enewgroup nixbld
for i in {1..10}; do
# we list 'nixbld' twice to
# both assign a primary group for user
# and add an user to /etc/group
-   enewuser nixbld${i} $((3 +$i)) -1 /var/empty nixbld,nixbld
+   enewuser nixbld${i} -1 -1 /var/empty nixbld,nixbld
done
 }
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-filmon/

2017-02-01 Thread David Seifert
commit: c3c1c9ead05bb47f2462a73707ef1508c70af3a4
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Jan 31 18:38:43 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:15:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3c1c9ea

media-plugins/kodi-pvr-filmon: version bump 1.4.7

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

 media-plugins/kodi-pvr-filmon/Manifest   | 1 +
 ...{kodi-pvr-filmon-.ebuild => kodi-pvr-filmon-1.4.7.ebuild} | 9 +
 media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-.ebuild| 9 +
 3 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/media-plugins/kodi-pvr-filmon/Manifest 
b/media-plugins/kodi-pvr-filmon/Manifest
new file mode 100644
index ..3feb5ea
--- /dev/null
+++ b/media-plugins/kodi-pvr-filmon/Manifest
@@ -0,0 +1 @@
+DIST kodi-pvr-filmon-1.4.7.tar.gz 103691 SHA256 
87ad3adc22ec64be15b9408c51388bb7d12b0089dd466aae73ae082d0576320c SHA512 
86bbfbe56607888983e7b80800680c2b955a743def3aedd9ba1a4cee8543af327b737b1c9a04dc03b09a950774a31c0ce9af8a0431103fca937b6f0fa7b76280
 WHIRLPOOL 
a96f1afcaf856fdf23cf78d691f53fb5a02a51a355313a268d442329ff816ed63bfc6bae43c1536e61b6a02c6732ee8d68e517412b8986664084d3cf9a8975bb

diff --git a/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-.ebuild 
b/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-1.4.7.ebuild
similarity index 69%
copy from media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-.ebuild
copy to media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-1.4.7.ebuild
index f814b7a..0fdfdfa 100644
--- a/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-.ebuild
+++ b/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-1.4.7.ebuild
@@ -17,9 +17,10 @@ case ${PV} in
inherit git-r3
;;
 *)
+   CODENAME="Krypton"
KEYWORDS="~amd64 ~x86"
-   SRC_URI="https://github.com/kodi-pvr/pvr.filmon/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/pvr.filmon-${PV}"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.filmon/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.filmon-${PV}-${CODENAME}"
;;
 esac
 
@@ -28,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-17*
+   =media-libs/kodi-platform-17*
dev-libs/jsoncpp
"
 

diff --git a/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-.ebuild 
b/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-.ebuild
index f814b7a..6d0a2ae 100644
--- a/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-.ebuild
+++ b/media-plugins/kodi-pvr-filmon/kodi-pvr-filmon-.ebuild
@@ -17,9 +17,10 @@ case ${PV} in
inherit git-r3
;;
 *)
+   CODENAME="Krypton"
KEYWORDS="~amd64 ~x86"
-   SRC_URI="https://github.com/kodi-pvr/pvr.filmon/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/pvr.filmon-${PV}"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.filmon/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.filmon-${PV}-${CODENAME}"
;;
 esac
 
@@ -28,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-
+   =media-libs/kodi-platform-
dev-libs/jsoncpp
"
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-mediaportal-tvserver/

2017-02-01 Thread David Seifert
commit: 9ddbd926a000d16cf7b6d1650163989adc85de67
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Jan 31 18:47:09 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:14:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ddbd926

media-plugins/kodi-pvr-mediaportal-tvserver: 2.4.16 version bump

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

 media-plugins/kodi-pvr-mediaportal-tvserver/Manifest | 2 +-
 ...2.4.14.ebuild => kodi-pvr-mediaportal-tvserver-2.4.16.ebuild} | 9 +
 .../kodi-pvr-mediaportal-tvserver-.ebuild| 9 +
 3 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest 
b/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest
index 665bcf4..c04522e 100644
--- a/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest
+++ b/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest
@@ -1 +1 @@
-DIST kodi-pvr-mediaportal-tvserver-2.4.14.tar.gz 386766 SHA256 
d17bbc3723f19e630407b0c8b66a639317c1524b0df9517f9e1b18497baa5f5e SHA512 
58ef9cfa4b7901c1def48fd6c0a840c63b40a15cd15c9ced2f9133c499d3268d3d92a6cbc7871eb400e87e9585b010e4be73ed9bd78546284dea86207c1dec23
 WHIRLPOOL 
768ac9e5f60bc2c7b48eef7d9fc393b7904e84f0b7aaa654630bc193b8df6ae0d2963db0b9c113a768016664fe32c80fedb42756de10f4b46029d414582b
+DIST kodi-pvr-mediaportal-tvserver-2.4.16.tar.gz 385817 SHA256 
59264354c79eaf1658755cb5bc05efc8bca581ed8fb762e82665ec128453e648 SHA512 
f59e1fdcaaa1179452efa4226f780172a34602848ac6dc1d6c563c7baf72f8025fd1e418c33dc93d5bdac7d477e46702731aa1e8892207a47b6a07199cec3757
 WHIRLPOOL 
6a948d28a2635beff0d8f1ceb64484e500532290b626b25df8d1fcfd0dabf84f862619198b2c4e4930335d8328954b128a84ab69997d630f7d38930c6cf61ed8

diff --git 
a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-2.4.14.ebuild
 
b/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-2.4.16.ebuild
similarity index 77%
rename from 
media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-2.4.14.ebuild
rename to 
media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-2.4.16.ebuild
index a801117..cf17e23 100644
--- 
a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-2.4.14.ebuild
+++ 
b/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-2.4.16.ebuild
@@ -17,9 +17,10 @@ case ${PV} in
inherit git-r3
;;
 *)
+   CODENAME="Krypton"
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}/pvr.mediaportal.tvserver-${PV}"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.mediaportal.tvserver-${PV}-${CODENAME}"
;;
 esac
 
@@ -28,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-17*
+   =media-libs/kodi-platform-17*
dev-libs/tinyxml
"
 

diff --git 
a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-.ebuild
 
b/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-.ebuild
index a801117..e740edf 100644
--- 
a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-.ebuild
+++ 
b/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-.ebuild
@@ -17,9 +17,10 @@ case ${PV} in
inherit git-r3
;;
 *)
+   CODENAME="Krypton"
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/${PV}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}/pvr.mediaportal.tvserver-${PV}"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.mediaportal.tvserver-${PV}-${CODENAME}"
;;
 esac
 
@@ -28,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-
+   =media-libs/kodi-platform-
dev-libs/tinyxml
"
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-demo/

2017-02-01 Thread David Seifert
commit: 5b02bb4982cad3e7a950f12d763feeef178300ba
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Jan 31 18:16:24 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:15:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b02bb49

media-plugins/kodi-pvr-demo: Depend on the correct version of kodi

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

 media-plugins/kodi-pvr-demo/kodi-pvr-demo-2.4.3.ebuild | 6 +++---
 media-plugins/kodi-pvr-demo/kodi-pvr-demo-.ebuild  | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-plugins/kodi-pvr-demo/kodi-pvr-demo-2.4.3.ebuild 
b/media-plugins/kodi-pvr-demo/kodi-pvr-demo-2.4.3.ebuild
index 761453c..28b91bc 100644
--- a/media-plugins/kodi-pvr-demo/kodi-pvr-demo-2.4.3.ebuild
+++ b/media-plugins/kodi-pvr-demo/kodi-pvr-demo-2.4.3.ebuild
@@ -18,7 +18,7 @@ case ${PV} in
;;
 *)
CODENAME="Krypton"
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~x86"

SRC_URI="https://github.com/kodi-pvr/pvr.demo/archive/${PV}-${CODENAME}.tar.gz 
-> ${P}.tar.gz"
S="${WORKDIR}/pvr.demo-${PV}-${CODENAME}"
;;
@@ -29,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   =media-tv/kodi-16*
-   =media-libs/kodi-platform-16*
+   =media-tv/kodi-17*
+   =media-libs/kodi-platform-17*
dev-libs/tinyxml
"
 

diff --git a/media-plugins/kodi-pvr-demo/kodi-pvr-demo-.ebuild 
b/media-plugins/kodi-pvr-demo/kodi-pvr-demo-.ebuild
index 31af3dc..5a4a82d 100644
--- a/media-plugins/kodi-pvr-demo/kodi-pvr-demo-.ebuild
+++ b/media-plugins/kodi-pvr-demo/kodi-pvr-demo-.ebuild
@@ -29,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   =media-tv/kodi-*
-   =media-libs/kodi-platform-*
+   =media-tv/kodi-
+   =media-libs/kodi-platform-
dev-libs/tinyxml
"
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-argustv/

2017-02-01 Thread David Seifert
commit: 2a70f043bc595f8324dbb2cf50d43ce2ce432c92
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Jan 31 18:04:09 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:15:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a70f043

media-plugins/kodi-pvr-argustv: Depend on the correct versions of kodi

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

 ...di-pvr-argustv-2.5.4.ebuild => kodi-pvr-argustv-2.5.4-r1.ebuild} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-plugins/kodi-pvr-argustv/kodi-pvr-argustv-2.5.4.ebuild 
b/media-plugins/kodi-pvr-argustv/kodi-pvr-argustv-2.5.4-r1.ebuild
similarity index 89%
rename from media-plugins/kodi-pvr-argustv/kodi-pvr-argustv-2.5.4.ebuild
rename to media-plugins/kodi-pvr-argustv/kodi-pvr-argustv-2.5.4-r1.ebuild
index 5fd7bc7..e8a76b8 100644
--- a/media-plugins/kodi-pvr-argustv/kodi-pvr-argustv-2.5.4.ebuild
+++ b/media-plugins/kodi-pvr-argustv/kodi-pvr-argustv-2.5.4-r1.ebuild
@@ -18,7 +18,7 @@ case ${PV} in
;;
 *)
CODENAME="Krypton"
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~x86"

SRC_URI="https://github.com/kodi-pvr/pvr.argustv/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
S="${WORKDIR}/pvr.argustv-${PV}-${CODENAME}"
;;
@@ -29,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   =media-tv/kodi-16*
-   =media-libs/kodi-platform-16*
+   =media-tv/kodi-17*
+   =media-libs/kodi-platform-17*
dev-libs/jsoncpp
"
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-iptvsimple/

2017-02-01 Thread David Seifert
commit: 8f3d07dc5f8af892f8d7335e5af0c41cb7e2e586
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Jan 31 18:42:16 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:15:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f3d07dc

media-plugins/kodi-pvr-iptvsimple: 2.4.8 version bump

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

 media-plugins/kodi-pvr-iptvsimple/Manifest   | 1 +
 ...r-iptvsimple-.ebuild => kodi-pvr-iptvsimple-2.4.8.ebuild} | 9 +
 .../kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-.ebuild  | 9 +
 3 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/media-plugins/kodi-pvr-iptvsimple/Manifest 
b/media-plugins/kodi-pvr-iptvsimple/Manifest
new file mode 100644
index ..3a44624
--- /dev/null
+++ b/media-plugins/kodi-pvr-iptvsimple/Manifest
@@ -0,0 +1 @@
+DIST kodi-pvr-iptvsimple-2.4.8.tar.gz 159663 SHA256 
077f57a147d0036a0a6cfee1a2c53cd384c2cc7d29942dcc5d4c715943f7cd8b SHA512 
da4e287f8c72b014b36fe2379f85568551e4d479a311479347de36aa7f4f497f344b0d8443c5646a0cfbe20db0ec25c90a653e6030c59faee7040f8c8341cbf7
 WHIRLPOOL 
3d97bc19adc2811df60e7b56630fe0cf8f6a0eec85e0c71fef287773cbe51a5a45679c6a007b8da7c36ae4c4b870da424feafbd6ebeda9938360a2fdf8622a92

diff --git a/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-.ebuild 
b/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-2.4.8.ebuild
similarity index 78%
copy from media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-.ebuild
copy to media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-2.4.8.ebuild
index 582c0f5..1a6716b 100644
--- a/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-.ebuild
+++ b/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-2.4.8.ebuild
@@ -17,9 +17,10 @@ case ${PV} in
inherit git-r3
;;
 *)
+   CODENAME="Krypton"
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-pvr/pvr.iptvsimple/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/pvr.iptvsimple-${PV}"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.iptvsimple/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.iptvsimple-${PV}-${CODENAME}"
;;
 esac
 
@@ -29,8 +30,8 @@ IUSE=""
 
 DEPEND="
=dev-libs/libplatform-2*
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-17*
+   =media-libs/kodi-platform-17*
sys-libs/zlib
"
 

diff --git a/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-.ebuild 
b/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-.ebuild
index 582c0f5..2b02c26 100644
--- a/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-.ebuild
+++ b/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-.ebuild
@@ -17,9 +17,10 @@ case ${PV} in
inherit git-r3
;;
 *)
+   CODENAME="Krypton"
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-pvr/pvr.iptvsimple/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/pvr.iptvsimple-${PV}"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.iptvsimple/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.iptvsimple-${PV}-${CODENAME}"
;;
 esac
 
@@ -29,8 +30,8 @@ IUSE=""
 
 DEPEND="
=dev-libs/libplatform-2*
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-
+   =media-libs/kodi-platform-
sys-libs/zlib
"
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-dvblink/

2017-02-01 Thread David Seifert
commit: b80fecbf963fbd94804e4e96e809ea5b0bdf1b2d
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Jan 31 18:13:44 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:15:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b80fecbf

media-plugins/kodi-pvr-dvblink: Depend on the correct versions of kodi

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

 ...-pvr-dvblink-3.3.11.ebuild => kodi-pvr-dvblink-3.3.11-r1.ebuild} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-3.3.11.ebuild 
b/media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-3.3.11-r1.ebuild
similarity index 89%
rename from media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-3.3.11.ebuild
rename to media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-3.3.11-r1.ebuild
index 78f979d..b744a66 100644
--- a/media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-3.3.11.ebuild
+++ b/media-plugins/kodi-pvr-dvblink/kodi-pvr-dvblink-3.3.11-r1.ebuild
@@ -18,7 +18,7 @@ case ${PV} in
;;
 *)
CODENAME="Krypton"
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~x86"

SRC_URI="https://github.com/kodi-pvr/pvr.dvblink/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
S="${WORKDIR}/pvr.dvblink-${PV}-${CODENAME}"
;;
@@ -29,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   =media-tv/kodi-16*
-   =media-libs/kodi-platform-16*
+   =media-tv/kodi-17*
+   =media-libs/kodi-platform-17*
dev-libs/tinyxml2
"
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-mythtv/

2017-02-01 Thread David Seifert
commit: 65ba874ab28f6b4d923c5f2170053ef8f2733d8c
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Jan 31 17:59:25 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:15:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65ba874a

media-plugins/kodi-pvr-mythtv: Depend on the correct versions of kodi

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

 ...pvr-mythtv-4.12.12-r1.ebuild => kodi-pvr-mythtv-4.12.12-r2.ebuild} | 4 ++--
 media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-4.12.12-r1.ebuild 
b/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-4.12.12-r2.ebuild
similarity index 92%
rename from media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-4.12.12-r1.ebuild
rename to media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-4.12.12-r2.ebuild
index 052ee4a..2a3e3dd 100644
--- a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-4.12.12-r1.ebuild
+++ b/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-4.12.12-r2.ebuild
@@ -29,8 +29,8 @@ IUSE=""
 
 DEPEND="
sys-libs/zlib
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-17*
+   =media-libs/kodi-platform-17*
"
 RDEPEND="
${DEPEND}

diff --git a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-.ebuild 
b/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-.ebuild
index 052ee4a..e81c365 100644
--- a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-.ebuild
+++ b/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-.ebuild
@@ -29,8 +29,8 @@ IUSE=""
 
 DEPEND="
sys-libs/zlib
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-
+   =media-libs/kodi-platform-
"
 RDEPEND="
${DEPEND}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-inputstream-adaptive/

2017-02-01 Thread David Seifert
commit: 71d0a0883abcf626aa975bc78ba76777da014cc8
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Jan 31 18:19:24 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:15:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71d0a088

media-plugins/kodi-inputstream-adaptive: Depend on the correct version of kodi

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

 ...daptive-1.0.6.ebuild => kodi-inputstream-adaptive-1.0.6-r1.ebuild} | 4 ++--
 .../kodi-inputstream-adaptive/kodi-inputstream-adaptive-.ebuild   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-1.0.6.ebuild
 
b/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-1.0.6-r1.ebuild
similarity index 92%
rename from 
media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-1.0.6.ebuild
rename to 
media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-1.0.6-r1.ebuild
index 8e9b8cc..d36d2a1 100644
--- 
a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-1.0.6.ebuild
+++ 
b/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-1.0.6-r1.ebuild
@@ -28,8 +28,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-17*
+   =media-libs/kodi-platform-17*
=dev-libs/libplatform-2*
"
 RDEPEND="

diff --git 
a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-.ebuild 
b/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-.ebuild
index 8e9b8cc..2823511 100644
--- 
a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-.ebuild
+++ 
b/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-.ebuild
@@ -28,8 +28,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-
+   =media-libs/kodi-platform-
=dev-libs/libplatform-2*
"
 RDEPEND="



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

2017-02-01 Thread David Seifert
commit: 1bedb871baebf9880d8d5ae6f29b40f3174c0d75
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb  1 18:29:14 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:14:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bedb871

app-crypt/nitrokey-app: New package

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-crypt/nitrokey-app/Manifest  |  1 +
 app-crypt/nitrokey-app/metadata.xml  | 12 
 app-crypt/nitrokey-app/nitrokey-app-0.6.3.ebuild | 36 
 3 files changed, 49 insertions(+)

diff --git a/app-crypt/nitrokey-app/Manifest b/app-crypt/nitrokey-app/Manifest
new file mode 100644
index ..e833d0b
--- /dev/null
+++ b/app-crypt/nitrokey-app/Manifest
@@ -0,0 +1 @@
+DIST nitrokey-app-0.6.3.tar.gz 769503 SHA256 
6ab756ca34e0deedfe5e99eeb5763a68adc9bafad78ee94b3b9aad2d28fed8c8 SHA512 
23960b0ca740a4c9520a3d7043f396ffb6fb730ef28ad44b299aadbb0b7d2fa1a182c38a88fd684fe664c2079c5a03c5a6b8e6ceb7f8ca69a37fb64ef64237a6
 WHIRLPOOL 
07df2f16ef99b62c2c77ada77a51fed1709da3ec2ebfe95b41ca7ea025be0ba2293cfef1665aab777a30908c95c69cd5e265f17e90719386f059f2cddeb7e2a9

diff --git a/app-crypt/nitrokey-app/metadata.xml 
b/app-crypt/nitrokey-app/metadata.xml
new file mode 100644
index ..89dfb8e
--- /dev/null
+++ b/app-crypt/nitrokey-app/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   s...@gentoo.org
+   David Seifert
+   
+   
+   Nitrokey/nitrokey-app
+   
https://github.com/Nitrokey/nitrokey-app/issues
+   
+

diff --git a/app-crypt/nitrokey-app/nitrokey-app-0.6.3.ebuild 
b/app-crypt/nitrokey-app/nitrokey-app-0.6.3.ebuild
new file mode 100644
index ..65bd7f2
--- /dev/null
+++ b/app-crypt/nitrokey-app/nitrokey-app-0.6.3.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils udev
+
+DESCRIPTION="Cross platform personalization tool for the Nitrokey"
+HOMEPAGE="https://github.com/Nitrokey/nitrokey-app;
+SRC_URI="https://github.com/Nitrokey/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5"
+DEPEND="
+   ${RDEPEND}
+   virtual/pkgconfig"
+
+mycmakeargs=( -DHAVE_LIBAPPINDICATOR=NO )
+
+src_prepare() {
+   cmake-utils_src_prepare
+   sed -i "s:DESTINATION lib/udev/rules.d:DESTINATION 
$(get_udevdir)/rules.d:" \
+   CMakeLists.txt || die
+}
+
+pkg_postinst() {
+   udev_reload
+}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-dvbviewer/

2017-02-01 Thread David Seifert
commit: e13fe8e35e9d20df79652fc5adcefdb1b634b865
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Jan 31 18:26:44 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:15:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e13fe8e3

media-plugins/kodi-pvr-dvbviewer: update to match renamed upstream release

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

 media-plugins/kodi-pvr-dvbviewer/Manifest| 2 +-
 ...dvbviewer-2.4.6.ebuild => kodi-pvr-dvbviewer-2.4.6-r1.ebuild} | 9 +
 media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-.ebuild  | 9 +
 3 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/media-plugins/kodi-pvr-dvbviewer/Manifest 
b/media-plugins/kodi-pvr-dvbviewer/Manifest
index 7cdaa09..34079a0 100644
--- a/media-plugins/kodi-pvr-dvbviewer/Manifest
+++ b/media-plugins/kodi-pvr-dvbviewer/Manifest
@@ -1 +1 @@
-DIST kodi-pvr-dvbviewer-2.4.6.tar.gz 92951 SHA256 
7d8cf9b49cc05e7077b78c36ebc57b6d9517b66a8ac7d25547b1c0b948260315 SHA512 
52f737c78ad7bb07bdcc2b0162127663b1fb58eb1f364de034197036ed1e176a6b9feac90847d9b3e0f13cb7119649e66625a514e679a17984f5e1d5e0ddaceb
 WHIRLPOOL 
ea675f9455d3d9efe2ee480c093bb8e10d14a9a804f5c86784f83176719d75db30639851524d4fa053fde370fe56ef7e1f6c0ba3e7f2a26491801a726cc6b3ce
+DIST kodi-pvr-dvbviewer-2.4.6-Krypton.tar.gz 92982 SHA256 
8b4eb77a7848c634ba3e214de85c46cc9b34d2dd411d7bc133169a04168adf5a SHA512 
7253c977432617b73d63d9b923b8dc094342202103e6307c65abccea0b12e76e06fb85562cc1c1297e5ececc902932544c9e156a3c2c43f60b583d9c69610352
 WHIRLPOOL 
4d7a018e82031ac075e1d200fa9bd3944d18661da008864baeccb464480f1efdedd3c53261c810482c3ec3868b90e46bd7208f2adc0782ded049960a1e3142dc

diff --git a/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-2.4.6.ebuild 
b/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-2.4.6-r1.ebuild
similarity index 77%
rename from media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-2.4.6.ebuild
rename to media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-2.4.6-r1.ebuild
index 978e2d8..f72828d 100644
--- a/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-2.4.6.ebuild
+++ b/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-2.4.6-r1.ebuild
@@ -17,9 +17,10 @@ case ${PV} in
inherit git-r3
;;
 *)
+   CODENAME="Krypton"
KEYWORDS="~amd64 ~x86"
-   SRC_URI="https://github.com/kodi-pvr/pvr.dvbviewer/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-   S="${WORKDIR}/pvr.dvbviewer-${PV}"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.dvbviewer/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}-${CODENAME}.tar.gz"
+   S="${WORKDIR}/pvr.dvbviewer-${PV}-${CODENAME}"
;;
 esac
 
@@ -28,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-17*
+   =media-libs/kodi-platform-17*
dev-libs/tinyxml
"
 

diff --git a/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-.ebuild 
b/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-.ebuild
index 978e2d8..86bfc6a 100644
--- a/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-.ebuild
+++ b/media-plugins/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer-.ebuild
@@ -17,9 +17,10 @@ case ${PV} in
inherit git-r3
;;
 *)
+   CODENAME="Krypton"
KEYWORDS="~amd64 ~x86"
-   SRC_URI="https://github.com/kodi-pvr/pvr.dvbviewer/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-   S="${WORKDIR}/pvr.dvbviewer-${PV}"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.dvbviewer/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}-${CODENAME}.tar.gz"
+   S="${WORKDIR}/pvr.dvbviewer-${PV}-${CODENAME}"
;;
 esac
 
@@ -28,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-*
+   =media-libs/kodi-platform-*
dev-libs/tinyxml
"
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-peripheral-joystick/

2017-02-01 Thread David Seifert
commit: 4a824396207b02ae2c659c35e8a90081de9a04c0
Author: Craig Andrews  integralblue  com>
AuthorDate: Wed Feb  1 16:37:53 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:14:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a824396

media-plugins/kodi-peripheral-joystick: 1.2.1 version bump

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

 media-plugins/kodi-peripheral-joystick/Manifest   | 1 +
 ...ral-joystick-.ebuild => kodi-peripheral-joystick-1.2.1.ebuild} | 4 ++--
 .../kodi-peripheral-joystick/kodi-peripheral-joystick-.ebuild | 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/media-plugins/kodi-peripheral-joystick/Manifest 
b/media-plugins/kodi-peripheral-joystick/Manifest
new file mode 100644
index ..453aefe
--- /dev/null
+++ b/media-plugins/kodi-peripheral-joystick/Manifest
@@ -0,0 +1 @@
+DIST kodi-peripheral-joystick-1.2.1.tar.gz 83344 SHA256 
e0230e846d444ff5092c6b2d18c8773ac3330dcc1647626b5da3aaf46e02e982 SHA512 
af86bf8c7e8f7a975f5282a4b4c1d36027552857b31f28bbed03eac0b8e1059bb46f284bf5461c261f0f8be56e2e5a221eb9f916aeff6567fcebc459e34398d6
 WHIRLPOOL 
5d823d27265966e5e2ab88660158919e2d648184d827d545111945f85ba84937dc7c095dc45ff9eaffa87c521ef396f61aa3a605401e2515d052e3ce1f3b3160

diff --git 
a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-.ebuild 
b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.2.1.ebuild
similarity index 93%
copy from 
media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-.ebuild
copy to 
media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.2.1.ebuild
index a02e5d0..3121473 100644
--- 
a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-.ebuild
+++ 
b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-1.2.1.ebuild
@@ -28,8 +28,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-17*
+   =media-libs/kodi-platform-17*
=dev-libs/libplatform-2*
dev-libs/libpcre
"

diff --git 
a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-.ebuild 
b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-.ebuild
index a02e5d0..cbebc44 100644
--- 
a/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-.ebuild
+++ 
b/media-plugins/kodi-peripheral-joystick/kodi-peripheral-joystick-.ebuild
@@ -28,8 +28,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-
+   =media-libs/kodi-platform-
=dev-libs/libplatform-2*
dev-libs/libpcre
"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-njoy/

2017-02-01 Thread David Seifert
commit: dafaadec1975aa8457b134f91dbe9bd44e51f03d
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Jan 31 18:56:33 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:14:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dafaadec

media-plugins/kodi-pvr-njoy: 2.4.2 version bump

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

 media-plugins/kodi-pvr-njoy/Manifest | 1 +
 .../{kodi-pvr-njoy-.ebuild => kodi-pvr-njoy-2.4.2.ebuild}| 9 +
 media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-.ebuild| 9 +
 3 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/media-plugins/kodi-pvr-njoy/Manifest 
b/media-plugins/kodi-pvr-njoy/Manifest
new file mode 100644
index ..15b1b90
--- /dev/null
+++ b/media-plugins/kodi-pvr-njoy/Manifest
@@ -0,0 +1 @@
+DIST kodi-pvr-njoy-2.4.2.tar.gz 47118 SHA256 
4315b5f87986c17e668d0d89093059b96315b8a7908fc060e2660e5bf8216057 SHA512 
2f36aed57c51dbba853c7e57775b2374d072028b1d02978d44f519adb72c6605ea0f1b19721411dc6a6f7c4b4cd0e36517f646c9ae901cfe2dd6e64916f0ba8d
 WHIRLPOOL 
05dd8fdaf9ff1edb372035a31137aa1d94686a33da87d4019bb9eab27b149aa9828476d9622835b3ec9e62e528b6e3466de47eb781df5f4f54cf10a611e08769

diff --git a/media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-.ebuild 
b/media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-2.4.2.ebuild
similarity index 70%
copy from media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-.ebuild
copy to media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-2.4.2.ebuild
index 721719e..7f1edff 100644
--- a/media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-.ebuild
+++ b/media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-2.4.2.ebuild
@@ -17,9 +17,10 @@ case ${PV} in
inherit git-r3
;;
 *)
+   CODENAME="Krypton"
KEYWORDS="~amd64 ~x86"
-   SRC_URI="https://github.com/kodi-pvr/pvr.njoy/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/pvr.njoy-${PV}"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.njoy/archive/${PV}-${CODENAME}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.njoy-${PV}-${CODENAME}"
;;
 esac
 
@@ -28,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-17*
+   =media-libs/kodi-platform-17*
dev-libs/tinyxml
"
 

diff --git a/media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-.ebuild 
b/media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-.ebuild
index 721719e..e2cbe1b 100644
--- a/media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-.ebuild
+++ b/media-plugins/kodi-pvr-njoy/kodi-pvr-njoy-.ebuild
@@ -17,9 +17,10 @@ case ${PV} in
inherit git-r3
;;
 *)
+   CODENAME="Krypton"
KEYWORDS="~amd64 ~x86"
-   SRC_URI="https://github.com/kodi-pvr/pvr.njoy/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/pvr.njoy-${PV}"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.njoy/archive/${PV}-${CODENAME}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.njoy-${PV}-${CODENAME}"
;;
 esac
 
@@ -28,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-
+   =media-libs/kodi-platform-
dev-libs/tinyxml
"
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-inputstream-rtmp/

2017-02-01 Thread David Seifert
commit: eb1e01efcf10cc8276ac4e312332667b7621c54f
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Jan 31 18:22:27 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:15:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb1e01ef

media-plugins/kodi-inputstream-rtmp: Depend on the correct version of kodi

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

 ...utstream-rtmp-1.0.3.ebuild => kodi-inputstream-rtmp-1.0.3-r1.ebuild} | 2 +-
 media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-1.0.3.ebuild 
b/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-1.0.3-r1.ebuild
similarity index 96%
rename from 
media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-1.0.3.ebuild
rename to 
media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-1.0.3-r1.ebuild
index 0b2f29c..a62d654 100644
--- a/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-1.0.3.ebuild
+++ b/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-1.0.3-r1.ebuild
@@ -28,7 +28,7 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
+   =media-tv/kodi-17*
media-video/rtmpdump
"
 RDEPEND="

diff --git 
a/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-.ebuild 
b/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-.ebuild
index 0b2f29c..13455f9 100644
--- a/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-.ebuild
+++ b/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-.ebuild
@@ -28,7 +28,7 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
+   =media-tv/kodi-
media-video/rtmpdump
"
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-wmc/

2017-02-01 Thread David Seifert
commit: 146173c599a065a6ba7b83fcd480e05d1cd64af8
Author: Craig Andrews  integralblue  com>
AuthorDate: Tue Jan 31 19:04:10 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb  1 22:14:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=146173c5

media-plugins/kodi-pvr-wmc: 1.4.7 version bump

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

 media-plugins/kodi-pvr-wmc/Manifest  | 1 +
 .../{kodi-pvr-wmc-.ebuild => kodi-pvr-wmc-1.4.7.ebuild}  | 9 +
 media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-.ebuild  | 9 +
 3 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/media-plugins/kodi-pvr-wmc/Manifest 
b/media-plugins/kodi-pvr-wmc/Manifest
new file mode 100644
index ..ea533f1
--- /dev/null
+++ b/media-plugins/kodi-pvr-wmc/Manifest
@@ -0,0 +1 @@
+DIST kodi-pvr-wmc-1.4.7.tar.gz 177937 SHA256 
b88e7a185f2f88ce8fa683a263702e2621efef14abd343414fedf900d163baa5 SHA512 
15c2807528d169a9de7831b653c948bc8e597324f43dfaa1b1cd1bfefd37979387301c73cabe30ae87532f36d280d84b0e81b6a695f95eb4b4be9e75ebe3736e
 WHIRLPOOL 
adb02fad574e222796cf9895694c917f580d7deeb15fd660b5a8067e9dc8af6a0c7cc793c430aa752c927a22c497e2da1116d94bcc7d3a301d698b2ace8f11a5

diff --git a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-.ebuild 
b/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-1.4.7.ebuild
similarity index 69%
copy from media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-.ebuild
copy to media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-1.4.7.ebuild
index f59a241..6319f78 100644
--- a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-.ebuild
+++ b/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-1.4.7.ebuild
@@ -17,9 +17,10 @@ case ${PV} in
inherit git-r3
;;
 *)
+   CODENAME="Krypton"
KEYWORDS="~amd64 ~x86"
-   SRC_URI="https://github.com/kodi-pvr/pvr.wmc/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/pvr.wmc-${PV}"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.wmc/archive/${PV}-${CODENAME}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.wmc-${PV}-${CODENAME}"
;;
 esac
 
@@ -28,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-17*
+   =media-libs/kodi-platform-17*
"
 RDEPEND="
${DEPEND}

diff --git a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-.ebuild 
b/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-.ebuild
index f59a241..dfb6bec 100644
--- a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-.ebuild
+++ b/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-.ebuild
@@ -17,9 +17,10 @@ case ${PV} in
inherit git-r3
;;
 *)
+   CODENAME="Krypton"
KEYWORDS="~amd64 ~x86"
-   SRC_URI="https://github.com/kodi-pvr/pvr.wmc/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/pvr.wmc-${PV}"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.wmc/archive/${PV}-${CODENAME}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.wmc-${PV}-${CODENAME}"
;;
 esac
 
@@ -28,8 +29,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   media-tv/kodi
-   media-libs/kodi-platform
+   =media-tv/kodi-
+   =media-libs/kodi-platform-
"
 RDEPEND="
${DEPEND}



  1   2   3   >