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

2018-02-01 Thread Lars Wendler
commit: 64ad2fb0d43b1d21e60e4eae54cff1973b1e7eb4
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Feb  2 07:27:33 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Feb  2 07:27:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64ad2fb0

sys-apps/iproute2: Removed old.

Package-Manager: Portage-2.3.23, Repoman-2.3.6

 sys-apps/iproute2/iproute2-4.14.1-r1.ebuild | 141 
 1 file changed, 141 deletions(-)

diff --git a/sys-apps/iproute2/iproute2-4.14.1-r1.ebuild 
b/sys-apps/iproute2/iproute2-4.14.1-r1.ebuild
deleted file mode 100644
index d165889df71..000
--- a/sys-apps/iproute2/iproute2-4.14.1-r1.ebuild
+++ /dev/null
@@ -1,141 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs flag-o-matic multilib
-
-if [[ ${PV} == "" ]] ; then
-   
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
-   inherit git-r3
-else
-   SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-   KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
~sparc x86"
-fi
-
-DESCRIPTION="kernel routing and traffic control utilities"
-HOMEPAGE="https://wiki.linuxfoundation.org/networking/iproute2;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="atm berkdb +iptables ipv6 minimal selinux"
-
-# We could make libmnl optional, but it's tiny, so eh
-RDEPEND="
-   !net-misc/arpd
-   !minimal? ( net-libs/libmnl virtual/libelf )
-   iptables? ( >=net-firewall/iptables-1.4.20:= )
-   berkdb? ( sys-libs/db:= )
-   atm? ( net-dialup/linux-atm )
-   selinux? ( sys-libs/libselinux )
-"
-# We require newer linux-headers for ipset support #549948 and some defines 
#553876
-DEPEND="
-   ${RDEPEND}
-   app-arch/xz-utils
-   iptables? ( virtual/pkgconfig )
-   >=sys-devel/bison-2.4
-   sys-devel/flex
-   >=sys-kernel/linux-headers-3.16
-   elibc_glibc? ( >=sys-libs/glibc-2.7 )
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-3.1.0-mtu.patch #291907
-)
-
-src_prepare() {
-   if ! use ipv6 ; then
-   PATCHES+=(
-   "${FILESDIR}"/${PN}-4.11.0-no-ipv6.patch #326849
-   )
-   fi
-
-   default
-
-   sed -i \
-   -e '/^CC :\?=/d' \
-   -e "/^LIBDIR/s:=.*:=/$(get_libdir):" \
-   -e "s:-O2:${CFLAGS} ${CPPFLAGS}:" \
-   -e "/^HOSTCC/s:=.*:= $(tc-getBUILD_CC):" \
-   -e "/^WFLAGS/s:-Werror::" \
-   -e "/^DBM_INCLUDE/s:=.*:=${T}:" \
-   Makefile || die
-
-   # Use /run instead of /var/run.
-   sed -i \
-   -e 's:/var/run:/run:g' \
-   include/namespace.h \
-   man/man8/ip-netns.8 || die
-
-   # build against system headers
-   rm -r include/netinet #include/linux include/ip{,6}tables{,_common}.h 
include/libiptc
-   sed -i 's:TCPI_OPT_ECN_SEEN:16:' misc/ss.c || die
-
-   use minimal && sed -i -e '/^SUBDIRS=/s:=.*:=lib tc ip:' Makefile
-}
-
-src_configure() {
-   tc-export AR CC PKG_CONFIG
-
-   # This sure is ugly.  Should probably move into toolchain-funcs at some 
point.
-   local setns
-   pushd "${T}" >/dev/null
-   printf '#include \nint main(){return setns(0, 0);}\n' > test.c
-   ${CC} ${CFLAGS} ${CPPFLAGS} -D_GNU_SOURCE ${LDFLAGS} test.c >&/dev/null 
&& setns=y || setns=n
-   echo 'int main(){return 0;}' > test.c
-   ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} test.c -lresolv >&/dev/null || 
sed -i '/^LDLIBS/s:-lresolv::' "${S}"/Makefile
-   popd >/dev/null
-
-   cat <<-EOF > Config
-   TC_CONFIG_ATM := $(usex atm y n)
-   TC_CONFIG_XT  := $(usex iptables y n)
-   TC_CONFIG_NO_XT := $(usex iptables n y)
-   # We've locked in recent enough kernel headers #549948
-   TC_CONFIG_IPSET := y
-   HAVE_BERKELEY_DB := $(usex berkdb y n)
-   HAVE_MNL  := $(usex minimal n y)
-   HAVE_ELF  := $(usex minimal n y)
-   HAVE_SELINUX  := $(usex selinux y n)
-   IP_CONFIG_SETNS := ${setns}
-   # Use correct iptables dir, #144265 #293709
-   IPT_LIB_DIR := $(use iptables && ${PKG_CONFIG} xtables 
--variable=xtlibdir)
-   EOF
-}
-
-src_install() {
-   if use minimal ; then
-   into /
-   dosbin tc/tc
-   dobin ip/ip
-   return 0
-   fi
-
-   emake \
-   DESTDIR="${D}" \
-   LIBDIR="${EPREFIX%/}"/$(get_libdir) \
-   SBINDIR="${EPREFIX%/}"/sbin \
-   CONFDIR="${EPREFIX%/}"/etc/iproute2 \
-   DOCDIR="${EPREFIX%/}"/usr/share/doc/${PF} \
-   MANDIR="${EPREFIX%/}"/usr/share/man \
-   ARPDDIR="${EPREFIX%/}"/var/lib/arpd \
-   install
-
-   dodir /bin
-   mv "${ED%/}"/{s,}bin/ip || die #330115
-
-   dolib.a lib/libnetlink.a
-   

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

2018-02-01 Thread Lars Wendler
commit: acabb5d1ea6ac4caba3360b00ef14a606e0d7b6a
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Feb  2 07:29:17 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Feb  2 07:29:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acabb5d1

sys-apps/iproute2: Synced live ebuild.

Package-Manager: Portage-2.3.23, Repoman-2.3.6

 sys-apps/iproute2/iproute2-.ebuild | 45 --
 1 file changed, 32 insertions(+), 13 deletions(-)

diff --git a/sys-apps/iproute2/iproute2-.ebuild 
b/sys-apps/iproute2/iproute2-.ebuild
index d48d995c3cf..15efa9acf6c 100644
--- a/sys-apps/iproute2/iproute2-.ebuild
+++ b/sys-apps/iproute2/iproute2-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -18,24 +18,32 @@ 
HOMEPAGE="https://wiki.linuxfoundation.org/networking/iproute2;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="atm berkdb +iptables ipv6 minimal selinux"
+IUSE="atm berkdb elf +iptables ipv6 minimal selinux"
 
-RDEPEND="!net-misc/arpd
+# We could make libmnl optional, but it's tiny, so eh
+RDEPEND="
+   !net-misc/arpd
+   !minimal? ( net-libs/libmnl )
+   elf? ( virtual/libelf )
iptables? ( >=net-firewall/iptables-1.4.20:= )
berkdb? ( sys-libs/db:= )
atm? ( net-dialup/linux-atm )
-   selinux? ( sys-libs/libselinux )"
-# We require newer linux-headers for ipset support #549948
-DEPEND="${RDEPEND}
+   selinux? ( sys-libs/libselinux )
+"
+# We require newer linux-headers for ipset support #549948 and some defines 
#553876
+DEPEND="
+   ${RDEPEND}
app-arch/xz-utils
iptables? ( virtual/pkgconfig )
>=sys-devel/bison-2.4
sys-devel/flex
-   >=sys-kernel/linux-headers-3.7
-   elibc_glibc? ( >=sys-libs/glibc-2.7 )"
+   >=sys-kernel/linux-headers-3.16
+   elibc_glibc? ( >=sys-libs/glibc-2.7 )
+"
 
 PATCHES=(
"${FILESDIR}"/${PN}-3.1.0-mtu.patch #291907
+   "${FILESDIR}"/${PN}-4.14.1-configure-nomagic.patch # bug 643722
 )
 
 src_prepare() {
@@ -66,9 +74,6 @@ src_prepare() {
rm -r include/netinet #include/linux include/ip{,6}tables{,_common}.h 
include/libiptc
sed -i 's:TCPI_OPT_ECN_SEEN:16:' misc/ss.c || die
 
-   # don't build arpd if USE=-berkdb #81660
-   use berkdb || sed -i '/^TARGETS=/s: arpd : :' misc/Makefile
-
use minimal && sed -i -e '/^SUBDIRS=/s:=.*:=lib tc ip:' Makefile
 }
 
@@ -84,11 +89,20 @@ src_configure() {
${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} test.c -lresolv >&/dev/null || 
sed -i '/^LDLIBS/s:-lresolv::' "${S}"/Makefile
popd >/dev/null
 
-   cat <<-EOF > Config
+   # run "configure" script first which will create "config.mk"...
+   econf
+
+   # ...now switch on/off requested features via USE flags
+   # this is only useful if the test did not set other things, per bug 
#643722
+   cat <<-EOF >> config.mk
TC_CONFIG_ATM := $(usex atm y n)
TC_CONFIG_XT  := $(usex iptables y n)
+   TC_CONFIG_NO_XT := $(usex iptables n y)
# We've locked in recent enough kernel headers #549948
TC_CONFIG_IPSET := y
+   HAVE_BERKELEY_DB := $(usex berkdb y n)
+   HAVE_MNL  := $(usex minimal n y)
+   HAVE_ELF  := $(usex elf y n)
HAVE_SELINUX  := $(usex selinux y n)
IP_CONFIG_SETNS := ${setns}
# Use correct iptables dir, #144265 #293709
@@ -96,10 +110,15 @@ src_configure() {
EOF
 }
 
+src_compile() {
+   emake V=1
+}
+
 src_install() {
if use minimal ; then
into /
-   dosbin tc/tc ip/ip
+   dosbin tc/tc
+   dobin ip/ip
return 0
fi
 



[gentoo-commits] proj/dotnet:master commit in: dev-dotnet/msbuild-tasks-api/, dev-dotnet/newtonsoft-json/

2018-02-01 Thread Mikhail Pukhlikov
commit: 13223cc2b890af3d39f5b26c2b87786de5fc48e3
Author: Jacob MacDonald  gmail  com>
AuthorDate: Fri Feb  2 06:22:17 2018 +
Commit: Mikhail Pukhlikov  gentoo  org>
CommitDate: Fri Feb  2 06:22:17 2018 +
URL:https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=13223cc2

Include xbuild functions in Newtonsoft and MSBuild tasks.

Needed to install MSBuild, as the packages are required and their ebuilds
require the exbuild and exbuild_raw functions.

 dev-dotnet/msbuild-tasks-api/msbuild-tasks-api-15.3-r1.ebuild | 2 +-
 dev-dotnet/newtonsoft-json/newtonsoft-json-6.0.8-r1.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-dotnet/msbuild-tasks-api/msbuild-tasks-api-15.3-r1.ebuild 
b/dev-dotnet/msbuild-tasks-api/msbuild-tasks-api-15.3-r1.ebuild
index 8d4caab..6e7672c 100644
--- a/dev-dotnet/msbuild-tasks-api/msbuild-tasks-api-15.3-r1.ebuild
+++ b/dev-dotnet/msbuild-tasks-api/msbuild-tasks-api-15.3-r1.ebuild
@@ -10,7 +10,7 @@ SLOT="0"
 USE_DOTNET="net45"
 IUSE="+${USE_DOTNET} +gac developer debug doc"
 
-inherit gac dotnet
+inherit gac dotnet xbuild
 
 
#https://github.com/mono/linux-packaging-msbuild/commit/0d8cee3f87b92cff425306d9c588fc6433fb6bf0
 GITHUB_ACCOUNT="mono"

diff --git a/dev-dotnet/newtonsoft-json/newtonsoft-json-6.0.8-r1.ebuild 
b/dev-dotnet/newtonsoft-json/newtonsoft-json-6.0.8-r1.ebuild
index e1cc67a..5e117aa 100644
--- a/dev-dotnet/newtonsoft-json/newtonsoft-json-6.0.8-r1.ebuild
+++ b/dev-dotnet/newtonsoft-json/newtonsoft-json-6.0.8-r1.ebuild
@@ -18,7 +18,7 @@ USE_DOTNET="net45"
 # pkg-config = register in pkg-config database
 IUSE="${USE_DOTNET} debug developer +gac pkg-config nupkg test"
 
-inherit dotnet gac
+inherit dotnet gac xbuild
 
 NAME="Newtonsoft.Json"
 HOMEPAGE="https://github.com/JamesNK/${NAME};



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

2018-02-01 Thread Mikhail Pukhlikov
commit: 81144add6156f825223aedee4fbc51ea5044edd0
Author: mpkh  gentoo  org>
AuthorDate: Fri Feb  2 06:27:31 2018 +
Commit: Mikhail Pukhlikov  gentoo  org>
CommitDate: Fri Feb  2 06:27:31 2018 +
URL:https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=81144add

Merge pull request #375 from jaccarmac/fix-msbuild-merge

Include xbuild functions in Newtonsoft and MSBuild tasks.

 dev-dotnet/msbuild-tasks-api/msbuild-tasks-api-15.3-r1.ebuild | 2 +-
 dev-dotnet/newtonsoft-json/newtonsoft-json-6.0.8-r1.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



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

2018-02-01 Thread Marc Schiffbauer
commit: 89d0dc1147f5eaa799b0cd1a587ecafbaa5ffbf2
Author: Marc Schiffbauer  gentoo  org>
AuthorDate: Fri Feb  2 02:04:03 2018 +
Commit: Marc Schiffbauer  gentoo  org>
CommitDate: Fri Feb  2 02:12:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89d0dc11

app-admin/restart-services: fix eerror messages

Package-Manager: Portage-2.3.19, Repoman-2.3.6
Manifest-Sign-Key: 0xCA3E7BF67F979BE5

 app-admin/restart-services/restart-services-0.14.0.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-admin/restart-services/restart-services-0.14.0.ebuild 
b/app-admin/restart-services/restart-services-0.14.0.ebuild
index 3f78f2850aa..507423cab5d 100644
--- a/app-admin/restart-services/restart-services-0.14.0.ebuild
+++ b/app-admin/restart-services/restart-services-0.14.0.ebuild
@@ -50,12 +50,12 @@ pkg_postinst() {
if [[ $MAJOR -eq 0 && $MINOR -lt 14 ]]; then
einfo "Migrating config"
if [[ -e /etc/restart-services.d ]]; then
-   error "/etc/restart-services.d alrayd exists?!"
-   die
+   ewarn "/etc/restart-services.d already exists?!"
+   return
fi
if [[ -e /etc/restart-services.conf ]]; then
-   error "/etc/restart-services.conf alrayd 
exists?!"
-   die
+   ewarn "/etc/restart-services.conf already 
exists?!"
+   return
fi
 
if [[ -f /etc/restart_services.d/00-local.conf ]]; then



[gentoo-commits] repo/gentoo:master commit in: profiles/updates/, app-admin/restart-services/, app-admin/restart_services/

2018-02-01 Thread Marc Schiffbauer
commit: 84f352d07fee751f00dc1492d939eb3559b9015a
Author: Marc Schiffbauer  gentoo  org>
AuthorDate: Fri Feb  2 00:07:13 2018 +
Commit: Marc Schiffbauer  gentoo  org>
CommitDate: Fri Feb  2 01:18:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84f352d0

app-admin/restart_services: moved, bumped

 app-admin/restart-services/Manifest|  1 +
 .../metadata.xml   |  0
 .../restart-services-0.14.0.ebuild | 83 ++
 app-admin/restart_services/Manifest|  2 -
 .../restart_services-0.13.0-r1.ebuild  | 37 --
 .../restart_services-0.13.1.ebuild | 37 --
 profiles/updates/1Q-2018   |  1 +
 7 files changed, 85 insertions(+), 76 deletions(-)

diff --git a/app-admin/restart-services/Manifest 
b/app-admin/restart-services/Manifest
new file mode 100644
index 000..db36b3b4aa7
--- /dev/null
+++ b/app-admin/restart-services/Manifest
@@ -0,0 +1 @@
+DIST restart-services-0.14.0.tgz 20896 BLAKE2B 
e5f2d425659d81d75d7e030e42b582275595cbf9cd35dc85d8d1656792088b27156a2b5f44959966cc034242e03f20a79df6837a30d426b630410987762c97ab
 SHA512 
20fe1750682bdd1e1566b60e80bd099351ae2ff49fb74f138879a7035078dd9b2ddfd79f6c16c3822f8e7eb702d4ab98719e7ca79a3e007b8b547243f9d1a364

diff --git a/app-admin/restart_services/metadata.xml 
b/app-admin/restart-services/metadata.xml
similarity index 100%
rename from app-admin/restart_services/metadata.xml
rename to app-admin/restart-services/metadata.xml

diff --git a/app-admin/restart-services/restart-services-0.14.0.ebuild 
b/app-admin/restart-services/restart-services-0.14.0.ebuild
new file mode 100644
index 000..3f78f2850aa
--- /dev/null
+++ b/app-admin/restart-services/restart-services-0.14.0.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+DESCRIPTION="Tool to manage OpenRC services that need to be restarted"
+HOMEPAGE="https://dev.gentoo.org/~mschiff/restart-services/;
+SRC_URI="https://dev.gentoo.org/~mschiff/src/${PN}/${P}.tgz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="
+   app-admin/lib_users
+   sys-apps/openrc
+"
+
+src_install() {
+   dosbin restart-services
+   doman restart-services.1
+   keepdir /etc/restart-services.d
+   insinto /etc
+   doins restart-services.conf
+   dodoc README CHANGES
+
+   # remove after 2018/07/01
+   dosym restart-services /usr/sbin/restart_services
+
+   sed -i 's/^#include/include/' "${D}"/etc/restart-services.conf
+   cat>"${D}"/etc/restart-services.d/00-local.conf<<-EOF
+   # You may put your local changes here or in any other *.conf file
+   # in this directory so you can leave /etc/restart-services.conf as is.
+   # Example:
+   # *extend* SV_ALWAYS to match 'myservice'
+   # SV_ALWAYS+=( myservice )
+   EOF
+}
+
+pkg_postinst() {
+   local MAJOR MINOR
+   # migrate config data for versions < 0.13.2
+   if [[ $REPLACING_VERSIONS ]]; then
+   MAJOR=${REPLACING_VERSIONS%%.*}
+   MINOR=${REPLACING_VERSIONS%.*}
+   MINOR=${MINOR#*.}
+
+   if [[ $MAJOR -eq 0 && $MINOR -lt 14 ]]; then
+   einfo "Migrating config"
+   if [[ -e /etc/restart-services.d ]]; then
+   error "/etc/restart-services.d alrayd exists?!"
+   die
+   fi
+   if [[ -e /etc/restart-services.conf ]]; then
+   error "/etc/restart-services.conf alrayd 
exists?!"
+   die
+   fi
+
+   if [[ -f /etc/restart_services.d/00-local.conf ]]; then
+   sed -i 's/restart_services/restart-services/g' \
+   /etc/restart_services.d/00-local.conf
+   fi
+   if [[ $(ls /etc/restart_services.d/) ]]; then
+   mv -v /etc/restart_services.d/* 
/etc/restart-services.d/
+   fi
+   if [[ -f 
/etc/restart_services.d/.keep_app-admin_restart_services-0 ]]; then
+   rm -v 
/etc/restart_services.d/.keep_app-admin_restart_services-0
+   fi
+   if [[ -d /etc/restart_services.d ]]; then
+   rmdir -v /etc/restart_services.d
+   fi
+
+   if [[ -f /etc/restart_services.conf ]]; then
+   sed -i 's/restart_services/restart-services/g' \
+   /etc/restart_services.conf
+   mv /etc/restart_services.conf 
/etc/restart-services.conf

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

2018-02-01 Thread Matthias Maier
commit: 6fbf5c7abd6096d697c03c60f53767aab0f89881
Author: Matthias Maier  gentoo  org>
AuthorDate: Fri Feb  2 00:03:51 2018 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Fri Feb  2 00:03:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fbf5c7a

eclass/toolchain.eclass: die early in case of EAPI < 5

With the latest changes (slot operators) we need at least EAPI 5 when
inheriting toolchain.eclass. Thus, in case of EAPI=4, die early with a
more descriptive error message.

 eclass/toolchain.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index ef42b338fd3..03e44c42004 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -24,8 +24,8 @@ fi
 FEATURES=${FEATURES/multilib-strict/}
 
 case ${EAPI:-0} in
-   0|1|2|3) die "Need to upgrade to at least EAPI=4" ;;
-   4*|5*)   ;;
+   0|1|2|3|4*) die "Need to upgrade to at least EAPI=5" ;;
+   5*)   ;;
*)   die "I don't speak EAPI ${EAPI}." ;;
 esac
 EXPORT_FUNCTIONS pkg_pretend pkg_setup src_unpack src_prepare src_configure \



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

2018-02-01 Thread Matthias Maier
commit: a5a55ab97b8ed6c250b86aa2e6c91a329bd3d3a1
Author: Matthias Maier  gentoo  org>
AuthorDate: Tue Dec 26 16:38:23 2017 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Thu Feb  1 23:54:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5a55ab9

eclass/toolchain.eclass: Add := operators to a number of critical deps

We should annotate a number of critical library dependencies of the
compiler with := operators to ensure that the compiler gets rebuilt in
time.

TODO: We should also check for FEATURES=preserve-libs / print a warning
before attempting to upgrade a library with soname change. Otherwise,
users might be off to a rocky ride.

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

 eclass/toolchain.eclass | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 504fcabdba0..ef42b338fd3 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -166,7 +166,7 @@ RDEPEND="sys-libs/zlib
 tc_version_is_at_least 3 && RDEPEND+=" virtual/libiconv"
 
 if tc_version_is_at_least 4 ; then
-   GMP_MPFR_DEPS=">=dev-libs/gmp-4.3.2:0 >=dev-libs/mpfr-2.4.2:0"
+   GMP_MPFR_DEPS=">=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0="
if tc_version_is_at_least 4.3 ; then
RDEPEND+=" ${GMP_MPFR_DEPS}"
elif in_iuse fortran ; then
@@ -174,7 +174,7 @@ if tc_version_is_at_least 4 ; then
fi
 fi
 
-tc_version_is_at_least 4.5 && RDEPEND+=" >=dev-libs/mpc-0.8.1:0"
+tc_version_is_at_least 4.5 && RDEPEND+=" >=dev-libs/mpc-0.8.1:0="
 
 if in_iuse objc-gc ; then
if tc_version_is_at_least 7 ; then
@@ -188,8 +188,8 @@ if in_iuse graphite ; then
elif tc_version_is_at_least 4.8 ; then
RDEPEND+="
graphite? (
-   >=dev-libs/cloog-0.18.0
-   >=dev-libs/isl-0.11.1
+   >=dev-libs/cloog-0.18.0:0=
+   >=dev-libs/isl-0.11.1:0=
)"
fi
 fi



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

2018-02-01 Thread Zac Medico
commit: 56c3ee7d61fcda154968f549afbfcff0a962944f
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Feb  1 23:33:14 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Feb  1 23:38:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56c3ee7d

sys-apps/portage: version bump to 2.3.23

  #646314 - fix "gpg: Can't check signature: No public key"

Bug: https://bugs.gentoo.org/646314
Package-Manager: Portage-2.3.23, Repoman-2.3.6

# Please enter the commit message for your changes. Lines starting
# with '#' will be kept; you may remove them yourself if you want to.
# An empty message aborts the commit.
#
# Date:  Thu Feb 1 15:33:14 2018 -0800
#
# On branch master
# Your branch is ahead of 'gentoo/master' by 1 commit.
#   (use "git push" to publish your local commits)
#
# Changes to be committed:
#   modified:   Manifest
#   renamed:portage-2.3.22.ebuild -> portage-2.3.23.ebuild
#

 sys-apps/portage/Manifest | 2 +-
 sys-apps/portage/{portage-2.3.22.ebuild => portage-2.3.23.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index 99f6c934c53..e0444bd66ca 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -3,6 +3,6 @@ DIST portage-2.3.14.tar.bz2 948535 BLAKE2B 
765c9eabb64c3b095993bb244481df2d243f5
 DIST portage-2.3.16.tar.bz2 949134 BLAKE2B 
f8e7b6f13dfbf9aecdec444705042c6584c324522c0d131bf3c10f8fbfd5f6eeb97134afa42ed23da37f36ad4e2a0fc27129aebeb100aed2e3fd650c360ed060
 SHA512 
5847904b3262adcef04c7d6781cf2d03130480a49c5343a3a2d5cc36ddc7245ac30b1ba152329f96e2e4ca8d62ef387554cb228798db60f6f8141830d147dfaf
 DIST portage-2.3.19.tar.bz2 954921 BLAKE2B 
e1bb3606ff2c5ba7b2123c61469b99f4d5d89f534a9af26065ac03bb2accd00cd363e4027e33546fc9b6d01b2fb65ca0d4311c6e2e8cc518c09030c979a69240
 SHA512 
94899bdfa4d22c846234bd28d4744613202cf67d3f32c242cb7fb60b17419419a2a29912e584ade7df52fba4c6a58774c5859148352221c978f34b4e7680981d
 DIST portage-2.3.20.tar.bz2 956633 BLAKE2B 
cf166a10522c5fab6b273674be4d7a673b961fe1c2ca649c7fa6d3759364dd1454ea57edd1e99fd2648b47244fde6f311fb925f50b9a118a1d2880048eb9f39e
 SHA512 
e4fde56f5293b25ef5f484cf601c1db71c350603987e1b2736d9b8434158e8778c637dd5891401e6d484c7a11f1982bbe8213a352c185fc4c6b0039006756764
-DIST portage-2.3.22.tar.bz2 958924 BLAKE2B 
16ff087bc1ae8222c9ba10943c72b68820b0e1be6f3c94bd5d5159542aa5b1e126874ee2c4dc615f6f2ce88f244997addcb14a701456eba2ddff86c41627
 SHA512 
71d36bb15748e8485b4331751e349679592a6dba157f47c82c2ad8fbecbd8a0c8f7194a66db319b02697b15a8996ec85ff5b230087c21ae9d379f6ae4642e9d4
+DIST portage-2.3.23.tar.bz2 958822 BLAKE2B 
c36f5eceec5b6ce4efae1b1050ec0c3f3d15c5e595f550cc1bfd65551be55ab9c3af663b9f1945c890d88c0350d668e81c327987d9c67e3b2448c418087a2183
 SHA512 
daff6008737c93c374f214c5e8e5ca9a208c45c465cfbc8d86174b80ff48c003de07e481f93e8856e650dadb01411c833f6b68c8ea2a599518528ca563898aaa
 DIST portage-2.3.6.tar.bz2 943085 BLAKE2B 
5c649ec5f5a82b5f55c71425d13ee3335a773c7f78500d6ec963594c95eba5d9fc49c37ab5ca1bde7621398443d526a8a1485b67748f859726f7f581e2d88091
 SHA512 
5bcfb678c1ea0cd97a983ee7520c9ecabd07d5bb0fd01c70b74fd7b6ce478f4a109aac84d40b82426719ca7c9ee6aed3affb3b9754045e62b4c664ae113cf055
 DIST portage-2.3.8.tar.bz2 938062 BLAKE2B 
3f7bedf6268131a3b3539d53c8a7bb069b533b3a78e5eec521b6201439c8ee5e66996e798fe295561d0a94bfcd32adf414d4f8b5e7a93035cea09749406e64a3
 SHA512 
4b4b2de20323799b9b0f7a8812f939aa9a96d2744a0f65ad5287ba49744c491b55169cdb21f2885317a6a7c960d2070775ffd798f247b44eebc677c33c271eb8

diff --git a/sys-apps/portage/portage-2.3.22.ebuild 
b/sys-apps/portage/portage-2.3.23.ebuild
similarity index 100%
rename from sys-apps/portage/portage-2.3.22.ebuild
rename to sys-apps/portage/portage-2.3.23.ebuild



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

2018-02-01 Thread Zac Medico
commit: 284165e6eec159795109b94635a0430f9bd39f83
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Feb  1 23:29:31 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Feb  1 23:29:44 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=284165e6

Updates for portage-2.3.23 release

 RELEASE-NOTES | 6 ++
 setup.py  | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index ed3dbdd20..27f9a1381 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,6 +1,12 @@
 Release Notes; upgrade information mainly.
 Features/major bugfixes are listed in NEWS
 
+portage-2.3.23
+==
+* Bug Fixes:
+- Bug 646314 fix "gpg: Can't check signature: No public key"
+
+
 portage-2.3.22
 ==
 * Bug Fixes:

diff --git a/setup.py b/setup.py
index a95476454..67b983cdf 100755
--- a/setup.py
+++ b/setup.py
@@ -663,7 +663,7 @@ class build_ext(_build_ext):
 
 setup(
name = 'portage',
-   version = '2.3.22',
+   version = '2.3.23',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-port...@gentoo.org',



[gentoo-commits] proj/portage: New tag: portage-2.3.23

2018-02-01 Thread Zac Medico
commit: 
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Feb  1 23:33:58 2018 +

New tag: portage-2.3.23




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

2018-02-01 Thread Patrice Clement
commit: d31db15d167148c06e333882b8f6958f62f1be5c
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Feb  1 22:24:08 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Feb  1 23:06:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d31db15d

dev-python/brython: version bump.

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-python/brython/Manifest |  1 +
 dev-python/brython/brython-3.3.4.ebuild | 36 +
 2 files changed, 37 insertions(+)

diff --git a/dev-python/brython/Manifest b/dev-python/brython/Manifest
index d0ae6ec1eab..b4f5c9eedab 100644
--- a/dev-python/brython/Manifest
+++ b/dev-python/brython/Manifest
@@ -1 +1,2 @@
 DIST brython-3.3.3.zip 10040987 BLAKE2B 
a6a238ac6189e9170653c1987db46f2e0735f25deccaf0318ebc669b48dce1330acf333ef27300f1061e7e18044cfa24fadc02265d0fe3a83d0aa8b97f4de684
 SHA512 
e182a6c859cd18b90b205f751260b0b5c8d250746e48844c59cd61608dfdaf0fd6f0f25b8061de9505b7c5d094ac68fe57536c52cb31adb48f04c2cc5624e249
+DIST brython-3.3.4.zip 10047374 BLAKE2B 
ba4719476206fd71f412d646deb6a7eea3a0aef930814d7fa3589a3e736818f2bc7edf7f642998ae1471da87e3ad05ce89fd9dd32d569267ba45174543e4e520
 SHA512 
818181e040eefaeffd1e8866af471626ff5874fd99c3ee9fcc09c46a4b4b836619045a2712a8e16121a1132c86407b0676a8125e707eff4c7e867851cf20cecd

diff --git a/dev-python/brython/brython-3.3.4.ebuild 
b/dev-python/brython/brython-3.3.4.ebuild
new file mode 100644
index 000..fe8fc801b10
--- /dev/null
+++ b/dev-python/brython/brython-3.3.4.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit webapp python-single-r1
+
+DESCRIPTION="A Python 3 implementation for client-side web programming"
+HOMEPAGE="http://www.brython.info;
+SRC_URI="https://github.com/${PN}-dev/${PN}/archive/${PV}.zip -> ${P}.zip"
+
+LICENSE="BSD"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+need_httpd_cgi
+
+pkg_setup() {
+   webapp_pkg_setup
+   python-single-r1_pkg_setup
+}
+
+src_install() {
+   dodoc LICENCE.txt README.md
+   rm -v LICENCE.txt README.md bower.json .{git*,tra*} server.py || die
+
+   webapp_src_preinst
+
+   insinto "${MY_HTDOCSDIR}"
+   doins -r .
+
+   webapp_src_install
+}



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

2018-02-01 Thread Manuel Rüger
commit: 46d8e2fa23f7dfd275cc9dd5125f008ec4b1a4e4
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Feb  1 23:00:21 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Feb  1 23:00:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46d8e2fa

dev-db/etcd: Version bump to 3.3.0

Package-Manager: Portage-2.3.22, Repoman-2.3.6

 dev-db/etcd/Manifest  |  1 +
 dev-db/etcd/etcd-3.3.0.ebuild | 64 +++
 2 files changed, 65 insertions(+)

diff --git a/dev-db/etcd/Manifest b/dev-db/etcd/Manifest
index 549b212edcb..b6dd9e6b8e6 100644
--- a/dev-db/etcd/Manifest
+++ b/dev-db/etcd/Manifest
@@ -2,5 +2,6 @@ DIST etcd-2.3.8.tar.gz 2206562 BLAKE2B 
754930b4b5f0e90386b2b4765a9dbb6790ae509a8
 DIST etcd-3.2.13.tar.gz 3047049 BLAKE2B 
f0ac987aef60fcc28636cfb60d5f4e00daee29a3d5167900599760090c3fa3d7932abb6224df5fb66ea5bdbc29a9ce7f7263a0e81522853ab190be94a6551ebc
 SHA512 
4f3c5856ecf9e8a725d0ef80bb584e7b2edaf7215635a5c74fe32b175ce9f8d07ba57685586dfd79b893d04641d4169382d22f2eea442efc1112fa91c8175d45
 DIST etcd-3.2.14.tar.gz 3047100 BLAKE2B 
5b956042542e7daeec3985f0dbd02b2766ca27287b55b0e1fd67c4296103ca9bf05b2ccc0e93640949c85e8099503b5a22d36c2f03d9904762ae1bbb59d35ac4
 SHA512 
f48cdb368906b36e7ce80c60933b0e9bc4415104c31f2da9346940f040febf27dbd9109e7f659a281c7038cadfb02b0dad614685a15ff46c87c600471c5de432
 DIST etcd-3.2.15.tar.gz 3047626 BLAKE2B 
81f312fd5df6b64bf9e13994500387ab11ce145e296538492ccc71b94659f93e84e191cd2347d53d6d20e070cb1eb2760d4abd467655af53eaeb3c40cff7b500
 SHA512 
3ae11dfe918d409893e3168fbf31da0e910ce498a13f6bb31c3dd3a2027d72550f086d55b702803f2783de815dd349537bd581334146f8c4d05b9b3f4d3d56fb
+DIST etcd-3.3.0.tar.gz 3360558 BLAKE2B 
f6a535a55ba862857db9c055deb33846124b92badde6cbc8c2301a989c7dbe4f1d9aa2ec08b7a99c11e0e7ec87cd59cd08cf57e5ae97eeadfd4f5d3cb166992c
 SHA512 
3044e06492f8cc7dd717406cf47fcff8f91f79cb05648464625d5d78f7b79c7d53f315485b830c046a7dadee34a9b39ac2ed11dfeb5d1b59509fce2da2253197
 DIST etcd-3.3.0_rc2.tar.gz 3358540 BLAKE2B 
8df7b2bbe84c5440c1b778107e7817def6b7a14a8568e6c1d7b5eba5479cf58ad6901482937df149b658a7e06844037cad95b57196c23810b309ae638c8961c0
 SHA512 
4c9513fbc599b218072bf441a6a37e622554df1597e18d0b72efab3f85d8ffb2b21d915a78289a865de68bc25e4401df15f291521f3dd22d19c2ae37941c0e4b
 DIST etcd-3.3.0_rc4.tar.gz 3359330 BLAKE2B 
deb5fb6df059039864cebebb74498637163a3331de3191948d34f792a6a579eede32951176f18e4535020c7b06917796bf3c36640087c73c948ae2bd8ed7504a
 SHA512 
754457ce230273b3f79d864f6175fd6c0456e1eebf244003d92e54090f1cecc262ff8228f2c6b56fd41f3b500070cf2ef9a9f949946d88a9af86510f174b7a02

diff --git a/dev-db/etcd/etcd-3.3.0.ebuild b/dev-db/etcd/etcd-3.3.0.ebuild
new file mode 100644
index 000..b1406dc1a18
--- /dev/null
+++ b/dev-db/etcd/etcd-3.3.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit user systemd golang-vcs-snapshot
+
+KEYWORDS="~amd64"
+EGO_PN="github.com/coreos/etcd"
+MY_PV="${PV/_rc/-rc.}"
+DESCRIPTION="Highly-available key value store for shared configuration and 
service discovery"
+HOMEPAGE="https://github.com/coreos/etcd;
+SRC_URI="https://${EGO_PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="doc"
+DEPEND=">=dev-lang/go-1.9:="
+RDEPEND="!dev-db/etcdctl"
+
+src_prepare() {
+   default
+   sed -e 's|GIT_SHA=.*|GIT_SHA=v${PV}|'\
+   -i "${S}"/src/${EGO_PN}/build || die
+}
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
+}
+
+src_compile() {
+   export GOPATH=${S}
+   pushd src/${EGO_PN} || die
+   ./build || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   insinto /etc/${PN}
+   doins "${FILESDIR}/${PN}.conf"
+   dobin bin/*
+   dodoc README.md
+   use doc && dodoc -r Documentation
+   systemd_dounit "${FILESDIR}/${PN}.service"
+   systemd_newtmpfilesd "${FILESDIR}/${PN}.tmpfiles.d.conf" ${PN}.conf
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/${PN}.logrotated" "${PN}"
+   keepdir /var/lib/${PN}
+   fowners ${PN}:${PN} /var/lib/${PN}
+   fperms 0700 /var/lib/${PN}
+   keepdir /var/log/${PN}
+   fowners ${PN}:${PN} /var/log/${PN}
+   fperms 755 /var/log/${PN}
+   popd || die
+}
+
+src_test() {
+   pushd src/${EGO_PN} || die
+   ./test || die
+   popd || die
+}



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

2018-02-01 Thread Manuel Rüger
commit: 0f8d300ca66ece3ebef8e1f30539f6fdae2aef94
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Feb  1 23:00:50 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Feb  1 23:00:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f8d300c

dev-db/etcd: Remove old

Package-Manager: Portage-2.3.22, Repoman-2.3.6

 dev-db/etcd/Manifest  |  3 --
 dev-db/etcd/etcd-3.2.13.ebuild| 63 --
 dev-db/etcd/etcd-3.3.0_rc2.ebuild | 64 ---
 dev-db/etcd/etcd-3.3.0_rc4.ebuild | 64 ---
 4 files changed, 194 deletions(-)

diff --git a/dev-db/etcd/Manifest b/dev-db/etcd/Manifest
index b6dd9e6b8e6..d07651238f0 100644
--- a/dev-db/etcd/Manifest
+++ b/dev-db/etcd/Manifest
@@ -1,7 +1,4 @@
 DIST etcd-2.3.8.tar.gz 2206562 BLAKE2B 
754930b4b5f0e90386b2b4765a9dbb6790ae509a81d3430c3f7c2c828d90318db3b01a2faea0c7075078096ce74302f2be7444245047534749f49d13a927851e
 SHA512 
4268de32797cab23e9e47784d31d5abd6982068c53d3cc9735a06719740dba45b73f4e067cbc7aa8aef5ca7c56d8be067f1076685ac82f64012b760d8b7f2bfc
-DIST etcd-3.2.13.tar.gz 3047049 BLAKE2B 
f0ac987aef60fcc28636cfb60d5f4e00daee29a3d5167900599760090c3fa3d7932abb6224df5fb66ea5bdbc29a9ce7f7263a0e81522853ab190be94a6551ebc
 SHA512 
4f3c5856ecf9e8a725d0ef80bb584e7b2edaf7215635a5c74fe32b175ce9f8d07ba57685586dfd79b893d04641d4169382d22f2eea442efc1112fa91c8175d45
 DIST etcd-3.2.14.tar.gz 3047100 BLAKE2B 
5b956042542e7daeec3985f0dbd02b2766ca27287b55b0e1fd67c4296103ca9bf05b2ccc0e93640949c85e8099503b5a22d36c2f03d9904762ae1bbb59d35ac4
 SHA512 
f48cdb368906b36e7ce80c60933b0e9bc4415104c31f2da9346940f040febf27dbd9109e7f659a281c7038cadfb02b0dad614685a15ff46c87c600471c5de432
 DIST etcd-3.2.15.tar.gz 3047626 BLAKE2B 
81f312fd5df6b64bf9e13994500387ab11ce145e296538492ccc71b94659f93e84e191cd2347d53d6d20e070cb1eb2760d4abd467655af53eaeb3c40cff7b500
 SHA512 
3ae11dfe918d409893e3168fbf31da0e910ce498a13f6bb31c3dd3a2027d72550f086d55b702803f2783de815dd349537bd581334146f8c4d05b9b3f4d3d56fb
 DIST etcd-3.3.0.tar.gz 3360558 BLAKE2B 
f6a535a55ba862857db9c055deb33846124b92badde6cbc8c2301a989c7dbe4f1d9aa2ec08b7a99c11e0e7ec87cd59cd08cf57e5ae97eeadfd4f5d3cb166992c
 SHA512 
3044e06492f8cc7dd717406cf47fcff8f91f79cb05648464625d5d78f7b79c7d53f315485b830c046a7dadee34a9b39ac2ed11dfeb5d1b59509fce2da2253197
-DIST etcd-3.3.0_rc2.tar.gz 3358540 BLAKE2B 
8df7b2bbe84c5440c1b778107e7817def6b7a14a8568e6c1d7b5eba5479cf58ad6901482937df149b658a7e06844037cad95b57196c23810b309ae638c8961c0
 SHA512 
4c9513fbc599b218072bf441a6a37e622554df1597e18d0b72efab3f85d8ffb2b21d915a78289a865de68bc25e4401df15f291521f3dd22d19c2ae37941c0e4b
-DIST etcd-3.3.0_rc4.tar.gz 3359330 BLAKE2B 
deb5fb6df059039864cebebb74498637163a3331de3191948d34f792a6a579eede32951176f18e4535020c7b06917796bf3c36640087c73c948ae2bd8ed7504a
 SHA512 
754457ce230273b3f79d864f6175fd6c0456e1eebf244003d92e54090f1cecc262ff8228f2c6b56fd41f3b500070cf2ef9a9f949946d88a9af86510f174b7a02

diff --git a/dev-db/etcd/etcd-3.2.13.ebuild b/dev-db/etcd/etcd-3.2.13.ebuild
deleted file mode 100644
index 34692b679e1..000
--- a/dev-db/etcd/etcd-3.2.13.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit user systemd golang-vcs-snapshot
-
-KEYWORDS="~amd64"
-EGO_PN="github.com/coreos/etcd"
-DESCRIPTION="Highly-available key value store for shared configuration and 
service discovery"
-HOMEPAGE="https://github.com/coreos/etcd;
-SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="doc"
-DEPEND=">=dev-lang/go-1.8:="
-RDEPEND="!dev-db/etcdctl"
-
-src_prepare() {
-   default
-   sed -e 's|GIT_SHA=.*|GIT_SHA=v${PV}|'\
-   -i "${S}"/src/${EGO_PN}/build || die
-}
-
-pkg_setup() {
-   enewgroup ${PN}
-   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
-}
-
-src_compile() {
-   export GOPATH=${S}
-   pushd src/${EGO_PN} || die
-   ./build || die
-   popd || die
-}
-
-src_install() {
-   pushd src/${EGO_PN} || die
-   insinto /etc/${PN}
-   doins "${FILESDIR}/${PN}.conf"
-   dobin bin/*
-   dodoc README.md
-   use doc && dodoc -r Documentation
-   systemd_dounit "${FILESDIR}/${PN}.service"
-   systemd_newtmpfilesd "${FILESDIR}/${PN}.tmpfiles.d.conf" ${PN}.conf
-   newinitd "${FILESDIR}"/${PN}.initd ${PN}
-   newconfd "${FILESDIR}"/${PN}.confd ${PN}
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}/${PN}.logrotated" "${PN}"
-   dodir /var/lib/${PN}
-   fowners ${PN}:${PN} /var/lib/${PN}
-   fperms 0700 /var/lib/${PN}
-   dodir /var/log/${PN}
-   fowners ${PN}:${PN} /var/log/${PN}
-   fperms 755 /var/log/${PN}
-   popd || die
-}
-
-src_test() {
-   pushd src/${EGO_PN} || die
-   ./test || die
-   popd || die
-}

diff --git a/dev-db/etcd/etcd-3.3.0_rc2.ebuild 

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

2018-02-01 Thread Mike Frysinger
commit: cd534eb17c94864a155a6e80b44f8b42ca90480b
Author: Mike Frysinger  chromium  org>
AuthorDate: Thu Feb  1 22:35:03 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Feb  1 22:35:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd534eb1

sys-apps/iproute2: make libelf usage optional

This dep is only needed to load eBPF filters out of ELFs compiled
(usually) by LLVM's eBPF backend.  There's no need to make this a
hard dep on everyone's system.

 sys-apps/iproute2/iproute2-4.15.0.ebuild | 7 ---
 sys-apps/iproute2/metadata.xml   | 1 +
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/sys-apps/iproute2/iproute2-4.15.0.ebuild 
b/sys-apps/iproute2/iproute2-4.15.0.ebuild
index f38e3db1ff8..15efa9acf6c 100644
--- a/sys-apps/iproute2/iproute2-4.15.0.ebuild
+++ b/sys-apps/iproute2/iproute2-4.15.0.ebuild
@@ -18,12 +18,13 @@ 
HOMEPAGE="https://wiki.linuxfoundation.org/networking/iproute2;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="atm berkdb +iptables ipv6 minimal selinux"
+IUSE="atm berkdb elf +iptables ipv6 minimal selinux"
 
 # We could make libmnl optional, but it's tiny, so eh
 RDEPEND="
!net-misc/arpd
-   !minimal? ( net-libs/libmnl virtual/libelf )
+   !minimal? ( net-libs/libmnl )
+   elf? ( virtual/libelf )
iptables? ( >=net-firewall/iptables-1.4.20:= )
berkdb? ( sys-libs/db:= )
atm? ( net-dialup/linux-atm )
@@ -101,7 +102,7 @@ src_configure() {
TC_CONFIG_IPSET := y
HAVE_BERKELEY_DB := $(usex berkdb y n)
HAVE_MNL  := $(usex minimal n y)
-   HAVE_ELF  := $(usex minimal n y)
+   HAVE_ELF  := $(usex elf y n)
HAVE_SELINUX  := $(usex selinux y n)
IP_CONFIG_SETNS := ${setns}
# Use correct iptables dir, #144265 #293709

diff --git a/sys-apps/iproute2/metadata.xml b/sys-apps/iproute2/metadata.xml
index 2605d5fd7ce..ad652efcf7e 100644
--- a/sys-apps/iproute2/metadata.xml
+++ b/sys-apps/iproute2/metadata.xml
@@ -7,6 +7,7 @@
 
 
build programs that use berkdb (just arpd)
+   support loading eBPF programs from ELFs (e.g. LLVM's 
eBPF backend)
include support for iptables filtering
only install ip and tc programs, without eBPF 
support
 



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

2018-02-01 Thread Mike Frysinger
commit: d5a817779a64f721c1a45f00689a6139b52d9f13
Author: Mike Frysinger  chromium  org>
AuthorDate: Thu Feb  1 22:31:51 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Feb  1 22:32:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5a81777

sys-apps/iproute2: mark 4.14.1-r2 alpha/arm64/m68k/s390/sh stable #639536

 sys-apps/iproute2/iproute2-4.14.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/iproute2/iproute2-4.14.1-r2.ebuild 
b/sys-apps/iproute2/iproute2-4.14.1-r2.ebuild
index d58c246ac54..74637c72653 100644
--- a/sys-apps/iproute2/iproute2-4.14.1-r2.ebuild
+++ b/sys-apps/iproute2/iproute2-4.14.1-r2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3
 else
SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
-   KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"



[gentoo-commits] repo/gentoo:master commit in: net-misc/r8168/, net-misc/r8168/files/

2018-02-01 Thread James Le Cuirot
commit: 111b4f5bee7a6ac6538c8df1ae1f427c3cf5ddcb
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Feb  1 22:26:32 2018 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Feb  1 22:26:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=111b4f5b

net-misc/r8168: Version bump to 8.045.08

Includes patch for 4.15. Thanks to Alois Nespor from Arch Linux.

Bug: https://bugs.gentoo.org/646114
Package-Manager: Portage-2.3.21, Repoman-2.3.6

 net-misc/r8168/Manifest |  1 +
 net-misc/r8168/files/linux-4.15-2.patch | 85 +
 net-misc/r8168/r8168-8.045.08.ebuild| 33 +
 3 files changed, 119 insertions(+)

diff --git a/net-misc/r8168/Manifest b/net-misc/r8168/Manifest
index 337f96ab143..3455812608f 100644
--- a/net-misc/r8168/Manifest
+++ b/net-misc/r8168/Manifest
@@ -1 +1,2 @@
 DIST r8168-8.044.02.tar.bz2 95880 BLAKE2B 
f153b077f8112c2b3c81a923a9a9c7d5096d141adb1cc8dd220f9fdf5df32af90c30f19512dc95bb2761febcfe3a59b6634e9fdec8fbb08b6b493a15aad99d0f
 SHA512 
d7e4fd73ee4f17440613b78163777fc0b9e472490a900fdf8e66c4e16f413cc01f49991a68c7bfb19ddf9577e706d0410ff7c8e85ced53e9740e69efda729512
+DIST r8168-8.045.08.tar.bz2 104427 BLAKE2B 
56e332b518aa3c244750310a77d53ca2fc9a365f4a043e452c5593bcfcd5679c882d35b9977438ddb6a42ba40bb7c9b45e73926fda37c372314d57290ea3ffab
 SHA512 
9037527f193d59da8bcf69396582e13acb58880ce52328e596ffb469352d38649d43f3c31b01ed607773bba1624561f299b3909dd6124448ed75e8f548d80563

diff --git a/net-misc/r8168/files/linux-4.15-2.patch 
b/net-misc/r8168/files/linux-4.15-2.patch
new file mode 100644
index 000..5f5f17c551c
--- /dev/null
+++ b/net-misc/r8168/files/linux-4.15-2.patch
@@ -0,0 +1,85 @@
+Author: Alois Nespor 
+Description: fix module build for Linux 4.15
+Origin: vendor, 
https://aur.archlinux.org/cgit/aur.git/tree/linux-4.15-2.patch?h=r8168-dkms
+
+--- a/src/r8168_n.c
 b/src/r8168_n.c
+@@ -407,8 +407,14 @@ MODULE_VERSION(RTL8168_VERSION);
+ static void rtl8168_sleep_rx_enable(struct net_device *dev);
+ static void rtl8168_dsm(struct net_device *dev, int dev_state);
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0)
++static void rtl8168_esd_timer(struct timer_list *timer);
++static void rtl8168_link_timer(struct timer_list *timer);
++#else
+ static void rtl8168_esd_timer(unsigned long __opaque);
+ static void rtl8168_link_timer(unsigned long __opaque);
++#endif//LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0)
++
+ static void rtl8168_tx_clear(struct rtl8168_private *tp);
+ static void rtl8168_rx_clear(struct rtl8168_private *tp);
+ 
+@@ -22964,7 +22970,11 @@ static inline void rtl8168_request_esd_t
+ struct rtl8168_private *tp = netdev_priv(dev);
+ struct timer_list *timer = >esd_timer;
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0)
++timer_setup(timer, rtl8168_esd_timer, 0);
++#else
+ setup_timer(timer, rtl8168_esd_timer, (unsigned long)dev);
++#endif//LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0)
+ mod_timer(timer, jiffies + RTL8168_ESD_TIMEOUT);
+ }
+ 
+@@ -22978,7 +22988,11 @@ static inline void rtl8168_request_link_
+ struct rtl8168_private *tp = netdev_priv(dev);
+ struct timer_list *timer = >link_timer;
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0)
++timer_setup(timer, rtl8168_link_timer, 0);
++#else
+ setup_timer(timer, rtl8168_link_timer, (unsigned long)dev);
++#endif//LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0)
+ mod_timer(timer, jiffies + RTL8168_LINK_TIMEOUT);
+ }
+ 
+@@ -24717,12 +24731,19 @@ err_out:
+ #define PCI_DEVICE_SERIAL_NUMBER (0x0164)
+ 
+ static void
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0)
++rtl8168_esd_timer(struct timer_list *timer)
++{
++struct rtl8168_private *tp = from_timer(tp, timer, esd_timer);
++struct net_device *dev = tp->dev;
++#else
+ rtl8168_esd_timer(unsigned long __opaque)
+ {
+ struct net_device *dev = (struct net_device *)__opaque;
+ struct rtl8168_private *tp = netdev_priv(dev);
+-struct pci_dev *pdev = tp->pci_dev;
+ struct timer_list *timer = >esd_timer;
++#endif//LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0)
++struct pci_dev *pdev = tp->pci_dev;
+ unsigned long timeout = RTL8168_ESD_TIMEOUT;
+ unsigned long flags;
+ u8 cmd;
+@@ -24856,11 +24877,18 @@ rtl8168_esd_timer(unsigned long __opaque
+ }
+ 
+ static void
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0)
++rtl8168_link_timer(struct timer_list *timer)
++{
++struct rtl8168_private *tp = from_timer(tp, timer, link_timer);
++struct net_device *dev = tp->dev;
++#else
+ rtl8168_link_timer(unsigned long __opaque)
+ {
+ struct net_device *dev = (struct net_device *)__opaque;
+ struct rtl8168_private *tp = netdev_priv(dev);
+ struct timer_list *timer = >link_timer;
++#endif//LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0)
+ unsigned 

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

2018-02-01 Thread Andreas Sturmlechner
commit: 1e97de08d96e063155fd0c4fb9290d450915a408
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Feb  1 21:52:51 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Feb  1 21:52:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e97de08

sys-auth/elogind: amd64 stable, bug #635292

Package-Manager: Portage-2.3.22, Repoman-2.3.6

 sys-auth/elogind/elogind-235.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/elogind/elogind-235.2-r1.ebuild 
b/sys-auth/elogind/elogind-235.2-r1.ebuild
index 33b170da10a..0a887ba050c 100644
--- a/sys-auth/elogind/elogind-235.2-r1.ebuild
+++ b/sys-auth/elogind/elogind-235.2-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="CC0-1.0 LGPL-2.1+ public-domain"
 SLOT="0"
-KEYWORDS="~amd64 ~arm x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="+acl debug doc +pam +policykit selinux"
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/x86/

2018-02-01 Thread Andreas Sturmlechner
commit: 95d8a9426eee114928a9d7efd5dab106b0270cfb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Feb  1 21:55:17 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Feb  1 21:55:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95d8a942

profiles: amd64,x86: Drop elogind use.stable.mask

 profiles/arch/amd64/use.stable.mask | 6 +-
 profiles/arch/x86/use.stable.mask   | 6 +-
 2 files changed, 2 insertions(+), 10 deletions(-)

diff --git a/profiles/arch/amd64/use.stable.mask 
b/profiles/arch/amd64/use.stable.mask
index 2bf7d3769e7..10b8a7a6d3f 100644
--- a/profiles/arch/amd64/use.stable.mask
+++ b/profiles/arch/amd64/use.stable.mask
@@ -1,13 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 # This file requires eapi 5 or later. New entries go on top.
 # Please use the same syntax as in use.mask
 
-# Michael Palimaka  (03 Jun 2017)
-# Not yet stable.
-elogind
-
 # Andreas K. Hüttel  (26 May 2017)
 # dev-db/firebird is keyworded ~amd64
 firebird

diff --git a/profiles/arch/x86/use.stable.mask 
b/profiles/arch/x86/use.stable.mask
index 118c3436da9..13064b699d2 100644
--- a/profiles/arch/x86/use.stable.mask
+++ b/profiles/arch/x86/use.stable.mask
@@ -1,13 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 # This file requires eapi 5 or later. New entries go on top.
 # Please use the same syntax as in use.mask
 
-# Michael Palimaka  (03 Jun 2017)
-# Not yet stable.
-elogind
-
 # Andreas K. Hüttel  (26 May 2017)
 # dev-db/firebird is keyworded ~x86
 firebird



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

2018-02-01 Thread Michał Górny
commit: 6724e72a9dcee3c2f8f37d6fcdee7ab4af1e7238
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb  1 20:51:07 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb  1 20:53:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6724e72a

net-wireless/blueman: Use split systemd path options in -

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

 net-wireless/blueman/blueman-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-wireless/blueman/blueman-.ebuild 
b/net-wireless/blueman/blueman-.ebuild
index 411f0c91b30..994a440c7ce 100644
--- a/net-wireless/blueman/blueman-.ebuild
+++ b/net-wireless/blueman/blueman-.ebuild
@@ -82,8 +82,8 @@ src_configure() {
--docdir=/usr/share/doc/${PF}
--disable-runtime-deps-check
--disable-static
-   # TODO: replace upstream with sane system/user unitdir getters
-   --with-systemdunitdir="$(systemd_get_utildir)"
+   --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
+   --with-systemduserunitdir="$(systemd_get_userunitdir)"
$(use_enable appindicator)
$(use_enable policykit polkit)
$(use_enable nls)



[gentoo-commits] proj/portage:master commit in: pym/portage/repository/, pym/portage/sync/modules/rsync/

2018-02-01 Thread Michał Górny
commit: c34924a3f474025d8434caec7ab1ec542daa4c6a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb  1 20:22:58 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb  1 20:50:40 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=c34924a3

openpgp_key_path -> sync_openpgp_key_path

Rename the openpgp_key_path attribute to sync_openpgp_key_path since
Portage code assumes that attribute name matches config key.

Reviewed-by: Zac Medico  gentoo.org>

 pym/portage/repository/config.py| 6 +++---
 pym/portage/sync/modules/rsync/rsync.py | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py
index d3a622f7c..a71047d9b 100644
--- a/pym/portage/repository/config.py
+++ b/pym/portage/repository/config.py
@@ -1,4 +1,4 @@
-# Copyright 2010-2017 Gentoo Foundation
+# Copyright 2010-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 from __future__ import unicode_literals
@@ -86,7 +86,7 @@ class RepoConfig(object):
'sync_type', 'sync_umask', 'sync_uri', 'sync_user', 
'thin_manifest',
'update_changelog', '_eapis_banned', '_eapis_deprecated',
'_masters_orig', 'module_specific_options', 
'manifest_required_hashes',
-   'openpgp_key_path',
+   'sync_openpgp_key_path',
)
 
def __init__(self, name, repo_opts, local_config=True):
@@ -183,7 +183,7 @@ class RepoConfig(object):
self.strict_misc_digests = repo_opts.get(
'strict-misc-digests', 'true').lower() == 'true'
 
-   self.openpgp_key_path = repo_opts.get(
+   self.sync_openpgp_key_path = repo_opts.get(
'sync-openpgp-key-path', None)
 
self.module_specific_options = {}

diff --git a/pym/portage/sync/modules/rsync/rsync.py 
b/pym/portage/sync/modules/rsync/rsync.py
index e2e6d0658..4471f5bbe 100644
--- a/pym/portage/sync/modules/rsync/rsync.py
+++ b/pym/portage/sync/modules/rsync/rsync.py
@@ -277,8 +277,8 @@ class RsyncSync(NewBase):
# if synced successfully, verify now
if exitcode == 0 and not local_state_unchanged and 
self.verify_metamanifest:
command = ['gemato', 'verify', '-s', self.repo.location]
-   if self.repo.openpgp_key_path is not None:
-   command += ['-K', self.repo.openpgp_key_path]
+   if self.repo.sync_openpgp_key_path is not None:
+   command += ['-K', 
self.repo.sync_openpgp_key_path]
if self.verify_jobs is not None:
command += ['-j', self.verify_jobs]
try:



[gentoo-commits] proj/portage:master commit in: pym/portage/repository/

2018-02-01 Thread Michał Górny
commit: 0101a29d90bb438c28c00e6994d8a6cd2e97aa82
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb  1 20:24:10 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb  1 20:51:04 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=0101a29d

repository.config: Fix handling sync-openpgp-key-path

Fix sync-openpgp-key-path to be correctly inherited from system
repos.conf and preserved in repo dumps.

Bug: https://bugs.gentoo.org/646314
Reviewed-by: Zac Medico  gentoo.org>

 pym/portage/repository/config.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py
index a71047d9b..52f44d526 100644
--- a/pym/portage/repository/config.py
+++ b/pym/portage/repository/config.py
@@ -522,6 +522,7 @@ class RepoConfigLoader(object):
'clone_depth', 
'eclass_overrides',
'force', 'masters', 
'priority', 'strict_misc_digests',
'sync_depth', 
'sync_hooks_only_on_change',
+   'sync_openpgp_key_path',
'sync_type', 
'sync_umask', 'sync_uri', 'sync_user',

'module_specific_options'):
v = 
getattr(repos_conf_opts, k, None)
@@ -944,7 +945,7 @@ class RepoConfigLoader(object):
def config_string(self):
bool_keys = ("strict_misc_digests",)
str_or_int_keys = ("auto_sync", "clone_depth", "format", 
"location",
-   "main_repo", "priority", "sync_depth",
+   "main_repo", "priority", "sync_depth", 
"sync_openpgp_key_path",
"sync_type", "sync_umask", "sync_uri", 'sync_user')
str_tuple_keys = ("aliases", "eclass_overrides", "force")
repo_config_tuple_keys = ("masters",)



[gentoo-commits] repo/gentoo:master commit in: net-firewall/shorewall/

2018-02-01 Thread Thomas Deutschmann
commit: 5cbfaf89f31aea785e826b8f9a1242327a7d1491
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:48:38 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:48:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cbfaf89

net-firewall/shorewall: stable for x86. mark stable for the remaining arches 
using the ALLARCHES policy.

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 net-firewall/shorewall/shorewall-5.1.11.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/shorewall/shorewall-5.1.11.2.ebuild 
b/net-firewall/shorewall/shorewall-5.1.11.2.ebuild
index 4e94df20e83..20062dcd2fa 100644
--- a/net-firewall/shorewall/shorewall-5.1.11.2.ebuild
+++ b/net-firewall/shorewall/shorewall-5.1.11.2.ebuild
@@ -66,7 +66,7 @@ if [[ ${MY_PV} = *-Beta* ]] || [[ ${MY_PV} = *-RC* ]]; then
unset _tmp_last_index
unset _tmp_suffix
 else
-   KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86"
 fi
 
 SRC_URI="



[gentoo-commits] repo/gentoo:master commit in: www-servers/nginx/

2018-02-01 Thread Thomas Deutschmann
commit: d01cf3565b9d317b5d26cb7bb5979d98f159cf80
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:46:48 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:48:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d01cf356

www-servers/nginx: Cleanup old

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 www-servers/nginx/Manifest|8 -
 www-servers/nginx/nginx-1.12.1.ebuild | 1015 -
 www-servers/nginx/nginx-1.13.7.ebuild | 1006 
 3 files changed, 2029 deletions(-)

diff --git a/www-servers/nginx/Manifest b/www-servers/nginx/Manifest
index e9c5e42c611..a4bbc9bda74 100644
--- a/www-servers/nginx/Manifest
+++ b/www-servers/nginx/Manifest
@@ -1,31 +1,23 @@
-DIST modsecurity-2.9.1.tar.gz 4261212 BLAKE2B 
c47c7934d8da870e629c5733cc8c37452e4d90351269a14b99483188e8e3161891bd63bfd70e0723648c8daf51f1c33d900bd90ab0157332f826eab772f09f62
 SHA512 
374733cbfc26e53d95b78c8f268a4e465d838163e9893fc24e33a9d272b114f1b287147bab6d0289575074cbbd94f48983e23fa59832cbcb32950046cea59269
 DIST modsecurity-2.9.2.tar.gz 4298993 BLAKE2B 
32a92148f0e1a1166cf888b8172fc55340c5712c9b770583703c74db450e77226629640c9db03f32e9f28397e6488669d06a89e4d31cb5ab5fff26b30ad843e0
 SHA512 
69c87ef6f7b6411f4803eb25af32969a1da59722121257c2edf345a3f5a4ab9ae8a49c886cbbfc722c5bda91c6d6ea55232f968c0a0407d7d7b3af53dc862c21
-DIST nginx-1.12.1.tar.gz 981093 BLAKE2B 
fa81164511591736b5da1937f2e867712845ff6bfa51cb9c2e2cd367f5d936f7ff6fd3a86cc1d2a49e0b97f6200dbc7808f783941182e08a1037112d858c91cd
 SHA512 
3a2ad2a559b366dda92dd58c0fe40ee84dd60a3eaf72071454110e032c3e9a03f2a63b28fe3a615b527950521eeb533c687a2cc4c87524e1d8f3a0a5f043fdb6
 DIST nginx-1.12.2.tar.gz 981687 BLAKE2B 
cca2d2b2267fee6feac7e91a5aaec229251e829203b02c207a6a89644fd6b1f2003d75225fadde9fdfc8dda444dc53c7ff0033a1e15a0f25019c878fc716d83f
 SHA512 
3faa2043e237a7e1d15cc5661ac9d002a965220a78c25a863be9f19e01007347e53f776b61c229f6bd3d916cc1ccf92de260811f7b8092ec1b747fba7c0061f7
-DIST nginx-1.13.7.tar.gz 990836 BLAKE2B 
158c70018426e78a8e5157bde1c164de78bb9968c37f4c3fe24e30ef3df7690abdd6932522c6c179db8c5ff4da0f3fcee925e3b2680bfa33dc2b2abc8f007708
 SHA512 
77ee919315e0b16ec042ec80b5a9ed01ef057d30fded4c1991fc1b7648d41433b94897fbe6f0900299d3596ede7b25e842e47c44865b1c3d91d2dc6363d23fc0
 DIST nginx-1.13.8.tar.gz 992237 BLAKE2B 
268eebb98a1ae1acbc9fb3ae4e445b26cfff68d8833285527b86f73d5a076f43fb6840b2aad6ff0e8458b47abbe8a9883c43c8a6b40c65d040b3bff88c6910eb
 SHA512 
f2a4d41941ec223afcb57a6deb6523e0d4f54f96c7362835d366fa04a4b4578f6c4f27aa7774c1ecd40a42087df83e5c03d024e72caba83c558ec7e580c756a1
 DIST nginx-auth-ldap-49a8b4d28fc4a518563c82e0b52821e5f37db1fc.tar.gz 17159 
BLAKE2B 
f2209c8b5eb5616a362f2b532245167a5940faad6d66d98a94b3bf2d1e33a73492d42c60a9ddad347a592362a002ff38273a5d1f61f663984a09e14a3fe35e0f
 SHA512 
323abd0ca8e90f5afcaf81a8ff1a8abe3dfcbff3d69f0dd4a1c005fe6436acbf3076c4c57a4df877b3d8e388cbea085d46301bb2df9c0752e2567817ff7cca92
 DIST nginx_http_sticky_module_ng-1.2.6-10-g08a395c66e42.tar.bz2 124047 BLAKE2B 
d37ef9a15c91abe3c6258e420d1f99fa452f9d9966a0e13102174973314a3bac5413957a5fe632a9dcb1163b3be5df8116e05cc053ee061e19319ec25f341570
 SHA512 
6c1bfdcf89884b2855d51ae7da0f6e53a4ca3629e1aaf58433b70c07dcb2af797ba6e87d9b3eb4fe2fb6d4d697e862f2b4c2f8d8b3fdaea201740c97ec936529
 DIST ngx_devel_kit-0.3.0-r1.tar.gz 66455 BLAKE2B 
e4e987a85b2283ba540b4b894382e65dac7fbca23e233b1031b38828908088370cdb1a9bded4d4ee1ceb1c2e1d506dc2b6f4ba5f6ee94248e863def5a1c8dd1a
 SHA512 
558764c9be913a4f61d0e277d07bf3c272e1ce086b3fadb85b693a7e92805cd9fca4da7a8d29c96e53fc0d23b331327d3b2561ff61f19d2330e7d5d35ac7d614
 DIST ngx_http_auth_pam-1.5.1.tar.gz 6863 BLAKE2B 
00807cc3db8f6c007c968b8a30d7f6094b7d9db4eaa60d211fcb3ac60aeb28c5f8193578a7e1ca67acbbf57a319c8442fe44efc1e193927c3bce5961539f9c16
 SHA512 
973b94874d8a58c0df0ac2d31571eafc1e80b11179cba33ec88421a826207fbf7e99b0387e135a1ca48d82daacb78f19a4c21d3a27b49b16dc86b4748bb72261
 DIST ngx_http_cache_purge-2.3.tar.gz 12248 BLAKE2B 
f83b267f4c19a9d4af5964522695814c164d200ecd4108bf8f6b5c21388eba8af989bdda646dee18a03174211e8c090a04736bbeb44043cb0e19fbccdc66278e
 SHA512 
50a31dbf2216a6fae74a186af56dec4600cf55777e76a10ac0075f609e7737135aab063a64f2590dddcd0369ebebd4a523027f3d9ebcca74f7b4355be1c5dcc0
-DIST ngx_http_dav_ext-0.0.3.tar.gz 6260 BLAKE2B 
065e41a6bfa1d3cc539dc1e6085e1897ff27f54204f6667a57bd3972954993aa5aae7f33a008be6e0b716a1633ec87833cb405be0494210ae819470ff808d01a
 SHA512 
4763b1c5e417248d80acfacf20bfc5ba3e06675ff08e37703867daef99a400980b536941e4955c259432905bd11ab998bc2e2489a50350413c7bf37e18eafb74
 DIST ngx_http_dav_ext-0.1.0.tar.gz 6614 BLAKE2B 
3951b573e80e8f02199680fb1ba23baa9ed0845002bf5c78fec291f3a2c01017bcf90f969e924d2e1e03db2aef364af6eaa19398478dfc22fc5bdd57508a9cbd
 SHA512 
47b1686b483640a7fdcbf8081aae2e9f83fb0072ef0940b1cd7f8ddf4932317740b38f0dd4a8f3dd8da074c11c70038ac6758c0feafd3851331acdc85f3e0ee1
-DIST 

[gentoo-commits] repo/gentoo:master commit in: app-admin/logrotate/, app-admin/logrotate/files/

2018-02-01 Thread José María Alonso
commit: 49280b6dc51df4c4a73c27df24a38f8515fd4cf8
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Thu Feb  1 20:40:05 2018 +
Commit: José María Alonso  gentoo  org>
CommitDate: Thu Feb  1 20:40:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49280b6d

app-admin/logrotate: Drops old version 3.12.3

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-admin/logrotate/Manifest   |  1 -
 .../logrotate/files/logrotate-3.12.3-fbsd.patch| 36 
 .../files/logrotate-3.12.3-ignore-hidden.patch | 14 ---
 app-admin/logrotate/logrotate-3.12.3-r1.ebuild | 99 --
 app-admin/logrotate/logrotate-3.12.3-r2.ebuild | 99 --
 5 files changed, 249 deletions(-)

diff --git a/app-admin/logrotate/Manifest b/app-admin/logrotate/Manifest
index 50ece1aff4f..c0753bf1cec 100644
--- a/app-admin/logrotate/Manifest
+++ b/app-admin/logrotate/Manifest
@@ -1,3 +1,2 @@
-DIST logrotate-3.12.3.tar.gz 202991 BLAKE2B 
26e6507ae15cfa1e183a64151a66600462a48aa6eb951b30634b90644b24ae7ceb9e26da5954919c83e05cab5a102589b621b7a8fdc8bea8d40dd1c813fe
 SHA512 
ab700a50736c7ce8a6e5b9dc2504919c6d3e6ae48a7f112f6980253df5c6bab7fc507c82a0cd961d73ed1312c930da46d96d9f27046996644e0759c84c6a1ae9
 DIST logrotate-3.13.0.tar.gz 213726 BLAKE2B 
b9970a0fb49b9de9c83ee679fd4587b6a1623cf1aae2444e818339361c7b7762ce51fcbd124fefafbe47d529dd21ef346a6c9a267da20547914388db99dce003
 SHA512 
3dec2fcdd674d3337b71fd70339cb5e3dd06b4bc24bee191356a30c2a211a290ae7747e63b90581e32a6d6d1f73cf62d5b0ee5a91aa05bad4d6ee403a35d9e76
 DIST logrotate-3.9.1.tar.gz 79061 BLAKE2B 
b07f8fd8eb59cc4d6c80441a3b5a8aab090bc13eb8fa5e35b111feb2203fb2c3092daa469e6fec02a29b1d377bca33fbbf5859bcd351a1f4a0d82343c5f65d3d
 SHA512 
e6da7c7f067befaf2441e9c6ce77e53cf5ddb4f56cc3304c3e50873b6f20c68520f4a0e50ec466cbebcbed20bfd77bf6dfc489975a8131e9573fb19856c0fe28

diff --git a/app-admin/logrotate/files/logrotate-3.12.3-fbsd.patch 
b/app-admin/logrotate/files/logrotate-3.12.3-fbsd.patch
deleted file mode 100644
index 67a60e3af17..000
--- a/app-admin/logrotate/files/logrotate-3.12.3-fbsd.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff -Nuar a/config.c b/config.c
 a/config.c 2017-04-22 23:46:08.201991730 +0200
-+++ b/config.c 2017-04-22 23:49:43.021996055 +0200
-@@ -25,6 +25,10 @@
- #include 
- #include 
- 
-+#if !defined(PATH_MAX) && defined(__FreeBSD__)
-+#include 
-+#endif
-+
- #include "log.h"
- #include "logrotate.h"
- 
-diff -Nuar a/logrotate.c b/logrotate.c
 a/logrotate.c  2017-04-21 10:52:10.0 +0200
-+++ b/logrotate.c  2017-04-22 23:50:20.691996814 +0200
-@@ -1,6 +1,6 @@
- #include "queue.h"
- /* alloca() is defined in stdlib.h in NetBSD */
--#ifndef __NetBSD__
-+#if !defined(__NetBSD__) && !defined(__FreeBSD__)
- #include 
- #endif
- #include 
-@@ -27,6 +27,10 @@
- #include 
- #endif
- 
-+#if !defined(PATH_MAX) && defined(__FreeBSD__)
-+#include 
-+#endif
-+
- #include "log.h"
- #include "logrotate.h"
- 

diff --git a/app-admin/logrotate/files/logrotate-3.12.3-ignore-hidden.patch 
b/app-admin/logrotate/files/logrotate-3.12.3-ignore-hidden.patch
deleted file mode 100644
index 0bbb91dcb4f..000
--- a/app-admin/logrotate/files/logrotate-3.12.3-ignore-hidden.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -Nuar a/config.c b/config.c
 a/config.c 2017-04-18 14:57:02.0 +0200
-+++ b/config.c 2017-04-22 23:46:08.201991730 +0200
-@@ -389,7 +389,9 @@
-   int i;
- 
-   /* Check if fname is '.' or '..'; if so, return false */
--  if (fname[0] == '.' && (!fname[1] || (fname[1] == '.' && !fname[2])))
-+  /* Don't include 'hidden' files either; this breaks Gentoo
-+ portage config file management http://bugs.gentoo.org/87683 */
-+  if (fname[0] == '.')
-   return 0;
- 
-   /* Check if fname is ending in a taboo-extension; if so, return false */

diff --git a/app-admin/logrotate/logrotate-3.12.3-r1.ebuild 
b/app-admin/logrotate/logrotate-3.12.3-r1.ebuild
deleted file mode 100644
index 81b5ffc20c5..000
--- a/app-admin/logrotate/logrotate-3.12.3-r1.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit systemd
-
-DESCRIPTION="Rotates, compresses, and mails system logs"
-HOMEPAGE="https://github.com/logrotate/logrotate;
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="acl +cron selinux"
-
-CDEPEND="
-   >=dev-libs/popt-1.5
-   selinux? ( sys-libs/libselinux )
-   acl? ( virtual/acl )"
-
-DEPEND="${CDEPEND}
-   >=sys-apps/sed-4"
-
-RDEPEND="${CDEPEND}
-   selinux? ( sec-policy/selinux-logrotate )
-   cron? ( virtual/cron )"
-
-STATEFILE="/var/lib/misc/logrotate.status"

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

2018-02-01 Thread Thomas Deutschmann
commit: 899c2a9a47e1230efc6a12bc7b563096cbf83867
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:24:08 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=899c2a9a

dev-libs/boost: x86 stable (bug #644808)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 dev-libs/boost/boost-1.65.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/boost/boost-1.65.0.ebuild 
b/dev-libs/boost/boost-1.65.0.ebuild
index 031429c5de8..e5f8c570c1b 100644
--- a/dev-libs/boost/boost-1.65.0.ebuild
+++ b/dev-libs/boost/boost-1.65.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ 
SRC_URI="https://downloads.sourceforge.net/project/boost/${PN}/${PV}/${MY_P}.tar
 
 LICENSE="Boost-1.0"
 SLOT="0/${PV}" # ${PV} instead ${MAJOR_V} due to bug 486122
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris ~x86-winnt"
 
 IUSE="context debug doc icu +nls mpi python static-libs +threads tools"
 



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

2018-02-01 Thread Thomas Deutschmann
commit: fc524b97753356ebebbbe60666341bf10d65ead5
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:22:45 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc524b97

dev-libs/icu: x86 stable (bug #641130)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 dev-libs/icu/icu-60.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/icu/icu-60.2.ebuild b/dev-libs/icu/icu-60.2.ebuild
index 773d5b35d4b..bce4879eb69 100644
--- a/dev-libs/icu/icu-60.2.ebuild
+++ b/dev-libs/icu/icu-60.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ LICENSE="BSD"
 
 SLOT="0/${PV}"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-aix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
 IUSE="debug doc examples static-libs"
 
 DEPEND="



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

2018-02-01 Thread Thomas Deutschmann
commit: 041d007b905bf29a03e2254101733bee447c78e8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:30:43 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=041d007b

dev-python/pygments: x86 stable (bug #641298)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

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

diff --git a/dev-python/pygments/pygments-2.2.0.ebuild 
b/dev-python/pygments/pygments-2.2.0.ebuild
index 5a1a8cc83ab..f593de1c1bf 100644
--- a/dev-python/pygments/pygments-2.2.0.ebuild
+++ b/dev-python/pygments/pygments-2.2.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2018-02-01 Thread Thomas Deutschmann
commit: df1df480ffdbf28e4913af4772517e3841fe8cb7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:23:24 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df1df480

dev-util/boost-build: x86 stable (bug #644808)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 dev-util/boost-build/boost-build-1.65.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/boost-build/boost-build-1.65.0.ebuild 
b/dev-util/boost-build/boost-build-1.65.0.ebuild
index 1909c089d68..5fddbe7a45b 100644
--- a/dev-util/boost-build/boost-build-1.65.0.ebuild
+++ b/dev-util/boost-build/boost-build-1.65.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,7 +16,7 @@ 
SRC_URI="https://downloads.sourceforge.net/project/boost/boost/${PV}/boost_${MY_
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="examples python test"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )



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

2018-02-01 Thread Thomas Deutschmann
commit: d37f0064e37f747f8cfa801cf034c5a59166990a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:29:01 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d37f0064

app-arch/lz4: x86 stable (bug #643032)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

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

diff --git a/app-arch/lz4/lz4-1.8.0.ebuild b/app-arch/lz4/lz4-1.8.0.ebuild
index b5409d40d45..5701142c50b 100644
--- a/app-arch/lz4/lz4-1.8.0.ebuild
+++ b/app-arch/lz4/lz4-1.8.0.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} ==  ]]; then
EGIT_BRANCH=dev
 else
SRC_URI="https://github.com/Cyan4973/lz4/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 DESCRIPTION="Extremely Fast Compression algorithm"



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

2018-02-01 Thread Thomas Deutschmann
commit: a74cb39c995ee3f0ac575e0bc6560ec8ce7db65a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:28:04 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a74cb39c

app-misc/jail: x86 stable (bug #641210)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 app-misc/jail/jail-2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/jail/jail-2.0-r1.ebuild b/app-misc/jail/jail-2.0-r1.ebuild
index c2955ebc11e..60664a83e8e 100644
--- a/app-misc/jail/jail-2.0-r1.ebuild
+++ b/app-misc/jail/jail-2.0-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/spiculator/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ppc ~ppc64 x86"
 IUSE=""
 
 DEPEND=">=sys-apps/sed-4"



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

2018-02-01 Thread Thomas Deutschmann
commit: cb834e81565481c9a51380542db7892801d1406d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:26:23 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb834e81

sys-auth/elogind: x86 stable (bug #635292)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 sys-auth/elogind/elogind-235.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/elogind/elogind-235.2-r1.ebuild 
b/sys-auth/elogind/elogind-235.2-r1.ebuild
index f2e8d0611a3..33b170da10a 100644
--- a/sys-auth/elogind/elogind-235.2-r1.ebuild
+++ b/sys-auth/elogind/elogind-235.2-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="CC0-1.0 LGPL-2.1+ public-domain"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm x86"
 IUSE="+acl debug doc +pam +policykit selinux"
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-mail/dovecot/

2018-02-01 Thread Thomas Deutschmann
commit: 5b7255ea2f942b067559594ffe56066af963b285
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:26:00 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b7255ea

net-mail/dovecot: x86 stable (bug #644214)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 net-mail/dovecot/dovecot-2.2.33.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/dovecot/dovecot-2.2.33.2-r2.ebuild 
b/net-mail/dovecot/dovecot-2.2.33.2-r2.ebuild
index dba8a81a6e2..bb4e93b5627 100644
--- a/net-mail/dovecot/dovecot-2.2.33.2-r2.ebuild
+++ b/net-mail/dovecot/dovecot-2.2.33.2-r2.ebuild
@@ -24,7 +24,7 @@ HOMEPAGE="http://www.dovecot.org/;
 
 SLOT="0"
 LICENSE="LGPL-2.1 MIT"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86"
 
 IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
 IUSE_DOVECOT_COMPRESS="bzip2 lzma lz4 zlib"



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

2018-02-01 Thread Thomas Deutschmann
commit: dc0df5180f42200e42f14a24696cefaa69111267
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:21:53 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc0df518

app-text/asciidoc: x86 stable (bug #641648)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 app-text/asciidoc/asciidoc-8.6.10.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/asciidoc/asciidoc-8.6.10.ebuild 
b/app-text/asciidoc/asciidoc-8.6.10.ebuild
index 962b3d5f8dc..52f02513706 100644
--- a/app-text/asciidoc/asciidoc-8.6.10.ebuild
+++ b/app-text/asciidoc/asciidoc-8.6.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ inherit autotools python-single-r1 readme.gentoo-r1
 DESCRIPTION="AsciiDoc is a plain text human readable/writable document format"
 HOMEPAGE="http://asciidoc.org/;
 SRC_URI="https://github.com/asciidoc/asciidoc/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 LICENSE="GPL-2"
 SLOT="0"



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

2018-02-01 Thread Thomas Deutschmann
commit: 330e9a620600c683a034d3ec44e3390fc25c92b5
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:32:59 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:37:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=330e9a62

dev-libs/expat: x86 stable (bug #641288)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

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

diff --git a/dev-libs/expat/expat-2.2.5.ebuild 
b/dev-libs/expat/expat-2.2.5.ebuild
index a4ab3b8cb0e..432a7bd35c0 100644
--- a/dev-libs/expat/expat-2.2.5.ebuild
+++ b/dev-libs/expat/expat-2.2.5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/libexpat/libexpat/releases/download/R_${PV//\./_}/ex
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="elibc_FreeBSD examples static-libs unicode"
 DEPEND="unicode? ( ${AUTOTOOLS_DEPEND} )"
 RDEPEND="abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r6



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice-bin-debug/

2018-02-01 Thread Thomas Deutschmann
commit: 7c6b28b22b6a23dcb53169b9d7052613ca4df3a6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:34:26 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:37:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c6b28b2

app-office/libreoffice-bin-debug: x86 stable (bug #644800)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 app-office/libreoffice-bin-debug/libreoffice-bin-debug-5.4.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-5.4.4.2.ebuild 
b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-5.4.4.2.ebuild
index 0a02ac27a97..f8723d429da 100644
--- a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-5.4.4.2.ebuild
+++ b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-5.4.4.2.ebuild
@@ -46,7 +46,7 @@ SRC_URI="
 IUSE="gnome java kde"
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
+KEYWORDS="-* ~amd64 x86"
 
 RDEPEND="=app-office/${PN/-debug}-${PVR}[gnome=,java=,kde=]"
 



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

2018-02-01 Thread Thomas Deutschmann
commit: 73650ff9457a16a8d1e0d8df93a88893c0a86d31
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:27:12 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73650ff9

sys-kernel/genkernel-next: x86 stable (bug #640084)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 sys-kernel/genkernel-next/genkernel-next-68.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/genkernel-next/genkernel-next-68.ebuild 
b/sys-kernel/genkernel-next/genkernel-next-68.ebuild
index 1ed37c9c89c..7b8a58ab005 100644
--- a/sys-kernel/genkernel-next/genkernel-next-68.ebuild
+++ b/sys-kernel/genkernel-next/genkernel-next-68.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
 SRC_URI="https://github.com/Sabayon/genkernel-next/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 x86"
 inherit bash-completion-r1
 
 DESCRIPTION="Gentoo automatic kernel building scripts, reloaded"



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice-bin/

2018-02-01 Thread Thomas Deutschmann
commit: 203dc5e67d7e6ca8ee151213802f31d6c4adb1f7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:33:53 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:37:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=203dc5e6

app-office/libreoffice-bin: x86 stable (bug #644800)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 app-office/libreoffice-bin/libreoffice-bin-5.4.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/libreoffice-bin/libreoffice-bin-5.4.4.2.ebuild 
b/app-office/libreoffice-bin/libreoffice-bin-5.4.4.2.ebuild
index f74c47dc1b6..83d8a7c6245 100644
--- a/app-office/libreoffice-bin/libreoffice-bin-5.4.4.2.ebuild
+++ b/app-office/libreoffice-bin/libreoffice-bin-5.4.4.2.ebuild
@@ -51,7 +51,7 @@ SRC_URI="
 IUSE="gnome java kde"
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
+KEYWORDS="-* ~amd64 x86"
 
 BIN_COMMON_DEPEND="
app-text/hunspell:0/1.6



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/

2018-02-01 Thread Thomas Deutschmann
commit: f3f736cbceaef4c9fc5e2f3223745a094f831450
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:35:29 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:37:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3f736cb

app-office/libreoffice: x86 stable (bug #644800)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 app-office/libreoffice/libreoffice-5.4.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/libreoffice/libreoffice-5.4.4.2.ebuild 
b/app-office/libreoffice/libreoffice-5.4.4.2.ebuild
index 2e4b24caa4b..cfeb8bc1a4a 100644
--- a/app-office/libreoffice/libreoffice-5.4.4.2.ebuild
+++ b/app-office/libreoffice/libreoffice-5.4.4.2.ebuild
@@ -71,7 +71,7 @@ $(printf 'libreoffice_extensions_%s ' ${LO_EXTS})"
 LICENSE="|| ( LGPL-3 MPL-1.1 )"
 SLOT="0"
 [[ ${PV} == ** ]] || \
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
 
 COMMON_DEPEND="${PYTHON_DEPS}
app-arch/unzip



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

2018-02-01 Thread Thomas Deutschmann
commit: 128fa073142a6c1e23a914cdd77f8787517378c8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:29:55 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=128fa073

app-misc/mc: x86 stable (bug #644450)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 app-misc/mc/mc-4.8.20-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/mc/mc-4.8.20-r1.ebuild b/app-misc/mc/mc-4.8.20-r1.ebuild
index aca26bd2379..b7eaa5b7c24 100644
--- a/app-misc/mc/mc-4.8.20-r1.ebuild
+++ b/app-misc/mc/mc-4.8.20-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://ftp.midnight-commander.org/${MY_P}.tar.xz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
 IUSE="+edit gpm mclib nls samba sftp +slang spell test X +xdg"
 
 REQUIRED_USE="spell? ( edit )"



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

2018-02-01 Thread Thomas Deutschmann
commit: 664461fc7da63590ee07b9fd6a6d25b378595e57
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:31:39 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:37:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=664461fc

dev-libs/libsodium: x86 stable (bug #638398)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

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

diff --git a/dev-libs/libsodium/libsodium-1.0.15.ebuild 
b/dev-libs/libsodium/libsodium-1.0.15.ebuild
index f21ed388452..ba359218ef0 100644
--- a/dev-libs/libsodium/libsodium-1.0.15.ebuild
+++ b/dev-libs/libsodium/libsodium-1.0.15.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://download.libsodium.org/${PN}/releases/${P}.tar.gz;
 
 LICENSE="ISC"
 SLOT="0/23"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="+asm minimal static-libs +urandom cpu_flags_x86_sse4_1 cpu_flags_x86_aes"
 
 PATCHES=( "${FILESDIR}"/${PN}-1.0.10-cpuflags.patch )



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

2018-02-01 Thread Thomas Deutschmann
commit: f95bbb0a85461e72c345df65fb9b439ce3fadbd4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:28:23 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f95bbb0a

net-analyzer/linkchecker: x86 stable (bug #646178)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 net-analyzer/linkchecker/linkchecker-9.3.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/linkchecker/linkchecker-9.3.1-r1.ebuild 
b/net-analyzer/linkchecker/linkchecker-9.3.1-r1.ebuild
index 77b392d670e..d3c49f316f7 100644
--- a/net-analyzer/linkchecker/linkchecker-9.3.1-r1.ebuild
+++ b/net-analyzer/linkchecker/linkchecker-9.3.1-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/linkcheck/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~ppc-macos ~x64-solaris"
+KEYWORDS="~amd64 x86 ~ppc-macos ~x64-solaris"
 IUSE="gnome sqlite"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/smart-live-rebuild/

2018-02-01 Thread Thomas Deutschmann
commit: 9f44a5eaae062d723e9adf90bf01080d40fbbd42
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:31:03 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f44a5ea

app-portage/smart-live-rebuild: x86 stable (bug #643054)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 app-portage/smart-live-rebuild/smart-live-rebuild-1.3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.5.ebuild 
b/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.5.ebuild
index c4e847154da..9170f0461ff 100644
--- a/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.5.ebuild
+++ b/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.5.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mgorny/smart-live-rebuild/releases/download/v${PV}/$
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~mips ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~arm ~mips x86 ~x86-fbsd"
 IUSE=""
 
 RDEPEND=">=app-portage/gentoopm-0.2.1[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: x11-wm/windowmaker/

2018-02-01 Thread Thomas Deutschmann
commit: 7ef6996bd80f764cd1ce0487980311ed6c8ce498
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:32:23 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:37:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ef6996b

x11-wm/windowmaker: x86 stable (bug #641172)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 x11-wm/windowmaker/windowmaker-0.95.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/windowmaker/windowmaker-0.95.8-r1.ebuild 
b/x11-wm/windowmaker/windowmaker-0.95.8-r1.ebuild
index f61c986f1fa..87d8878747c 100644
--- a/x11-wm/windowmaker/windowmaker-0.95.8-r1.ebuild
+++ b/x11-wm/windowmaker/windowmaker-0.95.8-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://windowmaker.org/pub/source/release/${P/windowm/WindowM}.tar.gz
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="gif imagemagick jpeg modelock nls png tiff webp xinerama +xpm xrandr"
-KEYWORDS="alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ~mips ppc ~ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 
 DEPEND="media-libs/fontconfig
>=x11-libs/libXft-2.1.0



[gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/

2018-02-01 Thread Thomas Deutschmann
commit: 4014188fd1e817dc7960bb4b74496d92db6abf91
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:27:36 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4014188f

sys-boot/grub: x86 stable (bug #639606)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 sys-boot/grub/grub-0.97-r18.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-boot/grub/grub-0.97-r18.ebuild 
b/sys-boot/grub/grub-0.97-r18.ebuild
index a286b4a5527..695b074e304 100644
--- a/sys-boot/grub/grub-0.97-r18.ebuild
+++ b/sys-boot/grub/grub-0.97-r18.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 # XXX: we need to review menu.lst vs grub.conf handling.  We've been converting
@@ -30,7 +30,7 @@ SRC_URI="mirror://gentoo/${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86 ~x86-fbsd"
+KEYWORDS="amd64 x86 ~x86-fbsd"
 IUSE="custom-cflags ncurses netboot static"
 
 LIB_DEPEND="ncurses? ( 
>=sys-libs/ncurses-5.9-r3:0[static-libs(+),abi_x86_32(-)] )"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/cairo/

2018-02-01 Thread Thomas Deutschmann
commit: fe98a6c2dc309f9a49f38370a56e6521967fe967
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:25:07 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:36:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe98a6c2

x11-libs/cairo: x86 stable (bug #641356)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 x11-libs/cairo/cairo-1.14.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/cairo/cairo-1.14.12.ebuild 
b/x11-libs/cairo/cairo-1.14.12.ebuild
index 3fae774cbb9..81fc462cc93 100644
--- a/x11-libs/cairo/cairo-1.14.12.ebuild
+++ b/x11-libs/cairo/cairo-1.14.12.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == ** ]]; then
SRC_URI=""
 else
SRC_URI="https://www.cairographics.org/releases/${P}.tar.xz;
-   KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+   KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 fi
 
 DESCRIPTION="A vector graphics library with cross-device output support"



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice-l10n/

2018-02-01 Thread Thomas Deutschmann
commit: e3fd660a460c23faf435e8a7f5fc1ad0aca8d2bf
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Feb  1 20:34:12 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Feb  1 20:37:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3fd660a

app-office/libreoffice-l10n: x86 stable (bug #644800)

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 app-office/libreoffice-l10n/libreoffice-l10n-5.4.4.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-office/libreoffice-l10n/libreoffice-l10n-5.4.4.2.ebuild 
b/app-office/libreoffice-l10n/libreoffice-l10n-5.4.4.2.ebuild
index aac8fda328c..faf035fa0b8 100644
--- a/app-office/libreoffice-l10n/libreoffice-l10n-5.4.4.2.ebuild
+++ b/app-office/libreoffice-l10n/libreoffice-l10n-5.4.4.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ 
BASE_SRC_URI_STABLE="https://download.documentfoundation.org/${PN/-l10n/}/stable
 
 LICENSE="|| ( LGPL-3 MPL-1.1 )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="offlinehelp"
 
 #



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

2018-02-01 Thread Lars Wendler
commit: 85b07da1b1029ffe0c64324235cc1e33974dbae6
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Feb  1 20:31:09 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Feb  1 20:31:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85b07da1

app-shells/bash: Bump to version 4.4_p18

Package-Manager: Portage-2.3.22, Repoman-2.3.6

 app-shells/bash/Manifest|   6 +
 app-shells/bash/bash-4.4_p18.ebuild | 260 
 2 files changed, 266 insertions(+)

diff --git a/app-shells/bash/Manifest b/app-shells/bash/Manifest
index baf939afd3d..98396f530e5 100644
--- a/app-shells/bash/Manifest
+++ b/app-shells/bash/Manifest
@@ -296,3 +296,9 @@ DIST bash44-009 3117 BLAKE2B 
1921a30e1f7c6d37cac048772f89322e2cfe6e77f3ec48d4a6b
 DIST bash44-010 1670 BLAKE2B 
6e0cab685ae2393a9ae7eeb91767f8ce3086e3921f2d69614e729e9bc26603b363a69083c57a43aa53669491deba663bd8c9de91571833312cc23efb05c43222
 SHA512 
54ff556b62fd88381e7a495db50957b016474973b3a51c65b649a40960f2d3355221b3a71fb292128aad92a45d73d9816d63833bc416b4d15acdef391b98
 DIST bash44-011 1603 BLAKE2B 
6bd978408140620c2d63277757c15bfe55d6b0ff5706b7b884b234308efb6cfa771888306840ce5cfd4ece5912924dbb6a321d823fa106c99ba573f47dbbb9ae
 SHA512 
6b5b068b74978fc691749ccff5e094c768047f702430e97114f5bf342f078696f7d7616d0642d4061b062e9112dfe00a1c2309c65de4147e0e98fb52c593d844
 DIST bash44-012 5768 BLAKE2B 
63c6f5ff2cf52a35e1bd7f0028d7cce5c2c87e65ca600d8d85bf9b197ac8dee16bed5dc1dba6b354ef560309022cfd427a08180b76effe4107b9dda2ed99b20e
 SHA512 
4661c4c132f2ea7c9a70368301041c482d5820d8389334a7e3ae44c36fc16c171b20db2f194b7663c84d6c3dcef81aa90f050a48e205218fc7bd3395d09c6a51
+DIST bash44-013 1255 BLAKE2B 
f19be55c986bc60c395d24044c7edc67cd180d86047af59d173c1507de32534b2eed546f16164d799283d66c0d0460ff4771da6bc327bc87ebc4f01cb284f9eb
 SHA512 
eac0a9abf59b65a59a0028d2f3c0a7dc8a0b3c04e2d2db642b69aa7c13a2dfa190f3c63f7d8a7c9400f01701e9ef84212ce668c4c44d0ccfd02cd1f8e723d831
+DIST bash44-014 2834 BLAKE2B 
3a211d9916e16a996d709034523dc0f3775520736f481bdff8c737e1969da1719602bf0379befc685822e4931586482a30bbec69be4233da4f912c5b6333886e
 SHA512 
11e16896aa66a1eafb12cdcea00515132789690e914c8894caefd8c80ed98c8e732428348ddbfb53495164ce4044596f5cdbc03e146dce364fc497f362a1859b
+DIST bash44-015 1233 BLAKE2B 
5504d4a64f938ccfbb12f43455c11c6dc6a38397e5692da874a1b5de1865d19677c6f683073dbf9843869df67f96a87a6a60d2381338294d6750f2aba1580c55
 SHA512 
94d6fed30d4a376c29f8986d15f1b3fd65a04ee0f3d1844d010f3e51a2f9f875cd294a68fb6f0e1ffa481fb09f02055b21f2f298ebd9d88eb2f76d6c1f15de34
+DIST bash44-016 2069 BLAKE2B 
5ac613c450d018edff4f82740655ed0e460e49b57ce1a817f0b7b0a101b9f1ab095c48904fc17789203d6bdcc1beb01dde23b4a097f36441eda5e11ab638e9bd
 SHA512 
5acc704df3fe63b5b8055ba7bc14ae70cc23d15aefee8db6991e6c11cc8b0e10fcc67d516bc2d2fde84be26ed5c88dbf266fa164756218b60eccc2bfb4eed7d9
+DIST bash44-017 1143 BLAKE2B 
64da515637109cd87b95e5f55857f25c2758b4a5c2620cd21250287e00767d5ca7a14fe331603cdef1ba02f622d97ee120bc0bfba463bccb113f16ebee56159f
 SHA512 
c1d50aee953427ba0b95e48c10d2324e7413f3354ff65b9c3c1dfd14eedec55e619fcd12353e7b99b6e280f510e04d1c971b309c1a4efb97d48ddb30d69f14ac
+DIST bash44-018 1319 BLAKE2B 
abfd87f2cb5e9aeb0352bb0efbfd3ad95cbb26445e09edaa762cf1ea1fa01a00ab57c96d912ae5eaf653b66169bc54bba39fdf1d62ad45301c6599d21979ff14
 SHA512 
008ff44dbf916414d691c29cee29e7f636bbe79170463d76ef16ca63ecdc24a84ff4476078c28fb8788d9b1fb0572612a7e8cb30fceb55ad650f293db8361ad1

diff --git a/app-shells/bash/bash-4.4_p18.ebuild 
b/app-shells/bash/bash-4.4_p18.ebuild
new file mode 100644
index 000..c11c5b32237
--- /dev/null
+++ b/app-shells/bash/bash-4.4_p18.ebuild
@@ -0,0 +1,260 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic toolchain-funcs multilib prefix
+
+# Official patchlevel
+# See ftp://ftp.cwru.edu/pub/bash/bash-4.4-patches/
+PLEVEL=${PV##*_p}
+MY_PV=${PV/_p*}
+MY_PV=${MY_PV/_/-}
+MY_P=${PN}-${MY_PV}
+is_release() {
+   case ${PV} in
+   *_alpha*|*_beta*|*_rc*) return 1 ;;
+   *) return 0 ;;
+   esac
+}
+[[ ${PV} != *_p* ]] && PLEVEL=0
+patches() {
+   local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}}
+   [[ ${plevel} -eq 0 ]] && return 1
+   eval set -- {1..${plevel}}
+   set -- $(printf "${pn}${pv/\.}-%03d " "$@")
+   if [[ ${opt} == -s ]] ; then
+   echo "${@/#/${DISTDIR}/}"
+   else
+   local u
+   for u in ftp://ftp.cwru.edu/pub/bash mirror://gnu/${pn} ; do
+   printf "${u}/${pn}-${pv}-patches/%s " "$@"
+   done
+   fi
+}
+
+# The version of readline this bash normally ships with.
+READLINE_VER="7.0"
+
+DESCRIPTION="The standard GNU Bourne again shell"
+HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html;
+if is_release ; then
+   SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)"
+else
+   

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

2018-02-01 Thread Davide Pesavento
commit: 1cbbf056b345e6698a2b361381b39c6570c0c622
Author: Davide Pesavento  gentoo  org>
AuthorDate: Thu Feb  1 19:39:25 2018 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Thu Feb  1 19:39:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cbbf056

dev-python/PyQt5: version bump

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 dev-python/PyQt5/Manifest  |   1 +
 dev-python/PyQt5/PyQt5-5.10.ebuild | 195 +
 2 files changed, 196 insertions(+)

diff --git a/dev-python/PyQt5/Manifest b/dev-python/PyQt5/Manifest
index bf35184ece9..d0ca5a1d6a8 100644
--- a/dev-python/PyQt5/Manifest
+++ b/dev-python/PyQt5/Manifest
@@ -1,2 +1,3 @@
+DIST PyQt5_gpl-5.10.tar.gz 3109934 BLAKE2B 
96553b9a6f93c9ff86dc574e44f989d1aa371a5bf28cf3023ebcc9526791d28deab47e6f76ba70b46d33d80fc00d0b4df47cd4bb53a649dc98b8d0c0425d6742
 SHA512 
a86520870536618857ed3ee1601af45f5a0b456de192a5d6a3f8fa734e5cf49b8ce373928c0f4aeaae365d3fa95db03b5f59ae2903bc5eb2304b7edf22198033
 DIST PyQt5_gpl-5.7.1.tar.gz 3733746 BLAKE2B 
de8aea058876d740f391901434fa2c7ca1760b323b555efb48b06f8ba3213baccec676bc3984832e0775b28f0d2b2ddf0c37fa35317c237ed9af2e20469ff9ae
 SHA512 
7498713f73807522e58ae38ff58548cf80c2f2c418d6c55e20ce613cdc997e4ee7139076f1f152c7c3edb970bde14febc3496009f934e31ff71f01a1605f558f
 DIST PyQt5_gpl-5.9.2.tar.gz 3102848 BLAKE2B 
b87f25693aa2b2029f89cf13665bf88f14de8827d43ba757344ab9bdef0b0c197abb8386308c72925da263cabb6efd3f104db8a350c51fca3fba8c7c06b6
 SHA512 
5af2e65addaed7dd02d8dbf7a7c63767e565fc8edeb7b51e5991a00cda29f75b666529097646e821aaff556f350a929fd451f548bba76e97355b7fe10bd913bc

diff --git a/dev-python/PyQt5/PyQt5-5.10.ebuild 
b/dev-python/PyQt5/PyQt5-5.10.ebuild
new file mode 100644
index 000..809e464ee4b
--- /dev/null
+++ b/dev-python/PyQt5/PyQt5-5.10.ebuild
@@ -0,0 +1,195 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit multibuild python-r1 qmake-utils
+
+DESCRIPTION="Python bindings for the Qt framework"
+HOMEPAGE="https://www.riverbankcomputing.com/software/pyqt/intro;
+
+MY_P=${PN}_gpl-${PV/_pre/.dev}
+if [[ ${PV} == *_pre* ]]; then
+   SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.xz;
+else
+   SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+# TODO: QtNetworkAuth, QtNfc
+IUSE="bluetooth dbus debug declarative designer examples gles2 gui help 
location
+   multimedia network opengl positioning printsupport sensors serialport 
sql svg
+   testlib webchannel webengine webkit websockets widgets x11extras 
xmlpatterns"
+
+# The requirements below were extracted from configure.py
+# and from the output of 'grep -r "%Import " "${S}"/sip'
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
+   bluetooth? ( gui )
+   declarative? ( gui network )
+   designer? ( widgets )
+   help? ( gui widgets )
+   location? ( positioning )
+   multimedia? ( gui network )
+   opengl? ( gui widgets )
+   positioning? ( gui )
+   printsupport? ( gui widgets )
+   sensors? ( gui )
+   serialport? ( gui )
+   sql? ( widgets )
+   svg? ( gui widgets )
+   testlib? ( widgets )
+   webchannel? ( network )
+   webengine? ( network widgets? ( printsupport webchannel ) )
+   webkit? ( gui network printsupport widgets )
+   websockets? ( network )
+   widgets? ( gui )
+   xmlpatterns? ( network )
+"
+
+# Minimal supported version of Qt.
+QT_PV="5.9.3:5"
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   >=dev-python/sip-4.19.6:=[${PYTHON_USEDEP}]
+   >=dev-qt/qtcore-${QT_PV}
+   >=dev-qt/qtxml-${QT_PV}
+   bluetooth? ( >=dev-qt/qtbluetooth-${QT_PV} )
+   dbus? (
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   >=dev-qt/qtdbus-${QT_PV}
+   )
+   declarative? ( >=dev-qt/qtdeclarative-${QT_PV}[widgets?] )
+   designer? ( >=dev-qt/designer-${QT_PV} )
+   gui? ( >=dev-qt/qtgui-${QT_PV}[gles2=] )
+   help? ( >=dev-qt/qthelp-${QT_PV} )
+   location? ( >=dev-qt/qtlocation-${QT_PV} )
+   multimedia? ( >=dev-qt/qtmultimedia-${QT_PV}[widgets?] )
+   network? ( >=dev-qt/qtnetwork-${QT_PV} )
+   opengl? ( >=dev-qt/qtopengl-${QT_PV} )
+   positioning? ( >=dev-qt/qtpositioning-${QT_PV} )
+   printsupport? ( >=dev-qt/qtprintsupport-${QT_PV} )
+   sensors? ( >=dev-qt/qtsensors-${QT_PV} )
+   serialport? ( >=dev-qt/qtserialport-${QT_PV} )
+   sql? ( >=dev-qt/qtsql-${QT_PV} )
+   svg? ( >=dev-qt/qtsvg-${QT_PV} )
+   testlib? ( >=dev-qt/qttest-${QT_PV} )
+   webchannel? ( >=dev-qt/qtwebchannel-${QT_PV} )
+   webengine? ( >=dev-qt/qtwebengine-${QT_PV}[widgets?] )
+   webkit? ( >=dev-qt/qtwebkit-5.9:5[printsupport] )
+   websockets? ( >=dev-qt/qtwebsockets-${QT_PV} )

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

2018-02-01 Thread Davide Pesavento
commit: 890b10abc4fb0ffb3a7b4ae60696bae96ad5ac11
Author: Davide Pesavento  gentoo  org>
AuthorDate: Thu Feb  1 19:15:57 2018 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Thu Feb  1 19:15:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=890b10ab

dev-python/PyQt5: remove 5.9.1

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 dev-python/PyQt5/Manifest   |   1 -
 dev-python/PyQt5/PyQt5-5.9.1.ebuild | 198 
 2 files changed, 199 deletions(-)

diff --git a/dev-python/PyQt5/Manifest b/dev-python/PyQt5/Manifest
index 48a70b05118..bf35184ece9 100644
--- a/dev-python/PyQt5/Manifest
+++ b/dev-python/PyQt5/Manifest
@@ -1,3 +1,2 @@
 DIST PyQt5_gpl-5.7.1.tar.gz 3733746 BLAKE2B 
de8aea058876d740f391901434fa2c7ca1760b323b555efb48b06f8ba3213baccec676bc3984832e0775b28f0d2b2ddf0c37fa35317c237ed9af2e20469ff9ae
 SHA512 
7498713f73807522e58ae38ff58548cf80c2f2c418d6c55e20ce613cdc997e4ee7139076f1f152c7c3edb970bde14febc3496009f934e31ff71f01a1605f558f
-DIST PyQt5_gpl-5.9.1.tar.gz 3101819 BLAKE2B 
b457a101ad285e65cd246a7f77cc2d8a53b4b948d1b22405abf7f3a4ea7a0ab10335b310f1731c6660937fa18647fc00858b781f32d44dd85d1452d2eca821cf
 SHA512 
1c7d00dac5329296dd205eddeeecfd29495c4746791730056d143438871eb64a5d9827dcb1e28a78e8746218908e0e72374bd686a21b631b9aa1aa1c67e61eac
 DIST PyQt5_gpl-5.9.2.tar.gz 3102848 BLAKE2B 
b87f25693aa2b2029f89cf13665bf88f14de8827d43ba757344ab9bdef0b0c197abb8386308c72925da263cabb6efd3f104db8a350c51fca3fba8c7c06b6
 SHA512 
5af2e65addaed7dd02d8dbf7a7c63767e565fc8edeb7b51e5991a00cda29f75b666529097646e821aaff556f350a929fd451f548bba76e97355b7fe10bd913bc

diff --git a/dev-python/PyQt5/PyQt5-5.9.1.ebuild 
b/dev-python/PyQt5/PyQt5-5.9.1.ebuild
deleted file mode 100644
index fa923f28b10..000
--- a/dev-python/PyQt5/PyQt5-5.9.1.ebuild
+++ /dev/null
@@ -1,198 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit multibuild python-r1 qmake-utils
-
-DESCRIPTION="Python bindings for the Qt framework"
-HOMEPAGE="https://www.riverbankcomputing.com/software/pyqt/intro;
-
-MY_P=${PN}_gpl-${PV/_pre/.dev}
-if [[ ${PV} == *_pre* ]]; then
-   SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.xz;
-else
-   SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-
-# TODO: QtNfc
-IUSE="bluetooth dbus debug declarative designer examples gles2 gui help 
location
-   multimedia network opengl positioning printsupport sensors serialport 
sql svg
-   testlib webchannel webengine webkit websockets widgets x11extras 
xmlpatterns"
-
-# The requirements below were extracted from configure.py
-# and from the output of 'grep -r "%Import " "${S}"/sip'
-REQUIRED_USE="
-   ${PYTHON_REQUIRED_USE}
-   bluetooth? ( gui )
-   declarative? ( gui network )
-   designer? ( widgets )
-   help? ( gui widgets )
-   location? ( positioning )
-   multimedia? ( gui network )
-   opengl? ( gui widgets )
-   positioning? ( gui )
-   printsupport? ( gui widgets )
-   sensors? ( gui )
-   serialport? ( gui )
-   sql? ( widgets )
-   svg? ( gui widgets )
-   testlib? ( widgets )
-   webchannel? ( network )
-   webengine? ( network widgets? ( printsupport webchannel ) )
-   webkit? ( gui network printsupport widgets )
-   websockets? ( network )
-   widgets? ( gui )
-   xmlpatterns? ( network )
-"
-
-# Minimal supported version of Qt.
-QT_PV="5.6.0:5"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   >=dev-python/sip-4.19.6_pre:=[${PYTHON_USEDEP}]
-   >=dev-qt/qtcore-${QT_PV}
-   >=dev-qt/qtxml-${QT_PV}
-   bluetooth? ( >=dev-qt/qtbluetooth-${QT_PV} )
-   dbus? (
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   >=dev-qt/qtdbus-${QT_PV}
-   )
-   declarative? ( >=dev-qt/qtdeclarative-${QT_PV}[widgets?] )
-   designer? ( >=dev-qt/designer-${QT_PV} )
-   gui? ( >=dev-qt/qtgui-${QT_PV}[gles2=] )
-   help? ( >=dev-qt/qthelp-${QT_PV} )
-   location? ( >=dev-qt/qtlocation-${QT_PV} )
-   multimedia? ( >=dev-qt/qtmultimedia-${QT_PV}[widgets?] )
-   network? ( >=dev-qt/qtnetwork-${QT_PV} )
-   opengl? ( >=dev-qt/qtopengl-${QT_PV} )
-   positioning? ( >=dev-qt/qtpositioning-${QT_PV} )
-   printsupport? ( >=dev-qt/qtprintsupport-${QT_PV} )
-   sensors? ( >=dev-qt/qtsensors-${QT_PV} )
-   serialport? ( >=dev-qt/qtserialport-${QT_PV} )
-   sql? ( >=dev-qt/qtsql-${QT_PV} )
-   svg? ( >=dev-qt/qtsvg-${QT_PV} )
-   testlib? ( >=dev-qt/qttest-${QT_PV} )
-   webchannel? ( >=dev-qt/qtwebchannel-${QT_PV} )
-   webengine? ( >=dev-qt/qtwebengine-${QT_PV}[widgets?] )
-   webkit? ( >=dev-qt/qtwebkit-${QT_PV}[printsupport] )
-   websockets? ( >=dev-qt/qtwebsockets-${QT_PV} )

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

2018-02-01 Thread Davide Pesavento
commit: 46d22b38e64fffabec09919074c09d33c437925c
Author: Davide Pesavento  gentoo  org>
AuthorDate: Thu Feb  1 19:22:49 2018 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Thu Feb  1 19:22:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46d22b38

dev-python/PyQt5: raise qt deps

Closes: https://bugs.gentoo.org/646210
Package-Manager: Portage-2.3.21, Repoman-2.3.6

 dev-python/PyQt5/PyQt5-5.9.2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/PyQt5/PyQt5-5.9.2.ebuild 
b/dev-python/PyQt5/PyQt5-5.9.2.ebuild
index da916939bf1..e465a1c6492 100644
--- a/dev-python/PyQt5/PyQt5-5.9.2.ebuild
+++ b/dev-python/PyQt5/PyQt5-5.9.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -52,7 +52,7 @@ REQUIRED_USE="
 "
 
 # Minimal supported version of Qt.
-QT_PV="5.7.1:5"
+QT_PV="5.9.3:5"
 
 RDEPEND="
${PYTHON_DEPS}
@@ -81,7 +81,7 @@ RDEPEND="
testlib? ( >=dev-qt/qttest-${QT_PV} )
webchannel? ( >=dev-qt/qtwebchannel-${QT_PV} )
webengine? ( >=dev-qt/qtwebengine-${QT_PV}[widgets?] )
-   webkit? ( >=dev-qt/qtwebkit-${QT_PV}[printsupport] )
+   webkit? ( >=dev-qt/qtwebkit-5.9:5[printsupport] )
websockets? ( >=dev-qt/qtwebsockets-${QT_PV} )
widgets? ( >=dev-qt/qtwidgets-${QT_PV} )
x11extras? ( >=dev-qt/qtx11extras-${QT_PV} )



[gentoo-commits] repo/gentoo:master commit in: net-im/signal-desktop-bin/

2018-02-01 Thread Michał Górny
commit: e3587c87f9d45eb2accaad1a300af9ac5e9473c4
Author: Robert Siebeck  r123  de>
AuthorDate: Wed Jan 31 21:39:39 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb  1 18:56:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3587c87

net-im/signal-desktop-bin: new version 1.3.0

Add use flag ayatana for dependency to appindicator.

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

 net-im/signal-desktop-bin/Manifest |  1 +
 .../signal-desktop-bin-1.3.0.ebuild| 51 ++
 2 files changed, 52 insertions(+)

diff --git a/net-im/signal-desktop-bin/Manifest 
b/net-im/signal-desktop-bin/Manifest
index 6d0816d79b5..aad80c3a208 100644
--- a/net-im/signal-desktop-bin/Manifest
+++ b/net-im/signal-desktop-bin/Manifest
@@ -1 +1,2 @@
 DIST signal-desktop_1.2.0_amd64.deb 65769490 BLAKE2B 
04155c4e60da75aa09d909d543ba4713f725e1eafed26689f84e782a972f5526d4be520bec26809cc10adf419989bb296e2917a0ab9c1aeb1b95eb2458bd519f
 SHA512 
597ef22cde7f38c1fa20f70cc66f2d3f69c68776ee294cea3daca36dd958439306ec335c9ced7001157631a05202569f26563453137d0f6c73beada04b88cf6c
+DIST signal-desktop_1.3.0_amd64.deb 65763880 BLAKE2B 
2bea33c5792d3f66066314dd6d36a0f639c0e75f5c1a86ac1d7f95dd7f3047c93b56f000f29a3cfb234ab1cbf03d1a801fad02176a243ebebeaf110bb163
 SHA512 
3dd3b1457fe584f90a70aae4bea07e1cc111d43d93d382d966b912d8e10ad18858521550dbe4588c6075a0c64f2a6eda938dbc92c684f4f305776d4e83d27131

diff --git a/net-im/signal-desktop-bin/signal-desktop-bin-1.3.0.ebuild 
b/net-im/signal-desktop-bin/signal-desktop-bin-1.3.0.ebuild
new file mode 100644
index 000..49c5f56fefb
--- /dev/null
+++ b/net-im/signal-desktop-bin/signal-desktop-bin-1.3.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PN="${PN/-bin/}"
+
+inherit gnome2-utils unpacker xdg-utils pax-utils
+
+DESCRIPTION="Signal Desktop"
+HOMEPAGE="https://signal.org/ https://github.com/WhisperSystems/Signal-Desktop;
+SRC_URI="https://updates.signal.org/desktop/apt/pool/main/s/${MY_PN}/${MY_PN}_${PV}_amd64.deb;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="ayatana"
+
+RESTRICT="bindist mirror"
+
+RDEPEND="
+   gnome-base/gconf:2
+   dev-libs/nss
+   x11-libs/libXtst
+   net-print/cups
+   ayatana? ( dev-libs/libappindicator:3 )
+   "
+
+QA_PREBUILT="opt/Signal/signal-desktop
+   opt/Signal/libnode.so
+   opt/Signal/libffmpeg.so"
+
+S="${WORKDIR}"
+
+src_install() {
+   doins -r .
+   fperms +x /opt/Signal/signal-desktop
+   pax-mark m opt/Signal/signal-desktop
+
+   dosym ../../opt/Signal/${MY_PN} /usr/bin/${MY_PN}
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: net-im/signal-desktop-bin/

2018-02-01 Thread Michał Górny
commit: c5aa75faf0538697ad9a4bdb4da520ddaa044c7e
Author: Robert Siebeck  r123  de>
AuthorDate: Wed Jan 31 21:41:40 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb  1 18:56:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5aa75fa

net-im/signal-desktop-bin: remove old version

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

 net-im/signal-desktop-bin/Manifest |  1 -
 .../signal-desktop-bin-1.2.0.ebuild| 51 --
 2 files changed, 52 deletions(-)

diff --git a/net-im/signal-desktop-bin/Manifest 
b/net-im/signal-desktop-bin/Manifest
index aad80c3a208..dd205f3b2ed 100644
--- a/net-im/signal-desktop-bin/Manifest
+++ b/net-im/signal-desktop-bin/Manifest
@@ -1,2 +1 @@
-DIST signal-desktop_1.2.0_amd64.deb 65769490 BLAKE2B 
04155c4e60da75aa09d909d543ba4713f725e1eafed26689f84e782a972f5526d4be520bec26809cc10adf419989bb296e2917a0ab9c1aeb1b95eb2458bd519f
 SHA512 
597ef22cde7f38c1fa20f70cc66f2d3f69c68776ee294cea3daca36dd958439306ec335c9ced7001157631a05202569f26563453137d0f6c73beada04b88cf6c
 DIST signal-desktop_1.3.0_amd64.deb 65763880 BLAKE2B 
2bea33c5792d3f66066314dd6d36a0f639c0e75f5c1a86ac1d7f95dd7f3047c93b56f000f29a3cfb234ab1cbf03d1a801fad02176a243ebebeaf110bb163
 SHA512 
3dd3b1457fe584f90a70aae4bea07e1cc111d43d93d382d966b912d8e10ad18858521550dbe4588c6075a0c64f2a6eda938dbc92c684f4f305776d4e83d27131

diff --git a/net-im/signal-desktop-bin/signal-desktop-bin-1.2.0.ebuild 
b/net-im/signal-desktop-bin/signal-desktop-bin-1.2.0.ebuild
deleted file mode 100644
index 55ac05c96d9..000
--- a/net-im/signal-desktop-bin/signal-desktop-bin-1.2.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN="${PN/-bin/}"
-
-inherit gnome2-utils unpacker xdg-utils pax-utils
-
-DESCRIPTION="Signal Desktop"
-HOMEPAGE="https://signal.org/ https://github.com/WhisperSystems/Signal-Desktop;
-SRC_URI="https://updates.signal.org/desktop/apt/pool/main/s/${MY_PN}/${MY_PN}_${PV}_amd64.deb;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RESTRICT="bindist mirror"
-
-RDEPEND="
-   gnome-base/gconf:2
-   dev-libs/libappindicator:3
-   dev-libs/nss
-   x11-libs/libXtst
-   net-print/cups
-   "
-
-QA_PREBUILT="opt/Signal/signal-desktop
-   opt/Signal/libnode.so
-   opt/Signal/libffmpeg.so"
-
-S="${WORKDIR}"
-
-src_install() {
-   doins -r .
-   fperms +x /opt/Signal/signal-desktop
-   pax-mark m opt/Signal/signal-desktop
-
-   dosym ../../opt/Signal/${MY_PN} /usr/bin/${MY_PN}
-}
-
-pkg_postinst() {
-   xdg_desktop_database_update
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   gnome2_icon_cache_update
-}



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

2018-02-01 Thread Davide Pesavento
commit: 82026b039b4bc8ddc597c8186b464dd08f6339e3
Author: Davide Pesavento  gentoo  org>
AuthorDate: Thu Feb  1 18:56:10 2018 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Thu Feb  1 18:56:10 2018 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=82026b03

qt5-build.eclass: use a subshell for insinto+newins

 eclass/qt5-build.eclass | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index 963dba57..28d303e2 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -804,10 +804,11 @@ qt5_install_module_qconfigs() {
doins "${T}"/${PN}-qconfig.pri
)
 
-   if [[ ${PN} == qtcore && ${QT5_MINOR_VERSION} -ge 9 ]]; then
+   # install also the original qconfig.pri
+   [[ ${PN} == qtcore && ${QT5_MINOR_VERSION} -ge 9 ]] && (
insinto "${QT5_ARCHDATADIR#${EPREFIX}}"/mkspecs/gentoo
newins "${D}${QT5_ARCHDATADIR#${EPREFIX}}"/mkspecs/qconfig.pri 
qconfig-qtcore.pri
-   fi
+   )
 }
 
 # @FUNCTION: qt5_regenerate_global_qconfigs



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

2018-02-01 Thread Michał Górny
commit: 8b6042b333a9e5a5644783b164c7045cd3707e38
Author: Silmano  gmail  com>
AuthorDate: Mon Jan 29 18:58:31 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb  1 18:52:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b6042b3

www-misc/monitorix: removed optional dependencies

Removed optional dependencies from RDEPEND & IUSE, since the package
doesn't need to be compiled.

Closes: https://bugs.gentoo.org/511122
Closes: https://github.com/gentoo/gentoo/pull/6999
Reported-by: Tom Wijsman  gentoo.org>
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 ...ix-3.10.0.ebuild => monitorix-3.10.0-r1.ebuild} | 45 --
 1 file changed, 24 insertions(+), 21 deletions(-)

diff --git a/www-misc/monitorix/monitorix-3.10.0.ebuild 
b/www-misc/monitorix/monitorix-3.10.0-r1.ebuild
similarity index 61%
rename from www-misc/monitorix/monitorix-3.10.0.ebuild
rename to www-misc/monitorix/monitorix-3.10.0-r1.ebuild
index 52fd90b802b..c4817155693 100644
--- a/www-misc/monitorix/monitorix-3.10.0.ebuild
+++ b/www-misc/monitorix/monitorix-3.10.0-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mikaku/Monitorix/archive/v${PV}.tar.gz -> ${P}.tar.g
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="apcupsd hddtemp httpd lm_sensors postfix"
+IUSE=""
 S="${WORKDIR}/Monitorix-${PV}"
 
 RDEPEND="dev-perl/Config-General
@@ -23,12 +23,7 @@ RDEPEND="dev-perl/Config-General
dev-perl/MIME-Lite
dev-perl/XML-Simple
net-analyzer/rrdtool[graph,perl]
-   dev-perl/CGI
-   apcupsd? ( sys-power/apcupsd )
-   hddtemp? ( app-admin/hddtemp )
-   httpd? ( virtual/httpd-cgi )
-   lm_sensors? ( sys-apps/lm_sensors )
-   postfix? ( net-mail/pflogsumm dev-perl/MailTools )"
+   dev-perl/CGI"
 
 pkg_setup() {
enewgroup ${PN}
@@ -84,18 +79,26 @@ src_install() {
 }
 
 pkg_postinst() {
-   elog "WARNING: ${PN} has changed its config format twice, in versions"
-   elog "3.0.0 and 3.4.0; this format may be incompatible with your 
existing"
-   elog "config file. Please take care if upgrading from an old version."
-   elog ""
-
-   elog "${PN} includes its own web server as of version 3.0.0."
-   elog "For this reason, the dependency on the webapp framework"
-   elog "has been removed. If you wish to use your own web server,"
-   elog "the ${PN} web data can be found at:"
-   elog "${EROOT%/}/var/lib/${PN}/www/"
-
-   elog ""
-   elog "If you are not using monitorix built-in web server, please set"
-   elog "the correct user and group ownership of 
${EROOT%/}/var/lib/${PN}/www/imgs/"
+   if has_version '<=www-misc/monitorix-3.5.1' ; then
+   ewarn "WARNING: ${PN} has changed its config format twice, in 
versions"
+   ewarn "3.0.0 and 3.4.0; this format may be incompatible with 
your existing"
+   ewarn "config file. Please take care if upgrading from an old 
version."
+   ewarn
+   elog "${PN} includes its own web server as of version 3.0.0."
+   elog "For this reason, the dependency on the webapp framework"
+   elog "has been removed."
+   elog
+   fi
+   elog "Optional dependencies:"
+   elog "  app-admin/hddtemp   (disk drive temperatures and health)"
+   elog "  mail-mta/postfix(email reports/statics)"
+   elog "  mail-mta/sendmail   (email reports/statics)"
+   elog "  sys-apps/lm_sensors (lm_sensors and GPU temperatures)"
+   elog "  sys-power/apcupsd   (APC UPS statistics)"
+   elog "  sys-power/nut   (Network UPS Tools statistics)"
+   elog
+   elog "If you wish to use your own web server:"
+   elog "  Web data can be found at: ${EROOT%/}/var/lib/${PN}/www/"
+   elog "  Also please check the correct user and group ownership"
+   elog "  of ${EROOT%/}/var/lib/${PN}/www/imgs/"
 }



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

2018-02-01 Thread Davide Pesavento
commit: f4248411525df0fd32662af8a9f07e9bcc5a0f09
Author: Davide Pesavento  gentoo  org>
AuthorDate: Thu Feb  1 18:32:15 2018 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Thu Feb  1 18:51:47 2018 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=f4248411

qt5-build.eclass: fix warning message

 eclass/qt5-build.eclass | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index 25d4136c..963dba57 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -804,7 +804,7 @@ qt5_install_module_qconfigs() {
doins "${T}"/${PN}-qconfig.pri
)
 
-   if [[ ${PN} = qtcore && ${QT5_MINOR_VERSION} -ge 9 ]]; then
+   if [[ ${PN} == qtcore && ${QT5_MINOR_VERSION} -ge 9 ]]; then
insinto "${QT5_ARCHDATADIR#${EPREFIX}}"/mkspecs/gentoo
newins "${D}${QT5_ARCHDATADIR#${EPREFIX}}"/mkspecs/qconfig.pri 
qconfig-qtcore.pri
fi
@@ -832,12 +832,12 @@ qt5_regenerate_global_qconfigs() {
local 
qconfig_pri_orig=${ROOT%/}${QT5_ARCHDATADIR}/mkspecs/gentoo/qconfig-qtcore.pri
if [[ -f ${qconfig_pri} ]]; then
local x qconfig_add= qconfig_remove=
+   local qt_config new_qt_config=
if [[ -f ${qconfig_pri_orig} ]]; then
-   local qt_config=$(sed -n 's/^QT_CONFIG\s*+=\s*//p' 
"${qconfig_pri_orig}")
+   qt_config=$(sed -n 's/^QT_CONFIG\s*+=\s*//p' 
"${qconfig_pri_orig}")
else
-   local qt_config=$(sed -n 's/^QT_CONFIG\s*+=\s*//p' 
"${qconfig_pri}")
+   qt_config=$(sed -n 's/^QT_CONFIG\s*+=\s*//p' 
"${qconfig_pri}")
fi
-   local new_qt_config=
 
# generate list of QT_CONFIG entries from the existing list,
# appending QCONFIG_ADD and excluding QCONFIG_REMOVE
@@ -857,6 +857,6 @@ qt5_regenerate_global_qconfigs() {
sed -i -e "s/^QT_CONFIG\s*+=.*/QT_CONFIG +=${new_qt_config}/" \
"${qconfig_pri}" || eerror "Failed to sed QT_CONFIG in 
${qconfig_pri}"
else
-   ewarn "${qconfig_pri} or ${qconfig_pri_orig} does not exist or 
is not a regular file"
+   ewarn "${qconfig_pri} does not exist or is not a regular file"
fi
 }



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

2018-02-01 Thread Michał Górny
commit: 0129db637f16c4d35f4931d7ff8ed162b1381e98
Author: Karol Grudziński  gmail  com>
AuthorDate: Tue Jan 30 13:53:44 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb  1 18:49:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0129db63

net-im/skypeforlinux: version bump

Closes: https://bugs.gentoo.org/646088
Closes: https://github.com/gentoo/gentoo/pull/7002
Package-Manager: Portage-2.3.20, Repoman-2.3.6

 net-im/skypeforlinux/Manifest  |   1 +
 .../skypeforlinux/skypeforlinux-8.14.0.10.ebuild   | 116 +
 2 files changed, 117 insertions(+)

diff --git a/net-im/skypeforlinux/Manifest b/net-im/skypeforlinux/Manifest
index 77022681a94..97b3458b6e9 100644
--- a/net-im/skypeforlinux/Manifest
+++ b/net-im/skypeforlinux/Manifest
@@ -1,2 +1,3 @@
 DIST skypeforlinux_8.11.0.4-1.x86_64.rpm 94517788 BLAKE2B 
5cec1184c566822dab55a2e01424400d46c9894fe77c0031c59063359c50b017f485ee1505db961fa4dacce9c1bd2634bbabd88b6b03925c4cff80d7a7d9b408
 SHA512 
580183fb278b12974e28be10cdb13925048e4692ac12e5f1abab219ede12b0ec8567d49e58e2c3a7b4d4bcfc56e3ec1cb91117c0056d86dca7d9f1e2ec363b3e
 DIST skypeforlinux_8.13.0.2-1.x86_64.rpm 102816632 BLAKE2B 
402b95a4dfaebf93200f46fb226d907fe99bb42141f629750ec34c97bae576b79953178c21cfb5309e20867a227577998887e063b9aa2a7e4aacfd0c747911e6
 SHA512 
2628cb5be1d95b838afd2bc51f200e7c2591e5620c45019ff179fb2f8a480dea0f643676ab0cfea5946a1a5d79d0e181b1b1e4c8f7bade60ffe176e5cb8b3795
+DIST skypeforlinux_8.14.0.10-1.x86_64.rpm 103063075 BLAKE2B 
c1d414ffbaa633bc29146c2a8b0e731c575c8c0afc523b487834aef9759981449659aec6720e6a3659f785d7089d9af3f59a959553f87e9007e4dcac9ebb91f4
 SHA512 
86471e71f2cb0eca0a41f0fc6e9dce6c67d2af898376bb70524a06ac21af4aa18855f1f22493f2fdd0a9753cd3d451228fe8b24661b1abed328a8bf85381f6d0

diff --git a/net-im/skypeforlinux/skypeforlinux-8.14.0.10.ebuild 
b/net-im/skypeforlinux/skypeforlinux-8.14.0.10.ebuild
new file mode 100644
index 000..d5e5dfdff41
--- /dev/null
+++ b/net-im/skypeforlinux/skypeforlinux-8.14.0.10.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MULTILIB_COMPAT=( abi_x86_64 )
+
+inherit eutils gnome2-utils pax-utils rpm multilib-build xdg-utils
+
+DESCRIPTION="Instant messaging client, with support for audio and video"
+HOMEPAGE="https://www.skype.com/;
+SRC_URI="https://repo.skype.com/rpm/stable/${PN}_${PV}-1.x86_64.rpm;
+
+LICENSE="Skype-TOS MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 
Boost-1.0 ISC CC-BY-SA-3.0 CC0-1.0 openssl ZLIB APSL-2 icu Artistic-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 -*"
+IUSE="pax_kernel"
+
+S="${WORKDIR}"
+QA_PREBUILT="*"
+RESTRICT="mirror bindist strip" #299368
+
+RDEPEND="
+   app-crypt/libsecret[${MULTILIB_USEDEP}]
+   dev-libs/atk[${MULTILIB_USEDEP}]
+   dev-libs/expat[${MULTILIB_USEDEP}]
+   dev-libs/glib:2[${MULTILIB_USEDEP}]
+   dev-libs/nspr[${MULTILIB_USEDEP}]
+   dev-libs/nss[${MULTILIB_USEDEP}]
+   gnome-base/gconf:2[${MULTILIB_USEDEP}]
+   media-libs/alsa-lib[${MULTILIB_USEDEP}]
+   media-libs/fontconfig:1.0[${MULTILIB_USEDEP}]
+   media-libs/freetype:2[${MULTILIB_USEDEP}]
+   media-libs/libv4l[${MULTILIB_USEDEP}]
+   net-print/cups[${MULTILIB_USEDEP}]
+   sys-apps/dbus[${MULTILIB_USEDEP}]
+   sys-devel/gcc[cxx]
+   virtual/ttf-fonts
+   x11-libs/cairo[${MULTILIB_USEDEP}]
+   x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}]
+   x11-libs/gtk+:2[${MULTILIB_USEDEP}]
+   x11-libs/libX11[${MULTILIB_USEDEP}]
+   x11-libs/libXScrnSaver[${MULTILIB_USEDEP}]
+   x11-libs/libXcomposite[${MULTILIB_USEDEP}]
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXdamage[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXi[${MULTILIB_USEDEP}]
+   x11-libs/libXrandr[${MULTILIB_USEDEP}]
+   x11-libs/libXrender[${MULTILIB_USEDEP}]
+   x11-libs/libXtst[${MULTILIB_USEDEP}]
+   x11-libs/libxcb[${MULTILIB_USEDEP}]
+   x11-libs/libxkbfile[${MULTILIB_USEDEP}]
+   x11-libs/pango[${MULTILIB_USEDEP}]"
+
+src_unpack() {
+   rpm_src_unpack ${A}
+}
+
+src_prepare() {
+   default
+   sed -e 
"s!^SKYPE_PATH=.*!SKYPE_PATH=${EPREFIX}/opt/skypeforlinux/skypeforlinux!" \
+   -i usr/bin/skypeforlinux || die
+   sed -e "s!^Exec=/usr/!Exec=${EPREFIX}/opt/!" \
+   -e 
"s!^Categories=.*!Categories=Network;InstantMessaging;Telephony;!" \
+   -e "/^OnlyShowIn=/d" \
+   -i usr/share/applications/skypeforlinux.desktop || die
+}
+
+src_install() {
+   dodir /opt
+   cp -a usr/share/skypeforlinux "${D}"/opt || die
+
+   into /opt
+   dobin usr/bin/skypeforlinux
+
+   dodoc usr/share/skypeforlinux/*.html
+   dodoc -r usr/share/doc/skypeforlinux/.
+   # symlink required for the "Help->3rd 

[gentoo-commits] repo/gentoo:master commit in: app-laptop/laptop-mode-tools/

2018-02-01 Thread Alon Bar-Lev
commit: 4cc1d20579edf1ff32cfdf5f14d8ee07099ce198
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Thu Feb  1 17:16:31 2018 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Thu Feb  1 18:42:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cc1d205

app-laptop/laptop-mode-tools: version bump

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-laptop/laptop-mode-tools/Manifest  |  1 +
 .../laptop-mode-tools-1.72.ebuild  | 91 ++
 2 files changed, 92 insertions(+)

diff --git a/app-laptop/laptop-mode-tools/Manifest 
b/app-laptop/laptop-mode-tools/Manifest
index fb5890af2d0..baa42d7e8e5 100644
--- a/app-laptop/laptop-mode-tools/Manifest
+++ b/app-laptop/laptop-mode-tools/Manifest
@@ -1 +1,2 @@
 DIST laptop-mode-tools_1.71.tar.gz 118833 BLAKE2B 
21e6399d35d3f35dd75e5640eb50d679de87bf40435484e0c7cb67dcd0f2a794b5f14b48e375c302ef749efc38677b8abbdacfd3612206fb0125c52b9d67a89b
 SHA512 
67ef4ed4c80f3a64ab9f0f9003d415f9e8759fd0ee1c7a82837d423a0e7aeb03ab95724afd89ae223f954ae0baec5830c8fa600bd6e2e351aead83a656f9b665
+DIST laptop-mode-tools_1.72.tar.gz 121392 BLAKE2B 
7aa02fa546d04423c45c27afd7b4c79ce10cdf8e7ae986d66fb664ab5bd6a05c6ac188a456f3afd46780cec7ab74d2cd83b4ddf1e14f6dbc517442d03bb960a6
 SHA512 
9135df29d4076dadc805470d742007b1a25be962f4181235126d1bb697b362c646cb9c4839b57e92314b8207e23eba3618b2d985802836bcae22f6a4aceb66a5

diff --git a/app-laptop/laptop-mode-tools/laptop-mode-tools-1.72.ebuild 
b/app-laptop/laptop-mode-tools/laptop-mode-tools-1.72.ebuild
new file mode 100644
index 000..8e38fc45f3d
--- /dev/null
+++ b/app-laptop/laptop-mode-tools/laptop-mode-tools-1.72.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit multilib systemd udev
+
+MY_P="${PN}_${PV}"
+
+DESCRIPTION="Linux kernel laptop_mode user-space utilities"
+HOMEPAGE="https://github.com/rickysarraf/laptop-mode-tools/wiki;
+SRC_URI="https://github.com/rickysarraf/${PN}/releases/download/${PV}/${MY_P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="+acpi apm bluetooth"
+
+RDEPEND="sys-apps/iproute2
+   sys-apps/ethtool
+   sys-apps/which
+   acpi? ( sys-power/acpid )
+   apm? ( sys-apps/apmd )
+   bluetooth? ( net-wireless/bluez:= )"
+DEPEND=""
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+   # This should avoid conflict with pm-powersave wrt #327443 and #396703
+   cat <<-EOF > "${T}"/${PN}
+   HOOK_BLACKLIST="00powersave"
+   EOF
+}
+
+src_compile() { :; }
+
+src_install() {
+   DESTDIR="${D}" \
+   INIT_D="none" \
+   MAN_D="/usr/share/man" \
+   LIB_D="/usr/$(get_libdir)" \
+   UDEV_D="$(get_udevdir)" \
+   SYSTEMD_UNIT_D="$(systemd_get_systemunitdir)" \
+   TMPFILES_D="/usr/lib/tmpfiles.d" \
+   ACPI="$(use acpi && echo force || echo disabled)" \
+   PMU="$(false && echo force || echo disabled)" \
+   APM="$(use apm && echo force || echo disabled)" \
+   SYSTEMD=yes \
+   sh ./install.sh || die
+
+   dodoc Documentation/*.txt README.md
+   newinitd "${FILESDIR}"/laptop_mode.init-1.4 laptop_mode
+
+   # See src_prepare()
+   insinto /etc/pm/config.d
+   doins "${T}"/${PN}
+}
+
+pkg_postinst() {
+   if use acpi || use apm; then
+   if use acpi; then
+   daemon_name="acpid"
+   elif use apm; then
+   deamon_name="apmd"
+   fi
+   if [ "$(rc-config list default | grep laptop_mode)" = "" ] || [ 
"$(rc-config list default | grep ${daemon_name} )" = "" ]; then
+   ewarn "To enable automatic power state event handling,"
+   ewarn "e.g. enabling laptop_mode after unplugging the 
battery,"
+   ewarn "both laptop_mode and the ${daemon_name} daemon 
must be"
+   ewarn "added to default runlevel:"
+   if [ "$(rc-config list default | grep laptop_mode)" = 
"" ]; then
+   ewarn "# rc-update add laptop_mode default"
+   fi
+   if [ "$(rc-config list default | grep ${daemon_name} )" 
= "" ]; then
+   ewarn "# rc-update add ${daemon_name} default"
+   fi
+   fi
+   else
+   ewarn "Without USE=\"acpi\" or USE=\"apm\" ${PN} can not"
+   ewarn "automatically disable laptop_mode on low battery."
+   ewarn
+   ewarn "This means you can lose up to 10 minutes of work if 
running"
+   ewarn "out of battery while laptop_mode is enabled."
+   ewarn
+   ewarn "Please see laptop-mode.txt in /usr/share/doc/${PF} for 
further"
+   

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

2018-02-01 Thread Alon Bar-Lev
commit: 0c71727739384f91f1cae4cec668b8217e7ce49c
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Thu Feb  1 17:21:08 2018 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Thu Feb  1 18:42:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c717277

app-crypt/signing-party: version bump

Closes: https://bugs.gentoo.org/show_bug.cgi?id=646296
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-crypt/signing-party/Manifest |   1 +
 app-crypt/signing-party/signing-party-2.7.ebuild | 120 +++
 2 files changed, 121 insertions(+)

diff --git a/app-crypt/signing-party/Manifest b/app-crypt/signing-party/Manifest
index e49ca9bd4d6..858e44adf70 100644
--- a/app-crypt/signing-party/Manifest
+++ b/app-crypt/signing-party/Manifest
@@ -1 +1,2 @@
 DIST signing-party_2.6.orig.tar.gz 201210 BLAKE2B 
9be19ffafbb42aca36c7fa8a42e9cb2f804cb226f9b0bdcd97d02751b23a6adf055f4667d0e8192c51d96a96978a5807a9ec6bfb21151cedfef1cb32db1d87a0
 SHA512 
094af9b354d958d382bf99a1f10a9f12585f85769686e3bc9b9b813016f68232775e4002c0a7accbc894c946f7532b32ee7f9b3e23d467b973041c092ba4efb9
+DIST signing-party_2.7.orig.tar.gz 201320 BLAKE2B 
4fe5781b610dc8acd5166fc7ce7daa1b856f6617952d5eb226cae0c8c6fcaa196b88ffe313b2d71b8f11423a81e84f2124d9adea86edbfb0d22808473d1c36fe
 SHA512 
d1599ca0cb2dd554b4688bc8c77f4a1dd907d00539bb11abe147300dd2184f8548ebe9fdf793e83e2956a220b1c4bf9e19bd543b77f724b0c8ea4794ac945985

diff --git a/app-crypt/signing-party/signing-party-2.7.ebuild 
b/app-crypt/signing-party/signing-party-2.7.ebuild
new file mode 100644
index 000..1ec1a1b3bd1
--- /dev/null
+++ b/app-crypt/signing-party/signing-party-2.7.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs autotools
+
+DESCRIPTION="A collection of several tools related to OpenPGP"
+HOMEPAGE="http://pgp-tools.alioth.debian.org/;
+SRC_URI="mirror://debian/pool/main/s/signing-party/${PN}_${PV}.orig.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+DEPEND="
+   dev-lang/perl
+   app-crypt/libmd
+"
+RDEPEND="${DEPEND}
+   >=app-crypt/gnupg-1.3.92
+   dev-perl/GnuPG-Interface
+   dev-perl/Text-Template
+   dev-perl/MIME-tools
+   net-mail/qprint
+   >=dev-perl/MailTools-1.62
+   dev-perl/Net-IDN-Encode
+   virtual/mailx
+   virtual/mta
+   || (
+   dev-perl/libintl-perl
+   dev-perl/Text-Iconv
+   app-text/recode
+   )"
+S="${WORKDIR}"
+
+src_prepare() {
+   default
+
+   # app-crypt/keylookup
+   rm -r keylookup || die
+   # media-gfx/springgraph
+   rm -r springgraph || die
+
+   cd keyanalyze/pgpring || die
+   sed -i 's/AM_C_PROTOTYPES//' configure.ac || die
+   eautoreconf
+   cd "${WORKDIR}" || die
+
+   find . -name Makefile | xargs sed -i -e 's/CFLAGS:=/CFLAGS=/' -e 
's/CPPFLAGS:=/CPPFLAGS=/' -e 's/LDFLAGS:=/LDFLAGS=/'
+
+   sed -i 
"s:/usr/share/doc/signing-party/caff/caffrc.sample:${EPREFIX}/usr/share/doc/${P}/caff/caffrc.sample.gz:g"
 \
+   caff/caff || die
+   sed -i -e 's/automake[^ ]*/true/g' -e 's/autoconf[^ ]*/true/g' 
keyanalyze/Makefile || die
+   sed -i 's/make /\$(MAKE) /' keyanalyze/Makefile || die
+}
+
+src_compile() {
+   emake \
+   CC="$(tc-getCC)" \
+   CPPFLAGS="${CPPFLAGS}" \
+   CFLAGS="${CFLAGS}" \
+   LDFLAGS="${LDFLAGS}" \
+   STRIP=true
+}
+
+src_install() {
+   einstalldocs
+
+   # Check Makefile when a new tool is introduced to this package.
+   # caff
+   dobin caff/caff caff/pgp-clean caff/pgp-fixkey
+   docinto caff
+   dodoc caff/{README*,THANKS,TODO,caffrc.sample}
+   # gpgdir
+   dobin gpgdir/gpgdir
+   docinto gpgdir
+   dodoc gpgdir/{VERSION,LICENSE,README,INSTALL,CREDITS,ChangeLog*}
+   # gpg-key2ps
+   dobin gpg-key2ps/gpg-key2ps
+   docinto gpg-key2ps
+   dodoc gpg-key2ps/README
+   # gpglist
+   dobin gpglist/gpglist
+   # gpg-mailkeys
+   dobin gpg-mailkeys/gpg-mailkeys
+   docinto gpg-mailkeys
+   dodoc gpg-mailkeys/{example.gpg-mailkeysrc,README}
+   # gpgparticipants
+   dobin gpgparticipants/gpgparticipants
+   # gpgwrap
+   dobin gpgwrap/bin/gpgwrap
+   docinto gpgwrap
+   dodoc gpgwrap/{LICENSE,NEWS,README}
+   doman gpgwrap/doc/gpgwrap.1
+   # gpgsigs
+   dobin gpgsigs/gpgsigs
+   insinto /usr/share/signing-party
+   # keyanalyze
+   # TODO: some of the scripts are intended for webpages, and not really
+   # packaging, so they are NOT installed yet.
+   newbin keyanalyze/pgpring/pgpring pgpring-keyanalyze
+   dobin keyanalyze/{keyanalyze,process_keys}
+   docinto keyanalyze
+   dodoc keyanalyze/{README,Changelog}
+   # See app-crypt/keylookup 

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

2018-02-01 Thread Mike Gilbert
commit: 4c23097d5cc80886f0ccbc5061caa5d10d08406f
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Feb  1 18:34:35 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Feb  1 18:34:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c23097d

net-p2p/transmission: bump to 2.93

Closes: https://bugs.gentoo.org/646226
Package-Manager: Portage-2.3.19_p11, Repoman-2.3.6_p45

 net-p2p/transmission/Manifest |   1 +
 net-p2p/transmission/transmission-2.93.ebuild | 163 ++
 2 files changed, 164 insertions(+)

diff --git a/net-p2p/transmission/Manifest b/net-p2p/transmission/Manifest
index 99aa9151f8f..9768d963f68 100644
--- a/net-p2p/transmission/Manifest
+++ b/net-p2p/transmission/Manifest
@@ -1 +1,2 @@
 DIST transmission-2.92.tar.xz 3378116 BLAKE2B 
8929a2eab8a1617db44ca8a081fd7de786daef92e891ac86d4690451c0f4fa0d4e1ea03692c59babea6e9aee5dcfef57bd81e5c72a0bb4fe9efbd436ff006104
 SHA512 
4d99476bee88cedcc4238a0eee64a4089016933cbfc1cfb1cca023ad4ebcfe46375c9e7651a17af4aeaaf1feb19cbd8166aa56ef7992d9e745a7bbcbe8efca11
+DIST transmission-2.93.tar.xz 3363868 BLAKE2B 
786a8daec548d96b05d90c238cc7b67d402dc0d828860bb1a79b8059c687de309288be17fd12fd51abeafa28d9630fd19be9513c76cbf091f81ce9a181596042
 SHA512 
7565893f67fc10f1b683814fa4d365d841ec833bc8dfdab731432fe68f1a38daeb4c9100653763f16bfb4336fba11c9b0b9730a9817e17a140704a7c4aa5c087

diff --git a/net-p2p/transmission/transmission-2.93.ebuild 
b/net-p2p/transmission/transmission-2.93.ebuild
new file mode 100644
index 000..d5235cc1c65
--- /dev/null
+++ b/net-p2p/transmission/transmission-2.93.ebuild
@@ -0,0 +1,163 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools flag-o-matic gnome2-utils qmake-utils systemd user xdg-utils
+
+DESCRIPTION="A Fast, Easy and Free BitTorrent client"
+HOMEPAGE="http://www.transmissionbt.com/;
+SRC_URI="https://github.com/transmission/transmission-releases/raw/master/${P}.tar.xz;
+
+# web/LICENSE is always GPL-2 whereas COPYING allows either GPL-2 or GPL-3 for 
the rest
+# transmission in licenses/ is for mentioning OpenSSL linking exception
+# MIT is in several libtransmission/ headers
+LICENSE="|| ( GPL-2 GPL-3 Transmission-OpenSSL-exception ) GPL-2 MIT"
+SLOT=0
+IUSE="ayatana gtk libressl lightweight systemd qt5 xfs"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux"
+
+RDEPEND=">=dev-libs/libevent-2.0.10:=
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   net-libs/libnatpmp
+   >=net-libs/miniupnpc-1.7:=
+   >=net-misc/curl-7.16.3[ssl]
+   sys-libs/zlib:=
+   gtk? (
+   >=dev-libs/dbus-glib-0.100
+   >=dev-libs/glib-2.32:2
+   >=x11-libs/gtk+-3.4:3
+   ayatana? ( >=dev-libs/libappindicator-0.4.90:3 )
+   )
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   )
+   systemd? ( >=sys-apps/systemd-209:= )"
+DEPEND="${RDEPEND}
+   >=dev-libs/glib-2.32
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/os-headers
+   virtual/pkgconfig
+   qt5? ( dev-qt/linguist-tools:5 )
+   xfs? ( sys-fs/xfsprogs )"
+
+REQUIRED_USE="ayatana? ( gtk )"
+
+DOCS=( AUTHORS NEWS qt/README.txt )
+
+PATCHES=(
+   "${FILESDIR}"/libsystemd.patch
+)
+
+src_prepare() {
+   sed -i -e '/CFLAGS/s:-ggdb3::' configure.ac || die
+
+   # Trick to avoid automagic dependency
+   if ! use ayatana ; then
+   sed -i -e '/^LIBAPPINDICATOR_MINIMUM/s:=.*:=:' configure.ac 
|| die
+   fi
+
+   # http://trac.transmissionbt.com/ticket/4324
+   sed -i -e 's|noinst\(_PROGRAMS = $(TESTS)\)|check\1|' 
libtransmission/Makefile.am || die
+
+   # Prevent m4_copy error when running aclocal
+   # m4_copy: won't overwrite defined macro: glib_DEFUN
+   rm m4/glib-gettext.m4 || die
+
+   default
+   eautoreconf
+}
+
+src_configure() {
+   export ac_cv_header_xfs_xfs_h=$(usex xfs)
+
+   # https://bugs.gentoo.org/577528
+   append-lfs-flags
+
+   econf \
+   --enable-external-natpmp \
+   $(use_enable lightweight) \
+   $(use_with systemd systemd-daemon) \
+   $(use_with gtk)
+
+   if use qt5; then
+   pushd qt >/dev/null || die
+   eqmake5 qtr.pro
+   popd >/dev/null || die
+   fi
+}
+
+src_compile() {
+   emake
+
+   if use qt5; then
+   emake -C qt
+   $(qt5_get_bindir)/lrelease qt/translations/*.ts || die
+   fi
+}
+
+src_install() {
+   default
+
+   rm "${ED%/}"/usr/share/transmission/web/LICENSE || die
+
+   newinitd "${FILESDIR}"/transmission-daemon.initd.10 transmission-daemon
+   

[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

2018-02-01 Thread Mike Gilbert
commit: 5384322fd338c596f8012d89f5f49eef35c04259
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Feb  1 18:07:46 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Feb  1 18:07:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5384322f

www-plugins/chrome-binary-plugins: automated update (65.0.3325.31)

Package-Manager: Portage-2.3.19_p11, Repoman-2.3.6_p45

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 18_alpha.ebuild => chrome-binary-plugins-65.0.3325.31_alpha.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 603c181b763..772145ee427 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
 DIST google-chrome-beta_64.0.3282.119-1_amd64.deb 52849306 BLAKE2B 
7459cff0039ff73e85d6da7ceedfc9066548c220a5fbf69d74e3038d40fd0931e1828f1d49cb4d73ede3b1518cef6c8e76c536b8dc358577f8e6a356c2212109
 SHA512 
1c7d1084b0b7fde0f3e66e1cf145838416c474fc77ce14b3008c6cc7466830fd943e64905dec92e3af995c0d47884e2c30d72a291573baae5131094ec2aa62f9
 DIST google-chrome-stable_64.0.3282.119-1_amd64.deb 51690924 BLAKE2B 
295fb0aa2a5dbd855414cc7c7382fee8b9ee4936cee56c583e57ec13cbfa4744e9491207f5966e1ae79d39b75da2fa0c33ac495d632e14bad48016e73495f1d5
 SHA512 
7bf351e7840a1c7d7e3fddb9c38d392c39dfadd5a8e2624ec434e4d3f5815682317234858cfd493c537e4695ecdf1d57bed3caaece9eb1bc9ac2ec90fa86f0b6
-DIST google-chrome-unstable_65.0.3325.18-1_amd64.deb 53125400 BLAKE2B 
ab0940c909965a71a57f5434fe50cab8cbc34bbc106e8db6f233738f6964e0bae6f6f43c92045e9d7c9752555e26ce38a0743628a5d9f4d42d6a499507f092a1
 SHA512 
3dc9ec6c46f13d01a0fa114cc5b95a2ff1b622061ad413b470203fd29e5efb7693d08cee0a804fbcd148fa7e3257fc6877e309d8da0f6cb17e1f9936b2a9d591
+DIST google-chrome-unstable_65.0.3325.31-1_amd64.deb 53258960 BLAKE2B 
ef575913e3183d4ec16d95c0193d4024b0a59952b1aa933c0d2099410e0d3e13a331a5b00417bb7db79ed82f08c9923c2e367cdd08efadbb6f11f1b7a9f1e666
 SHA512 
792680c90bccd2ef3cd13d64ab26dda4559c5f724e5b4273e3128070a31ea6f553c555897062b5a932dfbf29d6691d174cc1b3426192656efa295e93d538f786

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-65.0.3325.18_alpha.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-65.0.3325.31_alpha.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-65.0.3325.18_alpha.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-65.0.3325.31_alpha.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-unstable/

2018-02-01 Thread Mike Gilbert
commit: 117080c0dcd85bf004923ce22786087cc687e63e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Feb  1 18:07:35 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Feb  1 18:07:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=117080c0

www-client/google-chrome-unstable: automated update (65.0.3325.31)

Package-Manager: Portage-2.3.19_p11, Repoman-2.3.6_p45

 www-client/google-chrome-unstable/Manifest  | 2 +-
 ...e-65.0.3325.18.ebuild => google-chrome-unstable-65.0.3325.31.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index 02400e57cc9..33749df6255 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1 +1 @@
-DIST google-chrome-unstable_65.0.3325.18-1_amd64.deb 53125400 BLAKE2B 
ab0940c909965a71a57f5434fe50cab8cbc34bbc106e8db6f233738f6964e0bae6f6f43c92045e9d7c9752555e26ce38a0743628a5d9f4d42d6a499507f092a1
 SHA512 
3dc9ec6c46f13d01a0fa114cc5b95a2ff1b622061ad413b470203fd29e5efb7693d08cee0a804fbcd148fa7e3257fc6877e309d8da0f6cb17e1f9936b2a9d591
+DIST google-chrome-unstable_65.0.3325.31-1_amd64.deb 53258960 BLAKE2B 
ef575913e3183d4ec16d95c0193d4024b0a59952b1aa933c0d2099410e0d3e13a331a5b00417bb7db79ed82f08c9923c2e367cdd08efadbb6f11f1b7a9f1e666
 SHA512 
792680c90bccd2ef3cd13d64ab26dda4559c5f724e5b4273e3128070a31ea6f553c555897062b5a932dfbf29d6691d174cc1b3426192656efa295e93d538f786

diff --git 
a/www-client/google-chrome-unstable/google-chrome-unstable-65.0.3325.18.ebuild 
b/www-client/google-chrome-unstable/google-chrome-unstable-65.0.3325.31.ebuild
similarity index 100%
rename from 
www-client/google-chrome-unstable/google-chrome-unstable-65.0.3325.18.ebuild
rename to 
www-client/google-chrome-unstable/google-chrome-unstable-65.0.3325.31.ebuild



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

2018-02-01 Thread Andreas Sturmlechner
commit: ba7dd574540c3edb0bb129fabe1be7dd38859e84
Author: Rob Levitsky  protonmail  ch>
AuthorDate: Sun Jan 28 00:29:20 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Feb  1 17:45:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba7dd574

games-fps/redeclipse: revision bump, fix installation

This revision fixes the incorrect installation of the desktop file
entry, and provides a wrapper script to address the runtime problem
introduced by no longer using EAPI 5's games installation paths.

Package-Manager: Portage-2.3.19, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/6979

 games-fps/redeclipse/files/redeclipse  | 10 ++
 .../{redeclipse-1.6.0.ebuild => redeclipse-1.6.0-r1.ebuild}|  6 +-
 2 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/games-fps/redeclipse/files/redeclipse 
b/games-fps/redeclipse/files/redeclipse
new file mode 100644
index 000..667765d11d9
--- /dev/null
+++ b/games-fps/redeclipse/files/redeclipse
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+# It is necessary to run the binary from the root of the data directory
+# for the binary to properly locate its assets and load properly.
+# Upstream's original install procedure is doing the same thing.
+
+SERVER=/usr/bin/redeclipse_server_linux
+CLIENT=/usr/bin/redeclipse_linux
+cd /usr/share/redeclipse || exit 1
+[ "$0" = "redeclipse_server" ] && exec $SERVER || exec $CLIENT

diff --git a/games-fps/redeclipse/redeclipse-1.6.0.ebuild 
b/games-fps/redeclipse/redeclipse-1.6.0-r1.ebuild
similarity index 93%
rename from games-fps/redeclipse/redeclipse-1.6.0.ebuild
rename to games-fps/redeclipse/redeclipse-1.6.0-r1.ebuild
index 173ab9a6b75..5a45262fd90 100644
--- a/games-fps/redeclipse/redeclipse-1.6.0.ebuild
+++ b/games-fps/redeclipse/redeclipse-1.6.0-r1.ebuild
@@ -70,10 +70,14 @@ src_install() {
if ! use dedicated; then
dobin src/redeclipse_linux
newicon "src/install/nix/${PN}_x128.png" "${PN}.png"
-   make_desktop_entry "src/install/nix/${PN}.desktop"
+   domenu "src/install/nix/${PN}.desktop"
doman doc/man/redeclipse.6
fi
 
+   dobin "${FILESDIR}/redeclipse"
+   cd /usr/bin || die
+   dosym redeclipse redeclipse_server
+
doman doc/man/redeclipse-server.6
dodoc readme.txt doc/examples/servinit.cfg
 }



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

2018-02-01 Thread Andreas Sturmlechner
commit: 19367bd30d2b6d0e9b96b3b782456d2c6ba7b6e4
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Thu Feb  1 17:09:36 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Feb  1 17:41:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19367bd3

dev-libs/boost: remove unused patches

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

 .../boost-1.48.0-disable_libboost_python3.patch| 62 ---
 .../boost-1.48.0-no_strict_aliasing_python2.patch  | 23 
 .../boost/files/boost-1.48.0-python_linking.patch  | 24 
 .../boost-1.51.0-respect_python-buildid.patch  | 69 --
 ...ost-1.51.0-support_dots_in_python-buildid.patch | 22 ---
 5 files changed, 200 deletions(-)

diff --git a/dev-libs/boost/files/boost-1.48.0-disable_libboost_python3.patch 
b/dev-libs/boost/files/boost-1.48.0-disable_libboost_python3.patch
deleted file mode 100644
index d4560400d7d..000
--- a/dev-libs/boost/files/boost-1.48.0-disable_libboost_python3.patch
+++ /dev/null
@@ -1,62 +0,0 @@
 a/libs/python/build/Jamfile.v2
-+++ b/libs/python/build/Jamfile.v2
-@@ -39,23 +39,6 @@
- PYTHON_ID = [ regex.replace $(python-id) "[*\\/:\"\']" "_" ] ;
- }
- 
--
--rule find-py3-version
--{
--local versions = [ feature.values python ] ;
--local py3ver ;
--for local v in $(versions)
--{
--if $(v) >= 3.0
--{
--py3ver = $(v) ;
--}
--}
--return $(py3ver) ;
--}
--
--py3-version = [ find-py3-version ] ;
--
- project boost/python
-   : source-location ../src
-   : requirements
-@@ -82,7 +65,7 @@
- rule cond ( test ? : yes * : no * ) { if $(test) { return $(yes) ; } else { 
return $(no) ; } }
- rule unless ( test ? : yes * : no * ) { if ! $(test) { return $(yes) ; } else 
{ return $(no) ; } }
- 
--rule lib_boost_python ( is-py3 ? )
-+rule lib_boost_python
- {
- 
- local python_major_version = [ MATCH "^([^.]+)" : [ feature.values python 
] ] ;
-@@ -91,7 +74,7 @@
- {
- python2 = true ;
- }
--lib [ cond $(is-py3) : boost_python3 : boost_python ]
-+lib boost_python
- : # sources
- numeric.cpp
- list.cpp
-@@ -148,7 +131,6 @@
- config-warning
- 
- on:BOOST_DEBUG_PYTHON
--[ cond $(is-py3) : $(py3-version) ]
- :   # default build
- shared
- :   # usage requirements
-@@ -160,9 +142,3 @@
- 
- lib_boost_python ;
- boost-install boost_python ;
--
--if $(py3-version)
--{
--lib_boost_python yes ;
--boost-install boost_python3 ;
--}

diff --git a/dev-libs/boost/files/boost-1.48.0-no_strict_aliasing_python2.patch 
b/dev-libs/boost/files/boost-1.48.0-no_strict_aliasing_python2.patch
deleted file mode 100644
index cb26792f99c..000
--- a/dev-libs/boost/files/boost-1.48.0-no_strict_aliasing_python2.patch
+++ /dev/null
@@ -1,23 +0,0 @@
 a/libs/python/build/Jamfile.v2
-+++ b/libs/python/build/Jamfile.v2
-@@ -85,6 +85,12 @@
- rule lib_boost_python ( is-py3 ? )
- {
- 
-+local python_major_version = [ MATCH "^([^.]+)" : [ feature.values python 
] ] ;
-+local python2 ;
-+if $(python_major_version) = 2
-+{
-+python2 = true ;
-+}
- lib [ cond $(is-py3) : boost_python3 : boost_python ]
- : # sources
- numeric.cpp
-@@ -119,6 +125,7 @@
- :   # requirements
- static:BOOST_PYTHON_STATIC_LIB 
- BOOST_PYTHON_SOURCE
-+[ cond $(python2) : -fno-strict-aliasing ]
-   
- # On Windows, all code using Python has to link to the Python
- # import library.

diff --git a/dev-libs/boost/files/boost-1.48.0-python_linking.patch 
b/dev-libs/boost/files/boost-1.48.0-python_linking.patch
deleted file mode 100644
index 330cbb11e88..000
--- a/dev-libs/boost/files/boost-1.48.0-python_linking.patch
+++ /dev/null
@@ -1,24 +0,0 @@
 a/libs/python/build/Jamfile.v2
-+++ b/libs/python/build/Jamfile.v2
-@@ -109,20 +109,7 @@
- static:BOOST_PYTHON_STATIC_LIB 
- BOOST_PYTHON_SOURCE
- [ cond $(python2) : -fno-strict-aliasing ]
--  
--# On Windows, all code using Python has to link to the Python
--# import library.
--#
--# On *nix we never link libboost_python to libpython.  When
--# extending Python, all Python symbols are provided by the
--# Python interpreter executable.  When embedding Python, the
--# client executable is expected to explicitly link to
--# /python//python (the target representing libpython) itself.
--#
--# python_for_extensions is a target defined by Boost.Build to
--# provide the Python include paths, and on Windows, the Python
--# import library, as usage requirements.
--[ cond [ python.configured ] : 
/python//python_for_extensions ]
-+[ 

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

2018-02-01 Thread Matt Thode
commit: 1ecf06a44c84ac7a45c29aac3fe1900553261970
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Feb  1 16:41:42 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Feb  1 16:43:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ecf06a4

app-admin/ansible: 2.4.3.0 bup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-admin/ansible/Manifest   |  1 +
 app-admin/ansible/ansible-2.4.3.0.ebuild | 56 
 2 files changed, 57 insertions(+)

diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
index afa08114b7a..2ed8daac30e 100644
--- a/app-admin/ansible/Manifest
+++ b/app-admin/ansible/Manifest
@@ -1,2 +1,3 @@
 DIST ansible-2.4.1.0.tar.gz 6675552 BLAKE2B 
00497b33e833149510669c9e481b0893a2d016caf2949fa064ca0a2e4f62a6c5a3f94597673822418253b85abaf380308115dfaa4c1acd88f0c73322d87822d4
 SHA512 
86bda43d912fc6b9cbf662e7e9e3ca3178ac577bc7857c5dfc0e68a7083d76ad405b0ca9b34f680a0d635b87e0bf5dc8cbdeefb93174242e1942eabb74b07f1d
 DIST ansible-2.4.2.0.tar.gz 6503595 BLAKE2B 
df4ec4e24671f1488950f2d9eb7705fbad4e035d6ac67d5017417281455cc44cde1290976a9ed16675c0cc19a9190200b95b29890725c56df5f2699398accd6b
 SHA512 
32a075959dca01e184d9c3988fc9c491e904e7627a38e3527c37a8b26340f331bd294cacfe7353d339d15488857ba5ee1b36d9ae4ebeb8b5827934a73f4b42b0
+DIST ansible-2.4.3.0.tar.gz 655 BLAKE2B 
d43679c651f6aa5fd86c797a204645a8ee98efbcde9abaa25385aeb6f1d7c8b4ad74185434bfd159dbf673fe9339ef8f915f78238f8b8a5caf924b54cb9bdd52
 SHA512 
a7cda358c67c519c7e5ba248bf47070f21a27203fb29d70d9d75ecf027ba1275d71c0f96493e047281211d172a3be8273d7e0816284695fb0bc8b94daa82

diff --git a/app-admin/ansible/ansible-2.4.3.0.ebuild 
b/app-admin/ansible/ansible-2.4.3.0.ebuild
new file mode 100644
index 000..346b2f5aea9
--- /dev/null
+++ b/app-admin/ansible/ansible-2.4.3.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+
+inherit distutils-r1 eutils versionator
+
+DESCRIPTION="Model-driven deployment, config management, and command execution 
framework"
+HOMEPAGE="http://ansible.com/;
+SRC_URI="http://releases.ansible.com/${PN}/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x64-macos"
+IUSE="test"
+
+RDEPEND="
+   dev-python/paramiko[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/httplib2[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/netaddr[${PYTHON_USEDEP}]
+   net-misc/sshpass
+   virtual/ssh
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/packaging-16.6[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   dev-python/nose[${PYTHON_USEDEP}]
+   >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
+   dev-python/passlib[${PYTHON_USEDEP}]
+   dev-python/coverage[${PYTHON_USEDEP}]
+   dev-python/unittest2[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )"
+
+# not included in release tarball
+RESTRICT="test"
+
+python_test() {
+   nosetests -d -w test/units -v --with-coverage --cover-package=ansible 
--cover-branches || die
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   doman docs/man/man1/*.1
+   dodoc -r examples
+}



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

2018-02-01 Thread Johannes Huber
commit: 3ff0715e3477e6fe14ea80b491514e948cc527a0
Author: Johannes Huber  gentoo  org>
AuthorDate: Thu Feb  1 16:31:51 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Thu Feb  1 16:31:51 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=3ff0715e

.travis.yml: Bump portage version to 2.3.22

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 8f593e1e3d..374bbf5858 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,7 +6,7 @@ language: python
 python:
 - pypy
 env:
-- PORTAGE_VER="2.3.21"
+- PORTAGE_VER="2.3.22"
 before_install:
 - sudo apt-get -qq update
 - pip install lxml



[gentoo-commits] proj/kde:master commit in: kde-plasma/kwayland-integration/, kde-plasma/user-manager/, ...

2018-02-01 Thread Andreas Sturmlechner
commit: 82f2681643d8afcecc0043ae63283dfad51a4fb2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Feb  1 15:59:21 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Feb  1 15:59:21 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=82f26816

kde-plasma: Add KDE Plasma 5.12.0

Package-Manager: Portage-2.3.22, Repoman-2.3.6

 kde-plasma/bluedevil/bluedevil-5.12.0.ebuild   |  40 +
 kde-plasma/breeze-grub/breeze-grub-5.12.0.ebuild   |  30 
 kde-plasma/breeze-gtk/breeze-gtk-5.12.0.ebuild |  12 ++
 .../breeze-plymouth/breeze-plymouth-5.12.0.ebuild  |  26 
 kde-plasma/breeze/breeze-5.12.0.ebuild |  87 +++
 kde-plasma/drkonqi/drkonqi-5.12.0.ebuild   |  56 +++
 .../kactivitymanagerd-5.12.0.ebuild|  35 +
 .../kde-cli-tools/kde-cli-tools-5.12.0.ebuild  |  59 
 .../kde-gtk-config/kde-gtk-config-5.12.0.ebuild|  52 +++
 kde-plasma/kdecoration/kdecoration-5.12.0.ebuild   |  16 ++
 .../kdeplasma-addons-5.12.0.ebuild |  59 
 kde-plasma/kgamma/kgamma-5.12.0.ebuild |  26 
 kde-plasma/khotkeys/khotkeys-5.12.0.ebuild |  46 ++
 kde-plasma/kinfocenter/kinfocenter-5.12.0.ebuild   |  91 
 kde-plasma/kmenuedit/kmenuedit-5.12.0.ebuild   |  44 ++
 kde-plasma/kscreen/kscreen-5.12.0.ebuild   |  38 +
 .../kscreenlocker/kscreenlocker-5.12.0.ebuild  |  92 
 kde-plasma/ksshaskpass/ksshaskpass-5.12.0.ebuild   |  49 ++
 kde-plasma/ksysguard/ksysguard-5.12.0.ebuild   |  47 ++
 kde-plasma/kwallet-pam/kwallet-pam-5.12.0.ebuild   |  33 +
 .../kwayland-integration-5.12.0.ebuild |  22 +++
 kde-plasma/kwin/kwin-5.12.0.ebuild | 106 +
 kde-plasma/kwrited/kwrited-5.12.0.ebuild   |  23 +++
 kde-plasma/libkscreen/libkscreen-5.12.0.ebuild |  27 
 kde-plasma/libksysguard/libksysguard-5.12.0.ebuild |  53 +++
 kde-plasma/milou/milou-5.12.0.ebuild   |  30 
 kde-plasma/oxygen/oxygen-5.12.0.ebuild |  93 
 .../plasma-desktop/plasma-desktop-5.12.0.ebuild| 164 +
 .../plasma-integration-5.12.0.ebuild   |  43 ++
 kde-plasma/plasma-meta/plasma-meta-5.12.0.ebuild   |  70 +
 kde-plasma/plasma-nm/plasma-nm-5.12.0.ebuild   |  75 ++
 kde-plasma/plasma-pa/plasma-pa-5.12.0.ebuild   |  29 
 kde-plasma/plasma-sdk/plasma-sdk-5.12.0.ebuild |  39 +
 kde-plasma/plasma-vault/plasma-vault-5.12.0.ebuild |  34 +
 .../plasma-workspace-wallpapers-5.12.0.ebuild  |  18 +++
 ...-.ebuild => plasma-workspace-5.12.0.ebuild} |   2 +-
 .../plasma-workspace/plasma-workspace-.ebuild  |   2 +-
 kde-plasma/plymouth-kcm/plymouth-kcm-5.12.0.ebuild |  36 +
 .../polkit-kde-agent-5.12.0.ebuild |  30 
 kde-plasma/powerdevil/powerdevil-5.12.0.ebuild |  82 +++
 kde-plasma/sddm-kcm/sddm-kcm-5.12.0.ebuild |  41 ++
 .../systemsettings/systemsettings-5.12.0.ebuild|  52 +++
 kde-plasma/user-manager/user-manager-5.12.0.ebuild |  27 
 43 files changed, 2034 insertions(+), 2 deletions(-)

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

diff --git a/kde-plasma/breeze-grub/breeze-grub-5.12.0.ebuild 
b/kde-plasma/breeze-grub/breeze-grub-5.12.0.ebuild
new file mode 100644
index 00..8ef3ef186a
--- /dev/null
+++ b/kde-plasma/breeze-grub/breeze-grub-5.12.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of 

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

2018-02-01 Thread Andreas Sturmlechner
commit: 352482b5cf20a300fbf67f33b004e4a27822deff
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Feb  1 15:45:00 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Feb  1 15:45:23 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=352482b5

profiles: Add KDE Plasma 5.12.0 package.mask

 profiles/package.mask/kde-plasma-5.12.0 | 45 +
 1 file changed, 45 insertions(+)

diff --git a/profiles/package.mask/kde-plasma-5.12.0 
b/profiles/package.mask/kde-plasma-5.12.0
new file mode 100644
index 00..a638b65374
--- /dev/null
+++ b/profiles/package.mask/kde-plasma-5.12.0
@@ -0,0 +1,45 @@
+# Andreas Sturmlechner  (01 Feb 2018)
+# KDE Plasma 5.12.0 mask
+# Not released yet.
+~kde-plasma/bluedevil-5.12.0
+~kde-plasma/breeze-5.12.0
+~kde-plasma/breeze-grub-5.12.0
+~kde-plasma/breeze-gtk-5.12.0
+~kde-plasma/breeze-plymouth-5.12.0
+~kde-plasma/drkonqi-5.12.0
+~kde-plasma/kactivitymanagerd-5.12.0
+~kde-plasma/kde-cli-tools-5.12.0
+~kde-plasma/kde-gtk-config-5.12.0
+~kde-plasma/kdecoration-5.12.0
+~kde-plasma/kdeplasma-addons-5.12.0
+~kde-plasma/kgamma-5.12.0
+~kde-plasma/khotkeys-5.12.0
+~kde-plasma/kinfocenter-5.12.0
+~kde-plasma/kmenuedit-5.12.0
+~kde-plasma/kscreen-5.12.0
+~kde-plasma/kscreenlocker-5.12.0
+~kde-plasma/ksshaskpass-5.12.0
+~kde-plasma/ksysguard-5.12.0
+~kde-plasma/kwallet-pam-5.12.0
+~kde-plasma/kwayland-integration-5.12.0
+~kde-plasma/kwin-5.12.0
+~kde-plasma/kwrited-5.12.0
+~kde-plasma/libkscreen-5.12.0
+~kde-plasma/libksysguard-5.12.0
+~kde-plasma/milou-5.12.0
+~kde-plasma/oxygen-5.12.0
+~kde-plasma/plasma-desktop-5.12.0
+~kde-plasma/plasma-integration-5.12.0
+~kde-plasma/plasma-meta-5.12.0
+~kde-plasma/plasma-nm-5.12.0
+~kde-plasma/plasma-pa-5.12.0
+~kde-plasma/plasma-sdk-5.12.0
+~kde-plasma/plasma-vault-5.12.0
+~kde-plasma/plasma-workspace-5.12.0
+~kde-plasma/plasma-workspace-wallpapers-5.12.0
+~kde-plasma/plymouth-kcm-5.12.0
+~kde-plasma/polkit-kde-agent-5.12.0
+~kde-plasma/powerdevil-5.12.0
+~kde-plasma/sddm-kcm-5.12.0
+~kde-plasma/systemsettings-5.12.0
+~kde-plasma/user-manager-5.12.0



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

2018-02-01 Thread Andreas Sturmlechner
commit: 9e43bd2c824690215dfb39461ea8279377ed5528
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Feb  1 15:41:40 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Feb  1 15:41:40 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=9e43bd2c

kde5.eclass: Mark KDE Plasma 5.12.0 unreleased

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

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



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/

2018-02-01 Thread Andreas Sturmlechner
commit: 0135640a3e1a95d70acf185bfd303ed246049e55
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Feb  1 12:21:20 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Feb  1 16:13:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0135640a

app-office/libreoffice: Drop poppler-0.62 patch from 6.0 branch

Upstream commit 02680aaa7b86998718d6ab25177d8adc420c5c42

Package-Manager: Portage-2.3.22, Repoman-2.3.6

 app-office/libreoffice/libreoffice-6.0..ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-office/libreoffice/libreoffice-6.0..ebuild 
b/app-office/libreoffice/libreoffice-6.0..ebuild
index 4ef05313f50..9890bb1bf83 100644
--- a/app-office/libreoffice/libreoffice-6.0..ebuild
+++ b/app-office/libreoffice/libreoffice-6.0..ebuild
@@ -250,7 +250,6 @@ PATCHES=(
 
# TODO: upstream
"${FILESDIR}/${PN}-5.2.5.1-glibc-2.24.patch"
-   "${FILESDIR}/${PN}-6.0.0.1-poppler-0.62.patch" # bug 642602
 
# gtk3-kde5 vcl plugin backported from master
"${WORKDIR}"/${PATCHSET/.tar.xz/}



[gentoo-commits] repo/gentoo:master commit in: net-mail/dovecot/

2018-02-01 Thread Agostino Sarubbo
commit: 140c9940dd9e2ae905a89c6b25306c02322f5edb
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Feb  1 14:19:56 2018 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Feb  1 14:19:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=140c9940

net-mail/dovecot: amd64 stable wrt bug #644214

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

 net-mail/dovecot/dovecot-2.2.33.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/dovecot/dovecot-2.2.33.2-r2.ebuild 
b/net-mail/dovecot/dovecot-2.2.33.2-r2.ebuild
index 3ff57c442d7..dba8a81a6e2 100644
--- a/net-mail/dovecot/dovecot-2.2.33.2-r2.ebuild
+++ b/net-mail/dovecot/dovecot-2.2.33.2-r2.ebuild
@@ -24,7 +24,7 @@ HOMEPAGE="http://www.dovecot.org/;
 
 SLOT="0"
 LICENSE="LGPL-2.1 MIT"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
 
 IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
 IUSE_DOVECOT_COMPRESS="bzip2 lzma lz4 zlib"



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

2018-02-01 Thread Chí-Thanh Christopher Nguyễn
commit: bdce769a1ffc9ec23d1d5b37ebf8da45499a2f05
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Thu Feb  1 12:37:07 2018 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Thu Feb  1 12:37:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdce769a

x11-misc/xkeyboard-config: version bump to 2.23.1

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 x11-misc/xkeyboard-config/Manifest |  1 +
 .../xkeyboard-config-2.23.1.ebuild | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/x11-misc/xkeyboard-config/Manifest 
b/x11-misc/xkeyboard-config/Manifest
index fd06dc80306..813914ce45f 100644
--- a/x11-misc/xkeyboard-config/Manifest
+++ b/x11-misc/xkeyboard-config/Manifest
@@ -1,3 +1,4 @@
 DIST xkeyboard-config-2.20.tar.bz2 978275 BLAKE2B 
5d24adb829057f9600c7de0dd028af067d23a9138de87438fcc03936e48c1908fc4740f41c8f87be90ec0edbadd20735859a7fe184f5c4704ee819a1c248a091
 SHA512 
29584096874cf8f1444ed00374150fb186e9a74221b384d779bcf01c0762977f8a6a1b3dfa37acd560667a79cc80d4c0d39729b7dc21809520a7254026439db4
 DIST xkeyboard-config-2.21.tar.bz2 994972 BLAKE2B 
d6810fce00cad5fc296bd744831a13e797d8e03dada40445cf4a81b328470517f0ced8d9d0e734d9d8d35da4727ac9ff74488e118a8b7fe8c2e9cd6d364854f0
 SHA512 
c8c3da9d78365878b051bcfecc7c51e89c5aa15e6e3ba5e8c84612eaca4ca7741702c023f9571ac04c865f2951a7ca33f4fbbedb3baf6c76441ebf59c4e41068
 DIST xkeyboard-config-2.22.tar.bz2 1046333 BLAKE2B 
5a869154be04a84c57bd93896e0ada5598b1aa788a10952e5432820d5511c3d9fb101f995248115affb4c3270754b05757af4c91c4273f16299eaba6db5fb285
 SHA512 
1697cc1a49625eb608d8ab1f54f9f37e37facc482fc8bae5ebff9e3336efdd2f57e0ed95db0a9745d49f1bc21e2cfa792d0849f4057745d8be8f7abac4893f97
+DIST xkeyboard-config-2.23.1.tar.bz2 1053991 BLAKE2B 
c5551eb39f4cb240d36943d1e2fd3f9156bada61bb33013f6c43d036fb55aef5332fdb133ab6cfb03ebdbc68dcb3df7d974e3972904936b1e6dd89eafc4ec647
 SHA512 
d651bb89c265e58abe8bba4af6683364a8023cb73af7d00f401f33960e44fa94a7d8a8fdd2483d6703d1c261ca72ae5f2b53f543cfb70b2f571cfe9dcb80c3ba

diff --git a/x11-misc/xkeyboard-config/xkeyboard-config-2.23.1.ebuild 
b/x11-misc/xkeyboard-config/xkeyboard-config-2.23.1.ebuild
new file mode 100644
index 000..40b72722a50
--- /dev/null
+++ b/x11-misc/xkeyboard-config/xkeyboard-config-2.23.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+XORG_STATIC=no
+inherit xorg-2
+
+EGIT_REPO_URI="https://anongit.freedesktop.org/git/xkeyboard-config.git;
+
+DESCRIPTION="X keyboard configuration database"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/XKeyboardConfig;
+[[ ${PV} == ** ]] || 
SRC_URI="https://www.x.org/releases/individual/data/xkeyboard-config/${P}.tar.bz2;
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
+IUSE=""
+
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: games-engines/love/

2018-02-01 Thread Chí-Thanh Christopher Nguyễn
commit: 00e1fcdbff129d4bb13b729c66cd2cbbec935832
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Thu Feb  1 12:32:25 2018 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Thu Feb  1 12:32:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00e1fcdb

games-engines/love: drop maintainership

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 games-engines/love/metadata.xml | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/games-engines/love/metadata.xml b/games-engines/love/metadata.xml
index 4731fb707fd..7a38bb90096 100644
--- a/games-engines/love/metadata.xml
+++ b/games-engines/love/metadata.xml
@@ -1,12 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   chith...@gentoo.org
-   Chí-Thanh Christopher Nguyễn
-   
-
-   ga...@gentoo.org
-   Gentoo Games Project
-   
+   
 



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-input-wacom/

2018-02-01 Thread Chí-Thanh Christopher Nguyễn
commit: 7b38a94c619dc5a9b12adcf963c0d7467fea90e6
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Thu Feb  1 13:10:51 2018 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Thu Feb  1 13:10:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b38a94c

x11-drivers/xf86-input-wacom: version bump to 0.36.0

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 x11-drivers/xf86-input-wacom/Manifest  |  1 +
 .../xf86-input-wacom-0.36.0.ebuild | 73 ++
 2 files changed, 74 insertions(+)

diff --git a/x11-drivers/xf86-input-wacom/Manifest 
b/x11-drivers/xf86-input-wacom/Manifest
index 8cb813a581c..ab7988b64c4 100644
--- a/x11-drivers/xf86-input-wacom/Manifest
+++ b/x11-drivers/xf86-input-wacom/Manifest
@@ -1,2 +1,3 @@
 DIST xf86-input-wacom-0.34.0.tar.bz2 598624 BLAKE2B 
9b8b39f859a007c89ff1eb24711a2cc6a90b3106b8a3ceb2bc3c7064c14c5079e8ab08e248309ab08716da5c2e593046dd78b3d989167762c794af95b85ae95f
 SHA512 
d0aae70853f73d989d168e054bb21ddbd2114ec6c012b1c5f949838bb20a7fe75711211886dd649ec0e9449d199da17b4ff156d5d672ad02c8b2e0b667cc40ad
 DIST xf86-input-wacom-0.35.0.tar.bz2 601314 BLAKE2B 
59c2b03b79d141b71583ce3ea6ac4957e345322b67e78f24333a3f045316aa878dbcca6a575f7daf490e2991494215d83bf28bb9ec6b8a8c133abc57d559dc44
 SHA512 
9586348e8da91651bc9a9ee9e74dd77f4311060538dcb228681b98300f7624401878190322dcbc4e798bd1eeeb7d2900abc3f5e949a583b6cda44821b8821058
+DIST xf86-input-wacom-0.36.0.tar.bz2 611678 BLAKE2B 
b3fc8310514e6e07c3c25fceeb982d66e9e10730028af769cd331578a48720666a0872b625beb15c7f68bbb291293dfe4c4e305411310c67bb2bd148e7d570d8
 SHA512 
48e4cf945eb0f5c7c65d46153756372bbfd6d1f101cd90f609c71cc21b36fa671d98c7be0b52d519775c7e7b875ec441d4308cf70d7897198600553e7a93ccc5

diff --git a/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.36.0.ebuild 
b/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.36.0.ebuild
new file mode 100644
index 000..1fbc8bdbfe2
--- /dev/null
+++ b/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.36.0.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit linux-info xorg-2
+
+DESCRIPTION="Driver for Wacom tablets and drawing devices"
+HOMEPAGE="http://linuxwacom.sourceforge.net/;
+LICENSE="GPL-2"
+EGIT_REPO_URI="git://git.code.sf.net/p/linuxwacom/${PN}"
+[[ ${PV} != * ]] && \
+   SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2"
+
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="debug"
+
+# depend on libwacom for its udev rules, bug #389633
+RDEPEND="dev-libs/libwacom
+   virtual/udev
+   >=x11-base/xorg-server-1.7
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXinerama"
+DEPEND="${RDEPEND}
+   x11-proto/randrproto"
+
+pkg_setup() {
+   linux-info_pkg_setup
+
+   XORG_CONFIGURE_OPTIONS=(
+   $(use_enable debug)
+   )
+}
+
+src_install() {
+   xorg-2_src_install
+
+   rm -rf "${ED}"/usr/share/hal
+}
+
+pkg_pretend() {
+   linux-info_pkg_setup
+
+   if kernel_is lt 3 17; then
+   if ! linux_config_exists \
+   || ! linux_chkconfig_present TABLET_USB_WACOM \
+   || ! linux_chkconfig_present INPUT_EVDEV; then
+   echo
+   ewarn "If you use a USB Wacom tablet, you need to 
enable support in your kernel"
+   ewarn "  Device Drivers --->"
+   ewarn "Input device support --->"
+   ewarn "  <*>   Event interface"
+   ewarn "  [*]   Tablets  --->"
+   ewarn "<*>   Wacom Intuos/Graphire tablet 
support (USB)"
+   echo
+   fi
+   else
+   if ! linux_config_exists \
+   || ! linux_chkconfig_present HID_WACOM; then
+   echo
+   ewarn "If you use a USB Wacom tablet, you need to 
enable support in your kernel"
+   ewarn "  Device Drivers --->"
+   ewarn "HID support  --->"
+   ewarn "  Special HID drivers  --->"
+   ewarn "<*> Wacom Intuos/Graphire tablet support 
(USB)"
+   echo
+   fi
+   fi
+
+}



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

2018-02-01 Thread Manuel Rüger
commit: 0dc14b135639ff8567bca7fccf1d94978d1e2161
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Feb  1 11:53:09 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Feb  1 11:53:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dc14b13

dev-util/hadolint: Version bump to 1.3.0

Package-Manager: Portage-2.3.22, Repoman-2.3.6

 dev-util/hadolint/Manifest  |  1 +
 dev-util/hadolint/hadolint-1.3.0.ebuild | 38 +
 2 files changed, 39 insertions(+)

diff --git a/dev-util/hadolint/Manifest b/dev-util/hadolint/Manifest
index 3567e498553..3554c040683 100644
--- a/dev-util/hadolint/Manifest
+++ b/dev-util/hadolint/Manifest
@@ -1 +1,2 @@
 DIST hadolint-1.2.6.tar.gz 26761 BLAKE2B 
bf2693b0073cef553a2f7767a2d90a3af009cebbfeb448b306475f5ec6c7a3e9b228cab5e2279b6a3c3387be0fd58f14c47df1cd21c35045f96f3f3e07678ae5
 SHA512 
36f25dc040aa93c45f6da8195de7089032c0b777f939aafd77b53103d662d977b372afd7a6e39840498df6496a2a29a8c94ae59748b599aa840824fe28dda8b4
+DIST hadolint-1.3.0.tar.gz 27014 BLAKE2B 
9142319c8c275e78890ebaa002817a6d9b6beb5df0caf48000276d4f4fc6df780f6474790dae83c2d45074d5752b9dd482cc9b3266e4f404256144b53719db72
 SHA512 
6ac01e354849336375efba67870ba655e14424919d6c8d3c40ee246c7ddf1b2946a5d8a74d8bbaba45a2827895f9a18f6dbc042e41b2c44f97be3c615546f27c

diff --git a/dev-util/hadolint/hadolint-1.3.0.ebuild 
b/dev-util/hadolint/hadolint-1.3.0.ebuild
new file mode 100644
index 000..2f335d90eea
--- /dev/null
+++ b/dev-util/hadolint/hadolint-1.3.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# ebuild generated by hackport 0.5.4
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="Dockerfile Linter JavaScript API"
+HOMEPAGE="https://github.com/hadolint/hadolint;
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-haskell/gitrev-1.3.1:=[profile?]
+   >=dev-haskell/language-docker-2.0.0:=[profile?]
+   <=dev-haskell/optparse-applicative-0.14.0.0:=[profile?]
+   >=dev-haskell/parsec-3.1:=[profile?]
+   >=dev-haskell/split-0.2:=[profile?]
+   dev-haskell/yaml:=[profile?]
+   >=dev-lang/ghc-8.0.2:=
+   >=dev-util/shellcheck-0.4.7:=[profile?]
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.24.2.0
+   test? ( dev-haskell/hspec
+   >=dev-haskell/hunit-1.2 )
+"
+
+src_prepare() {
+   default
+   sed -i -e "s/-static//" ${PN}.cabal || die
+}



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

2018-02-01 Thread Bernard Cafarelli
commit: bd022efddd89c7f9f0b3e481a3a37f8a3b96cd85
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Feb  1 11:38:54 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Feb  1 11:43:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd022efd

media-video/peek: drop old

Package-Manager: Portage-2.3.22, Repoman-2.3.6

 media-video/peek/Manifest  |  2 --
 media-video/peek/peek-1.0.1.ebuild | 40 -
 media-video/peek/peek-1.0.3.ebuild | 41 --
 3 files changed, 83 deletions(-)

diff --git a/media-video/peek/Manifest b/media-video/peek/Manifest
index 270699f5252..5f7293d7987 100644
--- a/media-video/peek/Manifest
+++ b/media-video/peek/Manifest
@@ -1,3 +1 @@
-DIST peek-1.0.1.tar.gz 2602750 BLAKE2B 
84ed887847ed915f2690ab4ef02a25f3eb5d773a0dca74879580449dc092389809e0cc348f6b41cf9ac4f6ee05cec7102040977ed057642933cccadfe3c30a2a
 SHA512 
c021e6e686de25afdd2e66bea9f2d50c08909847bf2e4d8dfbda8e18975febb2ed247a86d46c7f2a954768f8683cfc218be75ad8f495cd729e787e16f09b2dfe
-DIST peek-1.0.3.tar.gz 2620773 BLAKE2B 
51615a9bf2f291786bbba8312453b3dbbbdd5c3848e04d55611f078bbcd52582e0f3b494667d3d7efbe41bb6dfc855e253f348a0bb6d3de9534200e733d7
 SHA512 
92e7d61fdd32b4525991a45a0781c304160dbbdaf518ffbc6389d3df2829593a830e8b1cf499b10c02ab1809984c945770c3394221dc31b29041da45ca291ab7
 DIST peek-1.2.1.tar.gz 2650099 BLAKE2B 
4b53bc6cce94c585029d179937c680a3743fabc9722cc9474dd870f4be1d1d79c994420e528581c0006df81f6b6caaad285fc9f35c0addd1ae0072b40f461786
 SHA512 
fcb3b30bc7b434e9daafad243f82d2849d308fcd22371cdf790b60f765b78d6009ffb3c519f571718e26cf285d1cc6bc8fdd3f61dbb427f95fd08f1e3cc52a42

diff --git a/media-video/peek/peek-1.0.1.ebuild 
b/media-video/peek/peek-1.0.1.ebuild
deleted file mode 100644
index 94e00bcb32f..000
--- a/media-video/peek/peek-1.0.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-VALA_MIN_API_VERSION="0.22"
-
-inherit gnome2 vala cmake-utils
-
-DESCRIPTION="Simple animated Gif screen recorder"
-HOMEPAGE="https://github.com/phw/peek;
-SRC_URI="https://github.com/phw/peek/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-libs/glib-2.38:2
-   dev-libs/keybinder:3
-   media-video/ffmpeg[X,encode]
-   virtual/imagemagick-tools
-   >=x11-libs/gtk+-3.14:3"
-DEPEND="${RDEPEND}
-   $(vala_depend)
-   >=sys-devel/gettext-0.19"
-
-src_prepare() {
-   cmake-utils_src_prepare
-   gnome2_src_prepare
-   vala_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DGSETTINGS_COMPILE=OFF
-   -DVALA_EXECUTABLE="${VALAC}"
-   )
-
-   cmake-utils_src_configure
-}

diff --git a/media-video/peek/peek-1.0.3.ebuild 
b/media-video/peek/peek-1.0.3.ebuild
deleted file mode 100644
index 1e4e2893c20..000
--- a/media-video/peek/peek-1.0.3.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-VALA_MIN_API_VERSION="0.22"
-
-inherit gnome2 vala cmake-utils
-
-DESCRIPTION="Simple animated Gif screen recorder"
-HOMEPAGE="https://github.com/phw/peek;
-SRC_URI="https://github.com/phw/peek/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-libs/glib-2.38:2
-   dev-libs/keybinder:3
-   media-video/ffmpeg[X,encode]
-   virtual/imagemagick-tools
-   >=x11-libs/gtk+-3.14:3"
-DEPEND="${RDEPEND}
-   $(vala_depend)
-   app-text/txt2man
-   >=sys-devel/gettext-0.19"
-
-src_prepare() {
-   cmake-utils_src_prepare
-   gnome2_src_prepare
-   vala_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DGSETTINGS_COMPILE=OFF
-   -DVALA_EXECUTABLE="${VALAC}"
-   )
-
-   cmake-utils_src_configure
-}



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

2018-02-01 Thread Bernard Cafarelli
commit: 144a9733a7f69dc312975867c3a3d9531cb71d88
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Feb  1 11:38:21 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Feb  1 11:43:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=144a9733

www-apps/nextcloud: 12.0.5 bump

Package-Manager: Portage-2.3.22, Repoman-2.3.6

 www-apps/nextcloud/Manifest|  1 +
 www-apps/nextcloud/nextcloud-12.0.5.ebuild | 42 ++
 2 files changed, 43 insertions(+)

diff --git a/www-apps/nextcloud/Manifest b/www-apps/nextcloud/Manifest
index 5584638e744..90e96b6e302 100644
--- a/www-apps/nextcloud/Manifest
+++ b/www-apps/nextcloud/Manifest
@@ -1,2 +1,3 @@
 DIST nextcloud-11.0.6.tar.bz2 43226496 BLAKE2B 
08b1f088cb05d1b2916d84d29c4a9b99ff88c8e1852f7337701030a8e56bb4fc484aa4b945dc634b095ff3046479a3e004c6483b039036b4ab9597e5a6c5b20f
 SHA512 
66ff8e69cbf895c751665f590ff3dfab1629d79424c008455ef0145fd7a637f1f545d2ea106109624c0bdd33e505732a04ab98bcde1da2b4df1c0ac84d301e0f
 DIST nextcloud-12.0.4.tar.bz2 43583313 BLAKE2B 
a1f495d9afca67c55f4c9b5721baa9b6be79d4d21f23daea786382b7f21f9e9cae6c8166a18bc8d40dc84a153faf759bb57739cbb8716550f6483bcf3902
 SHA512 
30426e6998ccc38026ab584fbec2e8e64419dc500a62066fefa8efd29eae94c7d11104e1ecfa6307ac754dbb82d4eaa499c2b38459af6353845ea741b304a4bf
+DIST nextcloud-12.0.5.tar.bz2 43704324 BLAKE2B 
92b4569b3fc29f33a9c8163f34b7119081a48c657bd9383d0d656f9c66a240339889288c8c4e9936dd884b7436574ab501b1022251f743ecf5f00bf1e9ec7c20
 SHA512 
6a07384fef1ca57e82c5867c7f4898b9dcc94bd99d25ea49cf44606833e0045f9503f2c9256b71845603bd7b911fdabea39e1bebe8cddb69d9d752c69101bc27

diff --git a/www-apps/nextcloud/nextcloud-12.0.5.ebuild 
b/www-apps/nextcloud/nextcloud-12.0.5.ebuild
new file mode 100644
index 000..b5b260e2057
--- /dev/null
+++ b/www-apps/nextcloud/nextcloud-12.0.5.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils webapp
+
+DESCRIPTION="Personal cloud that runs on your own server"
+HOMEPAGE="http://nextcloud.com;
+SRC_URI="http://download.nextcloud.com/server/releases/${P}.tar.bz2;
+LICENSE="AGPL-3"
+
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="+curl mysql postgres +sqlite"
+REQUIRED_USE="|| ( mysql postgres sqlite )"
+
+DEPEND=""
+RDEPEND="

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

2018-02-01 Thread Bernard Cafarelli
commit: 2dd692b74c945874be811869fc1c98dc45b12b9d
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Feb  1 11:43:36 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Feb  1 11:43:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dd692b7

media-video/devedeng: 4.8.12 bump

Package-Manager: Portage-2.3.22, Repoman-2.3.6

 media-video/devedeng/Manifest   |  1 +
 media-video/devedeng/devedeng-4.8.12.ebuild | 38 +
 2 files changed, 39 insertions(+)

diff --git a/media-video/devedeng/Manifest b/media-video/devedeng/Manifest
index e35c0ad4ef7..1382286501c 100644
--- a/media-video/devedeng/Manifest
+++ b/media-video/devedeng/Manifest
@@ -1,2 +1,3 @@
 DIST devedeng-4.8.11.tar.gz 1883961 BLAKE2B 
6687ec3a73cc96ae7ab3eba499ebffc9f41cab5767c65e38ce85a506c7415e18ebf3cf68510542c65260decd1de9a05415b9a1843da632bc9d896ca47797df4b
 SHA512 
275d70882ca6a7b7de75d44f4bfef83a4f5eea92dea1c2f69b99bfdefd1066761b5a46d1c8ea6262a659665165552c242eeda238d327a8695654d584820d439b
+DIST devedeng-4.8.12.tar.gz 1884025 BLAKE2B 
7c6ed3c94bfd18a19147a8627fa846d78fe1f4c686a4875a917062419c2e4f136052aa79f2697e0a3642ebb92246b42ced3a4a398a4773599242726ff01c157c
 SHA512 
67eaf426d3f69a6efb8fde5f5df425d2b8ddf1052f22cd2d36056c687bc0978a456f6158a0af302292ef5e1abb837c9ac7ca6b4e0332e81c31ca7333ea86e184
 DIST devedeng-4.8.9.tar.gz 1883507 BLAKE2B 
4b973b13d8dc1bdb08c2a057769246426ae6c8bf7947474446c4a1440e3828292d8fe69f66fd3010ff895a518b5a89e063a955fe58175d26c016fb55454de7c3
 SHA512 
224a10886ea7f8a0e2cd3fdeed9c7b0ef5413892f4b800194d957a764b90220fed7b2f3d6bfa416798acb89024a95d678604f3d23fb19cccb8a11e2734a92b7a

diff --git a/media-video/devedeng/devedeng-4.8.12.ebuild 
b/media-video/devedeng/devedeng-4.8.12.ebuild
new file mode 100644
index 000..d1ed266804d
--- /dev/null
+++ b/media-video/devedeng/devedeng-4.8.12.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1 gnome2-utils
+
+DESCRIPTION="DevedeNG is a program to create video DVDs and CDs (VCD, sVCD or 
CVD)"
+HOMEPAGE="http://www.rastersoft.com/programas/devede.html;
+SRC_URI="https://github.com/rastersoft/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libav"
+
+RDEPEND="dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3
+   || ( media-video/vlc media-video/mpv media-video/mplayer )
+   !libav? ( media-video/ffmpeg )
+   libav? ( media-video/libav )
+   media-video/dvdauthor
+   media-video/vcdimager
+   virtual/cdrtools
+   || ( app-cdr/brasero kde-apps/k3b )"
+
+DEPEND="${PYTHON_DEPS}"
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



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

2018-02-01 Thread Bernard Cafarelli
commit: 9fe68d51aa1b31ee4e1a95d6b009bbeede5e1a8a
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Feb  1 11:41:42 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Feb  1 11:43:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fe68d51

media-video/peek: 1.2.2 bump

Package-Manager: Portage-2.3.22, Repoman-2.3.6

 media-video/peek/Manifest  |  1 +
 media-video/peek/peek-1.2.2.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/media-video/peek/Manifest b/media-video/peek/Manifest
index 5f7293d7987..c2f3e3b5981 100644
--- a/media-video/peek/Manifest
+++ b/media-video/peek/Manifest
@@ -1 +1,2 @@
 DIST peek-1.2.1.tar.gz 2650099 BLAKE2B 
4b53bc6cce94c585029d179937c680a3743fabc9722cc9474dd870f4be1d1d79c994420e528581c0006df81f6b6caaad285fc9f35c0addd1ae0072b40f461786
 SHA512 
fcb3b30bc7b434e9daafad243f82d2849d308fcd22371cdf790b60f765b78d6009ffb3c519f571718e26cf285d1cc6bc8fdd3f61dbb427f95fd08f1e3cc52a42
+DIST peek-1.2.2.tar.gz 2654168 BLAKE2B 
2abce1609889d6cbdee493a94d768c2c201d523690d687cfa023eaa966b74716b9300ed246f443258f2901fdf341392c7428bf8d14891c3fdba9e803b680e06b
 SHA512 
7c6fe42e41d4a3c10649b2052741a11a3c51170dbeaa834198c5b66867597c8525ecb8794694c2955f94a3e12f62c71068f2422e3a551ddfa4957595efbb6c03

diff --git a/media-video/peek/peek-1.2.2.ebuild 
b/media-video/peek/peek-1.2.2.ebuild
new file mode 100644
index 000..8715e8e623a
--- /dev/null
+++ b/media-video/peek/peek-1.2.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+VALA_MIN_API_VERSION="0.22"
+
+inherit gnome2 vala cmake-utils
+
+DESCRIPTION="Simple animated Gif screen recorder"
+HOMEPAGE="https://github.com/phw/peek;
+SRC_URI="https://github.com/phw/peek/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="keybinder test"
+
+RDEPEND=">=dev-libs/glib-2.38:2
+   media-video/ffmpeg[X,encode]
+   virtual/imagemagick-tools
+   >=x11-libs/gtk+-3.14:3
+   keybinder? ( dev-libs/keybinder:3 )"
+DEPEND="${RDEPEND}
+   $(vala_depend)
+   app-text/txt2man
+   >=sys-devel/gettext-0.19"
+
+src_prepare() {
+   cmake-utils_src_prepare
+   gnome2_src_prepare
+   vala_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DGSETTINGS_COMPILE=OFF
+   -DKEYBINDER_FOUND=$(usex keybinder 1 0)
+   -DVALA_EXECUTABLE="${VALAC}"
+   )
+
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+
+   # Compile helper programs for tests
+   if use test; then
+   cmake-utils_src_make -C tests
+   fi
+}



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

2018-02-01 Thread Bernard Cafarelli
commit: 9aaaddf78157368c2b696ed01a077ab7f7dc153d
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Feb  1 11:40:56 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Feb  1 11:43:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aaaddf7

www-apps/owncloud: drop old

Package-Manager: Portage-2.3.22, Repoman-2.3.6

 www-apps/owncloud/Manifest   |  2 --
 www-apps/owncloud/owncloud-10.0.3.ebuild | 47 
 www-apps/owncloud/owncloud-9.1.6.ebuild  | 47 
 3 files changed, 96 deletions(-)

diff --git a/www-apps/owncloud/Manifest b/www-apps/owncloud/Manifest
index f3b6d86866a..90cd25dc551 100644
--- a/www-apps/owncloud/Manifest
+++ b/www-apps/owncloud/Manifest
@@ -1,4 +1,2 @@
-DIST owncloud-10.0.3.tar.bz2 35358244 BLAKE2B 
14468da8aa8c8056d45298d6c5a8233f5da684c31c48f6db2bcf7f98102af7077765bac586b4d4a7c38b2b2bc1cd29a6bcedbe338a0698bb5df63cdeb19f105b
 SHA512 
bafba0416182bc4051e2664c0d2b328912c8c7c49b42f8f6e9540fab40ec5d49c592f84d639ef32380291cbe4d8b8acce4b40dba8a6c9e2440c29fd9943b274a
 DIST owncloud-10.0.4.tar.bz2 38584730 BLAKE2B 
917aab96c330622a3c393cdc8379e68022e530f2e66fc10ba292c845e25921f64d82f74b1c544a1b3671998852dae2495d152987641fb35e13f83ac1d40477cb
 SHA512 
898d67d5b37f1f85c285dacd312ffb40b82bcba5dc57519b893df4a7bbb1e1f41c2d15b05c710427977c087592502f5fc598547ea440716018865f249ea1ead7
-DIST owncloud-9.1.6.tar.bz2 29134671 BLAKE2B 
3c2b0643fca2e5dc8ce16e905380abe9932051bd0365228b7f853f21732251133535d2625f5f13423cc72845947cdc29abf373b914806f50b7881e14da3b7de1
 SHA512 
40b4fd03c188624c059fed6737b102cae03c6b1c713644733eae3e0cba8e86db6856e7a831bcc2bff660dfc4eacd979f200ec55f8bc1e36e3209142f21f7989c
 DIST owncloud-9.1.7.tar.bz2 29243610 BLAKE2B 
8a8a54c299df25c0f3fcca1accae3de7f27fe229d8175522fd2b72f3f865539219b733318b077455f80907b74fbd63d570dd73f40a61a5005415923b562ea819
 SHA512 
b31888c2c3e991869018a1cd46e75348b2b02d93effee8950d6e54568cd22eb634d750c790421e8bc0c1c991d146fb50c1826f4aa786e4a348f1d8fa5aa4870d

diff --git a/www-apps/owncloud/owncloud-10.0.3.ebuild 
b/www-apps/owncloud/owncloud-10.0.3.ebuild
deleted file mode 100644
index 2c070014fe5..000
--- a/www-apps/owncloud/owncloud-10.0.3.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils webapp
-
-DESCRIPTION="Web-based storage application where all your data is under your 
own control"
-HOMEPAGE="http://owncloud.org;
-SRC_URI="http://download.owncloud.org/community/${P}.tar.bz2 -> ${PF}.tar.bz2"
-LICENSE="AGPL-3"
-
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="+curl mysql postgres +sqlite"
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-DEPEND=""
-RDEPEND="dev-lang/php[curl?,filter,gd,hash,json,mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,xmlreader,xmlwriter,zip]
-   virtual/httpd-php"
-
-S=${WORKDIR}/${PN}
-
-pkg_setup() {
-   webapp_pkg_setup
-}
-
-src_install() {
-   webapp_src_preinst
-
-   insinto "${MY_HTDOCSDIR}"
-   doins -r .
-   dodir "${MY_HTDOCSDIR}"/data
-
-   webapp_serverowned -R "${MY_HTDOCSDIR}"/apps
-   webapp_serverowned -R "${MY_HTDOCSDIR}"/data
-   webapp_serverowned -R "${MY_HTDOCSDIR}"/config
-   webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
-
-   webapp_src_install
-}
-
-pkg_postinst() {
-   elog "Additional applications (calendar, ...) are no longer provided by 
default."
-   elog "You can install them after login via the applications management 
page"
-   elog "(check the recommended tab). No application data is lost."
-   webapp_pkg_postinst
-}

diff --git a/www-apps/owncloud/owncloud-9.1.6.ebuild 
b/www-apps/owncloud/owncloud-9.1.6.ebuild
deleted file mode 100644
index 85552c665ee..000
--- a/www-apps/owncloud/owncloud-9.1.6.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils webapp
-
-DESCRIPTION="Web-based storage application where all your data is under your 
own control"
-HOMEPAGE="http://owncloud.org;
-SRC_URI="http://download.owncloud.org/community/${P}.tar.bz2 -> ${PF}.tar.bz2"
-LICENSE="AGPL-3"
-
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="+curl mysql postgres +sqlite"
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-DEPEND=""
-RDEPEND="

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

2018-02-01 Thread Bernard Cafarelli
commit: 21d2bcfff3aec8ebb0f2b522f877f953e6c57452
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Feb  1 11:42:31 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Feb  1 11:43:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21d2bcff

www-apps/owncloud: 10.0.6 bump

Package-Manager: Portage-2.3.22, Repoman-2.3.6

 www-apps/owncloud/Manifest   |  1 +
 www-apps/owncloud/owncloud-10.0.6.ebuild | 47 
 2 files changed, 48 insertions(+)

diff --git a/www-apps/owncloud/Manifest b/www-apps/owncloud/Manifest
index 90cd25dc551..2563d9a4439 100644
--- a/www-apps/owncloud/Manifest
+++ b/www-apps/owncloud/Manifest
@@ -1,2 +1,3 @@
 DIST owncloud-10.0.4.tar.bz2 38584730 BLAKE2B 
917aab96c330622a3c393cdc8379e68022e530f2e66fc10ba292c845e25921f64d82f74b1c544a1b3671998852dae2495d152987641fb35e13f83ac1d40477cb
 SHA512 
898d67d5b37f1f85c285dacd312ffb40b82bcba5dc57519b893df4a7bbb1e1f41c2d15b05c710427977c087592502f5fc598547ea440716018865f249ea1ead7
+DIST owncloud-10.0.6.tar.bz2 39393658 BLAKE2B 
34498d5c63a3417f9f42e55353884600c59a9b9e11167ef5b0dad3b496cfdcf091c95853dfcc851f767493483158a1a4b9e6bd291cddb95549b7fc07cce92618
 SHA512 
aaeb646255507cbe85de9f8e5f353479ee152f285e2c90ae48669a3fe78b718123105333d4b5c73478135fe2c940171dc8ffd732a9357c9709f391bcf01779d2
 DIST owncloud-9.1.7.tar.bz2 29243610 BLAKE2B 
8a8a54c299df25c0f3fcca1accae3de7f27fe229d8175522fd2b72f3f865539219b733318b077455f80907b74fbd63d570dd73f40a61a5005415923b562ea819
 SHA512 
b31888c2c3e991869018a1cd46e75348b2b02d93effee8950d6e54568cd22eb634d750c790421e8bc0c1c991d146fb50c1826f4aa786e4a348f1d8fa5aa4870d

diff --git a/www-apps/owncloud/owncloud-10.0.6.ebuild 
b/www-apps/owncloud/owncloud-10.0.6.ebuild
new file mode 100644
index 000..50461ddbef0
--- /dev/null
+++ b/www-apps/owncloud/owncloud-10.0.6.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils webapp
+
+DESCRIPTION="Web-based storage application where all your data is under your 
own control"
+HOMEPAGE="http://owncloud.org;
+SRC_URI="http://download.owncloud.org/community/${P}.tar.bz2 -> ${PF}.tar.bz2"
+LICENSE="AGPL-3"
+
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="+curl mysql postgres +sqlite"
+REQUIRED_USE="|| ( mysql postgres sqlite )"
+
+DEPEND=""
+RDEPEND="dev-lang/php[curl?,filter,gd,hash,json,mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,xmlreader,xmlwriter,zip]
+   virtual/httpd-php"
+
+S=${WORKDIR}/${PN}
+
+pkg_setup() {
+   webapp_pkg_setup
+}
+
+src_install() {
+   webapp_src_preinst
+
+   insinto "${MY_HTDOCSDIR}"
+   doins -r .
+   dodir "${MY_HTDOCSDIR}"/data
+
+   webapp_serverowned -R "${MY_HTDOCSDIR}"/apps
+   webapp_serverowned -R "${MY_HTDOCSDIR}"/data
+   webapp_serverowned -R "${MY_HTDOCSDIR}"/config
+   webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
+
+   webapp_src_install
+}
+
+pkg_postinst() {
+   elog "Additional applications (calendar, ...) are no longer provided by 
default."
+   elog "You can install them after login via the applications management 
page"
+   elog "(check the recommended tab). No application data is lost."
+   webapp_pkg_postinst
+}



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

2018-02-01 Thread Sobhan Mohammadpour
commit: cda9733d7b95fd2a6332dd0339464ef4e226447d
Author: Sobhan Mohammadpour  gentoo  org>
AuthorDate: Thu Feb  1 10:37:06 2018 +
Commit: Sobhan Mohammadpour  gentoo  org>
CommitDate: Thu Feb  1 10:37:06 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=cda9733d

www-client/epiphany: version bump to 3.26.2

Package-Manager: Portage-2.3.21, Repoman-2.3.6
Manifest-Sign-Key: 0x7DF238CF0AA182E1

 www-client/epiphany/epiphany-3.26.2.ebuild | 66 ++
 1 file changed, 66 insertions(+)

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



[gentoo-commits] proj/gnome:master commit in: net-libs/libhttpseverywhere/

2018-02-01 Thread Sobhan Mohammadpour
commit: e1cfee70238ddecc87004e17105ca0f5a3217790
Author: Sobhan Mohammadpour  gentoo  org>
AuthorDate: Thu Feb  1 10:26:23 2018 +
Commit: Sobhan Mohammadpour  gentoo  org>
CommitDate: Thu Feb  1 10:26:23 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=e1cfee70

net-libs/libhttpseverywhere: new package

This library enables you to leverage the power of HTTPSEverywhere to any 
desktop-application you want
HTTPSEverywhere is a browser plugin that comes with a set of rules that you can 
use to ensure that you use HTTP instead of HTTPS
only when this is absolutely not circumventable. With libhttpseverywhere you 
will get a C-bindable, GLib-based library you can
link/bind against in almost all languages

Package-Manager: Portage-2.3.21, Repoman-2.3.6
Manifest-Sign-Key: 0x7DF238CF0AA182E1

 .../libhttpseverywhere-0.8.0.ebuild| 37 ++
 net-libs/libhttpseverywhere/metadata.xml   |  8 +
 2 files changed, 45 insertions(+)

diff --git a/net-libs/libhttpseverywhere/libhttpseverywhere-0.8.0.ebuild 
b/net-libs/libhttpseverywhere/libhttpseverywhere-0.8.0.ebuild
new file mode 100644
index ..a5cd7f5d
--- /dev/null
+++ b/net-libs/libhttpseverywhere/libhttpseverywhere-0.8.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit gnome-meson vala
+
+DESCRIPTION="Leverage the power of HTTPS Everywhere"
+HOMEPAGE="http://www.gnome.org/;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc"
+#FIXME does vala_depend go here?
+RDEPEND="
+   dev-libs/glib:2
+   dev-libs/json-glib
+   >=net-libs/libsoup-2.4
+   dev-libs/libgee:0.8
+   app-arch/libarchive
+   $(vala_depend)
+"
+DEPEND="${RDEPEND}
+   >=dev-util/meson-0.39.1
+"
+
+src_prepare() {
+   vala_src_prepare
+   gnome-meson_src_prepare
+   default
+}
+
+#FIXME enable valadoc
+src_configure() {
+   gnome-meson_src_configure -Denable_valadoc=false
+}

diff --git a/net-libs/libhttpseverywhere/metadata.xml 
b/net-libs/libhttpseverywhere/metadata.xml
new file mode 100644
index ..39980802
--- /dev/null
+++ b/net-libs/libhttpseverywhere/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   gn...@gentoo.org
+   Gentoo GNOME Desktop
+
+



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

2018-02-01 Thread Sobhan Mohammadpour
commit: e19dbf35e56e689ca97593372e6244681e31f511
Author: Sobhan Mohammadpour  gentoo  org>
AuthorDate: Thu Feb  1 10:17:10 2018 +
Commit: Sobhan Mohammadpour  gentoo  org>
CommitDate: Thu Feb  1 10:17:10 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=e19dbf35

vala.eclass: increase VALA_MAX_API_VERSION to 0.38

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

diff --git a/eclass/vala.eclass b/eclass/vala.eclass
index f8a45cde..f8c4319c 100644
--- a/eclass/vala.eclass
+++ b/eclass/vala.eclass
@@ -31,7 +31,7 @@ VALA_MIN_API_VERSION=${VALA_MIN_API_VERSION:-0.32}
 # @ECLASS-VARIABLE: VALA_MAX_API_VERSION
 # @DESCRIPTION:
 # Maximum vala API version (e.g. 0.32).
-VALA_MAX_API_VERSION=${VALA_MAX_API_VERSION:-0.36}
+VALA_MAX_API_VERSION=${VALA_MAX_API_VERSION:-0.38}
 
 # @ECLASS-VARIABLE: VALA_USE_DEPEND
 # @DEFAULT_UNSET



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

2018-02-01 Thread Alexys Jacob
commit: 013af0322471729793b13370147b68a270a82b2f
Author: Ultrabug  gentoo  org>
AuthorDate: Thu Feb  1 09:56:02 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Feb  1 09:56:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=013af032

net-misc/rabbitmq-server: fix schema installation path

 .../{rabbitmq-server-3.7.3.ebuild => rabbitmq-server-3.7.3-r1.ebuild}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/rabbitmq-server/rabbitmq-server-3.7.3.ebuild 
b/net-misc/rabbitmq-server/rabbitmq-server-3.7.3-r1.ebuild
similarity index 98%
rename from net-misc/rabbitmq-server/rabbitmq-server-3.7.3.ebuild
rename to net-misc/rabbitmq-server/rabbitmq-server-3.7.3-r1.ebuild
index f111a568b3e..22fe34ee5c4 100644
--- a/net-misc/rabbitmq-server/rabbitmq-server-3.7.3.ebuild
+++ b/net-misc/rabbitmq-server/rabbitmq-server-3.7.3-r1.ebuild
@@ -48,7 +48,7 @@ src_install() {
 
einfo "Installing Erlang modules to ${targetdir}"
insinto "${targetdir}"
-   doins -r deps/rabbit/ebin deps/rabbit/escript deps/rabbit/include 
deps/rabbit/priv/schema plugins
+   doins -r deps/rabbit/ebin deps/rabbit/escript deps/rabbit/include 
deps/rabbit/priv plugins
 
einfo "Installing server scripts to /usr/sbin"
rm -v deps/rabbit/scripts/*.bat



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

2018-02-01 Thread Michał Górny
commit: 795ff79d5f37f40e31a138c440985f68d640ff35
Author: Oz N Tiram  gmail  com>
AuthorDate: Wed Jan 24 19:27:19 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb  1 08:43:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795ff79d

dev-python/pipenv: fix outdated dependency version

Bug: https://bugs.gentoo.org/645530
Closes: https://github.com/gentoo/gentoo/pull/6951
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-python/pipenv/pipenv-9.0.0-r1.ebuild | 37 
 1 file changed, 37 insertions(+)

diff --git a/dev-python/pipenv/pipenv-9.0.0-r1.ebuild 
b/dev-python/pipenv/pipenv-9.0.0-r1.ebuild
new file mode 100644
index 000..2d9715d9d7a
--- /dev/null
+++ b/dev-python/pipenv/pipenv-9.0.0-r1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python Development Workflow for Humans"
+HOMEPAGE="https://github.com/pypa/pipenv https://pypi.python.org/pypi/pipenv;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+DEPEND="
+   >=dev-python/flake8-3.0.0[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/pew-0.1.26[${PYTHON_USEDEP}]
+   >=dev-python/pip-9.0.1[${PYTHON_USEDEP}]
+   >dev-python/requests-2.18.0[${PYTHON_USEDEP}]
+   >=dev-python/urllib3-1.21.1[${PYTHON_USEDEP}]
+   test? (
+   dev-python/flake8[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+# not completely packed
+# requires networking
+RESTRICT="test"
+
+python_test() {
+   py.test -v -v || die
+}



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

2018-02-01 Thread Michał Górny
commit: 235c1ae4ecdbe33b7a34b768ea2248aa566cc303
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb  1 08:46:15 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb  1 08:47:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=235c1ae4

dev-python/pipenv: Fix DEPEND -> RDEPEND

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

 dev-python/pipenv/pipenv-9.0.0-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/pipenv/pipenv-9.0.0-r1.ebuild 
b/dev-python/pipenv/pipenv-9.0.0-r1.ebuild
index 2d9715d9d7a..fd271941512 100644
--- a/dev-python/pipenv/pipenv-9.0.0-r1.ebuild
+++ b/dev-python/pipenv/pipenv-9.0.0-r1.ebuild
@@ -16,15 +16,15 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
-DEPEND="
+RDEPEND="
>=dev-python/flake8-3.0.0[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/pew-0.1.26[${PYTHON_USEDEP}]
>=dev-python/pip-9.0.1[${PYTHON_USEDEP}]
>dev-python/requests-2.18.0[${PYTHON_USEDEP}]
-   >=dev-python/urllib3-1.21.1[${PYTHON_USEDEP}]
+   >=dev-python/urllib3-1.21.1[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
test? (
-   dev-python/flake8[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
 



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

2018-02-01 Thread Gilles Dartiguelongue
commit: 7b77fa6b65ae1f52fe41b3b5f15d93b86ff162dd
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Thu Feb  1 07:43:04 2018 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Thu Feb  1 08:24:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b77fa6b

media-sound/rhythmbox: fix unittests due to uninstalled schemas

Closes: https://bugs.gentoo.org/629672
Package-Manager: Portage-2.3.20, Repoman-2.3.6

 media-sound/rhythmbox/rhythmbox-3.4.2.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-sound/rhythmbox/rhythmbox-3.4.2.ebuild 
b/media-sound/rhythmbox/rhythmbox-3.4.2.ebuild
index a16e6276e7a..951da542ba5 100644
--- a/media-sound/rhythmbox/rhythmbox-3.4.2.ebuild
+++ b/media-sound/rhythmbox/rhythmbox-3.4.2.ebuild
@@ -114,7 +114,8 @@ src_configure() {
 
 src_test() {
unset SESSION_MANAGER
-   virtx emake check CK_DEFAULT_TIMEOUT=60
+   "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
+   GSETTINGS_SCHEMA_DIR="${S}/data" virtx emake check CK_DEFAULT_TIMEOUT=60
 }
 
 src_install() {