[gentoo-commits] gentoo-x86 commit in net-libs/webkit-gtk: webkit-gtk-2.8.3.ebuild webkit-gtk-2.6.6.ebuild ChangeLog webkit-gtk-2.4.9.ebuild webkit-gtk-2.4.9-r200.ebuild webkit-gtk-2.4.8-r200.ebuild w

2015-07-25 Thread Alexandre Rostovtsev (tetromino)
tetromino15/07/26 04:24:08

  Modified: webkit-gtk-2.8.3.ebuild webkit-gtk-2.6.6.ebuild
ChangeLog webkit-gtk-2.4.9.ebuild
webkit-gtk-2.4.9-r200.ebuild
webkit-gtk-2.4.8-r200.ebuild
webkit-gtk-2.6.5.ebuild webkit-gtk-2.4.8.ebuild
  Log:
  Don't check for c++11 support in pkg_pretend when installing binpkg (bug 
#555374, thanks to Michał Górny). Check for disk space in pkg_setup under the 
same conditions as in pkg_pretend (this logic was accidentally dropped in the 
2.6.x bump).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x18E5B6F2D8D5EC8D)

Revision  ChangesPath
1.2  net-libs/webkit-gtk/webkit-gtk-2.8.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.8.3.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.8.3.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.8.3.ebuild?r1=1.1r2=1.2

Index: webkit-gtk-2.8.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.8.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- webkit-gtk-2.8.3.ebuild 9 Jun 2015 14:34:30 -   1.1
+++ webkit-gtk-2.8.3.ebuild 26 Jul 2015 04:24:08 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.8.3.ebuild,v 1.1 
2015/06/09 14:34:30 eva Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.8.3.ebuild,v 1.2 
2015/07/26 04:24:08 tetromino Exp $
 
 EAPI=5
 GCONF_DEBUG=no
@@ -115,13 +115,13 @@
check-reqs_pkg_pretend
fi
 
-   if ! test-flag-CXX -std=c++11; then
+   if [[ ${MERGE_TYPE} != binary ]]  ! test-flag-CXX -std=c++11; then
die You need at least GCC 4.7.x or Clang = 3.3 for 
C++11-specific compiler flags
fi
 }
 
 pkg_setup() {
-   if [[ ${MERGE_TYPE} != binary ]] ; then
+   if [[ ${MERGE_TYPE} != binary ]]  is-flagq -g*  ! is-flagq 
-g*0 ; then
check-reqs_pkg_setup
fi
 



1.5  net-libs/webkit-gtk/webkit-gtk-2.6.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.6.6.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.6.6.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.6.6.ebuild?r1=1.4r2=1.5

Index: webkit-gtk-2.6.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.6.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- webkit-gtk-2.6.6.ebuild 26 Jun 2015 09:23:38 -  1.4
+++ webkit-gtk-2.6.6.ebuild 26 Jul 2015 04:24:08 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.6.6.ebuild,v 1.4 
2015/06/26 09:23:38 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-2.6.6.ebuild,v 1.5 
2015/07/26 04:24:08 tetromino Exp $
 
 EAPI=5
 GCONF_DEBUG=no
@@ -114,13 +114,13 @@
check-reqs_pkg_pretend
fi
 
-   if ! test-flag-CXX -std=c++11; then
+   if [[ ${MERGE_TYPE} != binary ]]  ! test-flag-CXX -std=c++11; then
die You need at least GCC 4.7.x or Clang = 3.3 for 
C++11-specific compiler flags
fi
 }
 
 pkg_setup() {
-   if [[ ${MERGE_TYPE} != binary ]] ; then
+   if [[ ${MERGE_TYPE} != binary ]]  is-flagq -g*  ! is-flagq 
-g*0 ; then
check-reqs_pkg_setup
fi
 



1.323net-libs/webkit-gtk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.323view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?rev=1.323content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/webkit-gtk/ChangeLog?r1=1.322r2=1.323

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v
retrieving revision 1.322
retrieving revision 1.323
diff -u -r1.322 -r1.323
--- ChangeLog   26 Jun 2015 09:23:38 -  1.322
+++ ChangeLog   26 Jul 2015 04:24:08 -  1.323
@@ -1,6 +1,15 @@
 # ChangeLog for net-libs/webkit-gtk
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 

[gentoo-commits] gentoo-x86 commit in dev-ruby/github_api: ChangeLog github_api-0.10.2.ebuild

2015-07-25 Thread Hans de Graaff (graaff)
graaff  15/07/25 07:32:43

  Modified: ChangeLog
  Removed:  github_api-0.10.2.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.8  dev-ruby/github_api/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/github_api/ChangeLog?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/github_api/ChangeLog?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/github_api/ChangeLog?r1=1.7r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/github_api/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   25 Jul 2015 07:31:27 -  1.7
+++ ChangeLog   25 Jul 2015 07:32:43 -  1.8
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/github_api
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/github_api/ChangeLog,v 1.7 
2015/07/25 07:31:27 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/github_api/ChangeLog,v 1.8 
2015/07/25 07:32:43 graaff Exp $
+
+  25 Jul 2015; Hans de Graaff gra...@gentoo.org -github_api-0.10.2.ebuild:
+  Cleanup.
 
 *github_api-0.11.3-r1 (25 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/github_api: ChangeLog github_api-0.11.3.ebuild github_api-0.11.3-r1.ebuild

2015-07-25 Thread Hans de Graaff (graaff)
graaff  15/07/25 07:31:27

  Modified: ChangeLog github_api-0.11.3.ebuild
  Added:github_api-0.11.3-r1.ebuild
  Log:
  Create stable candidate.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.7  dev-ruby/github_api/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/github_api/ChangeLog?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/github_api/ChangeLog?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/github_api/ChangeLog?r1=1.6r2=1.7

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/github_api/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   7 Jun 2015 17:52:49 -   1.6
+++ ChangeLog   25 Jul 2015 07:31:27 -  1.7
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/github_api
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/github_api/ChangeLog,v 1.6 
2015/06/07 17:52:49 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/github_api/ChangeLog,v 1.7 
2015/07/25 07:31:27 graaff Exp $
+
+*github_api-0.11.3-r1 (25 Jul 2015)
+
+  25 Jul 2015; Hans de Graaff gra...@gentoo.org github_api-0.11.3.ebuild,
+  +github_api-0.11.3-r1.ebuild:
+  Create stable candidate.
 
   07 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Add github to remote-id in metadata.xml



1.4  dev-ruby/github_api/github_api-0.11.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/github_api/github_api-0.11.3.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/github_api/github_api-0.11.3.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/github_api/github_api-0.11.3.ebuild?r1=1.3r2=1.4

Index: github_api-0.11.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/github_api/github_api-0.11.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- github_api-0.11.3.ebuild5 Mar 2015 03:21:59 -   1.3
+++ github_api-0.11.3.ebuild25 Jul 2015 07:31:27 -  1.4
@@ -1,9 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/github_api/github_api-0.11.3.ebuild,v 1.3 
2015/03/05 03:21:59 patrick Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/github_api/github_api-0.11.3.ebuild,v 1.4 
2015/07/25 07:31:27 graaff Exp $
 
 EAPI=5
-USE_RUBY=ruby19 ruby20 ruby21
+USE_RUBY=ruby19 ruby20
 
 RUBY_FAKEGEM_RECIPE_TEST=rspec
 RUBY_FAKEGEM_RECIPE_DOC=rdoc



1.1  dev-ruby/github_api/github_api-0.11.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/github_api/github_api-0.11.3-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/github_api/github_api-0.11.3-r1.ebuild?rev=1.1content-type=text/plain

Index: github_api-0.11.3-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/github_api/github_api-0.11.3-r1.ebuild,v 1.1 
2015/07/25 07:31:27 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21

RUBY_FAKEGEM_RECIPE_TEST=rspec
RUBY_FAKEGEM_RECIPE_DOC=rdoc
RUBY_FAKEGEM_EXTRADOC=README.md

inherit ruby-fakegem

DESCRIPTION=A Ruby wrapper for the GitHub REST API v3
HOMEPAGE=https://github.com/peter-murach/github;

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64 ~ppc ~ppc64 ~x86
IUSE=

ruby_add_rdepend 
=dev-ruby/addressable-2.3
=dev-ruby/descendants_tracker-0.0.1
=dev-ruby/faraday-0.8
dev-ruby/faraday-0.10
=dev-ruby/hashie-1.2
=dev-ruby/multi_json-1.7.5
dev-ruby/multi_json-2.0
=dev-ruby/nokogiri-1.6.0
dev-ruby/oauth2

ruby_add_bdepend test? ( =dev-ruby/rspec-2.14 dev-ruby/webmock )






[gentoo-commits] gentoo-x86 commit in sys-fs/mdadm: ChangeLog mdadm-3.3.3.ebuild mdadm-3.3.2.ebuild

2015-07-25 Thread Lars Wendler (polynomial-c)
polynomial-c15/07/25 07:52:31

  Modified: ChangeLog
  Added:mdadm-3.3.3.ebuild
  Removed:  mdadm-3.3.2.ebuild
  Log:
  Version bump. Removed old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
981CA6FC)

Revision  ChangesPath
1.195sys-fs/mdadm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/ChangeLog?rev=1.195view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/ChangeLog?rev=1.195content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/ChangeLog?r1=1.194r2=1.195

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v
retrieving revision 1.194
retrieving revision 1.195
diff -u -r1.194 -r1.195
--- ChangeLog   11 Apr 2015 20:51:01 -  1.194
+++ ChangeLog   25 Jul 2015 07:52:31 -  1.195
@@ -1,6 +1,12 @@
 # ChangeLog for sys-fs/mdadm
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v 1.194 2015/04/11 
20:51:01 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v 1.195 2015/07/25 
07:52:31 polynomial-c Exp $
+
+*mdadm-3.3.3 (25 Jul 2015)
+
+  25 Jul 2015; Lars Wendler polynomia...@gentoo.org -mdadm-3.3.2.ebuild,
+  +mdadm-3.3.3.ebuild:
+  Version bump. Removed old.
 
 *mdadm-3.3.2-r1 (11 Apr 2015)
 



1.1  sys-fs/mdadm/mdadm-3.3.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/mdadm-3.3.3.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/mdadm-3.3.3.ebuild?rev=1.1content-type=text/plain

Index: mdadm-3.3.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/mdadm-3.3.3.ebuild,v 1.1 
2015/07/25 07:52:31 polynomial-c Exp $

EAPI=4
inherit eutils flag-o-matic multilib systemd toolchain-funcs udev

DESCRIPTION=A useful tool for running RAID systems - it can be used as a 
replacement for the raidtools
HOMEPAGE=http://neil.brown.name/blog/mdadm;
DEB_PR=2
SRC_URI=mirror://kernel/linux/utils/raid/mdadm/${P}.tar.xz

mirror://debian/pool/main/m/mdadm/${PN}_3.3-${DEB_PR}.debian.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86
IUSE=static

DEPEND=virtual/pkgconfig
app-arch/xz-utils
RDEPEND==sys-apps/util-linux-2.16

# The tests edit values in /proc and run tests on software raid devices.
# Thus, they shouldn't be run on systems with active software RAID devices.
RESTRICT=test

mdadm_emake() {
emake \
PKG_CONFIG=$(tc-getPKG_CONFIG) \
CC=$(tc-getCC) \
CWFLAGS=-Wall \
CXFLAGS=${CFLAGS} \
UDEVDIR=$(get_udevdir) \
SYSTEMD_DIR=$(systemd_get_unitdir) \
$@
}

src_compile() {
use static  append-ldflags -static
mdadm_emake all mdassemble
}

src_test() {
mdadm_emake test

sh ./test || die
}

src_install() {
mdadm_emake DESTDIR=${D} install install-systemd
into /
dosbin mdassemble
dodoc ChangeLog INSTALL TODO README* ANNOUNCE-${PV}

insinto /etc
newins mdadm.conf-example mdadm.conf
newinitd ${FILESDIR}/mdadm.rc mdadm
newconfd ${FILESDIR}/mdadm.confd mdadm
newinitd ${FILESDIR}/mdraid.rc mdraid
newconfd ${FILESDIR}/mdraid.confd mdraid

# From the Debian patchset
into /usr
dodoc ${WORKDIR}/debian/README.checkarray
dosbin ${WORKDIR}/debian/checkarray
insinto /etc/default
newins ${FILESDIR}/etc-default-mdadm mdadm

insinto /etc/cron.weekly
newins ${FILESDIR}/mdadm.weekly mdadm
}

pkg_postinst() {
if ! systemd_is_booted; then
if [[ -z ${REPLACING_VERSIONS} ]] ; then
# Only inform people the first time they install.
elog If you're not relying on kernel auto-detect of 
your RAID
elog devices, you need to add 'mdraid' to your 'boot' 
runlevel:
elog   rc-update add mdraid boot
fi
fi
}






[gentoo-commits] gentoo-x86 commit in media-libs/lvtk: - New directory

2015-07-25 Thread Ben de Groot (yngwin)
yngwin  15/07/25 07:58:29

  Log:
  Directory /var/cvsroot/gentoo-x86/media-libs/lvtk added to the repository



[gentoo-commits] gentoo-x86 commit in dev-python/twython: twython-3.3.0.ebuild ChangeLog

2015-07-25 Thread Johann Schmitz (ercpe)
ercpe   15/07/25 08:10:38

  Modified: ChangeLog
  Added:twython-3.3.0.ebuild
  Log:
  Version bump to 3.3.0
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
77C501ED)

Revision  ChangesPath
1.9  dev-python/twython/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twython/ChangeLog?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twython/ChangeLog?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twython/ChangeLog?r1=1.8r2=1.9

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/twython/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   4 Jun 2015 07:27:37 -   1.8
+++ ChangeLog   25 Jul 2015 08:10:38 -  1.9
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/twython
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/twython/ChangeLog,v 1.8 
2015/06/04 07:27:37 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/twython/ChangeLog,v 1.9 
2015/07/25 08:10:38 ercpe Exp $
+
+*twython-3.3.0 (25 Jul 2015)
+
+  25 Jul 2015; Johann Schmitz er...@gentoo.org +twython-3.3.0.ebuild:
+  Version bump to 3.3.0
 
   04 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Add pypi to remote-id in metadata.xml



1.1  dev-python/twython/twython-3.3.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twython/twython-3.3.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twython/twython-3.3.0.ebuild?rev=1.1content-type=text/plain

Index: twython-3.3.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/twython/twython-3.3.0.ebuild,v 
1.1 2015/07/25 08:10:38 ercpe Exp $

EAPI=5

PYTHON_COMPAT=( python{2_7,3_3,3_4} )

inherit distutils-r1

DESCRIPTION=An easy (and up to date) way to access Twitter data with Python
HOMEPAGE=https://github.com/ryanmcgrath/twython;
SRC_URI=mirror://pypi/t/${PN}/${P}.tar.gz

SLOT=0
LICENSE=MIT
KEYWORDS=~amd64 ~x86
IUSE=

DEPEND=
RDEPEND==dev-python/requests-2.1.0[${PYTHON_USEDEP}]
=dev-python/requests-oauthlib-0.4.0[${PYTHON_USEDEP}]






[gentoo-commits] gentoo-x86 commit in media-plugins/ams-lv2: metadata.xml ams-lv2-1.1.0.ebuild Manifest ChangeLog

2015-07-25 Thread Ben de Groot (yngwin)
yngwin  15/07/25 08:21:14

  Added:metadata.xml ams-lv2-1.1.0.ebuild Manifest
ChangeLog
  Log:
  Initial import. Ebuild updated from proaudio overlay.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x4FDF9CFD2FAC514E!)

Revision  ChangesPath
1.1  media-plugins/ams-lv2/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/ams-lv2/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/ams-lv2/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdproaudio/herd
/pkgmetadata



1.1  media-plugins/ams-lv2/ams-lv2-1.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/ams-lv2/ams-lv2-1.1.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/ams-lv2/ams-lv2-1.1.0.ebuild?rev=1.1content-type=text/plain

Index: ams-lv2-1.1.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/ams-lv2/ams-lv2-1.1.0.ebuild,v 
1.1 2015/07/25 08:21:14 yngwin Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=threads(+)
inherit waf-utils python-any-r1

DESCRIPTION=A port of the AMS internal modules to LV2 plugins to create 
modular synthesizers
HOMEPAGE=http://objectivewave.wordpress.com/ams-lv2/;
SRC_URI=https://github.com/blablack/${PN}/archive/v${PV}.tar.gz - ${P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=

RDEPEND==dev-cpp/gtkmm-2.24.0:2.4
=media-libs/lv2-1.10.0
=media-libs/lvtk-1.2.0[gtk2]
=media-sound/jack-audio-connection-kit-0.120
=sci-libs/fftw-3.3.3:3.0
=x11-libs/cairo-1.10.0
=x11-libs/gtk+-2.24:2
DEPEND=${RDEPEND}
${PYTHON_DEPS}
virtual/pkgconfig

DOCS=( LICENSE README.md THANKS )



1.1  media-plugins/ams-lv2/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/ams-lv2/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/ams-lv2/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
DIST ams-lv2-1.1.0.tar.gz 217762 SHA256 
a5b9320a3034b5bc9c26c0c1df972ea15f5a07cf0ea857d8113affc1f2a10bcf SHA512 
4a994d21b9078ec84cbccc99d028a75a175bfc7a6648a7daf645da7877e2fda6a3ec31b351a01fa2ddf8f6a815f79e1dc1f9bf74ea8c5b82931076ceb645bf54
 WHIRLPOOL 
864b228f0888153f4db88f014cdaa667cfd22c5b54d6945445526bb4786d9580e03dafb285da4405d9f13b6f0d98c3044484aab900fe4c1a01d7f8a5975353b9
EBUILD ams-lv2-1.1.0.ebuild 812 SHA256 
da492b3199203d833bef217f01e6db4a999d5edd7bd9f0c19167728bb07994ba SHA512 
e881d75f5284bf37fbd9d258c7735e2bb94ab3403309c3822f460b5b089fc928d67249ebafb5af94600bf89132aa5d032e95eaf1153998a135f26ac04a64dd5e
 WHIRLPOOL 
dd3a0e2e88d7cb5f2a507e77847b0a58fd4a09bea3ce84cc8b9b684f8fc9957998217209930877a132f679dab8756da8eac2107c450bc26f7b92da810048f528
MISC metadata.xml 163 SHA256 
39a67c65d2e7583b6ee9e20fcab1fd821e28c51134eb2f76a7fe0598a2c2b4cb SHA512 
9f75bebfe63cca16660e90ff8d0f4fb6a7b2923630c72616134f69273306434c3060eb2be81b6bc619dfdce11bc0e76d3ba874007ddf866367a81fc2279b9496
 WHIRLPOOL 
6de4b890a3933fb8231bf774fbb466595fee98bb2a4cfcbd1592f30f9aa50ac0f53a32d57703d55cfcd5a7e5af8c407229cd72cbaf1382cc2a2147ddf5cc4e05



1.1  media-plugins/ams-lv2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/ams-lv2/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/ams-lv2/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for media-plugins/ams-lv2
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/ams-lv2/ChangeLog,v 1.1 
2015/07/25 08:21:14 yngwin Exp $

*ams-lv2-1.1.0 (25 Jul 2015)

  25 Jul 2015; Ben de Groot yng...@gentoo.org +ams-lv2-1.1.0.ebuild,
  +metadata.xml:
  Initial import. Ebuild updated from proaudio overlay.







[gentoo-commits] gentoo-x86 commit in media-libs/opencv: opencv-2.4.9.ebuild opencv-2.4.10.ebuild opencv-3.0.0.ebuild ChangeLog

2015-07-25 Thread Amy Winston (amynka)
amynka  15/07/25 08:20:45

  Modified: opencv-2.4.9.ebuild opencv-2.4.10.ebuild
opencv-3.0.0.ebuild ChangeLog
  Log:
  Dependency fix bug #555824.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
34E69781)

Revision  ChangesPath
1.14 media-libs/opencv/opencv-2.4.9.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-2.4.9.ebuild?rev=1.14view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-2.4.9.ebuild?rev=1.14content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-2.4.9.ebuild?r1=1.13r2=1.14

Index: opencv-2.4.9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-2.4.9.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- opencv-2.4.9.ebuild 5 May 2015 08:28:32 -   1.13
+++ opencv-2.4.9.ebuild 25 Jul 2015 08:20:45 -  1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-2.4.9.ebuild,v 
1.13 2015/05/05 08:28:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-2.4.9.ebuild,v 
1.14 2015/07/25 08:20:45 amynka Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -68,6 +68,7 @@
xine? ( media-libs/xine-lib )
 
 DEPEND=${RDEPEND}
+   dev-util/cmake
virtual/pkgconfig
eigen? ( dev-cpp/eigen:3 )
java? ( =virtual/jdk-1.6 )



1.5  media-libs/opencv/opencv-2.4.10.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-2.4.10.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-2.4.10.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-2.4.10.ebuild?r1=1.4r2=1.5

Index: opencv-2.4.10.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-2.4.10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- opencv-2.4.10.ebuild23 May 2015 19:50:32 -  1.4
+++ opencv-2.4.10.ebuild25 Jul 2015 08:20:45 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-2.4.10.ebuild,v 
1.4 2015/05/23 19:50:32 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-2.4.10.ebuild,v 
1.5 2015/07/25 08:20:45 amynka Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -68,6 +68,7 @@
xine? ( media-libs/xine-lib )
 
 DEPEND=${RDEPEND}
+   dev-util/cmake
virtual/pkgconfig
eigen? ( dev-cpp/eigen:3 )
java? ( =virtual/jdk-1.6 )



1.4  media-libs/opencv/opencv-3.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-3.0.0.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-3.0.0.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-3.0.0.ebuild?r1=1.3r2=1.4

Index: opencv-3.0.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-3.0.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- opencv-3.0.0.ebuild 22 Jul 2015 20:04:38 -  1.3
+++ opencv-3.0.0.ebuild 25 Jul 2015 08:20:45 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-3.0.0.ebuild,v 1.3 
2015/07/22 20:04:38 amynka Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-3.0.0.ebuild,v 1.4 
2015/07/25 08:20:45 amynka Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
@@ -78,6 +78,7 @@
xine? ( media-libs/xine-lib )
 
 DEPEND=${RDEPEND}
+   dev-util/cmake
virtual/pkgconfig
eigen? ( dev-cpp/eigen:3 )
java? ( =virtual/jdk-1.6 )



1.130media-libs/opencv/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/ChangeLog?rev=1.130view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/ChangeLog?rev=1.130content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/ChangeLog?r1=1.129r2=1.130

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/opencv/ChangeLog,v
retrieving revision 1.129
retrieving revision 1.130
diff 

[gentoo-commits] gentoo-x86 commit in net-analyzer/cacti-spine: ChangeLog cacti-spine-0.8.8f.ebuild

2015-07-25 Thread Jeroen Roovers (jer)
jer 15/07/25 08:28:12

  Modified: ChangeLog
  Added:cacti-spine-0.8.8f.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.51 net-analyzer/cacti-spine/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/ChangeLog?rev=1.51view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/ChangeLog?rev=1.51content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/ChangeLog?r1=1.50r2=1.51

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/cacti-spine/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog   23 Jul 2015 09:34:27 -  1.50
+++ ChangeLog   25 Jul 2015 08:28:12 -  1.51
@@ -1,6 +1,11 @@
 # ChangeLog for net-analyzer/cacti-spine
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti-spine/ChangeLog,v 1.50 
2015/07/23 09:34:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti-spine/ChangeLog,v 1.51 
2015/07/25 08:28:12 jer Exp $
+
+*cacti-spine-0.8.8f (25 Jul 2015)
+
+  25 Jul 2015; Jeroen Roovers j...@gentoo.org +cacti-spine-0.8.8f.ebuild:
+  Version bump.
 
   23 Jul 2015; Agostino Sarubbo a...@gentoo.org cacti-spine-0.8.8e.ebuild:
   Stable for sparc, wrt bug #554816



1.1  net-analyzer/cacti-spine/cacti-spine-0.8.8f.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/cacti-spine-0.8.8f.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti-spine/cacti-spine-0.8.8f.ebuild?rev=1.1content-type=text/plain

Index: cacti-spine-0.8.8f.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/cacti-spine/cacti-spine-0.8.8f.ebuild,v 
1.1 2015/07/25 08:28:12 jer Exp $

EAPI=5
inherit autotools eutils

MY_P=${PN}-${PV/_p/-}

DESCRIPTION=Spine is a fast poller for Cacti (formerly known as Cactid)
HOMEPAGE=http://cacti.net/spine_info.php;
SRC_URI=http://www.cacti.net/downloads/spine/${MY_P}.tar.gz;

LICENSE=LGPL-2.1
SLOT=0
KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86

DEPEND=
dev-libs/openssl:*
net-analyzer/net-snmp
virtual/mysql

RDEPEND=
${DEPEND}
net-analyzer/cacti-0.8.8


src_prepare() {
epatch \
${FILESDIR}/${PN}-0.8.8e-fix-ac-macro.patch \
${FILESDIR}/${PN}-0.8.8e-net-snmp.patch \
${FILESDIR}/${PN}-0.8.8d-mysql.patch \
${FILESDIR}/${PN}-0.8.8d-ping.patch \
${FILESDIR}/${PN}-0.8.8d-snmp_spine_close.patch

sed -i -e 's/^bin_PROGRAMS/sbin_PROGRAMS/' Makefile.am
AT_M4DIR=config eautoreconf
}

src_install() {
dosbin spine
insinto /etc/
insopts -m0640 -o root
newins spine.conf{.dist,}
dodoc ChangeLog README
}






[gentoo-commits] gentoo-x86 commit in net-analyzer/cacti: ChangeLog cacti-0.8.8f.ebuild

2015-07-25 Thread Jeroen Roovers (jer)
jer 15/07/25 08:28:14

  Modified: ChangeLog
  Added:cacti-0.8.8f.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.215net-analyzer/cacti/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti/ChangeLog?rev=1.215view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti/ChangeLog?rev=1.215content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti/ChangeLog?r1=1.214r2=1.215

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/cacti/ChangeLog,v
retrieving revision 1.214
retrieving revision 1.215
diff -u -r1.214 -r1.215
--- ChangeLog   24 Jul 2015 04:18:58 -  1.214
+++ ChangeLog   25 Jul 2015 08:28:14 -  1.215
@@ -1,6 +1,11 @@
 # ChangeLog for net-analyzer/cacti
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti/ChangeLog,v 1.214 
2015/07/24 04:18:58 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti/ChangeLog,v 1.215 
2015/07/25 08:28:14 jer Exp $
+
+*cacti-0.8.8f (25 Jul 2015)
+
+  25 Jul 2015; Jeroen Roovers j...@gentoo.org +cacti-0.8.8f.ebuild:
+  Version bump.
 
   24 Jul 2015; Jeroen Roovers j...@gentoo.org -cacti-0.8.8d.ebuild:
   Old.



1.1  net-analyzer/cacti/cacti-0.8.8f.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti/cacti-0.8.8f.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cacti/cacti-0.8.8f.ebuild?rev=1.1content-type=text/plain

Index: cacti-0.8.8f.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti/cacti-0.8.8f.ebuild,v 1.1 
2015/07/25 08:28:14 jer Exp $

EAPI=5

inherit depend.php eutils webapp

# Support for _p* in version.
MY_P=${P/_p*/}

DESCRIPTION=Cacti is a complete frontend to rrdtool
HOMEPAGE=http://www.cacti.net/;
SRC_URI=http://www.cacti.net/downloads/${MY_P}.tar.gz;

LICENSE=GPL-2
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86
IUSE=snmp doc

need_httpd

RDEPEND=
dev-lang/php[cli,mysql,session,sockets,xml]
dev-php/adodb
net-analyzer/rrdtool[graph]
virtual/cron
virtual/mysql
snmp? ( =net-analyzer/net-snmp-5.2.0 )


src_prepare() {
sed -i -e \
's:$config\[library_path\] . 
/adodb/adodb.inc.php:adodb/adodb.inc.php:' \
${S}/include/global.php || die

rm -rf lib/adodb || die # don't use bundled adodb
}

src_compile() { :; }

src_install() {
webapp_src_preinst

rm LICENSE README || die
dodoc docs/{CHANGELOG,CONTRIB,README,txt/manual.txt}
use doc  dohtml -r docs/html/
rm -rf docs

edos2unix `find -type f -name '*.php'`

dodir ${MY_HTDOCSDIR}
cp -r . ${D}${MY_HTDOCSDIR}

webapp_serverowned ${MY_HTDOCSDIR}/rra
webapp_serverowned ${MY_HTDOCSDIR}/log/cacti.log
webapp_configfile ${MY_HTDOCSDIR}/include/config.php
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt

webapp_src_install
}






[gentoo-commits] gentoo-x86 commit in net-analyzer/cacti-spine/files: cacti-spine-0.8.8d-fix-ac-macro.patch cacti-spine-0.8.8d-polling_time.patch cacti-spine-0.8.8d-net-snmp.patch

2015-07-25 Thread Jeroen Roovers (jer)
jer 15/07/25 08:28:12

  Removed:  cacti-spine-0.8.8d-fix-ac-macro.patch
cacti-spine-0.8.8d-polling_time.patch
cacti-spine-0.8.8d-net-snmp.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)



[gentoo-commits] gentoo-x86 commit in dev-ruby/jeweler: ChangeLog jeweler-1.8.4.ebuild

2015-07-25 Thread Hans de Graaff (graaff)
graaff  15/07/25 08:33:11

  Modified: ChangeLog
  Removed:  jeweler-1.8.4.ebuild
  Log:
  Cleanup. Drop latest ruby19-only stable version since nothing in the tree 
depends on it and new versions require many new stable dependencies.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.36 dev-ruby/jeweler/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/jeweler/ChangeLog?rev=1.36view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/jeweler/ChangeLog?rev=1.36content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/jeweler/ChangeLog?r1=1.35r2=1.36

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/jeweler/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog   7 Jun 2015 07:09:46 -   1.35
+++ ChangeLog   25 Jul 2015 08:33:11 -  1.36
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/jeweler
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/jeweler/ChangeLog,v 1.35 
2015/06/07 07:09:46 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/jeweler/ChangeLog,v 1.36 
2015/07/25 08:33:11 graaff Exp $
+
+  25 Jul 2015; Hans de Graaff gra...@gentoo.org -jeweler-1.8.4.ebuild:
+  Cleanup. Drop latest ruby19-only stable version since nothing in the tree
+  depends on it and new versions require many new stable dependencies.
 
   07 Jun 2015; Hans de Graaff gra...@gentoo.org jeweler-2.0.1-r1.ebuild,
   jeweler-2.0.1-r2.ebuild:






[gentoo-commits] gentoo-x86 commit in media-plugins/calf: - New directory

2015-07-25 Thread Ben de Groot (yngwin)
yngwin  15/07/25 08:33:51

  Log:
  Directory /var/cvsroot/gentoo-x86/media-plugins/calf added to the repository



[gentoo-commits] gentoo-x86 commit in media-libs/opencv: opencv-2.4.9.ebuild opencv-2.4.10.ebuild opencv-3.0.0.ebuild ChangeLog

2015-07-25 Thread Amy Winston (amynka)
amynka  15/07/25 08:43:27

  Modified: opencv-2.4.9.ebuild opencv-2.4.10.ebuild
opencv-3.0.0.ebuild ChangeLog
  Log:
  Fix fixed dependency.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
34E69781)

Revision  ChangesPath
1.15 media-libs/opencv/opencv-2.4.9.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-2.4.9.ebuild?rev=1.15view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-2.4.9.ebuild?rev=1.15content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-2.4.9.ebuild?r1=1.14r2=1.15

Index: opencv-2.4.9.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-2.4.9.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- opencv-2.4.9.ebuild 25 Jul 2015 08:20:45 -  1.14
+++ opencv-2.4.9.ebuild 25 Jul 2015 08:43:27 -  1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-2.4.9.ebuild,v 
1.14 2015/07/25 08:20:45 amynka Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-2.4.9.ebuild,v 
1.15 2015/07/25 08:43:27 amynka Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -68,7 +68,6 @@
xine? ( media-libs/xine-lib )
 
 DEPEND=${RDEPEND}
-   dev-util/cmake
virtual/pkgconfig
eigen? ( dev-cpp/eigen:3 )
java? ( =virtual/jdk-1.6 )



1.6  media-libs/opencv/opencv-2.4.10.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-2.4.10.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-2.4.10.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-2.4.10.ebuild?r1=1.5r2=1.6

Index: opencv-2.4.10.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-2.4.10.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- opencv-2.4.10.ebuild25 Jul 2015 08:20:45 -  1.5
+++ opencv-2.4.10.ebuild25 Jul 2015 08:43:27 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-2.4.10.ebuild,v 
1.5 2015/07/25 08:20:45 amynka Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-2.4.10.ebuild,v 
1.6 2015/07/25 08:43:27 amynka Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -68,7 +68,6 @@
xine? ( media-libs/xine-lib )
 
 DEPEND=${RDEPEND}
-   dev-util/cmake
virtual/pkgconfig
eigen? ( dev-cpp/eigen:3 )
java? ( =virtual/jdk-1.6 )



1.5  media-libs/opencv/opencv-3.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-3.0.0.ebuild?rev=1.5view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-3.0.0.ebuild?rev=1.5content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/opencv-3.0.0.ebuild?r1=1.4r2=1.5

Index: opencv-3.0.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-3.0.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- opencv-3.0.0.ebuild 25 Jul 2015 08:20:45 -  1.4
+++ opencv-3.0.0.ebuild 25 Jul 2015 08:43:27 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-3.0.0.ebuild,v 1.4 
2015/07/25 08:20:45 amynka Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/opencv/opencv-3.0.0.ebuild,v 1.5 
2015/07/25 08:43:27 amynka Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
@@ -78,7 +78,6 @@
xine? ( media-libs/xine-lib )
 
 DEPEND=${RDEPEND}
-   dev-util/cmake
virtual/pkgconfig
eigen? ( dev-cpp/eigen:3 )
java? ( =virtual/jdk-1.6 )



1.131media-libs/opencv/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/ChangeLog?rev=1.131view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/ChangeLog?rev=1.131content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opencv/ChangeLog?r1=1.130r2=1.131

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/opencv/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u 

[gentoo-commits] gentoo-x86 commit in dev-ruby/nokogiri-diff: ChangeLog nokogiri-diff-0.2.0-r1.ebuild nokogiri-diff-0.2.0-r2.ebuild

2015-07-25 Thread Hans de Graaff (graaff)
graaff  15/07/25 08:42:34

  Modified: ChangeLog nokogiri-diff-0.2.0-r1.ebuild
  Added:nokogiri-diff-0.2.0-r2.ebuild
  Log:
  Create stable candidate.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.10 dev-ruby/nokogiri-diff/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/nokogiri-diff/ChangeLog?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/nokogiri-diff/ChangeLog?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/nokogiri-diff/ChangeLog?r1=1.9r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri-diff/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   12 Jul 2015 08:09:36 -  1.9
+++ ChangeLog   25 Jul 2015 08:42:34 -  1.10
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/nokogiri-diff
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri-diff/ChangeLog,v 1.9 
2015/07/12 08:09:36 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri-diff/ChangeLog,v 1.10 
2015/07/25 08:42:34 graaff Exp $
+
+*nokogiri-diff-0.2.0-r2 (25 Jul 2015)
+
+  25 Jul 2015; Hans de Graaff gra...@gentoo.org
+  nokogiri-diff-0.2.0-r1.ebuild, +nokogiri-diff-0.2.0-r2.ebuild:
+  Create stable candidate.
 
   12 Jul 2015; Mikle Kolyada zlog...@gentoo.org 
nokogiri-diff-0.2.0-r1.ebuild:
   Add ~x86 keyword wrt bug #497396



1.6  dev-ruby/nokogiri-diff/nokogiri-diff-0.2.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/nokogiri-diff/nokogiri-diff-0.2.0-r1.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/nokogiri-diff/nokogiri-diff-0.2.0-r1.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/nokogiri-diff/nokogiri-diff-0.2.0-r1.ebuild?r1=1.5r2=1.6

Index: nokogiri-diff-0.2.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-ruby/nokogiri-diff/nokogiri-diff-0.2.0-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- nokogiri-diff-0.2.0-r1.ebuild   12 Jul 2015 08:09:36 -  1.5
+++ nokogiri-diff-0.2.0-r1.ebuild   25 Jul 2015 08:42:34 -  1.6
@@ -1,10 +1,10 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/nokogiri-diff/nokogiri-diff-0.2.0-r1.ebuild,v 
1.5 2015/07/12 08:09:36 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/nokogiri-diff/nokogiri-diff-0.2.0-r1.ebuild,v 
1.6 2015/07/25 08:42:34 graaff Exp $
 
 EAPI=5
 
-USE_RUBY=ruby19 ruby20 ruby21 ruby22
+USE_RUBY=ruby19 ruby20
 
 RUBY_FAKEGEM_RECIPE_TEST=rspec
 RUBY_FAKEGEM_RECIPE_DOC=yard



1.1  dev-ruby/nokogiri-diff/nokogiri-diff-0.2.0-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/nokogiri-diff/nokogiri-diff-0.2.0-r2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/nokogiri-diff/nokogiri-diff-0.2.0-r2.ebuild?rev=1.1content-type=text/plain

Index: nokogiri-diff-0.2.0-r2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/nokogiri-diff/nokogiri-diff-0.2.0-r2.ebuild,v 
1.1 2015/07/25 08:42:34 graaff Exp $

EAPI=5

USE_RUBY=ruby19 ruby20 ruby21 ruby22

RUBY_FAKEGEM_RECIPE_TEST=rspec
RUBY_FAKEGEM_RECIPE_DOC=yard
RUBY_FAKEGEM_EXTRADOC=ChangeLog.md README.md

inherit ruby-fakegem

DESCRIPTION=Calculate the differences (added or removed nodes) between two 
XML/HTML documents
HOMEPAGE=https://github.com/postmodern/nokogiri-diff;
LICENSE=MIT

KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
SLOT=0
IUSE=

ruby_add_rdepend =dev-ruby/nokogiri-1.5 =dev-ruby/tdiff-0.3.2






[gentoo-commits] gentoo-x86 commit in dev-python/beanstalkc: ChangeLog beanstalkc-0.4.0-r1.ebuild

2015-07-25 Thread Alexys Jacob (ultrabug)
ultrabug15/07/25 09:28:35

  Modified: ChangeLog
  Added:beanstalkc-0.4.0-r1.ebuild
  Log:
  add support for pypy
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
B658FA13)

Revision  ChangesPath
1.19 dev-python/beanstalkc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beanstalkc/ChangeLog?rev=1.19view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beanstalkc/ChangeLog?rev=1.19content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beanstalkc/ChangeLog?r1=1.18r2=1.19

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/beanstalkc/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   6 Jun 2015 20:01:43 -   1.18
+++ ChangeLog   25 Jul 2015 09:28:35 -  1.19
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/beanstalkc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/beanstalkc/ChangeLog,v 1.18 
2015/06/06 20:01:43 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/beanstalkc/ChangeLog,v 1.19 
2015/07/25 09:28:35 ultrabug Exp $
+
+*beanstalkc-0.4.0-r1 (25 Jul 2015)
+
+  25 Jul 2015; Ultrabug ultra...@gentoo.org +beanstalkc-0.4.0-r1.ebuild:
+  add pypy support
 
   06 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Add github to remote-id in metadata.xml



1.1  dev-python/beanstalkc/beanstalkc-0.4.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beanstalkc/beanstalkc-0.4.0-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beanstalkc/beanstalkc-0.4.0-r1.ebuild?rev=1.1content-type=text/plain

Index: beanstalkc-0.4.0-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/beanstalkc/beanstalkc-0.4.0-r1.ebuild,v 1.1 
2015/07/25 09:28:35 ultrabug Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 pypy )

inherit distutils-r1

DESCRIPTION=A simple beanstalkd client library
HOMEPAGE=http://github.com/earl/beanstalkc 
http://pypi.python.org/pypi/beanstalkc;
SRC_URI=mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz

LICENSE=Apache-2.0
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=

RDEPEND=dev-python/pyyaml[${PYTHON_USEDEP}]
DEPEND=${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]






[gentoo-commits] gentoo-x86 commit in dev-vcs/rcs: rcs-5.9.4.ebuild ChangeLog rcs-5.9.2.ebuild

2015-07-25 Thread Ian Delaney (idella4)
idella4 15/07/25 07:40:28

  Modified: ChangeLog
  Added:rcs-5.9.4.ebuild
  Removed:  rcs-5.9.2.ebuild
  Log:
  bump, rm old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.33 dev-vcs/rcs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/ChangeLog?rev=1.33view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/ChangeLog?rev=1.33content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/ChangeLog?r1=1.32r2=1.33

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/rcs/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog   25 Jul 2015 07:13:56 -  1.32
+++ ChangeLog   25 Jul 2015 07:40:28 -  1.33
@@ -1,6 +1,12 @@
 # ChangeLog for dev-vcs/rcs
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/ChangeLog,v 1.32 2015/07/25 
07:13:56 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/ChangeLog,v 1.33 2015/07/25 
07:40:28 idella4 Exp $
+
+*rcs-5.9.4 (25 Jul 2015)
+
+  25 Jul 2015; Ian Delaney idel...@gentoo.org +rcs-5.9.4.ebuild,
+  -rcs-5.9.2.ebuild:
+  bump, rm old
 
   25 Jul 2015; Ian Delaney idel...@gentoo.org rcs-5.9.3.ebuild:
   set -std=gnu99 into CFLAGS, thanks to fix by Bernd Buschinski in bug #548320



1.1  dev-vcs/rcs/rcs-5.9.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/rcs-5.9.4.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/rcs-5.9.4.ebuild?rev=1.1content-type=text/plain

Index: rcs-5.9.4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/rcs-5.9.4.ebuild,v 1.1 
2015/07/25 07:40:28 idella4 Exp $

EAPI=5

inherit eutils flag-o-matic

DESCRIPTION=Revision Control System
HOMEPAGE=http://www.gnu.org/software/rcs/;
SRC_URI=mirror://gnu/rcs/${P}.tar.xz

LICENSE=GPL-3
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris
IUSE=doc

RDEPEND=
sys-apps/diffutils
sys-apps/ed
DEPEND=${RDEPEND}

src_prepare() {
sed -i -e '/gets is a security hole/d' \
lib/stdio.in.h || die
}

src_configure() {
append-flags -std=gnu99
econf
}

src_test() {
emake check
}

src_install() {
emake DESTDIR=${D} install

dodoc ChangeLog NEWS README

if use doc; then
emake -C doc html
rm -R ${ED}/usr/share/doc/rcs
mv doc/rcs.html doc/html
dodoc -r doc/html/
fi
}






[gentoo-commits] gentoo-x86 commit in media-libs/lvtk: metadata.xml lvtk-1.2.0.ebuild Manifest ChangeLog

2015-07-25 Thread Ben de Groot (yngwin)
yngwin  15/07/25 08:17:03

  Added:metadata.xml lvtk-1.2.0.ebuild Manifest ChangeLog
  Log:
  Initial import. Ebuild updated from proaudio overlay.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x4FDF9CFD2FAC514E!)

Revision  ChangesPath
1.1  media-libs/lvtk/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lvtk/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lvtk/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdproaudio/herd
  use
flag name='gtk2'Enable pkgx11-libs/gtk+:2/pkg based GUI support/flag
flag name='tools'Compile and install ttl2c tool/flag
  /use
/pkgmetadata



1.1  media-libs/lvtk/lvtk-1.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lvtk/lvtk-1.2.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lvtk/lvtk-1.2.0.ebuild?rev=1.1content-type=text/plain

Index: lvtk-1.2.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/lvtk/lvtk-1.2.0.ebuild,v 1.1 
2015/07/25 08:17:03 yngwin Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE=threads(+)
inherit python-single-r1 waf-utils

DESCRIPTION=A set of C++ wrappers around the LV2 C API
HOMEPAGE=http://lvtoolkit.org/;
SRC_URI=https://github.com/lvtk/lvtk/archive/${PV}.tar.gz - ${P}.tar.gz

LICENSE=GPL-3+
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=debug doc examples +gtk2 +tools

RDEPEND=media-libs/lv2
=dev-libs/boost-1.40.0
gtk2? ( dev-cpp/gtkmm:2.4 )
DEPEND=${RDEPEND}
${PYTHON_DEPS}
doc? ( app-doc/doxygen
media-gfx/graphviz )
virtual/pkgconfig

DOCS=( AUTHORS ChangeLog README )

src_configure() {
local mywafconfargs=(
--docdir=${EPREFIX}/usr/share/doc/${PF}
--lv2dir=${EPREFIX}/usr/$(get_libdir)/lv2
)
use debug mywafconfargs+=( --debug )
use doc   mywafconfargs+=( --docs )
use examples || mywafconfargs+=( --disable-examples )
use tools|| mywafconfargs+=( --disable-tools )
use gtk2 || mywafconfargs+=( --disable-ui )
waf-utils_src_configure ${mywafconfargs[@]}
}

src_install() {
waf-utils_src_install

# It does not respect docdir properly, reported upstream
if use doc; then
mv ${ED}/usr/share/doc/${PF}/lvtk-1.0/html 
${ED}/usr/share/doc/${PF}/html
rmdir ${ED}/usr/share/doc/${PF}/lvtk-1.0
fi
}



1.1  media-libs/lvtk/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lvtk/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lvtk/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
DIST lvtk-1.2.0.tar.gz 201146 SHA256 
4dda4c26a16fc3f216ff77f5bb308f05667640e54fc80f0ae4984e869990cb0e SHA512 
f193ec28103cb2f6353ff0f96f8790041baf1ae99472c5d04017c23b42d0179b1f5e1de6722e17080410311d0e7e1de4ca0ae9ab76fb3bf8a02d9dc1451d8db7
 WHIRLPOOL 
c7a70d033a2a02b02f890cc68789b376e7e4e53231290dbaa5bb85abf0d3b53cb64afe352bab6d71ddcd77a5f4d002073564ebc398d6f35d7cc75bc1b49728e2
EBUILD lvtk-1.2.0.ebuild 1374 SHA256 
4c0fc19e540c01231a48ffd0d0fdc9950ea02391ad58bc3e6f3ec6a750576e29 SHA512 
63844cba9f81320b0f9cb4dda62ae4a88cd0625309c557d4df4800b5f82674b65005aaafacef13cb88d5600d3517d5905ef07bd97a8c41f483cbf1d77ce8e038
 WHIRLPOOL 
ebd4a30693463a2b66fbddf19df668e5b1eb3dddfa27279d2758008b3005e3f281a624dda8940cf0e1f04e883499539fc715ff46d57d883459333e1137b6d23f
MISC metadata.xml 322 SHA256 
b389e5d038c1ef88a44c2b7ed38aad4bdb8a1862a2d9a80c887854ae32229f0c SHA512 
e83344f47953e37519a1da7cb0f72ce277c0dec24306b78da979a39963f17c7ab09f45e503e8b31a81080af1d70145166e327c17127e8a68ec4de7174d928f4b
 WHIRLPOOL 
7b512ff4840e105db044b997dd3f985928952d8ba57f6f75e3d6ecd2896606004a2ca15604d2f863962a753a11a819f908d6b2dc8478373be8b82dbb0e5fdee8



1.1  media-libs/lvtk/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lvtk/ChangeLog?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lvtk/ChangeLog?rev=1.1content-type=text/plain

Index: ChangeLog
===
# ChangeLog for media-libs/lvtk
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/lvtk/ChangeLog,v 1.1 2015/07/25 
08:17:03 yngwin Exp $

*lvtk-1.2.0 (25 

[gentoo-commits] gentoo-x86 commit in media-plugins/ams-lv2: - New directory

2015-07-25 Thread Ben de Groot (yngwin)
yngwin  15/07/25 08:18:17

  Log:
  Directory /var/cvsroot/gentoo-x86/media-plugins/ams-lv2 added to the 
repository



[gentoo-commits] gentoo-x86 commit in net-analyzer/netperf: ChangeLog netperf-2.7.0.ebuild

2015-07-25 Thread Jeroen Roovers (jer)
jer 15/07/25 08:26:32

  Modified: ChangeLog
  Added:netperf-2.7.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.72 net-analyzer/netperf/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netperf/ChangeLog?rev=1.72view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netperf/ChangeLog?rev=1.72content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netperf/ChangeLog?r1=1.71r2=1.72

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netperf/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog   29 Oct 2014 09:40:30 -  1.71
+++ ChangeLog   25 Jul 2015 08:26:32 -  1.72
@@ -1,6 +1,12 @@
 # ChangeLog for net-analyzer/netperf
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netperf/ChangeLog,v 1.71 
2014/10/29 09:40:30 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netperf/ChangeLog,v 1.72 
2015/07/25 08:26:32 jer Exp $
+
+*netperf-2.7.0 (25 Jul 2015)
+
+  25 Jul 2015; Jeroen Roovers j...@gentoo.org +netperf-2.7.0.ebuild,
+  +files/netperf-2.7.0-includes.patch:
+  Version bump.
 
   29 Oct 2014; Jeroen Roovers j...@gentoo.org -netperf-2.5.0-r1.ebuild:
   Old.



1.1  net-analyzer/netperf/netperf-2.7.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netperf/netperf-2.7.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netperf/netperf-2.7.0.ebuild?rev=1.1content-type=text/plain

Index: netperf-2.7.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netperf/netperf-2.7.0.ebuild,v 
1.1 2015/07/25 08:26:32 jer Exp $

EAPI=5
inherit eutils flag-o-matic

DESCRIPTION=Network performance benchmark including tests for TCP, UDP, 
sockets, ATM and more
SRC_URI=ftp://ftp.netperf.org/${PN}/${P}.tar.bz2;
KEYWORDS=~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86

HOMEPAGE=http://www.netperf.org/;
LICENSE=netperf
SLOT=0
IUSE=demo sctp

DEPEND==sys-apps/sed-4

src_prepare() {
epatch \
${FILESDIR}/${PN}-fix-scripts.patch \
${FILESDIR}/${PN}-2.6.0-log-dir.patch \
${FILESDIR}/${PN}-2.7.0-includes.patch

# Fixing paths in scripts
sed -i \
-e 's:^\(NETHOME=\).*:\1/usr/bin:' \
doc/examples/sctp_stream_script \
doc/examples/tcp_range_script \
doc/examples/tcp_rr_script \
doc/examples/tcp_stream_script \
doc/examples/udp_rr_script \
doc/examples/udp_stream_script \
|| die

# netlib.c:2292:5: warning: implicit declaration of function 
‘sched_setaffinity’
# nettest_omni.c:2943:5: warning: implicit declaration of function 
‘splice’
append-cppflags -D_GNU_SOURCE
}

src_configure() {
econf \
$(use_enable demo) \
$(use_enable sctp)
}

src_install () {
default

# move netserver into sbin as we had it before 2.4 was released with its
# autoconf goodness
dodir /usr/sbin
mv ${D}/usr/{bin,sbin}/netserver || die

# init.d / conf.d
newinitd ${FILESDIR}/${PN}-2.2-init netperf
newconfd ${FILESDIR}/${PN}-2.2-conf netperf

# documentation and example scripts
dodoc AUTHORS ChangeLog NEWS README Release_Notes
dodir /usr/share/doc/${PF}/examples
#Scripts no longer get installed by einstall
cp doc/examples/*_script ${D}/usr/share/doc/${PF}/examples || die
}






[gentoo-commits] gentoo-x86 commit in net-analyzer/netperf/files: netperf-2.7.0-includes.patch

2015-07-25 Thread Jeroen Roovers (jer)
jer 15/07/25 08:26:32

  Added:netperf-2.7.0-includes.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.1  net-analyzer/netperf/files/netperf-2.7.0-includes.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netperf/files/netperf-2.7.0-includes.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netperf/files/netperf-2.7.0-includes.patch?rev=1.1content-type=text/plain

Index: netperf-2.7.0-includes.patch
===
--- a/src/net_uuid.c
+++ b/src/net_uuid.c
@@ -28,6 +28,7 @@
 #include stdlib.h
 #include string.h
 #include fcntl.h
+#include unistd.h /* read(), close() */
 
 #if defined(HAVE_INTTYPES_H)
 #include inttypes.h
--- a/src/netlib.c
+++ b/src/netlib.c
@@ -81,6 +81,9 @@
 #include endian.h
 #endif
 
+#if defined(HAVE_SENDFILE)
+#include sys/sendfile.h /* sendfile() */
+#endif
 
 #ifndef WIN32
  /* at some point, I would like to get rid of all these sys/






[gentoo-commits] gentoo-x86 commit in dev-ruby/maruku: ChangeLog maruku-0.7.0.ebuild

2015-07-25 Thread Hans de Graaff (graaff)
graaff  15/07/25 08:39:17

  Modified: ChangeLog
  Removed:  maruku-0.7.0.ebuild
  Log:
  Cleanup of broken version.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.44 dev-ruby/maruku/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/maruku/ChangeLog?rev=1.44view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/maruku/ChangeLog?rev=1.44content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/maruku/ChangeLog?r1=1.43r2=1.44

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/maruku/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog   12 Jul 2015 08:10:26 -  1.43
+++ ChangeLog   25 Jul 2015 08:39:17 -  1.44
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/maruku
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/maruku/ChangeLog,v 1.43 2015/07/12 
08:10:26 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/maruku/ChangeLog,v 1.44 2015/07/25 
08:39:17 graaff Exp $
+
+  25 Jul 2015; Hans de Graaff gra...@gentoo.org -maruku-0.7.0.ebuild:
+  Cleanup of broken version.
 
   12 Jul 2015; Mikle Kolyada zlog...@gentoo.org maruku-0.7.2-r1.ebuild,
   maruku-0.7.2.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-ruby/tdiff: tdiff-0.3.3-r1.ebuild tdiff-0.3.3.ebuild ChangeLog

2015-07-25 Thread Hans de Graaff (graaff)
graaff  15/07/25 08:46:21

  Modified: tdiff-0.3.3.ebuild ChangeLog
  Added:tdiff-0.3.3-r1.ebuild
  Log:
  Create stable candidate.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.9  dev-ruby/tdiff/tdiff-0.3.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tdiff/tdiff-0.3.3.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tdiff/tdiff-0.3.3.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tdiff/tdiff-0.3.3.ebuild?r1=1.8r2=1.9

Index: tdiff-0.3.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tdiff/tdiff-0.3.3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- tdiff-0.3.3.ebuild  12 Jul 2015 08:08:25 -  1.8
+++ tdiff-0.3.3.ebuild  25 Jul 2015 08:46:21 -  1.9
@@ -1,10 +1,10 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tdiff/tdiff-0.3.3.ebuild,v 1.8 
2015/07/12 08:08:25 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tdiff/tdiff-0.3.3.ebuild,v 1.9 
2015/07/25 08:46:21 graaff Exp $
 
 EAPI=5
 
-USE_RUBY=ruby19 ruby20 ruby21 ruby22
+USE_RUBY=ruby19 ruby20
 
 RUBY_FAKEGEM_RECIPE_TEST=rspec
 



1.10 dev-ruby/tdiff/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tdiff/ChangeLog?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tdiff/ChangeLog?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tdiff/ChangeLog?r1=1.9r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tdiff/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   12 Jul 2015 08:08:25 -  1.9
+++ ChangeLog   25 Jul 2015 08:46:21 -  1.10
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/tdiff
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tdiff/ChangeLog,v 1.9 2015/07/12 
08:08:25 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tdiff/ChangeLog,v 1.10 2015/07/25 
08:46:21 graaff Exp $
+
+*tdiff-0.3.3-r1 (25 Jul 2015)
+
+  25 Jul 2015; Hans de Graaff gra...@gentoo.org tdiff-0.3.3.ebuild,
+  +tdiff-0.3.3-r1.ebuild:
+  Create stable candidate.
 
   12 Jul 2015; Mikle Kolyada zlog...@gentoo.org tdiff-0.3.3.ebuild:
   Add ~x86 keyword wrt bug #497396



1.1  dev-ruby/tdiff/tdiff-0.3.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tdiff/tdiff-0.3.3-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tdiff/tdiff-0.3.3-r1.ebuild?rev=1.1content-type=text/plain

Index: tdiff-0.3.3-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tdiff/tdiff-0.3.3-r1.ebuild,v 1.1 
2015/07/25 08:46:21 graaff Exp $

EAPI=5

USE_RUBY=ruby19 ruby20 ruby21 ruby22

RUBY_FAKEGEM_RECIPE_TEST=rspec

RUBY_FAKEGEM_RECIPE_DOC=yard
RUBY_FAKEGEM_EXTRADOC=ChangeLog.md README.md

inherit ruby-fakegem

DESCRIPTION=Calculates the differences between two tree-like structures
HOMEPAGE=https://github.com/postmodern/tdiff;
LICENSE=MIT

KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86
SLOT=0
IUSE=






[gentoo-commits] gentoo-x86 commit in net-ftp/proftpd: ChangeLog proftpd-1.3.4d.ebuild proftpd-1.3.5-r1.ebuild proftpd-1.3.5.ebuild proftpd-1.3.4e.ebuild

2015-07-25 Thread Sergei Trofimovich (slyfox)
slyfox  15/07/25 08:46:47

  Modified: ChangeLog
  Removed:  proftpd-1.3.4d.ebuild proftpd-1.3.5-r1.ebuild
proftpd-1.3.5.ebuild proftpd-1.3.4e.ebuild
  Log:
  Clean old vulnerabe versions (bug #546644).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
611FF3AA)

Revision  ChangesPath
1.344net-ftp/proftpd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/proftpd/ChangeLog?rev=1.344view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/proftpd/ChangeLog?rev=1.344content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/proftpd/ChangeLog?r1=1.343r2=1.344

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-ftp/proftpd/ChangeLog,v
retrieving revision 1.343
retrieving revision 1.344
diff -u -r1.343 -r1.344
--- ChangeLog   24 Jul 2015 10:29:56 -  1.343
+++ ChangeLog   25 Jul 2015 08:46:47 -  1.344
@@ -1,6 +1,14 @@
 # ChangeLog for net-ftp/proftpd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/ChangeLog,v 1.343 
2015/07/24 10:29:56 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/ChangeLog,v 1.344 
2015/07/25 08:46:47 slyfox Exp $
+
+  25 Jul 2015; Sergei Trofimovich sly...@gentoo.org
+  -files/proftpd-1.3.4d-memset-fix.patch,
+  -files/proftpd-1.3.4d-sftp-kbdint-max-responses-bug3973.patch,
+  -files/proftpd-1.3.4e-link-tests.patch,
+  -files/proftpd-1.3.5-netaddr-segv.patch, -proftpd-1.3.4d.ebuild,
+  -proftpd-1.3.4e.ebuild, -proftpd-1.3.5-r1.ebuild, -proftpd-1.3.5.ebuild:
+  Clean old vulnerabe versions (bug #546644).
 
   24 Jul 2015; Mikle Kolyada zlog...@gentoo.org proftpd-1.3.5a.ebuild:
   ia64 stable wrt bug #546644






[gentoo-commits] gentoo-x86 commit in media-plugins/calf: metadata.xml calf-0.0.60.ebuild calf-9999.ebuild Manifest ChangeLog

2015-07-25 Thread Ben de Groot (yngwin)
yngwin  15/07/25 08:47:39

  Added:metadata.xml calf-0.0.60.ebuild calf-.ebuild
Manifest ChangeLog
  Log:
  Initial import. Ebuild updated from proaudio overlay.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x4FDF9CFD2FAC514E!)

Revision  ChangesPath
1.1  media-plugins/calf/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/calf/metadata.xml?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/calf/metadata.xml?rev=1.1content-type=text/plain

Index: metadata.xml
===
?xml version=1.0 encoding=UTF-8?
!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
pkgmetadata
  herdproaudio/herd
  use
flag name=lv2Add support for Ladspa V2/flag
  /use
/pkgmetadata



1.1  media-plugins/calf/calf-0.0.60.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/calf/calf-0.0.60.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/calf/calf-0.0.60.ebuild?rev=1.1content-type=text/plain

Index: calf-0.0.60.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/calf/calf-0.0.60.ebuild,v 1.1 
2015/07/25 08:47:39 yngwin Exp $

EAPI=5
AUTOTOOLS_AUTORECONF=yes
inherit autotools-utils

DESCRIPTION=A set of open source instruments and effects for digital audio 
workstations
HOMEPAGE=http://calf-studio-gear.org/;

if [[ ${PV} =  ]] ; then
inherit git-r3
EGIT_REPO_URI=https://github.com/calf-studio-gear/calf.git;
else
SRC_URI=https://github.com/calf-studio-gear/calf/archive/${PV}.tar.gz 
- ${P}.tar.gz
KEYWORDS=~amd64 ~x86
fi

LICENSE=LGPL-2.1
SLOT=0
IUSE=lash lv2 static-libs

RDEPEND=dev-libs/atk
dev-libs/expat
dev-libs/glib:2
gnome-base/libglade:2.0
media-sound/fluidsynth
media-sound/jack-audio-connection-kit
x11-libs/cairo
x11-libs/gdk-pixbuf
x11-libs/gtk+:2
x11-libs/pango
lash? ( media-sound/lash )
lv2? ( media-libs/lv2 )
DEPEND=${RDEPEND}
virtual/pkgconfig

src_configure() {
myeconfargs=(
--with-lv2-dir=/usr/$(get_libdir)/lv2
$(use_with lash)
$(use_with lv2)
)
autotools-utils_src_configure
}



1.1  media-plugins/calf/calf-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/calf/calf-.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/calf/calf-.ebuild?rev=1.1content-type=text/plain

Index: calf-.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/calf/calf-.ebuild,v 1.1 
2015/07/25 08:47:39 yngwin Exp $

EAPI=5
AUTOTOOLS_AUTORECONF=yes
inherit autotools-utils

DESCRIPTION=A set of open source instruments and effects for digital audio 
workstations
HOMEPAGE=http://calf-studio-gear.org/;

if [[ ${PV} =  ]] ; then
inherit git-r3
EGIT_REPO_URI=https://github.com/calf-studio-gear/calf.git;
else
SRC_URI=https://github.com/calf-studio-gear/calf/archive/${PV}.tar.gz 
- ${P}.tar.gz
KEYWORDS=~amd64 ~x86
fi

LICENSE=LGPL-2.1
SLOT=0
IUSE=lash lv2 static-libs

RDEPEND=dev-libs/atk
dev-libs/expat
dev-libs/glib:2
gnome-base/libglade:2.0
media-sound/fluidsynth
media-sound/jack-audio-connection-kit
x11-libs/cairo
x11-libs/gdk-pixbuf
x11-libs/gtk+:2
x11-libs/pango
lash? ( media-sound/lash )
lv2? ( media-libs/lv2 )
DEPEND=${RDEPEND}
virtual/pkgconfig

src_configure() {
myeconfargs=(
--with-lv2-dir=/usr/$(get_libdir)/lv2
$(use_with lash)
$(use_with lv2)
)
autotools-utils_src_configure
}



1.1  media-plugins/calf/Manifest

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/calf/Manifest?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/calf/Manifest?rev=1.1content-type=text/plain

Index: Manifest
===
DIST calf-0.0.60.tar.gz 5594386 SHA256 
5ca8d3c8fbdca52304cbd01d80eebc0e2adf6bc6404a05a5fc58a0f5512c8100 SHA512 
85a814b1210765bd16a60a4921c4518b1721c6b72aa9c902d1c0f8e4dcad285de2b52e3c2783bc221b575c61de9c859f40d589cf8a68efc260f393a864dfc360
 WHIRLPOOL 

[gentoo-commits] gentoo-x86 commit in net-ftp/proftpd/files: proftpd-1.3.4e-link-tests.patch proftpd-1.3.5-netaddr-segv.patch proftpd-1.3.4d-sftp-kbdint-max-responses-bug3973.patch proftpd-1.3.4d-mems

2015-07-25 Thread Sergei Trofimovich (slyfox)
slyfox  15/07/25 08:46:47

  Removed:  proftpd-1.3.4e-link-tests.patch
proftpd-1.3.5-netaddr-segv.patch
proftpd-1.3.4d-sftp-kbdint-max-responses-bug3973.patch
proftpd-1.3.4d-memset-fix.patch
  Log:
  Clean old vulnerabe versions (bug #546644).
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
611FF3AA)



[gentoo-commits] dev/yngwin:master commit in: media-plugins/calf/, media-plugins/ams-lv2/

2015-07-25 Thread Ben de Groot
commit: 347178841dbaf0fecceeced61c3486a6e08373f3
Author: Ben de Groot yngwin AT gentoo DOT org
AuthorDate: Sat Jul 25 09:05:02 2015 +
Commit: Ben de Groot yngwin AT gentoo DOT org
CommitDate: Sat Jul 25 09:05:02 2015 +
URL:https://gitweb.gentoo.org/dev/yngwin.git/commit/?id=34717884

media-plugins moved to gentoo main repo

 media-plugins/ams-lv2/Manifest |  1 -
 media-plugins/ams-lv2/ams-lv2-1.1.0.ebuild | 30 -
 media-plugins/ams-lv2/metadata.xml |  5 
 media-plugins/calf/Manifest|  1 -
 media-plugins/calf/calf-0.0.60.ebuild  | 42 --
 media-plugins/calf/calf-.ebuild| 42 --
 media-plugins/calf/metadata.xml|  8 --
 7 files changed, 129 deletions(-)

diff --git a/media-plugins/ams-lv2/Manifest b/media-plugins/ams-lv2/Manifest
deleted file mode 100644
index aa8c407..000
--- a/media-plugins/ams-lv2/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ams-lv2-1.1.0.tar.gz 217762 SHA256 
a5b9320a3034b5bc9c26c0c1df972ea15f5a07cf0ea857d8113affc1f2a10bcf SHA512 
4a994d21b9078ec84cbccc99d028a75a175bfc7a6648a7daf645da7877e2fda6a3ec31b351a01fa2ddf8f6a815f79e1dc1f9bf74ea8c5b82931076ceb645bf54
 WHIRLPOOL 
864b228f0888153f4db88f014cdaa667cfd22c5b54d6945445526bb4786d9580e03dafb285da4405d9f13b6f0d98c3044484aab900fe4c1a01d7f8a5975353b9

diff --git a/media-plugins/ams-lv2/ams-lv2-1.1.0.ebuild 
b/media-plugins/ams-lv2/ams-lv2-1.1.0.ebuild
deleted file mode 100644
index 2ad6954..000
--- a/media-plugins/ams-lv2/ams-lv2-1.1.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE=threads(+)
-inherit waf-utils python-any-r1
-
-DESCRIPTION=A port of the AMS internal modules to LV2 plugins to create 
modular synthesizers
-HOMEPAGE=http://objectivewave.wordpress.com/ams-lv2/;
-SRC_URI=https://github.com/blablack/${PN}/archive/v${PV}.tar.gz - 
${P}.tar.gz
-
-LICENSE=GPL-2
-SLOT=0
-KEYWORDS=~amd64 ~x86
-IUSE=
-
-RDEPEND==dev-cpp/gtkmm-2.24.0:2.4
-   =media-libs/lv2-1.10.0
-   =media-libs/lvtk-1.2.0[gtk2]
-   =media-sound/jack-audio-connection-kit-0.120
-   =sci-libs/fftw-3.3.3:3.0
-   =x11-libs/cairo-1.10.0
-   =x11-libs/gtk+-2.24:2
-DEPEND=${RDEPEND}
-   ${PYTHON_DEPS}
-   virtual/pkgconfig
-
-DOCS=( LICENSE README.md THANKS )

diff --git a/media-plugins/ams-lv2/metadata.xml 
b/media-plugins/ams-lv2/metadata.xml
deleted file mode 100644
index af0275e..000
--- a/media-plugins/ams-lv2/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-?xml version=1.0 encoding=UTF-8?
-!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
-pkgmetadata
-  herdproaudio/herd
-/pkgmetadata

diff --git a/media-plugins/calf/Manifest b/media-plugins/calf/Manifest
deleted file mode 100644
index 65b6ac7..000
--- a/media-plugins/calf/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST calf-0.0.60.tar.gz 5594386 SHA256 
5ca8d3c8fbdca52304cbd01d80eebc0e2adf6bc6404a05a5fc58a0f5512c8100 SHA512 
85a814b1210765bd16a60a4921c4518b1721c6b72aa9c902d1c0f8e4dcad285de2b52e3c2783bc221b575c61de9c859f40d589cf8a68efc260f393a864dfc360
 WHIRLPOOL 
4cf931e1f6bddf4b4b53cd2d18f61c400fdf8c2137507f3623414bdd39980502163eb4cebcac953d9ab38e5571cbaf9de54e6c7cb25bfb61e59e2d0efbc5b692

diff --git a/media-plugins/calf/calf-0.0.60.ebuild 
b/media-plugins/calf/calf-0.0.60.ebuild
deleted file mode 100644
index a234f3e..000
--- a/media-plugins/calf/calf-0.0.60.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-AUTOTOOLS_AUTORECONF=yes
-inherit autotools-utils
-
-DESCRIPTION=A set of open source instruments and effects for digital audio 
workstations
-HOMEPAGE=http://calf-studio-gear.org/;
-
-if [[ ${PV} =  ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI=https://github.com/calf-studio-gear/calf.git;
-else
-   SRC_URI=https://github.com/calf-studio-gear/calf/archive/${PV}.tar.gz 
- ${P}.tar.gz
-   KEYWORDS=~amd64 ~x86
-fi
-
-LICENSE=LGPL-2.1
-SLOT=0
-IUSE=lash lv2 static-libs
-
-RDEPEND=dev-libs/expat
-   dev-libs/glib:2
-   gnome-base/libglade:2.0
-   media-sound/fluidsynth
-   media-sound/jack-audio-connection-kit
-   x11-libs/gtk+:2
-   lash? ( media-sound/lash )
-   lv2? ( media-libs/lv2 )
-DEPEND=${RDEPEND}
-   virtual/pkgconfig
-
-src_configure() {
-   myeconfargs=(
-   --with-lv2-dir=/usr/$(get_libdir)/lv2
-   $(use_with lash)
-   $(use_with lv2)
-   )
-   autotools-utils_src_configure
-}

diff --git a/media-plugins/calf/calf-.ebuild 
b/media-plugins/calf/calf-.ebuild
deleted file mode 100644
index a234f3e..000
--- a/media-plugins/calf/calf-.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# 

[gentoo-commits] gentoo-x86 commit in www-client/chromium: metadata.xml ChangeLog chromium-45.0.2454.15.ebuild chromium-44.0.2403.81.ebuild chromium-43.0.2357.130.ebuild

2015-07-25 Thread PaweA Hajdan (phajdan.jr)
phajdan.jr15/07/25 09:25:50

  Modified: metadata.xml ChangeLog
  Added:chromium-45.0.2454.15.ebuild
  Removed:  chromium-44.0.2403.81.ebuild
chromium-43.0.2357.130.ebuild
  Log:
  Dev channel bump. Remove old.
  
  (Portage version: 2.2.14/cvs/Linux i686, signed Manifest commit with key 
0x4F1A2555EA71991D!)

Revision  ChangesPath
1.33 www-client/chromium/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/metadata.xml?rev=1.33view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/metadata.xml?rev=1.33content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/metadata.xml?r1=1.32r2=1.33

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/www-client/chromium/metadata.xml,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- metadata.xml21 Jun 2015 20:07:47 -  1.32
+++ metadata.xml25 Jul 2015 09:25:50 -  1.33
@@ -9,6 +9,5 @@
flag name=picDisable optimized assembly code that is not 
PIC friendly/flag
flag name=proprietary-codecsEnable proprietary codecs like 
H.264, MP3/flag
flag name=tcmallocUse bundled tcmalloc instead of system 
malloc/flag
-   flag name=widevineSupport the Widevine DRM module from 
www-plugins/chrome-binary-plugins/flag
/use
 /pkgmetadata



1.1271   www-client/chromium/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/ChangeLog?rev=1.1271view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/ChangeLog?rev=1.1271content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/ChangeLog?r1=1.1270r2=1.1271

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-client/chromium/ChangeLog,v
retrieving revision 1.1270
retrieving revision 1.1271
diff -u -r1.1270 -r1.1271
--- ChangeLog   23 Jul 2015 05:33:36 -  1.1270
+++ ChangeLog   25 Jul 2015 09:25:50 -  1.1271
@@ -1,6 +1,13 @@
 # ChangeLog for www-client/chromium
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/chromium/ChangeLog,v 1.1270 
2015/07/23 05:33:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/chromium/ChangeLog,v 1.1271 
2015/07/25 09:25:50 phajdan.jr Exp $
+
+*chromium-45.0.2454.15 (25 Jul 2015)
+
+  25 Jul 2015; Pawel Hajdan jr phajdan...@gentoo.org
+  -chromium-43.0.2357.130.ebuild, -chromium-44.0.2403.81.ebuild,
+  +chromium-45.0.2454.15.ebuild, metadata.xml:
+  Dev channel bump. Remove old.
 
   23 Jul 2015; Agostino Sarubbo a...@gentoo.org chromium-44.0.2403.89.ebuild:
   Stable for x86, wrt bug #555640



1.1  www-client/chromium/chromium-45.0.2454.15.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/chromium-45.0.2454.15.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/chromium-45.0.2454.15.ebuild?rev=1.1content-type=text/plain

Index: chromium-45.0.2454.15.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/www-client/chromium/chromium-45.0.2454.15.ebuild,v 1.1 
2015/07/25 09:25:50 phajdan.jr Exp $

EAPI=5
PYTHON_COMPAT=( python2_7 )

CHROMIUM_LANGS=am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he
hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl 
sr
sv sw ta te th tr uk vi zh_CN zh_TW

inherit check-reqs chromium eutils flag-o-matic multilib multiprocessing 
pax-utils \
portability python-any-r1 readme.gentoo toolchain-funcs versionator 
virtualx

DESCRIPTION=Open-source version of Google Chrome web browser
HOMEPAGE=http://chromium.org/;
SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/${P}-lite.tar.xz;

LICENSE=BSD hotwording? ( no-source-code )
SLOT=0
KEYWORDS=~amd64 ~arm ~x86
IUSE=cups gnome gnome-keyring hidpi hotwording kerberos neon pic 
+proprietary-codecs pulseaudio selinux +tcmalloc
RESTRICT=proprietary-codecs? ( bindist )

# Native Client binaries are compiled with different set of flags, bug #452066.
QA_FLAGS_IGNORED=.*\.nexe

# Native Client binaries may be stripped by the build system, which uses the
# right tools for it, bug #469144 .
QA_PRESTRIPPED=.*\.nexe

RDEPEND==app-accessibility/speech-dispatcher-0.8:=
app-arch/bzip2:=
app-arch/snappy:=
cups? ( =net-print/cups-1.3.11:= )
=dev-libs/elfutils-0.149
dev-libs/expat:=
dev-libs/glib:=

[gentoo-commits] gentoo-x86 commit in media-sound/sidplayfp: sidplayfp-1.4.0.ebuild ChangeLog

2015-07-25 Thread Ben de Groot (yngwin)
yngwin  15/07/25 13:42:24

  Modified: ChangeLog
  Added:sidplayfp-1.4.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x4FDF9CFD2FAC514E!)

Revision  ChangesPath
1.8  media-sound/sidplayfp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/sidplayfp/ChangeLog?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/sidplayfp/ChangeLog?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/sidplayfp/ChangeLog?r1=1.7r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-sound/sidplayfp/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   1 Oct 2013 15:14:47 -   1.7
+++ ChangeLog   25 Jul 2015 13:42:24 -  1.8
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/sidplayfp
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/sidplayfp/ChangeLog,v 1.7 
2013/10/01 15:14:47 ssuominen Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/sidplayfp/ChangeLog,v 1.8 
2015/07/25 13:42:24 yngwin Exp $
+
+*sidplayfp-1.4.0 (25 Jul 2015)
+
+  25 Jul 2015; Ben de Groot yng...@gentoo.org +sidplayfp-1.4.0.ebuild:
+  version bump
 
 *sidplayfp-1.1.0 (01 Oct 2013)
 



1.1  media-sound/sidplayfp/sidplayfp-1.4.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/sidplayfp/sidplayfp-1.4.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/sidplayfp/sidplayfp-1.4.0.ebuild?rev=1.1content-type=text/plain

Index: sidplayfp-1.4.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-sound/sidplayfp/sidplayfp-1.4.0.ebuild,v 1.1 
2015/07/25 13:42:24 yngwin Exp $

EAPI=5
inherit eutils versionator

DESCRIPTION=A sidplay2 fork with resid-fp
HOMEPAGE=http://sourceforge.net/projects/sidplay-residfp/;
SRC_URI=mirror://sourceforge/sidplay-residfp/${PN}/$(get_version_component_range
 1-2)/${P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=+alsa oss pulseaudio

RDEPEND==media-libs/libsidplayfp-1.8.0
alsa? ( media-libs/alsa-lib )
pulseaudio? ( media-sound/pulseaudio )
DEPEND=${RDEPEND}
virtual/pkgconfig
oss? ( virtual/os-headers )

DOCS=( AUTHORS README TODO )

src_prepare() {
use alsa || { sed -i -e 's:alsa = 1.0:dIsAbLe:' configure || die; }
use pulseaudio || { sed -i -e 's:libpulse-simple = 1.0:dIsAbLe:' 
configure || die; }
}

src_configure() {
export ac_cv_header_linux_soundcard_h=$(usex oss)
econf
}






[gentoo-commits] gentoo-x86 commit in media-libs/libsidplayfp: libsidplayfp-1.8.0.ebuild ChangeLog

2015-07-25 Thread Ben de Groot (yngwin)
yngwin  15/07/25 13:41:47

  Modified: ChangeLog
  Added:libsidplayfp-1.8.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x4FDF9CFD2FAC514E!)

Revision  ChangesPath
1.13 media-libs/libsidplayfp/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsidplayfp/ChangeLog?rev=1.13view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsidplayfp/ChangeLog?rev=1.13content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsidplayfp/ChangeLog?r1=1.12r2=1.13

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsidplayfp/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   29 Jan 2015 17:42:48 -  1.12
+++ ChangeLog   25 Jul 2015 13:41:47 -  1.13
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/libsidplayfp
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsidplayfp/ChangeLog,v 1.12 
2015/01/29 17:42:48 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsidplayfp/ChangeLog,v 1.13 
2015/07/25 13:41:47 yngwin Exp $
+
+*libsidplayfp-1.8.0 (25 Jul 2015)
+
+  25 Jul 2015; Ben de Groot yng...@gentoo.org +libsidplayfp-1.8.0.ebuild:
+  version bump
 
   29 Jan 2015; Michał Górny mgo...@gentoo.org libsidplayfp-1.1.0.ebuild:
   Switch to CPU_FLAGS_X86.



1.1  media-libs/libsidplayfp/libsidplayfp-1.8.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsidplayfp/libsidplayfp-1.8.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsidplayfp/libsidplayfp-1.8.0.ebuild?rev=1.1content-type=text/plain

Index: libsidplayfp-1.8.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/media-libs/libsidplayfp/libsidplayfp-1.8.0.ebuild,v 1.1 
2015/07/25 13:41:47 yngwin Exp $

EAPI=5
inherit eutils versionator

DESCRIPTION=A library for the sidplay2 fork with resid-fp
HOMEPAGE=http://sourceforge.net/projects/sidplay-residfp/;
SRC_URI=mirror://sourceforge/sidplay-residfp/${PN}/$(get_version_component_range
 1-2)/${P}.tar.gz

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~hppa ~x86
IUSE=cpu_flags_x86_mmx static-libs

DOCS=( AUTHORS NEWS README TODO )

src_prepare() {
# fix automagic. warning: modifying .ac triggers maintainer mode.
sed -i -e 's:doxygen:dIsAbLe:' configure || die
}

src_configure() {
econf \
$(use_enable static-libs static) \
$(use_enable cpu_flags_x86_mmx mmx)
}

src_install() {
default
prune_libtool_files
}






[gentoo-commits] gentoo-x86 commit in sys-devel/llvm: llvm-3.6.2.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 13:53:53

  Modified: ChangeLog
  Added:llvm-3.6.2.ebuild
  Log:
  Version bump with bug fixes. Bug #36.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.257sys-devel/llvm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?rev=1.257view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?rev=1.257content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?r1=1.256r2=1.257

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v
retrieving revision 1.256
retrieving revision 1.257
diff -u -r1.256 -r1.257
--- ChangeLog   19 Jul 2015 17:29:33 -  1.256
+++ ChangeLog   25 Jul 2015 13:53:53 -  1.257
@@ -1,6 +1,11 @@
 # ChangeLog for sys-devel/llvm
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.256 2015/07/19 
17:29:33 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.257 2015/07/25 
13:53:53 mgorny Exp $
+
+*llvm-3.6.2 (25 Jul 2015)
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org +llvm-3.6.2.ebuild:
+  Version bump with bug fixes. Bug #36.
 
   19 Jul 2015; Michał Górny mgo...@gentoo.org llvm-.ebuild:
   Remove no longer needed gcc-4.9 patch. Update clang vesion number.



1.1  sys-devel/llvm/llvm-3.6.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-3.6.2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-3.6.2.ebuild?rev=1.1content-type=text/plain

Index: llvm-3.6.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-3.6.2.ebuild,v 1.1 
2015/07/25 13:53:53 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 pypy )

inherit eutils flag-o-matic multibuild multilib \
multilib-minimal python-r1 toolchain-funcs pax-utils check-reqs prefix

DESCRIPTION=Low Level Virtual Machine
HOMEPAGE=http://llvm.org/;
SRC_URI=http://llvm.org/releases/${PV}/${P}.src.tar.xz
clang? ( http://llvm.org/releases/${PV}/compiler-rt-${PV}.src.tar.xz
http://llvm.org/releases/${PV}/cfe-${PV}.src.tar.xz

http://llvm.org/releases/${PV}/clang-tools-extra-${PV}.src.tar.xz )
!doc? ( 
http://dev.gentoo.org/~voyageur/distfiles/${PN}-3.6.1-manpages.tar.bz2 )

LICENSE=UoI-NCSA
SLOT=0/3.6
KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd 
~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos
IUSE=clang debug doc gold libedit +libffi multitarget ncurses ocaml python
+static-analyzer test xml video_cards_radeon
kernel_Darwin kernel_FreeBSD

COMMON_DEPEND=
sys-libs/zlib:0=
clang? (
python? ( ${PYTHON_DEPS} )
static-analyzer? (
dev-lang/perl:*
${PYTHON_DEPS}
)
xml? ( dev-libs/libxml2:2= )
)
gold? ( =sys-devel/binutils-2.22:*[cxx] )
libedit? ( dev-libs/libedit:0=[${MULTILIB_USEDEP}] )
libffi? ( =virtual/libffi-3.0.13-r1:0=[${MULTILIB_USEDEP}] )
ncurses? ( =sys-libs/ncurses-5.9-r3:5=[${MULTILIB_USEDEP}] )
ocaml? ( dev-lang/ocaml:0= )
# configparser-3.2 breaks the build (3.3 or none at all are fine)
DEPEND=${COMMON_DEPEND}
app-arch/xz-utils
dev-lang/perl
=sys-devel/make-3.81
=sys-devel/flex-2.5.4
=sys-devel/bison-1.875d
|| ( =sys-devel/gcc-3.0 =sys-devel/llvm-3.5
( =sys-freebsd/freebsd-lib-9.1-r10 sys-libs/libcxx )
)
|| ( =sys-devel/binutils-2.18 =sys-devel/binutils-apple-5.1 )
kernel_Darwin? ( sys-libs/libcxx )
clang? ( xml? ( virtual/pkgconfig ) )
doc? ( dev-python/sphinx )
libffi? ( virtual/pkgconfig )
!!dev-python/configparser-3.3.0.2
${PYTHON_DEPS}
RDEPEND=${COMMON_DEPEND}
clang? ( !=sys-devel/clang-${PV}-r99
!=sys-devel/clang- )
abi_x86_32? ( !=app-emulation/emul-linux-x86-baselibs-20130224-r2
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )
PDEPEND=clang? ( =sys-devel/clang-${PV}-r100 )

# pypy gives me around 1700 unresolved tests due to open file limit
# being exceeded. probably GC does not close them fast enough.
REQUIRED_USE=${PYTHON_REQUIRED_USE}
test? ( || ( $(python_gen_useflags 'python*') ) )

S=${WORKDIR}/${P/_}.src

# Some people actually override that in make.conf. That sucks since
# we 

[gentoo-commits] gentoo-x86 commit in dev-libs/libgit2: libgit2-0.23.0.ebuild ChangeLog

2015-07-25 Thread Manuel Rueger (mrueg)
mrueg   15/07/25 14:11:34

  Modified: ChangeLog
  Added:libgit2-0.23.0.ebuild
  Log:
  Version bump. Fixes bug #555366.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.34 dev-libs/libgit2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgit2/ChangeLog?rev=1.34view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgit2/ChangeLog?rev=1.34content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgit2/ChangeLog?r1=1.33r2=1.34

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libgit2/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog   3 Jul 2015 03:36:09 -   1.33
+++ ChangeLog   25 Jul 2015 14:11:33 -  1.34
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/libgit2
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgit2/ChangeLog,v 1.33 
2015/07/03 03:36:09 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgit2/ChangeLog,v 1.34 
2015/07/25 14:11:33 mrueg Exp $
+
+*libgit2-0.23.0 (25 Jul 2015)
+
+  25 Jul 2015; Manuel Rüger mr...@gentoo.org +libgit2-0.23.0.ebuild:
+  Version bump. Fixes bug #555366.
 
 *libgit2-0.22.3 (03 Jul 2015)
 



1.1  dev-libs/libgit2/libgit2-0.23.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgit2/libgit2-0.23.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgit2/libgit2-0.23.0.ebuild?rev=1.1content-type=text/plain

Index: libgit2-0.23.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgit2/libgit2-0.23.0.ebuild,v 1.1 
2015/07/25 14:11:33 mrueg Exp $

EAPI=5

inherit cmake-utils multilib

if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI=https://github.com/${PN}/${PN}.git;
inherit git-r3
else
SRC_URI=https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz - 
${P}.tar.gz
KEYWORDS=~amd64 ~x86 ~ppc-macos
fi

DESCRIPTION=A linkable library for Git
HOMEPAGE=http://libgit2.github.com/;

LICENSE=GPL-2-with-linking-exception
SLOT=0/23
IUSE=examples gssapi ssh test threads trace

RDEPEND=
dev-libs/openssl:0
sys-libs/zlib
net-libs/http-parser
gssapi? ( virtual/krb5 )
ssh? ( net-libs/libssh2 )

DEPEND=${RDEPEND}
virtual/pkgconfig


DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md )

src_prepare() {
# skip online tests
sed -i '/libgit2_clar/s/-ionline/-xonline/' CMakeLists.txt || die

cmake-utils_src_prepare
}

src_configure() {
local mycmakeargs=(
-DLIB_INSTALL_DIR=${EPREFIX}/usr/$(get_libdir)
$(cmake-utils_use_build test CLAR)
$(cmake-utils_use_enable trace TRACE)
$(cmake-utils_use_use gssapi GSSAPI)
$(cmake-utils_use_use ssh SSH)
$(cmake-utils_use threads THREADSAFE)
)
cmake-utils_src_configure
}

src_test() {
if [[ ${EUID} -eq 0 ]] ; then
# repo::iterator::fs_preserves_error fails if run as root
# since root can still access dirs with  perms
ewarn Skipping tests: non-root privileges are required for all 
tests to pass
else
local TEST_VERBOSE=1
cmake-utils_src_test
fi
}

src_install() {
cmake-utils_src_install

if use examples ; then
find examples -name .gitignore -delete || die
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}






[gentoo-commits] gentoo-x86 commit in dev-ruby/sinatra: ChangeLog sinatra-1.4.5.ebuild

2015-07-25 Thread Manuel Rueger (mrueg)
mrueg   15/07/25 15:24:06

  Modified: ChangeLog
  Removed:  sinatra-1.4.5.ebuild
  Log:
  Remove old.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )

Revision  ChangesPath
1.55 dev-ruby/sinatra/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sinatra/ChangeLog?rev=1.55view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sinatra/ChangeLog?rev=1.55content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sinatra/ChangeLog?r1=1.54r2=1.55

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/sinatra/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog   8 Jul 2015 06:53:04 -   1.54
+++ ChangeLog   25 Jul 2015 15:24:06 -  1.55
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/sinatra
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sinatra/ChangeLog,v 1.54 
2015/07/08 06:53:04 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sinatra/ChangeLog,v 1.55 
2015/07/25 15:24:06 mrueg Exp $
+
+  25 Jul 2015; Manuel Rüger mr...@gentoo.org -sinatra-1.4.5.ebuild:
+  Remove old.
 
   08 Jul 2015; Hans de Graaff gra...@gentoo.org sinatra-1.4.6.ebuild:
   Make slot dependencies explicit.






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

2015-07-25 Thread Michael Palimaka
commit: 882640c070903ba5389cec1ef08738b0cf96b1c8
Author: Andreas Sturmlechner andreas.sturmlechner AT gmail DOT com
AuthorDate: Sat Jul 25 12:58:59 2015 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Sat Jul 25 15:51:05 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=882640c0

[profiles] Mask unreleased dependencies

 profiles/package.use.mask | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/profiles/package.use.mask b/profiles/package.use.mask
index e00cf30..5b27f0b 100644
--- a/profiles/package.use.mask
+++ b/profiles/package.use.mask
@@ -4,3 +4,6 @@
 =kde-base/marble-4.12.49. python
 =kde-apps/marble-14.11.97 python
 
+# Unreleased dependencies
+=kde-apps/dolphin-15.08* thumbnail
+=kde-apps/gwenview-15.08* kipi raw



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

2015-07-25 Thread Michael Palimaka
commit: 86191949c3f84b8f54d7b5b50fa2e681a4b4faac
Author: Andreas Sturmlechner andreas.sturmlechner AT gmail DOT com
AuthorDate: Fri Jul 24 22:24:37 2015 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Sat Jul 25 15:51:05 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=86191949

[eclass] Actually pull from stable branch

 eclass/kde5.eclass | 4 
 1 file changed, 4 insertions(+)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 43fb4b1..1e39060 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -306,6 +306,10 @@ _calculate_live_repo() {
_kmname=${PN}
fi
 
+   if [[ ${PV} !=   ${CATEGORY} = kde-apps ]]; then
+   
EGIT_BRANCH=Applications/$(get_version_component_range 1-2)
+   fi
+
if [[ ${PV} !=   ${CATEGORY} = kde-plasma ]]; then

EGIT_BRANCH=Plasma/$(get_version_component_range 1-2)
fi



[gentoo-commits] gentoo-x86 commit in dev-util/kdevelop-pg-qt: kdevelop-pg-qt-1.0.0-r2.ebuild kdevelop-pg-qt-1.1.0.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:00:41

  Modified: kdevelop-pg-qt-1.0.0-r2.ebuild ChangeLog
  Added:kdevelop-pg-qt-1.1.0.ebuild
  Log:
  Move to slot :4 and version bump. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/169 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.4  dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild?r1=1.3r2=1.4

Index: kdevelop-pg-qt-1.0.0-r2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kdevelop-pg-qt-1.0.0-r2.ebuild  26 Jan 2015 10:01:26 -  1.3
+++ kdevelop-pg-qt-1.0.0-r2.ebuild  25 Jul 2015 16:00:41 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild,v
 1.3 2015/01/26 10:01:26 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.0.0-r2.ebuild,v
 1.4 2015/07/25 16:00:41 mgorny Exp $
 
 EAPI=5
 
@@ -16,7 +16,7 @@
 DESCRIPTION=A LL(1) parser generator used mainly by KDevelop language plugins
 HOMEPAGE=http://www.kdevelop.org;
 LICENSE=LGPL-2
-SLOT=0
+SLOT=4
 IUSE=debug
 
 RDEPEND=



1.17 dev-util/kdevelop-pg-qt/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog?rev=1.17view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog?rev=1.17content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog?r1=1.16r2=1.17

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog   26 Jan 2015 11:06:01 -  1.16
+++ ChangeLog   25 Jul 2015 16:00:41 -  1.17
@@ -1,6 +1,13 @@
 # ChangeLog for dev-util/kdevelop-pg-qt
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog,v 1.16 
2015/01/26 11:06:01 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/ChangeLog,v 1.17 
2015/07/25 16:00:41 mgorny Exp $
+
+*kdevelop-pg-qt-1.1.0 (25 Jul 2015)
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org +kdevelop-pg-qt-1.1.0.ebuild,
+  kdevelop-pg-qt-1.0.0-r2.ebuild:
+  Move to slot :4 and version bump. https://github.com/gentoo/gentoo-portage-
+  rsync-mirror/pull/169 by a17r.
 
   26 Jan 2015; Manuel Rüger mr...@gentoo.org -kdevelop-pg-qt-1.0.0-r1.ebuild:
   Remove old.



1.1  dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild?rev=1.1content-type=text/plain

Index: kdevelop-pg-qt-1.1.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-1.1.0.ebuild,v 
1.1 2015/07/25 16:00:41 mgorny Exp $

EAPI=5

KDEBASE=kdevelop
inherit kde4-base

if [[ $PV == ** ]]; then
KEYWORDS=
else
SRC_URI=http://quickgit.kde.org/?p=${PN}.gita=snapshoth=${PV%%.0} - 
${P}.tar.gz
KEYWORDS=~amd64 ~x86
fi

DESCRIPTION=A LL(1) parser generator used mainly by KDevelop language plugins
LICENSE=LGPL-2
IUSE=debug

DEPEND=
sys-devel/bison
sys-devel/flex

RDEPEND=dev-util/kdevelop:4






[gentoo-commits] gentoo-x86 commit in dev-util/kdevelop-php: kdevelop-php-1.7.1.ebuild kdevelop-php-1.6.0.ebuild kdevelop-php-1.5.2.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:07:44

  Modified: kdevelop-php-1.7.1.ebuild kdevelop-php-1.6.0.ebuild
kdevelop-php-1.5.2.ebuild ChangeLog
  Log:
  Pin dependencies to dev-util/kdevelop-pg-qt:4. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/171 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild?r1=1.1r2=1.2

Index: kdevelop-php-1.7.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kdevelop-php-1.7.1.ebuild   10 Feb 2015 21:46:16 -  1.1
+++ kdevelop-php-1.7.1.ebuild   25 Jul 2015 16:07:44 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild,v 1.1 
2015/02/10 21:46:16 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.7.1.ebuild,v 1.2 
2015/07/25 16:07:44 mgorny Exp $
 
 EAPI=5
 
@@ -24,8 +24,7 @@
 RESTRICT=test
 
 DEPEND=
-   =dev-util/kdevelop-pg-qt-1.0.0
-   =dev-util/kdevelop-pg-qt-5
+   =dev-util/kdevelop-pg-qt-1.0.0:4
 
 RDEPEND=
dev-util/kdevelop:${SLOT}



1.2  dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild?r1=1.1r2=1.2

Index: kdevelop-php-1.6.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kdevelop-php-1.6.0.ebuild   12 Mar 2014 12:12:48 -  1.1
+++ kdevelop-php-1.6.0.ebuild   25 Jul 2015 16:07:44 -  1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild,v 1.1 
2014/03/12 12:12:48 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.6.0.ebuild,v 1.2 
2015/07/25 16:07:44 mgorny Exp $
 
 EAPI=5
 
@@ -24,10 +24,10 @@
 fi
 
 DEPEND=
-   =dev-util/kdevelop-pg-qt-1.0.0
+   =dev-util/kdevelop-pg-qt-1.0.0:4
 
 RDEPEND=
-   dev-util/kdevelop
+   dev-util/kdevelop:${SLOT}
doc? ( =dev-util/kdevelop-php-docs-${PV}:${SLOT} )
 
 PATCHES=( ${FILESDIR}/${PN}-1.2.0-parmake.patch )



1.4  dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild?r1=1.3r2=1.4

Index: kdevelop-php-1.5.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kdevelop-php-1.5.2.ebuild   26 Jan 2014 11:38:54 -  1.3
+++ kdevelop-php-1.5.2.ebuild   25 Jul 2015 16:07:44 -  1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild,v 1.3 
2014/01/26 11:38:54 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-php/kdevelop-php-1.5.2.ebuild,v 1.4 
2015/07/25 16:07:44 mgorny Exp $
 
 EAPI=5
 
@@ -24,10 +24,10 @@
 fi
 
 DEPEND=
-   =dev-util/kdevelop-pg-qt-1.0.0
+   =dev-util/kdevelop-pg-qt-1.0.0:4
 
 RDEPEND=
-   dev-util/kdevelop
+   dev-util/kdevelop:${SLOT}
doc? ( =dev-util/kdevelop-php-docs-${PV}:${SLOT} )
 
 PATCHES=( ${FILESDIR}/${PN}-1.2.0-parmake.patch )



1.51 

[gentoo-commits] gentoo-x86 commit in net-firewall/shorewall: shorewall-4.6.11.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:21:10

  Modified: ChangeLog
  Added:shorewall-4.6.11.ebuild
  Log:
  Version bump. https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/177 
by Whissi.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.290net-firewall/shorewall/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/ChangeLog?rev=1.290view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/ChangeLog?rev=1.290content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/ChangeLog?r1=1.289r2=1.290

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v
retrieving revision 1.289
retrieving revision 1.290
diff -u -r1.289 -r1.290
--- ChangeLog   23 Jul 2015 20:58:46 -  1.289
+++ ChangeLog   25 Jul 2015 16:21:10 -  1.290
@@ -1,6 +1,12 @@
 # ChangeLog for net-firewall/shorewall
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.289 
2015/07/23 20:58:46 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.290 
2015/07/25 16:21:10 mgorny Exp $
+
+*shorewall-4.6.11 (25 Jul 2015)
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org +shorewall-4.6.11.ebuild:
+  Version bump. https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/177
+  by Whissi.
 
   23 Jul 2015; Pacho Ramos pa...@gentoo.org shorewall-4.6.10.1.ebuild:
   ppc stable wrt bug #555188



1.1  net-firewall/shorewall/shorewall-4.6.11.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/shorewall-4.6.11.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-firewall/shorewall/shorewall-4.6.11.ebuild?rev=1.1content-type=text/plain

Index: shorewall-4.6.11.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-4.6.11.ebuild,v 1.1 
2015/07/25 16:21:10 mgorny Exp $

EAPI=5

inherit eutils linux-info prefix systemd versionator

DESCRIPTION='The Shoreline Firewall, commonly known as Shorewall, is'
DESCRIPTION+=' a high-level tool for configuring Netfilter'
HOMEPAGE=http://www.shorewall.net/;
LICENSE=GPL-2
SLOT=0
IUSE=doc +init +ipv4 ipv6 lite4 lite6

MY_PV=${PV/_rc/-RC}
MY_PV=${MY_PV/_beta/-Beta}
MY_P=${PN}-${MY_PV}

MY_MAJOR_RELEASE_NUMBER=$(get_version_component_range 1-2)
MY_MAJORMINOR_RELEASE_NUMBER=$(get_version_component_range 1-3)

# shorewall
MY_PN_IPV4=Shorewall
MY_P_IPV4=${MY_PN_IPV4/#S/s}-${MY_PV}

# shorewall6
MY_PN_IPV6=Shorewall6
MY_P_IPV6=${MY_PN_IPV6/#S/s}-${MY_PV}

# shorewall-lite
MY_PN_LITE4=Shorewall-lite
MY_P_LITE4=${MY_PN_LITE4/#S/s}-${MY_PV}

# shorewall6-lite
MY_PN_LITE6=Shorewall6-lite
MY_P_LITE6=${MY_PN_LITE6/#S/s}-${MY_PV}

# shorewall-init
MY_PN_INIT=Shorewall-init
MY_P_INIT=${MY_PN_INIT/#S/s}-${MY_PV}

# shorewall-core
MY_PN_CORE=Shorewall-core
MY_P_CORE=${MY_PN_CORE/#S/s}-${MY_PV}

# shorewall-docs-html
MY_PN_DOCS=Shorewall-docs-html
MY_P_DOCS=${MY_PN_DOCS/#S/s}-${MY_PV}

# Upstream URL schema:
# Beta:
$MIRROR/pub/shorewall/development/4.6/shorewall-4.6.4-Beta2/shorewall-4.6.4-Beta2.tar.bz2
# RC:  
$MIRROR/pub/shorewall/development/4.6/shorewall-4.6.4-RC1/shorewall-4.6.4-RC1.tar.bz2
# Release: $MIRROR/pub/shorewall/4.6/shorewall-4.6.3/shorewall-4.6.3.3.tar.bz2

MY_URL_PREFIX=
MY_URL_SUFFIX=
if [[ ${MY_PV} = *-Beta* ]] || [[ ${MY_PV} = *-RC* ]]; then
MY_URL_PREFIX='development/'

_tmp_last_index=$(($(get_last_version_component_index ${MY_PV})+1))
_tmp_suffix=$(get_version_component_range ${_tmp_last_index} ${MY_PV})
if [[ ${_tmp_suffix} = *Beta* ]] || [[ ${_tmp_suffix} = *RC* ]]; then
MY_URL_SUFFIX=-${_tmp_suffix}
fi

# Cleaning up temporary variables
unset _tmp_last_index
unset _tmp_suffix
else
KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86
fi

SRC_URI=

http://www.shorewall.net/pub/shorewall/${MY_URL_PREFIX}${MY_MAJOR_RELEASE_NUMBER}/shorewall-${MY_MAJORMINOR_RELEASE_NUMBER}${MY_URL_SUFFIX}/shorewall-core-${MY_PV}.tar.bz2
ipv4? ( 
http://www.shorewall.net/pub/shorewall/${MY_URL_PREFIX}${MY_MAJOR_RELEASE_NUMBER}/shorewall-${MY_MAJORMINOR_RELEASE_NUMBER}${MY_URL_SUFFIX}/shorewall-${MY_PV}.tar.bz2
 )
ipv6? ( 
http://www.shorewall.net/pub/shorewall/${MY_URL_PREFIX}${MY_MAJOR_RELEASE_NUMBER}/shorewall-${MY_MAJORMINOR_RELEASE_NUMBER}${MY_URL_SUFFIX}/shorewall6-${MY_PV}.tar.bz2
 )
lite4? ( 

[gentoo-commits] gentoo-x86 commit in www-apps/wordpress: ChangeLog wordpress-4.1.ebuild wordpress-4.2.2.ebuild wordpress-4.1.2-r2.ebuild wordpress-4.2.ebuild wordpress-4.2.1.ebuild wordpress-4.1.1.eb

2015-07-25 Thread Sebastian Pipping (sping)
sping   15/07/25 16:32:22

  Modified: ChangeLog
  Removed:  wordpress-4.1.ebuild wordpress-4.2.2.ebuild
wordpress-4.1.2-r2.ebuild wordpress-4.2.ebuild
wordpress-4.2.1.ebuild wordpress-4.1.1.ebuild
wordpress-3.9.3.ebuild wordpress-3.8.5.ebuild
wordpress-4.0.1.ebuild
  Log:
  www-apps/wordpress: Remove vulnerable releases (bug #548828)
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x401A1600)

Revision  ChangesPath
1.177www-apps/wordpress/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/wordpress/ChangeLog?rev=1.177view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/wordpress/ChangeLog?rev=1.177content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/wordpress/ChangeLog?r1=1.176r2=1.177

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/www-apps/wordpress/ChangeLog,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- ChangeLog   25 Jul 2015 02:33:22 -  1.176
+++ ChangeLog   25 Jul 2015 16:32:22 -  1.177
@@ -1,6 +1,12 @@
 # ChangeLog for www-apps/wordpress
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/wordpress/ChangeLog,v 1.176 
2015/07/25 02:33:22 jmbsvicetto Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/wordpress/ChangeLog,v 1.177 
2015/07/25 16:32:22 sping Exp $
+
+  25 Jul 2015; Sebastian Pipping sp...@gentoo.org -wordpress-3.8.5.ebuild,
+  -wordpress-3.9.3.ebuild, -wordpress-4.0.1.ebuild, -wordpress-4.1.ebuild,
+  -wordpress-4.1.1.ebuild, -wordpress-4.1.2-r2.ebuild, -wordpress-4.2.ebuild,
+  -wordpress-4.2.1.ebuild, -wordpress-4.2.2.ebuild:
+  Remove vulnerable releases (bug #548828 but not only)
 
 *wordpress-4.2.3 (25 Jul 2015)
 






[gentoo-commits] proj/lisp:master commit in: dev-lisp/split-sequence/

2015-07-25 Thread José María Alonso
commit: d26fc02c7863acd8f432ad77aed82d4196794145
Author: Chema Alonso Josa nimiux AT gentoo DOT org
AuthorDate: Sat Jul 25 16:35:56 2015 +
Commit: José María Alonso nimiux AT gentoo DOT org
CommitDate: Sat Jul 25 16:35:56 2015 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=d26fc02c

dev-lisp/split-sequence: bump to version 1.2

 dev-lisp/split-sequence/split-sequence-1.2.ebuild | 27 +++
 1 file changed, 27 insertions(+)

diff --git a/dev-lisp/split-sequence/split-sequence-1.2.ebuild 
b/dev-lisp/split-sequence/split-sequence-1.2.ebuild
new file mode 100644
index 000..a699498
--- /dev/null
+++ b/dev-lisp/split-sequence/split-sequence-1.2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit common-lisp-3
+
+MY_PV=v${PV}
+
+DESCRIPTION=Functions to partition a Common Lisp sequence into multiple 
result sequences
+HOMEPAGE=http://www.cliki.net/SPLIT-SEQUENCE;
+SRC_URI=https://github.com/sharplispers/${PN}/archive/${MY_PV}.tar.gz - 
${P}.tar.gz
+
+LICENSE=public-domain
+SLOT=0
+KEYWORDS=~amd64 ~ppc ~sparc ~x86
+IUSE=
+
+RDEPEND=!dev-lisp/cl-${PN}
+   dev-lisp/fiveam
+
+src_install() {
+   common-lisp-install-sources -t all *.lisp version.lisp-expr
+   common-lisp-install-asdf
+   dodoc README.md
+}



[gentoo-commits] proj/gentoo-keys:master commit in: gkeys/gkeys/

2015-07-25 Thread Brian Dolbec
commit: afee05b427446ffdc12b3d138a1f1d712a757b2d
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Sat Mar 21 19:56:49 2015 +
Commit: Brian Dolbec dolsen AT gentoo DOT org
CommitDate: Sat Jul 25 16:43:21 2015 +
URL:https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=afee05b4

gkeys/gkeysinterface.py: Initial commit of an api consumer interface

First use was for creating a gpg signed Manifest verification in portage.
Use snakeoil's demandload for imports

 gkeys/gkeys/gkeysinterface.py | 120 ++
 1 file changed, 120 insertions(+)

diff --git a/gkeys/gkeys/gkeysinterface.py b/gkeys/gkeys/gkeysinterface.py
new file mode 100644
index 000..8618268
--- /dev/null
+++ b/gkeys/gkeys/gkeysinterface.py
@@ -0,0 +1,120 @@
+'''Gkeys comsumer app API interface'''
+
+
+import os
+
+from snakeoil.demandload import demandload
+
+from gkeys.config import GKeysConfig
+from gkeys.gkey import GKEY
+
+demandload(
+gkeys:log,
+gkeys.lib:GkeysGPG,
+gkeys.seedhandler:SeedHandler,
+)
+
+
+class GkeysInterface(object):
+'''High level class to hold and operate our gkeys GkeysGPG instance'''
+
+def __init__(self, namespace, root='/', config=None,
+logger=None, loglevel='DEBUG'):
+'''GkeysInterface init
+
+@param namespace: string of the logging namespace setting to use
+@param root: string of the root path to initialize with, default is '/'
+@param logger: optional logging instance, if undefiined, it
+will use it's gkeys logger.
+@param loglevel: string one of {'CRITICAL', 'DEBUG', 'ERROR', 'FATAL',
+'INFO', 'NOTSET', 'WARN', 'WARNING'}
+'''
+self.root = root
+self.namespace = namespace
+self.config = config or GKeysConfig(root=root, read_configfile=True)
+self.logger = logger or log.logger or log.set_logger(
+namespace=namespace,
+logpath=self.config.get_key('logdir'),
+level=loglevel)
+self.gpg = None
+self.handler = None
+
+
+def keyid_search(self, keyid):
+'''Searches for a keyid in the installed keyrings
+
+@param keyid: string of the longkeyid to search for
+@returns dictionary of  {category: [GKEY, ...]}
+'''
+results = {}
+for cat in list(self.config.get_key('seeds')):
+self.handler.load_category(cat)
+found = self.handler.key_search({'keyid': keyid,}, ['keyid'])
+if found:
+if cat in results:
+results[cat].extend(found)
+else:
+results[cat] = found
+return results
+
+
+def verify_file(self, filepath, category='gentoo', nick='snapshot',
+strict=False):
+'''One stop action to verify a file.
+
+If the first gpg verification fails, it will auto-search
+for the correct key to validate against.
+@param filepath: path of the file to verify
+@param category: string, optional keyring category, default is 'gentoo'
+@param nick: string, optional keyring nick, default is 'snapshot'
+@param strict: boolean toggles off the auto-search if the category/nick
+supplied fail
+@return (bool, bool)  (verification pass/fail, file had a signature)
+'''
+if not self.handler:
+self.handler = SeedHandler(self.logger, self.config)
+keys = self.handler.load_category(category)
+if not keys:
+self.logger.warn('No installed keys found, try installing keys.')
+return False
+key = self.handler.seeds.nick_search(nick)
+if not key:
+self.logger.debug(Failed to find.: %s in category: %s
+% (category, nick))
+category = self.config.get_key('verify-keyring')
+nick = self.config.get_key('verify-nick')
+self.logger.debug(Using config defaults..: %s %s
+% (category, nick))
+return self.verify_file(filepath, category, nick)
+
+keyrings = self.config.get_key('keyring')
+catdir = os.path.join(keyrings, category)
+self.logger.debug(ACTIONS: verify; catdir = %s % catdir)
+self.gpg = GkeysGPG(self.config, catdir, self.logger)
+results = self.gpg.verify_file(key, None, filepath)
+
+(valid, trust) = results.verified
+if valid:
+return True, True
+self.logger.debug(Verification failed: %s % (filepath))
+self.logger.debug(Key info...: %s %s, %s
+% ( key.name, key.nick, key.keyid))
+has_no_pubkey, s_keyid = results.no_pubkey
+if has_no_pubkey and s_keyid and not strict:
+self.logger.debug(Auto-searching for key.: 0x%s % s_keyid)
+elif not s_keyid or strict:
+return False, has_no_pubkey
+keys = 

[gentoo-commits] proj/gentoo-keys:master commit in: gkeys/gkeys/

2015-07-25 Thread Brian Dolbec
commit: 734aed55964979017863639edfc9ca9036a629c0
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Mon Mar 23 15:40:21 2015 +
Commit: Brian Dolbec dolsen AT gentoo DOT org
CommitDate: Sat Jul 25 16:43:13 2015 +
URL:https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=734aed55

gkeys/base.py: Add an alternate args class for compatibility use for Action as 
an API

Rough draft, so it can be used for the args arguments in Actions functions.
An alternate to having an argsparser innstance.

 gkeys/gkeys/base.py | 27 +++
 1 file changed, 27 insertions(+)

diff --git a/gkeys/gkeys/base.py b/gkeys/gkeys/base.py
index fba1976..b422caf 100644
--- a/gkeys/gkeys/base.py
+++ b/gkeys/gkeys/base.py
@@ -26,6 +26,33 @@ if sys.version_info[0] = 3:
 unicode = str
 
 
+class Args(object):
+'''Basic argsparser replacement for using gkeys Actions via an API
+
+Holds the full spectrum of possible options supported.
+Not all options used by all actions.'''
+
+
+def __init__(self):
+self.status = False
+self.all = False
+self.category = None
+self.cleankey = False
+self.destination = None
+self.exact = False
+self.filename = None
+self.fingerprint = None
+self.keyid = None
+self.keyring = None
+self.keys = None
+self.nick = None
+self.name = None
+self.keydir = None
+self.seedfile = None
+self.signature = None
+self.uid = None
+
+
 class CliBase(object):
 '''Common cli and argsparse options class'''
 



[gentoo-commits] proj/gentoo-keys:master commit in: gkeys/gkeys/

2015-07-25 Thread Brian Dolbec
commit: 7c2b40ebb75a5b7d86fa8f2657e673ac8e0285b5
Author: Brian Dolbec dolsen AT gentoo DOT org
AuthorDate: Wed Mar 18 20:49:54 2015 +
Commit: Brian Dolbec dolsen AT gentoo DOT org
CommitDate: Sat Jul 25 16:43:05 2015 +
URL:https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=7c2b40eb

gkeys: Re-enable remove-key action

 gkeys/gkeys/action_map.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gkeys/gkeys/action_map.py b/gkeys/gkeys/action_map.py
index 3b1b9d0..d7eac63 100644
--- a/gkeys/gkeys/action_map.py
+++ b/gkeys/gkeys/action_map.py
@@ -18,7 +18,7 @@ Seed_Actions = ['seeds', 'add-seed', 'fetch-seed',
 'list-seed', 'list-seedfiles', 'remove-seed']
 
 Key_Actions = ['keys-', 'check-key', 'installed',
-'install-key', 'list-key', 'refresh-key',
+'install-key', 'list-key', 'refresh-key', 'remove-key',
 'search-key', 'spec-check']
 
 General_Actions = ['---general---', 'list-cats', 'sign','verify']



[gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: core/etc/portage/

2015-07-25 Thread Anthony G. Basile
commit: 226b9c2124ab6bc6be45b2e70323aa70ed005a62
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Sat Jul 25 17:33:14 2015 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Sat Jul 25 17:33:14 2015 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=226b9c21

python3_4 is now default.

 core/etc/portage/make.conf.CYCLE.2 | 1 -
 core/etc/portage/make.conf.CYCLE.3 | 1 -
 2 files changed, 2 deletions(-)

diff --git a/core/etc/portage/make.conf.CYCLE.2 
b/core/etc/portage/make.conf.CYCLE.2
index 3502b08..981a8b2 100644
--- a/core/etc/portage/make.conf.CYCLE.2
+++ b/core/etc/portage/make.conf.CYCLE.2
@@ -3,7 +3,6 @@ CXXFLAGS=${CFLAGS}
 CHOST=x86_64-gentoo-linux-musl
 MAKEOPTS=-j17
 PAX_MARKINGS=XT
-PYTHON_TARGETS=python2_7 python3_4
 
 LINGUAS=ach af af_ZA ak am an ar ar_JO ar_SA ar_SY as as_IN ast az be 
be@latin be_BY bg bg_BG bn bn_BD bn_IN bo bo_CN br brx bs byn ca ca@valencia 
ca_ES ca_XV cmn crh cs cs_CZ csb cy cy_GB da da_DK de de_1901 de_CH de_DE de_FR 
dgo doi dz ee el el_GR en en@shaw en_AU en_CA en_EN en_GB en_US en_ZA eo eo_UY 
es es_419 es_AR es_CL es_CO es_CR es_DO es_ES es_LA es_MX es_UY es_VE et et_EE 
eu eu_ES fa fa_IR fi fi_FI fil fo fr fr_CA fr_FR fy fy_NL ga ga_IE gd gez gl 
gl_ES gu gu_IN haw he he_IL hi hi_IN hne hr hr_HR hsb ht hu hu_HU hy hy_AM ia 
id id_ID is is_IS it it_IT ja ja_JP jv ka ka_GE kk kk_KZ km kn kn_IN ko ko_KR 
kok ks ksw ku ky ky_KG la lb lg li lo lt lt_LT lv lv_LV mai me mg mi mk ml 
ml_IN mn mni mr mr_IN ms ms_MY mt my my_MM nan nb nb_NO nds ne nl nl_BE nl_NL 
nn nn_NO no nqo nr ns nso oc om or or_IN pa pa_IN pam pap pl pl_PL ps pt pt_BR 
pt_PT rm ro ro_RO ru ru_RU ru_RU_0 rue rw sa sa_IN sah sat sco sd se sh sh_YU 
shn si si_LK sk sk_SK sl sl_SI so son sq sq_AL sr sr@Latn sr@ijekavi
 an sr@ijekavianlatin sr@latin sr_BA sr_BA@latin sr_CS sr_RS sr_RS@cyrillic 
sr_RS@latin ss st sv sv_SE sw sw_TZ syc ta ta_IN ta_LK te te_IN tg tg_TJ th 
th_TH ti ti_ER tig tk tl tlh tn tpi tr tr_TR ts tt tt@iqtelif tt_RU ug uk uk_UA 
ur ur_IN ur_PK uz uz@Cyrl uz@Latn uz@cyrillic uz_UZ ve vi vi_VN wa wal wo xh yi 
zh zh_CN zh_HK zh_TW zu
 

diff --git a/core/etc/portage/make.conf.CYCLE.3 
b/core/etc/portage/make.conf.CYCLE.3
index 074d110..88eb937 100644
--- a/core/etc/portage/make.conf.CYCLE.3
+++ b/core/etc/portage/make.conf.CYCLE.3
@@ -3,7 +3,6 @@ CXXFLAGS=${CFLAGS}
 CHOST=x86_64-gentoo-linux-musl
 MAKEOPTS=-j17
 PAX_MARKINGS=XT
-PYTHON_TARGETS=python2_7 python3_4
 
 LINGUAS=ach af af_ZA ak am an ar ar_JO ar_SA ar_SY as as_IN ast az be 
be@latin be_BY bg bg_BG bn bn_BD bn_IN bo bo_CN br brx bs byn ca ca@valencia 
ca_ES ca_XV cmn crh cs cs_CZ csb cy cy_GB da da_DK de de_1901 de_CH de_DE de_FR 
dgo doi dz ee el el_GR en en@shaw en_AU en_CA en_EN en_GB en_US en_ZA eo eo_UY 
es es_419 es_AR es_CL es_CO es_CR es_DO es_ES es_LA es_MX es_UY es_VE et et_EE 
eu eu_ES fa fa_IR fi fi_FI fil fo fr fr_CA fr_FR fy fy_NL ga ga_IE gd gez gl 
gl_ES gu gu_IN haw he he_IL hi hi_IN hne hr hr_HR hsb ht hu hu_HU hy hy_AM ia 
id id_ID is is_IS it it_IT ja ja_JP jv ka ka_GE kk kk_KZ km kn kn_IN ko ko_KR 
kok ks ksw ku ky ky_KG la lb lg li lo lt lt_LT lv lv_LV mai me mg mi mk ml 
ml_IN mn mni mr mr_IN ms ms_MY mt my my_MM nan nb nb_NO nds ne nl nl_BE nl_NL 
nn nn_NO no nqo nr ns nso oc om or or_IN pa pa_IN pam pap pl pl_PL ps pt pt_BR 
pt_PT rm ro ro_RO ru ru_RU ru_RU_0 rue rw sa sa_IN sah sat sco sd se sh sh_YU 
shn si si_LK sk sk_SK sl sl_SI so son sq sq_AL sr sr@Latn sr@ijekavi
 an sr@ijekavianlatin sr@latin sr_BA sr_BA@latin sr_CS sr_RS sr_RS@cyrillic 
sr_RS@latin ss st sv sv_SE sw sw_TZ syc ta ta_IN ta_LK te te_IN tg tg_TJ th 
th_TH ti ti_ER tig tk tl tlh tn tpi tr tr_TR ts tt tt@iqtelif tt_RU ug uk uk_UA 
ur ur_IN ur_PK uz uz@Cyrl uz@Latn uz@cyrillic uz_UZ ve vi vi_VN wa wal wo xh yi 
zh zh_CN zh_HK zh_TW zu
 



[gentoo-commits] gentoo-x86 commit in sys-devel/clang: clang-3.6.2-r100.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 13:54:01

  Modified: ChangeLog
  Added:clang-3.6.2-r100.ebuild
  Log:
  Version bump to match sys-devel/llvm. Bug #36.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.125sys-devel/clang/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?rev=1.125view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?rev=1.125content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?r1=1.124r2=1.125

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -r1.124 -r1.125
--- ChangeLog   27 May 2015 12:02:40 -  1.124
+++ ChangeLog   25 Jul 2015 13:54:01 -  1.125
@@ -1,6 +1,11 @@
 # ChangeLog for sys-devel/clang
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v 1.124 
2015/05/27 12:02:40 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v 1.125 
2015/07/25 13:54:01 mgorny Exp $
+
+*clang-3.6.2-r100 (25 Jul 2015)
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org +clang-3.6.2-r100.ebuild:
+  Version bump to match sys-devel/llvm. Bug #36.
 
 *clang-3.6.1-r100 (27 May 2015)
 



1.1  sys-devel/clang/clang-3.6.2-r100.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.6.2-r100.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.6.2-r100.ebuild?rev=1.1content-type=text/plain

Index: clang-3.6.2-r100.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-3.6.2-r100.ebuild,v 
1.1 2015/07/25 13:54:01 mgorny Exp $

EAPI=5

inherit multilib-build

DESCRIPTION=C language family frontend for LLVM (meta-ebuild)
HOMEPAGE=http://clang.llvm.org/;
SRC_URI=

LICENSE=UoI-NCSA
SLOT=0/3.6
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos
IUSE=debug multitarget python +static-analyzer

RDEPEND=~sys-devel/llvm-${PV}[clang(-),debug=,multitarget?,python?,static-analyzer,${MULTILIB_USEDEP}]

# Please keep this package around since it's quite likely that we'll
# return to separate LLVM  clang ebuilds when the cmake build system
# is complete.

pkg_postinst() {
if has_version =dev-util/ccache-3.1.9-r2 ; then
#add ccache links as clang might get installed after ccache
${EROOT}/usr/bin/ccache-config --install-links
fi
}

pkg_postrm() {
if has_version =dev-util/ccache-3.1.9-r2  [[ -z 
${REPLACED_BY_VERSION} ]]; then
# --remove-links would remove all links, --install-links 
updates them
${EROOT}/usr/bin/ccache-config --install-links
fi
}






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

2015-07-25 Thread Anthony G. Basile
commit: 4042dbd16a841211c454b10d89fcf56ad315261e
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Sat Jul 25 15:34:39 2015 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Sat Jul 25 15:34:39 2015 +
URL:https://gitweb.gentoo.org/proj/grss.git/commit/?id=4042dbd1

grsup: improve usage() for kernel.

 grsup | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/grsup b/grsup
index 816e982..2e726f0 100755
--- a/grsup
+++ b/grsup
@@ -98,7 +98,7 @@ def usage(rc=1):
 usage: grsup [pkg(s)]   : update @world or pkg(s) if given
grsup [-r|-d] pkg(s) : re-install or delete pkg(s)
grsup -D : download all @world pkgs, don't install
-   grsup -k kernel  : install 'kernel' version, or 'latest'
+   grsup -k version   : install kernel version or 'latest'
grsup -h : print this help
 
 print(usage)



[gentoo-commits] gentoo-x86 commit in dev-python/unittest2: unittest2-1.1.0.ebuild ChangeLog

2015-07-25 Thread Alex Brandt (alunduil)
alunduil15/07/25 16:04:23

  Modified: unittest2-1.1.0.ebuild ChangeLog
  Log:
  1.1.0: add dev-python/linecache2 dependence
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
11A8217C!)

Revision  ChangesPath
1.2  dev-python/unittest2/unittest2-1.1.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/unittest2-1.1.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/unittest2-1.1.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/unittest2-1.1.0.ebuild?r1=1.1r2=1.2

Index: unittest2-1.1.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/unittest2/unittest2-1.1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- unittest2-1.1.0.ebuild  19 Jul 2015 23:50:45 -  1.1
+++ unittest2-1.1.0.ebuild  25 Jul 2015 16:04:23 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/unittest2/unittest2-1.1.0.ebuild,v 1.1 
2015/07/19 23:50:45 alunduil Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/unittest2/unittest2-1.1.0.ebuild,v 1.2 
2015/07/25 16:04:23 alunduil Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
@@ -18,6 +18,7 @@
 
 CDEPEND=
dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/linecache2[${PYTHON_USEDEP}]
=dev-python/six-1.4[${PYTHON_USEDEP}]
dev-python/traceback2[${PYTHON_USEDEP}]
 



1.64 dev-python/unittest2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/ChangeLog?rev=1.64view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/ChangeLog?rev=1.64content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/ChangeLog?r1=1.63r2=1.64

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/unittest2/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog   19 Jul 2015 23:50:45 -  1.63
+++ ChangeLog   25 Jul 2015 16:04:23 -  1.64
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/unittest2
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/unittest2/ChangeLog,v 1.63 
2015/07/19 23:50:45 alunduil Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/unittest2/ChangeLog,v 1.64 
2015/07/25 16:04:23 alunduil Exp $
+
+  25 Jul 2015; Alex Brandt alund...@gentoo.org unittest2-1.1.0.ebuild:
+  1.1.0: add dev-python/linecache2 dependence
 
 *unittest2-1.1.0 (19 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in profiles: package.mask ChangeLog

2015-07-25 Thread Sebastian Pipping (sping)
sping   15/07/25 16:34:21

  Modified: package.mask ChangeLog
  Log:
  Remove www-apps/wordpress removal mask, ebuilds removed

Revision  ChangesPath
1.16682  profiles/package.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16682view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16682content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?r1=1.16681r2=1.16682

Index: package.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v
retrieving revision 1.16681
retrieving revision 1.16682
diff -u -r1.16681 -r1.16682
--- package.mask23 Jul 2015 17:36:30 -  1.16681
+++ package.mask25 Jul 2015 16:34:20 -  1.16682
@@ -1,5 +1,5 @@
 
-# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16681 2015/07/23 
17:36:30 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16682 2015/07/25 
16:34:20 sping Exp $
 #
 # When you add an entry to the top of this file, add your name, the date, and
 # an explanation of why something is getting masked. Please be extremely
@@ -198,11 +198,6 @@
 # 547586, and 547962.
 =sys-devel/gcc-config-1.8-r1
 
-# Sebastian Pipping sp...@gentoo.org (28 Apr 2015)
-# Get rid of vulnerable releases.
-# Masked for removal in 30 days.
-www-apps/wordpress-4.2.1
-
 # Patrick Lauer patr...@gentoo.org (10 Apr 2015)
 # Breaks pretty much all consumers, like samba
 # Mask until it's more usable



1.10204  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10204view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10204content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10203r2=1.10204

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10203
retrieving revision 1.10204
diff -u -r1.10203 -r1.10204
--- ChangeLog   25 Jul 2015 16:05:59 -  1.10203
+++ ChangeLog   25 Jul 2015 16:34:20 -  1.10204
@@ -1,11 +1,14 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10203 2015/07/25 
16:05:59 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10204 2015/07/25 
16:34:20 sping Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  25 Jul 2015; Sebastian Pipping sp...@gentoo.org package.mask:
+  Remove www-apps/wordpress removal mask, ebuilds removed
+
   25 Jul 2015; Michał Górny mgo...@gentoo.org updates/3Q-2015:
   Slotmove for dev-util/kdevelop-qmake.
   https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/170 by a17r.






[gentoo-commits] proj/lua:master commit in: dev-lua/raven/, dev-lua/captcha/, dev-lua/lunit/

2015-07-25 Thread Vadim A. Misbakh-Soloviov
commit: f9f8331a52bd995c328ae61935fe10d7c3b64fc9
Author: Vadim A. Misbakh-Soloviov git AT mva DOT name
AuthorDate: Sat Jul 25 14:14:30 2015 +
Commit: Vadim A. Misbakh-Soloviov mva AT mva DOT name
CommitDate: Sat Jul 25 14:14:30 2015 +
URL:https://gitweb.gentoo.org/proj/lua.git/commit/?id=f9f8331a

dev-lua/{captcha,lunit,raven}: Added

Signed-off-by: Vadim A. Misbakh-Soloviov git AT mva.name

 dev-lua/captcha/captcha-.ebuild | 46 +++
 dev-lua/captcha/metadata.xml| 14 ++
 dev-lua/lunit/lunit-.ebuild | 55 +
 dev-lua/lunit/metadata.xml  | 14 ++
 dev-lua/raven/metadata.xml  | 14 ++
 dev-lua/raven/raven-.ebuild | 41 +++
 6 files changed, 184 insertions(+)

diff --git a/dev-lua/captcha/captcha-.ebuild 
b/dev-lua/captcha/captcha-.ebuild
new file mode 100644
index 000..2e93aa4
--- /dev/null
+++ b/dev-lua/captcha/captcha-.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: This ebuild is from Lua overlay; Bumped by mva; $
+
+EAPI=5
+
+inherit eutils toolchain-funcs git-r3
+
+DESCRIPTION=A small lua module to generate CAPTCHA images using lua-gd
+HOMEPAGE=https://github.com/mrDoctorWho/lua-${PN};
+SRC_URI=
+
+EGIT_REPO_URI=https://github.com/mrDoctorWho/lua-${PN};
+
+LICENSE=MIT
+SLOT=0
+KEYWORDS=
+IUSE=jpeg luajit png +samples
+
+RDEPEND=
+   virtual/lua[luajit=]
+   dev-lua/lua-gd[luajit=]
+   media-libs/gd[jpeg=,truetype,png=]
+
+
+REQUIRED_USE=|| ( jpeg png )
+
+DEPEND=
+   ${RDEPEND}
+   virtual/pkgconfig
+
+
+src_compile() { :; }
+
+src_install() {
+   local lua=lua;
+   use luajit  lua=luajit;
+
+   insinto $($(tc-getPKG_CONFIG) --variable INSTALL_LMOD ${lua})
+   doins -r src/*
+
+   if use samples; then
+   docompress -x /usr/share/doc/${PF}/examples
+   dodoc -r examples
+   fi
+}

diff --git a/dev-lua/captcha/metadata.xml b/dev-lua/captcha/metadata.xml
new file mode 100644
index 000..23da526
--- /dev/null
+++ b/dev-lua/captcha/metadata.xml
@@ -0,0 +1,14 @@
+?xml version=1.0 encoding=UTF-8?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+maintainer
+ emailm...@mva.name/email
+ description
+   If you have any issues, please contact me, or try to find me in IRC on 
Freenode, OFTC or RusNet.
+ /description 
+ nameVadim A. Misbakh-Soloviov/name
+/maintainer
+longdescriptionFIXME/longdescription 
+use
+/use
+/pkgmetadata

diff --git a/dev-lua/lunit/lunit-.ebuild b/dev-lua/lunit/lunit-.ebuild
new file mode 100644
index 000..9a7f2fe
--- /dev/null
+++ b/dev-lua/lunit/lunit-.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: This ebuild is from Lua overlay; Bumped by mva; $
+
+EAPI=5
+
+inherit eutils toolchain-funcs git-r3
+
+DESCRIPTION=A unit testing framework for Lua
+HOMEPAGE=https://github.com/dcurrie/${PN};
+SRC_URI=
+
+EGIT_REPO_URI=https://github.com/dcurrie/${PN};
+
+LICENSE=MIT
+SLOT=0
+KEYWORDS=
+IUSE=luajit +samples
+
+RDEPEND=
+   virtual/lua[luajit=]
+
+
+DEPEND=
+   ${RDEPEND}
+   virtual/pkgconfig
+
+
+src_prepare() {
+   local lua=lua;
+   use luajit  lua=luajit;
+
+   sed -r \
+   -e s/^(interpreter)=.*/\1=${lua}/ \
+   -i extra/lunit.sh
+}
+
+src_compile() { :; }
+
+src_install() {
+   local lua=lua;
+   use luajit  lua=luajit;
+
+   insinto $($(tc-getPKG_CONFIG) --variable INSTALL_LMOD ${lua})
+   doins -r lua/*
+
+   newbin extra/${PN}.sh ${PN}
+
+   if use samples; then
+   docompress -x /usr/share/doc/${PF}/examples
+   dodoc -r examples
+   fi
+
+   dodoc DOCUMENTATION
+}

diff --git a/dev-lua/lunit/metadata.xml b/dev-lua/lunit/metadata.xml
new file mode 100644
index 000..23da526
--- /dev/null
+++ b/dev-lua/lunit/metadata.xml
@@ -0,0 +1,14 @@
+?xml version=1.0 encoding=UTF-8?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+maintainer
+ emailm...@mva.name/email
+ description
+   If you have any issues, please contact me, or try to find me in IRC on 
Freenode, OFTC or RusNet.
+ /description 
+ nameVadim A. Misbakh-Soloviov/name
+/maintainer
+longdescriptionFIXME/longdescription 
+use
+/use
+/pkgmetadata

diff --git a/dev-lua/raven/metadata.xml b/dev-lua/raven/metadata.xml
new file mode 100644
index 000..23da526
--- /dev/null
+++ b/dev-lua/raven/metadata.xml
@@ -0,0 +1,14 @@
+?xml version=1.0 encoding=UTF-8?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+maintainer
+ emailm...@mva.name/email
+ description
+   If you have any issues, please contact me, or try to find me in IRC on 
Freenode, OFTC or 

[gentoo-commits] proj/lua:master commit in: dev-lang/lua/files/

2015-07-25 Thread Vadim A. Misbakh-Soloviov
commit: eb18129dd809e898815e08b951b55e6b7b2938fa
Author: Vadim A. Misbakh-Soloviov git AT mva DOT name
AuthorDate: Sat Jul 25 14:13:48 2015 +
Commit: Vadim A. Misbakh-Soloviov mva AT mva DOT name
CommitDate: Sat Jul 25 14:13:48 2015 +
URL:https://gitweb.gentoo.org/proj/lua.git/commit/?id=eb18129d

dev-lang/lua: fixed pkgconfig

Signed-off-by: Vadim A. Misbakh-Soloviov git AT mva.name

 dev-lang/lua/files/lua.pc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/lua/files/lua.pc b/dev-lang/lua/files/lua.pc
index 8df8b07..bd488b4 100644
--- a/dev-lang/lua/files/lua.pc
+++ b/dev-lang/lua/files/lua.pc
@@ -10,7 +10,7 @@ R= 5.3.0
 # grep '^INSTALL_.*=' ../Makefile | sed 's/INSTALL_TOP/prefix/'
 prefix= /usr
 INSTALL_BIN= ${prefix}/bin
-INSTALL_INC= ${prefix}/include
+INSTALL_INC= ${prefix}/include/lua${V}
 INSTALL_LIB= ${prefix}/,lib,
 INSTALL_MAN= ${prefix}/man/man1
 INSTALL_LMOD= ${prefix}/share/lua/${V}
@@ -19,7 +19,7 @@ INSTALL_CMOD= ${prefix}/,lib,/lua/${V}
 # canonical vars
 exec_prefix=${prefix}
 libdir=${exec_prefix}/,lib,
-includedir=${prefix}/include
+includedir=${INSTALL_INC}
 
 Name: Lua
 Description: An Extensible Extension Language



[gentoo-commits] proj/gentoo-news:master commit in: 2015/2015-07-25-python-targets/

2015-07-25 Thread Mike Gilbert
commit: ab69f9abb1e0433d422cf33d769836fc97a0c5bb
Author: Mike Gilbert floppym AT gentoo DOT org
AuthorDate: Sat Jul 25 15:57:15 2015 +
Commit: Mike Gilbert floppym AT gentoo DOT org
CommitDate: Sat Jul 25 15:57:15 2015 +
URL:https://gitweb.gentoo.org/proj/gentoo-news.git/commit/?id=ab69f9ab

Make a detached signature instead of an inline signature.

 .../2015-07-25-python-targets.en.txt.asc   | 35 ++
 1 file changed, 3 insertions(+), 32 deletions(-)

diff --git 
a/2015/2015-07-25-python-targets/2015-07-25-python-targets.en.txt.asc 
b/2015/2015-07-25-python-targets/2015-07-25-python-targets.en.txt.asc
index d000f5c..ea7e36f 100644
--- a/2015/2015-07-25-python-targets/2015-07-25-python-targets.en.txt.asc
+++ b/2015/2015-07-25-python-targets/2015-07-25-python-targets.en.txt.asc
@@ -1,36 +1,7 @@
--BEGIN PGP SIGNED MESSAGE-
-Hash: SHA256
-
-Title: Python 3.4 enabled by default
-Author: Mike Gilbert flop...@gentoo.org
-Content-Type: text/plain
-Posted: 2015-07-25
-Revision: 1
-News-Item-Format: 1.0
-
-Python 3.4 is now enabled by default, replacing Python 3.3 as the
-default Python 3 interpreter.
-
-PYTHON_TARGETS will be adjusted to contain python2_7 and python3_4 by
-default via your profile.
-
-PYTHON_SINGLE_TARGET will remain set to python2_7 by default.
-
-If you have PYTHON_TARGETS set in make.conf, that setting will still be
-respected. You may want to adjust this setting manually.
-
-Once the changes have taken place, a world update should take care of
-reinstalling any python libraries you have installed. You should also
-switch your default python3 interpreter using eselect python.
-
-For example:
-
-eselect python set --python3 python3.4
-emerge -uDv --changed-use @world
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2
 
-iF4EAREIAAYFAlWzrBsACgkQRxvnM+8pGj94gQEAgYkj0SKvlvh85F02PUa9Yof/
-YFlm7VTLATq6gJePrhMBAK/E+RXpaB7bFI/4jflmae+ShDz/SuuTNpGGvDBFBwi6
-=fbNv
+iF4EABEIAAYFAlWzsagACgkQRxvnM+8pGj8f6gD/REEK79IoxTdE0+GctUg17/iA
+HRkBR+nCz+VOdHd2ziMA/1mGLGFMPlH+hTuTMwDXkqNZj6ubjQCmNwFrX3cntoAH
+=eOWd
 -END PGP SIGNATURE-



[gentoo-commits] gentoo-x86 commit in profiles/updates: 3Q-2015

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:05:59

  Modified: 3Q-2015
  Log:
  Slotmove for dev-util/kdevelop-qmake. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/170 by a17r.

Revision  ChangesPath
1.4  profiles/updates/3Q-2015

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/3Q-2015?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/3Q-2015?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/3Q-2015?r1=1.3r2=1.4

Index: 3Q-2015
===
RCS file: /var/cvsroot/gentoo-x86/profiles/updates/3Q-2015,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- 3Q-2015 25 Jul 2015 16:00:54 -  1.3
+++ 3Q-2015 25 Jul 2015 16:05:59 -  1.4
@@ -1,3 +1,4 @@
 move dev-perl/inline-files dev-perl/Inline-Files
 move dev-perl/locale-maketext-lexicon dev-perl/Locale-Maketext-Lexicon
 slotmove dev-util/kdevelop-pg-qt 0 4
+slotmove dev-util/kdevelop-qmake 0 4






[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:05:59

  Modified: ChangeLog
  Log:
  Slotmove for dev-util/kdevelop-qmake. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/170 by a17r.

Revision  ChangesPath
1.10203  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10203view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10203content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10202r2=1.10203

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10202
retrieving revision 1.10203
diff -u -r1.10202 -r1.10203
--- ChangeLog   25 Jul 2015 16:00:54 -  1.10202
+++ ChangeLog   25 Jul 2015 16:05:59 -  1.10203
@@ -1,12 +1,16 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10202 2015/07/25 
16:00:54 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10203 2015/07/25 
16:05:59 mgorny Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
   25 Jul 2015; Michał Górny mgo...@gentoo.org updates/3Q-2015:
+  Slotmove for dev-util/kdevelop-qmake.
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/170 by a17r.
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org updates/3Q-2015:
   Add slotmove for dev-util/kdevelop-pg-qt.
   https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/169 by a17r.
 






[gentoo-commits] gentoo-x86 commit in dev-util/kdevelop-qmake: kdevelop-qmake-1.7.0.ebuild metadata.xml kdevelop-qmake-1.6.0.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:06:00

  Modified: metadata.xml kdevelop-qmake-1.6.0.ebuild ChangeLog
  Added:kdevelop-qmake-1.7.0.ebuild
  Log:
  Move to slot 4 and bump, bug #548532. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/170 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  dev-util/kdevelop-qmake/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/metadata.xml?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/metadata.xml?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/metadata.xml?r1=1.1r2=1.2

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml2 Jun 2014 12:50:18 -   1.1
+++ metadata.xml25 Jul 2015 16:06:00 -  1.2
@@ -2,4 +2,7 @@
 !DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
 pkgmetadata
herdkde/herd
+   use
+   flag name=toolsBuild and install the qmake-parser debugging 
tool/flag
+   /use
 /pkgmetadata



1.2  dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild?r1=1.1r2=1.2

Index: kdevelop-qmake-1.6.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kdevelop-qmake-1.6.0.ebuild 2 Jun 2014 12:50:18 -   1.1
+++ kdevelop-qmake-1.6.0.ebuild 25 Jul 2015 16:06:00 -  1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild,v 
1.1 2014/06/02 12:50:18 zx2c4 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.6.0.ebuild,v 
1.2 2015/07/25 16:06:00 mgorny Exp $
 
 EAPI=5
 
@@ -15,12 +15,15 @@
 SRC_URI=http://quickgit.kde.org/?p=${MY_PN}.gita=snapshoth=${PV%%.0} - 
${P}.tar.gz
 
 LICENSE=GPL-2
-SLOT=0
+SLOT=4
 KEYWORDS=~amd64 ~x86
 IUSE=
 
-DEPEND=dev-util/kdevelop-pg-qt
-RDEPEND=dev-util/kdevelop ${DEPEND}
+DEPEND=
+   dev-util/kdevelop:4
+   dev-util/kdevelop-pg-qt:4
+
+RDEPEND=${DEPEND}
 
 src_install() {
kde4-base_src_install



1.2  dev-util/kdevelop-qmake/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   2 Jun 2014 12:50:18 -   1.1
+++ ChangeLog   25 Jul 2015 16:06:00 -  1.2
@@ -1,6 +1,13 @@
 # ChangeLog for dev-util/kdevelop-qmake
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/ChangeLog,v 1.1 
2014/06/02 12:50:18 zx2c4 Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop-qmake/ChangeLog,v 1.2 
2015/07/25 16:06:00 mgorny Exp $
+
+*kdevelop-qmake-1.7.0 (25 Jul 2015)
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org +kdevelop-qmake-1.7.0.ebuild,
+  kdevelop-qmake-1.6.0.ebuild, metadata.xml:
+  Move to slot 4 and bump, bug #548532. https://github.com/gentoo/gentoo-
+  portage-rsync-mirror/pull/170 by a17r.
 
 *kdevelop-qmake-1.6.0 (02 Jun 2014)
 



1.1  dev-util/kdevelop-qmake/kdevelop-qmake-1.7.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.7.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-qmake/kdevelop-qmake-1.7.0.ebuild?rev=1.1content-type=text/plain

Index: kdevelop-qmake-1.7.0.ebuild
===
# Copyright 1999-2015 

[gentoo-commits] gentoo-x86 commit in dev-perl/CGI-Emulate-PSGI: CGI-Emulate-PSGI-0.210.0.ebuild ChangeLog CGI-Emulate-PSGI-0.150.0-r1.ebuild

2015-07-25 Thread Andreas Huettel (dilfridge)
dilfridge15/07/25 17:20:50

  Modified: ChangeLog
  Added:CGI-Emulate-PSGI-0.210.0.ebuild
  Removed:  CGI-Emulate-PSGI-0.150.0-r1.ebuild
  Log:
  Version bump; remove old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.8  dev-perl/CGI-Emulate-PSGI/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/CGI-Emulate-PSGI/ChangeLog?rev=1.8view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/CGI-Emulate-PSGI/ChangeLog?rev=1.8content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/CGI-Emulate-PSGI/ChangeLog?r1=1.7r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/CGI-Emulate-PSGI/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   13 Jun 2015 17:13:06 -  1.7
+++ ChangeLog   25 Jul 2015 17:20:50 -  1.8
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/CGI-Emulate-PSGI
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/CGI-Emulate-PSGI/ChangeLog,v 1.7 
2015/06/13 17:13:06 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/CGI-Emulate-PSGI/ChangeLog,v 1.8 
2015/07/25 17:20:50 dilfridge Exp $
+
+*CGI-Emulate-PSGI-0.210.0 (25 Jul 2015)
+
+  25 Jul 2015; Andreas K. Huettel dilfri...@gentoo.org
+  +CGI-Emulate-PSGI-0.210.0.ebuild, -CGI-Emulate-PSGI-0.150.0-r1.ebuild:
+  Version bump; remove old
 
   13 Jun 2015; Andreas K. Huettel dilfri...@gentoo.org
   CGI-Emulate-PSGI-0.200.0.ebuild:



1.1  dev-perl/CGI-Emulate-PSGI/CGI-Emulate-PSGI-0.210.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/CGI-Emulate-PSGI/CGI-Emulate-PSGI-0.210.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/CGI-Emulate-PSGI/CGI-Emulate-PSGI-0.210.0.ebuild?rev=1.1content-type=text/plain

Index: CGI-Emulate-PSGI-0.210.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/CGI-Emulate-PSGI/CGI-Emulate-PSGI-0.210.0.ebuild,v
 1.1 2015/07/25 17:20:50 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=MIYAGAWA
MODULE_VERSION=0.21
inherit perl-module

DESCRIPTION=PSGI adapter for CGI

SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=test

RDEPEND=
=dev-perl/CGI-3.630.0
dev-perl/HTTP-Message

DEPEND=${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
=virtual/perl-Test-Simple-0.880.0
=dev-perl/Test-Requires-0.80.0
)


SRC_TEST=do parallel






[gentoo-commits] proj/grs:desktop-amd64-hardened commit in: core/etc/portage/

2015-07-25 Thread Anthony G. Basile
commit: 8e7c1cddd0f245c972d1833d437d71825e415e52
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Sat Jul 25 17:34:34 2015 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Sat Jul 25 17:34:34 2015 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=8e7c1cdd

python3_4 is now default.

 core/etc/portage/make.conf.CYCLE.1 | 1 -
 core/etc/portage/make.conf.CYCLE.2 | 1 -
 2 files changed, 2 deletions(-)

diff --git a/core/etc/portage/make.conf.CYCLE.1 
b/core/etc/portage/make.conf.CYCLE.1
index 3cd9913..cf316a2 100644
--- a/core/etc/portage/make.conf.CYCLE.1
+++ b/core/etc/portage/make.conf.CYCLE.1
@@ -3,7 +3,6 @@ CXXFLAGS=${CFLAGS}
 CHOST=x86_64-pc-linux-gnu
 MAKEOPTS=-j17
 PAX_MARKINGS=XT
-PYTHON_TARGETS=python2_7 python3_4
 
 LINGUAS=ach af af_ZA ak am an ar ar_JO ar_SA ar_SY as as_IN ast az be 
be@latin be_BY bg bg_BG bn bn_BD bn_IN bo bo_CN br brx bs byn ca ca@valencia 
ca_ES ca_XV cmn crh cs cs_CZ csb cy cy_GB da da_DK de de_1901 de_CH de_DE de_FR 
dgo doi dz ee el el_GR en en@shaw en_AU en_CA en_EN en_GB en_US en_ZA eo eo_UY 
es es_419 es_AR es_CL es_CO es_CR es_DO es_ES es_LA es_MX es_UY es_VE et et_EE 
eu eu_ES fa fa_IR fi fi_FI fil fo fr fr_CA fr_FR fy fy_NL ga ga_IE gd gez gl 
gl_ES gu gu_IN haw he he_IL hi hi_IN hne hr hr_HR hsb ht hu hu_HU hy hy_AM ia 
id id_ID is is_IS it it_IT ja ja_JP jv ka ka_GE kk kk_KZ km kn kn_IN ko ko_KR 
kok ks ksw ku ky ky_KG la lb lg li lo lt lt_LT lv lv_LV mai me mg mi mk ml 
ml_IN mn mni mr mr_IN ms ms_MY mt my my_MM nan nb nb_NO nds ne nl nl_BE nl_NL 
nn nn_NO no nqo nr ns nso oc om or or_IN pa pa_IN pam pap pl pl_PL ps pt pt_BR 
pt_PT rm ro ro_RO ru ru_RU ru_RU_0 rue rw sa sa_IN sah sat sco sd se sh sh_YU 
shn si si_LK sk sk_SK sl sl_SI so son sq sq_AL sr sr@Latn sr@ijekavi
 an sr@ijekavianlatin sr@latin sr_BA sr_BA@latin sr_CS sr_RS sr_RS@cyrillic 
sr_RS@latin ss st sv sv_SE sw sw_TZ syc ta ta_IN ta_LK te te_IN tg tg_TJ th 
th_TH ti ti_ER tig tk tl tlh tn tpi tr tr_TR ts tt tt@iqtelif tt_RU ug uk uk_UA 
ur ur_IN ur_PK uz uz@Cyrl uz@Latn uz@cyrillic uz_UZ ve vi vi_VN wa wal wo xh yi 
zh zh_CN zh_HK zh_TW zu
 

diff --git a/core/etc/portage/make.conf.CYCLE.2 
b/core/etc/portage/make.conf.CYCLE.2
index 27c9047..3c2fd49 100644
--- a/core/etc/portage/make.conf.CYCLE.2
+++ b/core/etc/portage/make.conf.CYCLE.2
@@ -3,6 +3,5 @@ CXXFLAGS=${CFLAGS}
 CHOST=x86_64-pc-linux-gnu
 MAKEOPTS=-j17
 PAX_MARKINGS=XT
-PYTHON_TARGETS=python2_7 python3_4
 
 LINGUAS=ach af af_ZA ak am an ar ar_JO ar_SA ar_SY as as_IN ast az be 
be@latin be_BY bg bg_BG bn bn_BD bn_IN bo bo_CN br brx bs byn ca ca@valencia 
ca_ES ca_XV cmn crh cs cs_CZ csb cy cy_GB da da_DK de de_1901 de_CH de_DE de_FR 
dgo doi dz ee el el_GR en en@shaw en_AU en_CA en_EN en_GB en_US en_ZA eo eo_UY 
es es_419 es_AR es_CL es_CO es_CR es_DO es_ES es_LA es_MX es_UY es_VE et et_EE 
eu eu_ES fa fa_IR fi fi_FI fil fo fr fr_CA fr_FR fy fy_NL ga ga_IE gd gez gl 
gl_ES gu gu_IN haw he he_IL hi hi_IN hne hr hr_HR hsb ht hu hu_HU hy hy_AM ia 
id id_ID is is_IS it it_IT ja ja_JP jv ka ka_GE kk kk_KZ km kn kn_IN ko ko_KR 
kok ks ksw ku ky ky_KG la lb lg li lo lt lt_LT lv lv_LV mai me mg mi mk ml 
ml_IN mn mni mr mr_IN ms ms_MY mt my my_MM nan nb nb_NO nds ne nl nl_BE nl_NL 
nn nn_NO no nqo nr ns nso oc om or or_IN pa pa_IN pam pap pl pl_PL ps pt pt_BR 
pt_PT rm ro ro_RO ru ru_RU ru_RU_0 rue rw sa sa_IN sah sat sco sd se sh sh_YU 
shn si si_LK sk sk_SK sl sl_SI so son sq sq_AL sr sr@Latn sr@ijekavi
 an sr@ijekavianlatin sr@latin sr_BA sr_BA@latin sr_CS sr_RS sr_RS@cyrillic 
sr_RS@latin ss st sv sv_SE sw sw_TZ syc ta ta_IN ta_LK te te_IN tg tg_TJ th 
th_TH ti ti_ER tig tk tl tlh tn tpi tr tr_TR ts tt tt@iqtelif tt_RU ug uk uk_UA 
ur ur_IN ur_PK uz uz@Cyrl uz@Latn uz@cyrillic uz_UZ ve vi vi_VN wa wal wo xh yi 
zh zh_CN zh_HK zh_TW zu



[gentoo-commits] gentoo-x86 commit in dev-perl/Module-Pluggable: Module-Pluggable-5.100.0.ebuild ChangeLog

2015-07-25 Thread Andreas Huettel (dilfridge)
dilfridge15/07/25 17:33:47

  Modified: ChangeLog
  Added:Module-Pluggable-5.100.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.39 dev-perl/Module-Pluggable/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Pluggable/ChangeLog?rev=1.39view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Pluggable/ChangeLog?rev=1.39content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Pluggable/ChangeLog?r1=1.38r2=1.39

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Module-Pluggable/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog   13 Jun 2015 19:23:43 -  1.38
+++ ChangeLog   25 Jul 2015 17:33:47 -  1.39
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/Module-Pluggable
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Module-Pluggable/ChangeLog,v 1.38 
2015/06/13 19:23:43 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Module-Pluggable/ChangeLog,v 1.39 
2015/07/25 17:33:47 dilfridge Exp $
+
+*Module-Pluggable-5.100.0 (25 Jul 2015)
+
+  25 Jul 2015; Andreas K. Huettel dilfri...@gentoo.org
+  +Module-Pluggable-5.100.0.ebuild:
+  Version bump
 
   13 Jun 2015; Andreas K. Huettel dilfri...@gentoo.org
   Module-Pluggable-4.700.0.ebuild, Module-Pluggable-4.800.0.ebuild:



1.1  dev-perl/Module-Pluggable/Module-Pluggable-5.100.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Pluggable/Module-Pluggable-5.100.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Pluggable/Module-Pluggable-5.100.0.ebuild?rev=1.1content-type=text/plain

Index: Module-Pluggable-5.100.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Module-Pluggable/Module-Pluggable-5.100.0.ebuild,v
 1.1 2015/07/25 17:33:47 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=SIMONW
MODULE_VERSION=5.1
inherit perl-module

DESCRIPTION=Automatically give your module the ability to have plugins

SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~x86-solaris
IUSE=test

RDEPEND=
=virtual/perl-File-Spec-3
virtual/perl-if

DEPEND=${RDEPEND}
=dev-perl/Module-Build-0.380.0
test? ( =virtual/perl-Test-Simple-0.620.0 )


SRC_TEST=do parallel






[gentoo-commits] proj/grs:desktop-amd64-uclibc-hardened commit in: core/etc/portage/

2015-07-25 Thread Anthony G. Basile
commit: ed14f76d7254c379c52f3b65dd4119b5933d736e
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Sat Jul 25 17:34:00 2015 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Sat Jul 25 17:34:00 2015 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=ed14f76d

python3_4 is now default.

 core/etc/portage/make.conf.CYCLE.2 | 1 -
 core/etc/portage/make.conf.CYCLE.3 | 1 -
 2 files changed, 2 deletions(-)

diff --git a/core/etc/portage/make.conf.CYCLE.2 
b/core/etc/portage/make.conf.CYCLE.2
index 2706b1e..b403319 100644
--- a/core/etc/portage/make.conf.CYCLE.2
+++ b/core/etc/portage/make.conf.CYCLE.2
@@ -3,7 +3,6 @@ CXXFLAGS=${CFLAGS}
 CHOST=x86_64-gentoo-linux-uclibc
 MAKEOPTS=-j17
 PAX_MARKINGS=XT
-PYTHON_TARGETS=python2_7 python3_4
 
 LINGUAS=ach af af_ZA ak am an ar ar_JO ar_SA ar_SY as as_IN ast az be 
be@latin be_BY bg bg_BG bn bn_BD bn_IN bo bo_CN br brx bs byn ca ca@valencia 
ca_ES ca_XV cmn crh cs cs_CZ csb cy cy_GB da da_DK de de_1901 de_CH de_DE de_FR 
dgo doi dz ee el el_GR en en@shaw en_AU en_CA en_EN en_GB en_US en_ZA eo eo_UY 
es es_419 es_AR es_CL es_CO es_CR es_DO es_ES es_LA es_MX es_UY es_VE et et_EE 
eu eu_ES fa fa_IR fi fi_FI fil fo fr fr_CA fr_FR fy fy_NL ga ga_IE gd gez gl 
gl_ES gu gu_IN haw he he_IL hi hi_IN hne hr hr_HR hsb ht hu hu_HU hy hy_AM ia 
id id_ID is is_IS it it_IT ja ja_JP jv ka ka_GE kk kk_KZ km kn kn_IN ko ko_KR 
kok ks ksw ku ky ky_KG la lb lg li lo lt lt_LT lv lv_LV mai me mg mi mk ml 
ml_IN mn mni mr mr_IN ms ms_MY mt my my_MM nan nb nb_NO nds ne nl nl_BE nl_NL 
nn nn_NO no nqo nr ns nso oc om or or_IN pa pa_IN pam pap pl pl_PL ps pt pt_BR 
pt_PT rm ro ro_RO ru ru_RU ru_RU_0 rue rw sa sa_IN sah sat sco sd se sh sh_YU 
shn si si_LK sk sk_SK sl sl_SI so son sq sq_AL sr sr@Latn sr@ijekavi
 an sr@ijekavianlatin sr@latin sr_BA sr_BA@latin sr_CS sr_RS sr_RS@cyrillic 
sr_RS@latin ss st sv sv_SE sw sw_TZ syc ta ta_IN ta_LK te te_IN tg tg_TJ th 
th_TH ti ti_ER tig tk tl tlh tn tpi tr tr_TR ts tt tt@iqtelif tt_RU ug uk uk_UA 
ur ur_IN ur_PK uz uz@Cyrl uz@Latn uz@cyrillic uz_UZ ve vi vi_VN wa wal wo xh yi 
zh zh_CN zh_HK zh_TW zu
 

diff --git a/core/etc/portage/make.conf.CYCLE.3 
b/core/etc/portage/make.conf.CYCLE.3
index 844a47f..74720a7 100644
--- a/core/etc/portage/make.conf.CYCLE.3
+++ b/core/etc/portage/make.conf.CYCLE.3
@@ -3,6 +3,5 @@ CXXFLAGS=${CFLAGS}
 CHOST=x86_64-gentoo-linux-uclibc
 MAKEOPTS=-j17
 PAX_MARKINGS=XT
-PYTHON_TARGETS=python2_7 python3_4
 
 LINGUAS=ach af af_ZA ak am an ar ar_JO ar_SA ar_SY as as_IN ast az be 
be@latin be_BY bg bg_BG bn bn_BD bn_IN bo bo_CN br brx bs byn ca ca@valencia 
ca_ES ca_XV cmn crh cs cs_CZ csb cy cy_GB da da_DK de de_1901 de_CH de_DE de_FR 
dgo doi dz ee el el_GR en en@shaw en_AU en_CA en_EN en_GB en_US en_ZA eo eo_UY 
es es_419 es_AR es_CL es_CO es_CR es_DO es_ES es_LA es_MX es_UY es_VE et et_EE 
eu eu_ES fa fa_IR fi fi_FI fil fo fr fr_CA fr_FR fy fy_NL ga ga_IE gd gez gl 
gl_ES gu gu_IN haw he he_IL hi hi_IN hne hr hr_HR hsb ht hu hu_HU hy hy_AM ia 
id id_ID is is_IS it it_IT ja ja_JP jv ka ka_GE kk kk_KZ km kn kn_IN ko ko_KR 
kok ks ksw ku ky ky_KG la lb lg li lo lt lt_LT lv lv_LV mai me mg mi mk ml 
ml_IN mn mni mr mr_IN ms ms_MY mt my my_MM nan nb nb_NO nds ne nl nl_BE nl_NL 
nn nn_NO no nqo nr ns nso oc om or or_IN pa pa_IN pam pap pl pl_PL ps pt pt_BR 
pt_PT rm ro ro_RO ru ru_RU ru_RU_0 rue rw sa sa_IN sah sat sco sd se sh sh_YU 
shn si si_LK sk sk_SK sl sl_SI so son sq sq_AL sr sr@Latn sr@ijekavi
 an sr@ijekavianlatin sr@latin sr_BA sr_BA@latin sr_CS sr_RS sr_RS@cyrillic 
sr_RS@latin ss st sv sv_SE sw sw_TZ syc ta ta_IN ta_LK te te_IN tg tg_TJ th 
th_TH ti ti_ER tig tk tl tlh tn tpi tr tr_TR ts tt tt@iqtelif tt_RU ug uk uk_UA 
ur ur_IN ur_PK uz uz@Cyrl uz@Latn uz@cyrillic uz_UZ ve vi vi_VN wa wal wo xh yi 
zh zh_CN zh_HK zh_TW zu



[gentoo-commits] proj/grs:stages-amd64-hardened commit in: core/etc/portage/

2015-07-25 Thread Anthony G. Basile
commit: 92bce05d4468b9408cea4280281ceea1e85f0ae1
Author: Anthony G. Basile blueness AT gentoo DOT org
AuthorDate: Sat Jul 25 17:35:03 2015 +
Commit: Anthony G. Basile blueness AT gentoo DOT org
CommitDate: Sat Jul 25 17:35:03 2015 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=92bce05d

python3_4 is now default.

 core/etc/portage/make.conf | 1 -
 1 file changed, 1 deletion(-)

diff --git a/core/etc/portage/make.conf b/core/etc/portage/make.conf
index e25e42b..2ac9e25 100644
--- a/core/etc/portage/make.conf
+++ b/core/etc/portage/make.conf
@@ -11,4 +11,3 @@ CPU_FLAGS_X86=mmx sse sse2
 PORTDIR=/usr/portage
 DISTDIR=${PORTDIR}/distfiles
 PKGDIR=${PORTDIR}/packages
-PYTHON_TARGETS=python2_7 python3_4



[gentoo-commits] gentoo-x86 commit in app-text/ghostscript-gpl: ghostscript-gpl-9.15-r1.ebuild ChangeLog

2015-07-25 Thread Anthony G. Basile (blueness)
blueness15/07/25 17:58:59

  Modified: ghostscript-gpl-9.15-r1.ebuild ChangeLog
  Log:
  Fix parallel 'make install'. Bug #543602.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  ChangesPath
1.13 app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild?rev=1.13view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild?rev=1.13content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild?r1=1.12r2=1.13

Index: ghostscript-gpl-9.15-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ghostscript-gpl-9.15-r1.ebuild  15 Jul 2015 20:51:56 -  1.12
+++ ghostscript-gpl-9.15-r1.ebuild  25 Jul 2015 17:58:59 -  1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild,v
 1.12 2015/07/15 20:51:56 zlogene Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild,v
 1.13 2015/07/25 17:58:59 blueness Exp $
 
 EAPI=5
 
@@ -184,7 +184,7 @@
 }
 
 src_install() {
-   emake DESTDIR=${D} install-so install
+   emake -j1 DESTDIR=${D} install-so install
 
if use djvu ; then
dobin gsdjvu
@@ -195,7 +195,7 @@
mv -f ${D}/usr/bin/gsc ${D}/usr/bin/gs || die
 
cd ${S}/ijs
-   emake DESTDIR=${D} install
+   emake -j1 DESTDIR=${D} install
 
# rename the original cidfmap to cidfmap.GS
mv ${D}/usr/share/ghostscript/${PVM}/Resource/Init/cidfmap{,.GS} || 
die



1.190app-text/ghostscript-gpl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ChangeLog?rev=1.190view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ChangeLog?rev=1.190content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/ghostscript-gpl/ChangeLog?r1=1.189r2=1.190

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v
retrieving revision 1.189
retrieving revision 1.190
diff -u -r1.189 -r1.190
--- ChangeLog   15 Jul 2015 20:51:56 -  1.189
+++ ChangeLog   25 Jul 2015 17:58:59 -  1.190
@@ -1,6 +1,10 @@
 # ChangeLog for app-text/ghostscript-gpl
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.189 
2015/07/15 20:51:56 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.190 
2015/07/25 17:58:59 blueness Exp $
+
+  25 Jul 2015; Anthony G. Basile bluen...@gentoo.org
+  ghostscript-gpl-9.15-r1.ebuild:
+  Fix parallel 'make install'. Bug #543602.
 
   15 Jul 2015; Mikle Kolyada zlog...@gentoo.org
   ghostscript-gpl-9.15-r1.ebuild:






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

2015-07-25 Thread Michael Palimaka
commit: 85372bc86d8c515e4521d79ee5bf9d03dbf7f973
Author: Andreas Sturmlechner andreas.sturmlechner AT gmail DOT com
AuthorDate: Fri Jul 24 22:56:19 2015 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Fri Jul 24 23:17:53 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=85372bc8

[eclass] Avoid confusion over system configuration

E.g. https://forums.gentoo.org/viewtopic-p-7786236.html#7786236

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

diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass
index b0fe4a4..d715c89 100644
--- a/eclass/kde4-base.eclass
+++ b/eclass/kde4-base.eclass
@@ -894,12 +894,10 @@ kde4-base_pkg_postinst() {
fi
# for all 3rd party soft tell user that he SHOULD install 
kdebase-startkde or kdebase-runtime-meta
if [[ ${KDEBASE} != kde-base ]]  \
-   ! has_version 'kde-apps/kdebase-runtime-meta' 
 \
-   ! has_version 'kde-base/kdebase-startkde'; then
+   ! has_version 'kde-apps/kdebase-runtime-meta'; 
then
if [[ ${KDE_REQUIRED} == always ]] || ( [[ 
${KDE_REQUIRED} == optional ]]  use kde ); then
echo
-   ewarn WARNING! Your system configuration 
contains neither \kde-base/kdebase-runtime-meta\
-   ewarn nor \kde-base/kdebase-startkde\. You 
need one of above.
+   ewarn WARNING! Your system configuration does 
not contain \kde-apps/kdebase-runtime-meta\.
ewarn With this setting you are unsupported by 
KDE team.
ewarn All missing features you report for misc 
packages will be probably ignored or closed as INVALID.
fi



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

2015-07-25 Thread Michael Palimaka
commit: 523575023973ab92a14fdc9266bbfdc68f7dfb92
Author: Andreas Sturmlechner andreas.sturmlechner AT gmail DOT com
AuthorDate: Fri Jul 24 22:12:33 2015 +
Commit: Michael Palimaka kensington AT gentoo DOT org
CommitDate: Sat Jul 25 15:51:05 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=52357502

[eclass] Treat stable-live the same as live

 eclass/kde4-functions.eclass | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/eclass/kde4-functions.eclass b/eclass/kde4-functions.eclass
index 989eeb9..d480bcb 100644
--- a/eclass/kde4-functions.eclass
+++ b/eclass/kde4-functions.eclass
@@ -292,13 +292,9 @@ add_kdeapps_dep() {
ver=${KDE_OVERRIDE_MINIMAL}
elif [[ ${KDEBASE} != kde-base ]]; then
ver=${KDE_MINIMAL}
-   # if building stable-live version depend just on the raw KDE version
-   # to allow merging packages against more stable basic stuff
-   elif [[ ${PV} == *. ]]; then
-   ver=$(get_kde_version)
-   # if building live master or kde-apps, use the final SC version
-   # since there are no further general releases.
-   elif [[ ${CATEGORY} == kde-apps || ${PV} ==  ]]; then
+   # if building kde-apps, live master or stable-live branch,
+   # use the final SC version since there are no further general releases.
+   elif [[ ${CATEGORY} == kde-apps || ${PV} == * ]]; then
ver=4.14.3
else
ver=${PV}



[gentoo-commits] gentoo-x86 commit in dev-libs/nspr: nspr-4.10.8.ebuild ChangeLog

2015-07-25 Thread Markus Meier (maekke)
maekke  15/07/25 15:52:54

  Modified: nspr-4.10.8.ebuild ChangeLog
  Log:
  arm stable, bug #550288
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: 
--include-arches=arm, signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.10 dev-libs/nspr/nspr-4.10.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/nspr-4.10.8.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/nspr-4.10.8.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/nspr-4.10.8.ebuild?r1=1.9r2=1.10

Index: nspr-4.10.8.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.8.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nspr-4.10.8.ebuild  23 Jul 2015 09:33:29 -  1.9
+++ nspr-4.10.8.ebuild  25 Jul 2015 15:52:54 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.8.ebuild,v 1.9 
2015/07/23 09:33:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.10.8.ebuild,v 1.10 
2015/07/25 15:52:54 maekke Exp $
 
 EAPI=5
 WANT_AUTOCONF=2.5
@@ -15,7 +15,7 @@
 
 LICENSE=|| ( MPL-2.0 GPL-2 LGPL-2.1 )
 SLOT=0
-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 ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
 IUSE=debug
 
 RDEPEND=



1.298dev-libs/nspr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?rev=1.298view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?rev=1.298content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nspr/ChangeLog?r1=1.297r2=1.298

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v
retrieving revision 1.297
retrieving revision 1.298
diff -u -r1.297 -r1.298
--- ChangeLog   23 Jul 2015 09:33:29 -  1.297
+++ ChangeLog   25 Jul 2015 15:52:54 -  1.298
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nspr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.297 2015/07/23 
09:33:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/ChangeLog,v 1.298 2015/07/25 
15:52:54 maekke Exp $
+
+  25 Jul 2015; Markus Meier mae...@gentoo.org nspr-4.10.8.ebuild:
+  arm stable, bug #550288
 
   23 Jul 2015; Agostino Sarubbo a...@gentoo.org nspr-4.10.8.ebuild:
   Stable for sparc, wrt bug #550288






[gentoo-commits] gentoo-x86 commit in profiles/base: ChangeLog make.defaults

2015-07-25 Thread Mike Gilbert (floppym)
floppym 15/07/25 15:53:19

  Modified: ChangeLog make.defaults
  Log:
  Enable python3.4 by default.

Revision  ChangesPath
1.820profiles/base/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/base/ChangeLog?rev=1.820view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/base/ChangeLog?rev=1.820content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/base/ChangeLog?r1=1.819r2=1.820

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/base/ChangeLog,v
retrieving revision 1.819
retrieving revision 1.820
diff -u -r1.819 -r1.820
--- ChangeLog   21 Jul 2015 09:23:57 -  1.819
+++ ChangeLog   25 Jul 2015 15:53:19 -  1.820
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo base-profile
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/base/ChangeLog,v 1.819 2015/07/21 
09:23:57 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/base/ChangeLog,v 1.820 2015/07/25 
15:53:19 floppym Exp $
+
+  25 Jul 2015; Mike Gilbert flop...@gentoo.org make.defaults:
+  Enable python3_4 by default.
 
   21 Jul 2015; Alexis Ballier aball...@gentoo.org package.use.mask:
   remove now obsolete ffmpeg usemask



1.128profiles/base/make.defaults

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/base/make.defaults?rev=1.128view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/base/make.defaults?rev=1.128content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/base/make.defaults?r1=1.127r2=1.128

Index: make.defaults
===
RCS file: /var/cvsroot/gentoo-x86/profiles/base/make.defaults,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- make.defaults   5 Jun 2015 07:59:18 -   1.127
+++ make.defaults   25 Jul 2015 15:53:19 -  1.128
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/base/make.defaults,v 1.127 
2015/06/05 07:59:18 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/base/make.defaults,v 1.128 
2015/07/25 15:53:19 floppym Exp $
 #
 # System-wide defaults for the Portage system
 # See portage(5) manpage
@@ -120,11 +120,11 @@
 # Add default USE value for bootstrap and rename it from STAGE1_USE to 
BOOTSTRAP_USE
 # Add in expanded PYTHON_TARGETS or stage1 builds break because of USE=-* 
${BOOTSTRAP_USE}
 # This MUST be kept in sync with the PYTHON_TARGETS below
-BOOTSTRAP_USE=cxx unicode internal-glib python_targets_python3_3 
python_targets_python2_7
+BOOTSTRAP_USE=cxx unicode internal-glib python_targets_python3_4 
python_targets_python2_7
 
 # Mike Gilbert flop...@gentoo.org (15 May 2012)
 # Default target(s) for python-r1.eclass
-PYTHON_TARGETS=python2_7 python3_3
+PYTHON_TARGETS=python2_7 python3_4
 PYTHON_SINGLE_TARGET=python2_7
 
 # Michał Górny mgo...@gentoo.org (10 Aug 2013)






[gentoo-commits] gentoo-x86 commit in dev-libs/nss: ChangeLog nss-3.19.2.ebuild

2015-07-25 Thread Markus Meier (maekke)
maekke  15/07/25 15:53:29

  Modified: ChangeLog nss-3.19.2.ebuild
  Log:
  arm stable, bug #550288
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: 
--include-arches=arm, signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.422dev-libs/nss/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nss/ChangeLog?rev=1.422view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nss/ChangeLog?rev=1.422content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nss/ChangeLog?r1=1.421r2=1.422

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v
retrieving revision 1.421
retrieving revision 1.422
diff -u -r1.421 -r1.422
--- ChangeLog   23 Jul 2015 09:33:25 -  1.421
+++ ChangeLog   25 Jul 2015 15:53:29 -  1.422
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/nss
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v 1.421 2015/07/23 
09:33:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v 1.422 2015/07/25 
15:53:29 maekke Exp $
+
+  25 Jul 2015; Markus Meier mae...@gentoo.org nss-3.19.2.ebuild:
+  arm stable, bug #550288
 
   23 Jul 2015; Agostino Sarubbo a...@gentoo.org nss-3.19.2.ebuild:
   Stable for sparc, wrt bug #550288



1.10 dev-libs/nss/nss-3.19.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nss/nss-3.19.2.ebuild?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nss/nss-3.19.2.ebuild?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nss/nss-3.19.2.ebuild?r1=1.9r2=1.10

Index: nss-3.19.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.19.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nss-3.19.2.ebuild   23 Jul 2015 09:33:25 -  1.9
+++ nss-3.19.2.ebuild   25 Jul 2015 15:53:29 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.19.2.ebuild,v 1.9 
2015/07/23 09:33:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/nss-3.19.2.ebuild,v 1.10 
2015/07/25 15:53:29 maekke Exp $
 
 EAPI=5
 inherit eutils flag-o-matic multilib toolchain-funcs multilib-minimal
@@ -19,7 +19,7 @@
 
 LICENSE=|| ( MPL-2.0 GPL-2 LGPL-2.1 )
 SLOT=0
-KEYWORDS=alpha amd64 ~arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris
+KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris
 IUSE=+cacert +nss-pem utils
 CDEPEND==dev-db/sqlite-3.8.2[${MULTILIB_USEDEP}]
=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]






[gentoo-commits] proj/gentoo-news:master commit in: 2015/2015-07-25-python-targets/

2015-07-25 Thread Mike Gilbert
commit: 04a9f169828fafd261cdc81d0a9cf1973e5c6f60
Author: Mike Gilbert floppym AT gentoo DOT org
AuthorDate: Sat Jul 25 15:33:06 2015 +
Commit: Mike Gilbert floppym AT gentoo DOT org
CommitDate: Sat Jul 25 15:33:06 2015 +
URL:https://gitweb.gentoo.org/proj/gentoo-news.git/commit/?id=04a9f169

Add news about python3.4

 .../2015-07-25-python-targets.en.txt   | 26 
 .../2015-07-25-python-targets.en.txt.asc   | 36 ++
 2 files changed, 62 insertions(+)

diff --git a/2015/2015-07-25-python-targets/2015-07-25-python-targets.en.txt 
b/2015/2015-07-25-python-targets/2015-07-25-python-targets.en.txt
new file mode 100644
index 000..720eb66
--- /dev/null
+++ b/2015/2015-07-25-python-targets/2015-07-25-python-targets.en.txt
@@ -0,0 +1,26 @@
+Title: Python 3.4 enabled by default
+Author: Mike Gilbert flop...@gentoo.org
+Content-Type: text/plain
+Posted: 2015-07-25
+Revision: 1
+News-Item-Format: 1.0
+
+Python 3.4 is now enabled by default, replacing Python 3.3 as the
+default Python 3 interpreter.
+
+PYTHON_TARGETS will be adjusted to contain python2_7 and python3_4 by
+default via your profile.
+
+PYTHON_SINGLE_TARGET will remain set to python2_7 by default.
+
+If you have PYTHON_TARGETS set in make.conf, that setting will still be
+respected. You may want to adjust this setting manually.
+
+Once the changes have taken place, a world update should take care of
+reinstalling any python libraries you have installed. You should also
+switch your default python3 interpreter using eselect python.
+
+For example:
+
+eselect python set --python3 python3.4
+emerge -uDv --changed-use @world

diff --git 
a/2015/2015-07-25-python-targets/2015-07-25-python-targets.en.txt.asc 
b/2015/2015-07-25-python-targets/2015-07-25-python-targets.en.txt.asc
new file mode 100644
index 000..d000f5c
--- /dev/null
+++ b/2015/2015-07-25-python-targets/2015-07-25-python-targets.en.txt.asc
@@ -0,0 +1,36 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+Title: Python 3.4 enabled by default
+Author: Mike Gilbert flop...@gentoo.org
+Content-Type: text/plain
+Posted: 2015-07-25
+Revision: 1
+News-Item-Format: 1.0
+
+Python 3.4 is now enabled by default, replacing Python 3.3 as the
+default Python 3 interpreter.
+
+PYTHON_TARGETS will be adjusted to contain python2_7 and python3_4 by
+default via your profile.
+
+PYTHON_SINGLE_TARGET will remain set to python2_7 by default.
+
+If you have PYTHON_TARGETS set in make.conf, that setting will still be
+respected. You may want to adjust this setting manually.
+
+Once the changes have taken place, a world update should take care of
+reinstalling any python libraries you have installed. You should also
+switch your default python3 interpreter using eselect python.
+
+For example:
+
+eselect python set --python3 python3.4
+emerge -uDv --changed-use @world
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iF4EAREIAAYFAlWzrBsACgkQRxvnM+8pGj94gQEAgYkj0SKvlvh85F02PUa9Yof/
+YFlm7VTLATq6gJePrhMBAK/E+RXpaB7bFI/4jflmae+ShDz/SuuTNpGGvDBFBwi6
+=fbNv
+-END PGP SIGNATURE-



[gentoo-commits] gentoo-x86 commit in kde-apps/kmix/files: - New directory

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:11:17

  Log:
  Directory /var/cvsroot/gentoo-x86/kde-apps/kmix/files added to the repository



[gentoo-commits] gentoo-x86 commit in dev-util/kdevelop-python: kdevelop-python-1.7.1.ebuild kdevelop-python-1.6.0.ebuild kdevelop-python-1.5.2.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:13:44

  Modified: kdevelop-python-1.7.1.ebuild
kdevelop-python-1.6.0.ebuild
kdevelop-python-1.5.2.ebuild ChangeLog
  Log:
  Pin dependencies to slot :4, clean up redundant deps. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/174 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild?r1=1.1r2=1.2

Index: kdevelop-python-1.7.1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kdevelop-python-1.7.1.ebuild10 Feb 2015 22:11:29 -  1.1
+++ kdevelop-python-1.7.1.ebuild25 Jul 2015 16:13:44 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild,v 
1.1 2015/02/10 22:11:29 johu Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.7.1.ebuild,v 
1.2 2015/07/25 16:13:44 mgorny Exp $
 
 EAPI=5
 
@@ -21,12 +21,10 @@
 DESCRIPTION=Python plugin for KDevelop 4
 IUSE=debug
 
-COMMON_DEPEND==dev-util/kdevplatform-${PV}:4
-DEPEND=${COMMON_DEPEND}
+DEPEND=
${PYTHON_DEPS}
 
 RDEPEND=
-   ${COMMON_DEPEND}
dev-util/kdevelop:4
 
 



1.3  dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild?r1=1.2r2=1.3

Index: kdevelop-python-1.6.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- kdevelop-python-1.6.0.ebuild17 Mar 2014 09:54:03 -  1.2
+++ kdevelop-python-1.6.0.ebuild25 Jul 2015 16:13:44 -  1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild,v 
1.2 2014/03/17 09:54:03 kensington Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.6.0.ebuild,v 
1.3 2015/07/25 16:13:44 mgorny Exp $
 
 EAPI=5
 
@@ -28,12 +28,9 @@
 LICENSE=GPL-2
 IUSE=debug
 
-DEPEND=
-   =dev-util/kdevplatform-${KDEVPLATFORM_VERSION}
-
+DEPEND=
 RDEPEND=
-   ${DEPEND}
-   dev-util/kdevelop
+   dev-util/kdevelop:4
 
 
 RESTRICT=test



1.4  dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild?r1=1.3r2=1.4

Index: kdevelop-python-1.5.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kdevelop-python-1.5.2.ebuild26 Jan 2014 11:39:02 -  1.3
+++ kdevelop-python-1.5.2.ebuild25 Jul 2015 16:13:44 -  1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild,v 
1.3 2014/01/26 11:39:02 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/kdevelop-python/kdevelop-python-1.5.2.ebuild,v 
1.4 2015/07/25 16:13:44 mgorny Exp $
 
 EAPI=5
 
@@ -29,15 +29,11 @@
 LICENSE=GPL-2
 IUSE=debug
 
-COMMON_DEPEND=
-   =dev-util/kdevplatform-1.4.60
-
-DEPEND=${COMMON_DEPEND}
-  

[gentoo-commits] proj/lisp:master commit in: dev-lisp/chunga/

2015-07-25 Thread José María Alonso
commit: 4de060e16dd6633973dae8632901f8fd0de9ba88
Author: Chema Alonso Josa nimiux AT gentoo DOT org
AuthorDate: Sat Jul 25 16:18:22 2015 +
Commit: José María Alonso nimiux AT gentoo DOT org
CommitDate: Sat Jul 25 16:18:22 2015 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=4de060e1

dev-lisp/chunga: bump to version 1.1.6

 dev-lisp/chunga/chunga-1.1.6.ebuild | 28 
 1 file changed, 28 insertions(+)

diff --git a/dev-lisp/chunga/chunga-1.1.6.ebuild 
b/dev-lisp/chunga/chunga-1.1.6.ebuild
new file mode 100644
index 000..22a4f8d
--- /dev/null
+++ b/dev-lisp/chunga/chunga-1.1.6.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit common-lisp-3
+
+MY_P=v${PV}
+
+DESCRIPTION=Portable chunked streams for Common Lisp
+HOMEPAGE=http://weitz.de/chunga/;
+SRC_URI=https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz - ${P}.tar.gz
+
+LICENSE=BSD-2
+SLOT=0
+KEYWORDS=~amd64 ~ppc ~sparc ~x86
+IUSE=
+
+RDEPEND=!dev-lisp/cl-${PN}
+   dev-lisp/trivial-gray-streams
+
+src_install() {
+   common-lisp-install-sources *.lisp
+   common-lisp-install-asdf
+   dodoc CHANGELOG.txt
+   dohtml doc/index.html
+}



[gentoo-commits] gentoo-x86 commit in dev-java/java-sdk-docs: java-sdk-docs-1.8.0.51.ebuild ChangeLog

2015-07-25 Thread James Le Cuirot (chewi)
chewi   15/07/25 16:31:33

  Modified: ChangeLog
  Added:java-sdk-docs-1.8.0.51.ebuild
  Log:
  Version bump. ~arm added to 1.8 SLOT.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
9C6D7DE4)

Revision  ChangesPath
1.128dev-java/java-sdk-docs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/java-sdk-docs/ChangeLog?rev=1.128view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/java-sdk-docs/ChangeLog?rev=1.128content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/java-sdk-docs/ChangeLog?r1=1.127r2=1.128

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/java-sdk-docs/ChangeLog,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- ChangeLog   15 Jun 2015 00:32:10 -  1.127
+++ ChangeLog   25 Jul 2015 16:31:33 -  1.128
@@ -1,6 +1,12 @@
 # ChangeLog for dev-java/java-sdk-docs
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/java-sdk-docs/ChangeLog,v 1.127 
2015/06/15 00:32:10 monsieurp Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/java-sdk-docs/ChangeLog,v 1.128 
2015/07/25 16:31:33 chewi Exp $
+
+*java-sdk-docs-1.8.0.51 (25 Jul 2015)
+
+  25 Jul 2015; James Le Cuirot ch...@gentoo.org
+  +java-sdk-docs-1.8.0.51.ebuild:
+  Version bump. ~arm added to 1.8 SLOT.
 
   15 Jun 2015; Patrice Clement monsie...@gentoo.org
   -java-sdk-docs-1.5.0-r1.ebuild:



1.1  dev-java/java-sdk-docs/java-sdk-docs-1.8.0.51.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/java-sdk-docs/java-sdk-docs-1.8.0.51.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/java-sdk-docs/java-sdk-docs-1.8.0.51.ebuild?rev=1.1content-type=text/plain

Index: java-sdk-docs-1.8.0.51.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-java/java-sdk-docs/java-sdk-docs-1.8.0.51.ebuild,v 
1.1 2015/07/25 16:31:33 chewi Exp $

EAPI=5

inherit versionator

DOWNLOAD_URL=http://www.oracle.com/technetwork/java/javase/documentation/jdk8-doc-downloads-2133158.html;

[[ $(get_version_component_range 4) == 0 ]] \
|| MY_PV_EXT=u$(get_version_component_range 4)

MY_PV=$(get_version_component_range 2)${MY_PV_EXT}
ORIG_NAME=jdk-${MY_PV}-docs-all.zip

DESCRIPTION=Oracle's documentation bundle (including API) for Java SE
HOMEPAGE=http://download.oracle.com/javase/8/docs/;
SRC_URI=${ORIG_NAME}
LICENSE=oracle-java-documentation-8
SLOT=1.8
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux
RESTRICT=fetch

DEPEND=app-arch/unzip

S=${WORKDIR}/docs

pkg_nofetch() {
einfo Please download ${ORIG_NAME} from 
einfo ${DOWNLOAD_URL}
einfo (agree to the license) and place it in ${DISTDIR}

einfo If you find the file on the download page replaced with a higher
einfo version, please report to the bug 67266 (link below).
einfo If emerge fails because of a checksum error it is possible that
einfo the upstream release changed without renaming. Try downloading 
the file
einfo again (or a newer revision if available). Otherwise report this 
to
einfo http://bugs.gentoo.org/67266 and we will make a new revision.
}

src_install(){
insinto /usr/share/doc/${P}/html
doins index.html

for i in *; do
[[ -d $i ]]  doins -r $i
done
}






[gentoo-commits] gentoo-x86 commit in dev-perl/B-Utils: B-Utils-0.270.0.ebuild ChangeLog B-Utils-0.250.0.ebuild

2015-07-25 Thread Andreas Huettel (dilfridge)
dilfridge15/07/25 17:18:30

  Modified: ChangeLog
  Added:B-Utils-0.270.0.ebuild
  Removed:  B-Utils-0.250.0.ebuild
  Log:
  Version bump; remove old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.29 dev-perl/B-Utils/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Utils/ChangeLog?rev=1.29view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Utils/ChangeLog?rev=1.29content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Utils/ChangeLog?r1=1.28r2=1.29

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/B-Utils/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog   1 May 2015 11:51:42 -   1.28
+++ ChangeLog   25 Jul 2015 17:18:30 -  1.29
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/B-Utils
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/B-Utils/ChangeLog,v 1.28 
2015/05/01 11:51:42 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/B-Utils/ChangeLog,v 1.29 
2015/07/25 17:18:30 dilfridge Exp $
+
+*B-Utils-0.270.0 (25 Jul 2015)
+
+  25 Jul 2015; Andreas K. Huettel dilfri...@gentoo.org
+  +B-Utils-0.270.0.ebuild, -B-Utils-0.250.0.ebuild:
+  Version bump; remove old
 
   01 May 2015; Andreas K. Huettel dilfri...@gentoo.org
   B-Utils-0.250.0.ebuild, B-Utils-0.260.0.ebuild:



1.1  dev-perl/B-Utils/B-Utils-0.270.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Utils/B-Utils-0.270.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Utils/B-Utils-0.270.0.ebuild?rev=1.1content-type=text/plain

Index: B-Utils-0.270.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/B-Utils/B-Utils-0.270.0.ebuild,v 
1.1 2015/07/25 17:18:30 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=ETHER
MODULE_VERSION=0.27
inherit perl-module

DESCRIPTION=Helper functions for op tree manipulation

SLOT=0
KEYWORDS=~amd64 ~arm ~ppc ~x86
IUSE=test

# needs Scalar::Util
RDEPEND=
virtual/perl-Exporter
virtual/perl-Scalar-List-Utils
dev-perl/Task-Weaken

DEPEND=${RDEPEND}
virtual/perl-ExtUtils-CBuilder
=dev-perl/ExtUtils-Depends-0.301.0
test? (
virtual/perl-Test-Simple
)


SRC_TEST=do parallel






[gentoo-commits] gentoo-x86 commit in dev-perl/Config-Properties: Config-Properties-1.800.0.ebuild ChangeLog Config-Properties-1.760.0.ebuild

2015-07-25 Thread Andreas Huettel (dilfridge)
dilfridge15/07/25 17:24:04

  Modified: ChangeLog
  Added:Config-Properties-1.800.0.ebuild
  Removed:  Config-Properties-1.760.0.ebuild
  Log:
  Version bump; remove old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.9  dev-perl/Config-Properties/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Config-Properties/ChangeLog?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Config-Properties/ChangeLog?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Config-Properties/ChangeLog?r1=1.8r2=1.9

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Config-Properties/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog   1 May 2015 20:40:53 -   1.8
+++ ChangeLog   25 Jul 2015 17:24:04 -  1.9
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/Config-Properties
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Config-Properties/ChangeLog,v 1.8 
2015/05/01 20:40:53 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Config-Properties/ChangeLog,v 1.9 
2015/07/25 17:24:04 dilfridge Exp $
+
+*Config-Properties-1.800.0 (25 Jul 2015)
+
+  25 Jul 2015; Andreas K. Huettel dilfri...@gentoo.org
+  +Config-Properties-1.800.0.ebuild, -Config-Properties-1.760.0.ebuild:
+  Version bump; remove old
 
 *Config-Properties-1.770.0 (01 May 2015)
 



1.1  dev-perl/Config-Properties/Config-Properties-1.800.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Config-Properties/Config-Properties-1.800.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Config-Properties/Config-Properties-1.800.0.ebuild?rev=1.1content-type=text/plain

Index: Config-Properties-1.800.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Config-Properties/Config-Properties-1.800.0.ebuild,v
 1.1 2015/07/25 17:24:04 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=SALVA
MODULE_VERSION=1.80
inherit perl-module

DESCRIPTION=Configuration using Java style properties

SLOT=0
KEYWORDS=~amd64 ~x86
IUSE=test

RDEPEND=
virtual/perl-File-Temp
=virtual/perl-Text-Tabs+Wrap-2001.92.900

DEPEND=${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? ( virtual/perl-Test-Simple )


SRC_TEST=do parallel






[gentoo-commits] gentoo-x86 commit in dev-perl/Module-Signature: Module-Signature-0.790.0.ebuild ChangeLog

2015-07-25 Thread Andreas Huettel (dilfridge)
dilfridge15/07/25 17:40:30

  Modified: ChangeLog
  Added:Module-Signature-0.790.0.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.49 dev-perl/Module-Signature/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Signature/ChangeLog?rev=1.49view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Signature/ChangeLog?rev=1.49content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Signature/ChangeLog?r1=1.48r2=1.49

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Module-Signature/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog   15 Jun 2015 08:19:52 -  1.48
+++ ChangeLog   25 Jul 2015 17:40:30 -  1.49
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/Module-Signature
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Module-Signature/ChangeLog,v 1.48 
2015/06/15 08:19:52 monsieurp Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Module-Signature/ChangeLog,v 1.49 
2015/07/25 17:40:30 dilfridge Exp $
+
+*Module-Signature-0.790.0 (25 Jul 2015)
+
+  25 Jul 2015; Andreas K. Huettel dilfri...@gentoo.org
+  +Module-Signature-0.790.0.ebuild:
+  Version bump
 
   15 Jun 2015; Patrice Clement monsie...@gentoo.org
   -Module-Signature-0.730.0.ebuild:



1.1  dev-perl/Module-Signature/Module-Signature-0.790.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Signature/Module-Signature-0.790.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Signature/Module-Signature-0.790.0.ebuild?rev=1.1content-type=text/plain

Index: Module-Signature-0.790.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Module-Signature/Module-Signature-0.790.0.ebuild,v
 1.1 2015/07/25 17:40:30 dilfridge Exp $

EAPI=5

MODULE_AUTHOR=AUDREYT
MODULE_VERSION=0.79
inherit perl-module

DESCRIPTION=Module signature file manipulation

LICENSE=CC0-1.0
SLOT=0
KEYWORDS=~amd64 ~x86 ~x86-solaris
IUSE=test

# this needs checking, there is no indication in the metadata about any deps!!!
RDEPEND=
virtual/perl-MIME-Base64
dev-perl/PAR-Dist
virtual/perl-IO-Compress
dev-perl/crypt-cbc
dev-perl/Crypt-DES
dev-perl/Crypt-Blowfish
dev-perl/Crypt-RIPEMD160
dev-perl/class-loader
dev-perl/tie-encryptedhash
dev-perl/convert-ascii-armour
dev-perl/data-buffer
dev-perl/digest-md2
=dev-perl/math-pari-2.010603
dev-perl/crypt-random
dev-perl/crypt-primes
dev-perl/crypt-des-ede3
dev-perl/crypt-dsa
dev-perl/crypt-rsa
dev-perl/Convert-ASN1
dev-perl/convert-pem
dev-perl/Crypt-OpenPGP
app-crypt/gnupg
virtual/perl-File-Temp

DEPEND=${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
dev-perl/IPC-Run
)


SRC_TEST=do parallel

src_test() {
export TEST_SIGNATURE=1
perl-module_src_test
}






[gentoo-commits] gentoo-x86 commit in dev-perl/Module-Install-AuthorTests: - New directory

2015-07-25 Thread Andreas Huettel (dilfridge)
dilfridge15/07/25 18:02:32

  Log:
  Directory /var/cvsroot/gentoo-x86/dev-perl/Module-Install-AuthorTests added 
to the repository



[gentoo-commits] gentoo-x86 commit in dev-ruby/rspectacular: ChangeLog rspectacular-0.63.0.ebuild

2015-07-25 Thread Hans de Graaff (graaff)
graaff  15/07/25 06:11:01

  Modified: ChangeLog
  Added:rspectacular-0.63.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.10 dev-ruby/rspectacular/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspectacular/ChangeLog?rev=1.10view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspectacular/ChangeLog?rev=1.10content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspectacular/ChangeLog?r1=1.9r2=1.10

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rspectacular/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog   7 Jun 2015 19:34:11 -   1.9
+++ ChangeLog   25 Jul 2015 06:11:01 -  1.10
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ruby/rspectacular
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspectacular/ChangeLog,v 1.9 
2015/06/07 19:34:11 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspectacular/ChangeLog,v 1.10 
2015/07/25 06:11:01 graaff Exp $
+
+*rspectacular-0.63.0 (25 Jul 2015)
+
+  25 Jul 2015; Hans de Graaff gra...@gentoo.org +rspectacular-0.63.0.ebuild:
+  Version bump.
 
   07 Jun 2015; Justin Lecher j...@gentoo.org metadata.xml:
   Add github to remote-id in metadata.xml



1.1  dev-ruby/rspectacular/rspectacular-0.63.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspectacular/rspectacular-0.63.0.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rspectacular/rspectacular-0.63.0.ebuild?rev=1.1content-type=text/plain

Index: rspectacular-0.63.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-ruby/rspectacular/rspectacular-0.63.0.ebuild,v 1.1 
2015/07/25 06:11:01 graaff Exp $

EAPI=5
USE_RUBY=ruby19 ruby20 ruby21 ruby22

RUBY_FAKEGEM_TASK_TEST=
RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_EXTRADOC=README.md

RUBY_FAKEGEM_BINWRAP=

inherit ruby-fakegem

DESCRIPTION=RSpec support and matchers
HOMEPAGE=https://github.com/thekompanee/rspectacular;

LICENSE=MIT
SLOT=0
KEYWORDS=~amd64
IUSE=

ruby_add_rdepend =dev-ruby/rspec-3.1:3 dev-ruby/fuubar:2






[gentoo-commits] gentoo-x86 commit in x11-terms/sakura: sakura-3.2.1.ebuild ChangeLog

2015-07-25 Thread Jeroen Roovers (jer)
jer 15/07/25 06:21:47

  Modified: ChangeLog
  Added:sakura-3.2.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.47 x11-terms/sakura/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/ChangeLog?rev=1.47view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/ChangeLog?rev=1.47content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/ChangeLog?r1=1.46r2=1.47

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-terms/sakura/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog   13 Dec 2014 09:24:10 -  1.46
+++ ChangeLog   25 Jul 2015 06:21:47 -  1.47
@@ -1,6 +1,11 @@
 # ChangeLog for x11-terms/sakura
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/sakura/ChangeLog,v 1.46 
2014/12/13 09:24:10 jer Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/sakura/ChangeLog,v 1.47 
2015/07/25 06:21:47 jer Exp $
+
+*sakura-3.2.1 (25 Jul 2015)
+
+  25 Jul 2015; Jeroen Roovers j...@gentoo.org +sakura-3.2.1.ebuild:
+  Version bump.
 
 *sakura-3.2.0 (13 Dec 2014)
 



1.1  x11-terms/sakura/sakura-3.2.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/sakura-3.2.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/sakura-3.2.1.ebuild?rev=1.1content-type=text/plain

Index: sakura-3.2.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/sakura/sakura-3.2.1.ebuild,v 1.1 
2015/07/25 06:21:47 jer Exp $

EAPI=5
inherit cmake-utils eutils

DESCRIPTION=sakura is a terminal emulator based on GTK and VTE
HOMEPAGE=http://www.pleyades.net/david/projects/sakura/;
SRC_URI=http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~amd64 ~x86 ~arm-linux ~x86-linux

RDEPEND=
=dev-libs/glib-2.20:2
=x11-libs/vte-0.28:2.90
x11-libs/gtk+:3

DEPEND=${RDEPEND}
=dev-lang/perl-5.10.1
virtual/pkgconfig


PATCHES=( ${FILESDIR}/${PN}-3.1.3-flags.patch )

DOCS=( AUTHORS INSTALL )

src_prepare() {
sed -i /FILES INSTALL/d CMakeLists.txt || die

strip-linguas -i po/
local lingua
for lingua in po/*.po; do
lingua=${lingua/po\/}
lingua=${lingua/.po}
if ! has ${lingua} ${LINGUAS}; then
rm po/${lingua}.po || die
fi
done

cmake-utils_src_prepare
}






[gentoo-commits] gentoo-x86 commit in x11-terms/sakura: ChangeLog sakura-3.2.1.ebuild sakura-3.2.0.ebuild

2015-07-25 Thread Jeroen Roovers (jer)
jer 15/07/25 06:28:01

  Modified: ChangeLog sakura-3.2.1.ebuild sakura-3.2.0.ebuild
  Log:
  Do not install INSTALL.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.48 x11-terms/sakura/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/ChangeLog?rev=1.48view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/ChangeLog?rev=1.48content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/ChangeLog?r1=1.47r2=1.48

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-terms/sakura/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   25 Jul 2015 06:21:47 -  1.47
+++ ChangeLog   25 Jul 2015 06:28:01 -  1.48
@@ -1,6 +1,10 @@
 # ChangeLog for x11-terms/sakura
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/sakura/ChangeLog,v 1.47 
2015/07/25 06:21:47 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/sakura/ChangeLog,v 1.48 
2015/07/25 06:28:01 jer Exp $
+
+  25 Jul 2015; Jeroen Roovers j...@gentoo.org sakura-3.2.0.ebuild,
+  sakura-3.2.1.ebuild:
+  Do not install INSTALL.
 
 *sakura-3.2.1 (25 Jul 2015)
 



1.2  x11-terms/sakura/sakura-3.2.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/sakura-3.2.1.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/sakura-3.2.1.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/sakura-3.2.1.ebuild?r1=1.1r2=1.2

Index: sakura-3.2.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-terms/sakura/sakura-3.2.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sakura-3.2.1.ebuild 25 Jul 2015 06:21:47 -  1.1
+++ sakura-3.2.1.ebuild 25 Jul 2015 06:28:01 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/sakura/sakura-3.2.1.ebuild,v 1.1 
2015/07/25 06:21:47 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/sakura/sakura-3.2.1.ebuild,v 1.2 
2015/07/25 06:28:01 jer Exp $
 
 EAPI=5
 inherit cmake-utils eutils
@@ -25,7 +25,7 @@
 
 PATCHES=( ${FILESDIR}/${PN}-3.1.3-flags.patch )
 
-DOCS=( AUTHORS INSTALL )
+DOCS=( AUTHORS )
 
 src_prepare() {
sed -i /FILES INSTALL/d CMakeLists.txt || die



1.2  x11-terms/sakura/sakura-3.2.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/sakura-3.2.0.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/sakura-3.2.0.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/sakura/sakura-3.2.0.ebuild?r1=1.1r2=1.2

Index: sakura-3.2.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/x11-terms/sakura/sakura-3.2.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sakura-3.2.0.ebuild 13 Dec 2014 09:24:10 -  1.1
+++ sakura-3.2.0.ebuild 25 Jul 2015 06:28:01 -  1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/sakura/sakura-3.2.0.ebuild,v 1.1 
2014/12/13 09:24:10 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/sakura/sakura-3.2.0.ebuild,v 1.2 
2015/07/25 06:28:01 jer Exp $
 
 EAPI=5
 inherit cmake-utils eutils
@@ -25,7 +25,7 @@
 
 PATCHES=( ${FILESDIR}/${PN}-3.1.3-flags.patch )
 
-DOCS=( AUTHORS INSTALL )
+DOCS=( AUTHORS )
 
 src_prepare() {
sed -i /FILES INSTALL/d CMakeLists.txt || die






[gentoo-commits] gentoo-x86 commit in app-editors/emacs-vcs: ChangeLog emacs-vcs-25.0.50_pre20150523.ebuild

2015-07-25 Thread Ulrich Mueller (ulm)
ulm 15/07/25 06:53:45

  Modified: ChangeLog
  Added:emacs-vcs-25.0.50_pre20150523.ebuild
  Log:
  Snapshot of last revision before merging of cairo branch to master.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
9433907D693FB5B8!)

Revision  ChangesPath
1.198app-editors/emacs-vcs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/ChangeLog?rev=1.198view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/ChangeLog?rev=1.198content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/ChangeLog?r1=1.197r2=1.198

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/ChangeLog,v
retrieving revision 1.197
retrieving revision 1.198
diff -u -r1.197 -r1.198
--- ChangeLog   2 Jul 2015 16:22:10 -   1.197
+++ ChangeLog   25 Jul 2015 06:53:45 -  1.198
@@ -1,6 +1,12 @@
 # ChangeLog for app-editors/emacs-vcs
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/ChangeLog,v 1.197 
2015/07/02 16:22:10 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/ChangeLog,v 1.198 
2015/07/25 06:53:45 ulm Exp $
+
+*emacs-vcs-25.0.50_pre20150523 (25 Jul 2015)
+
+  25 Jul 2015; Ulrich Müller u...@gentoo.org
+  +emacs-vcs-25.0.50_pre20150523.ebuild:
+  Snapshot of last revision before merging of cairo branch to master.
 
 *emacs-vcs-25.0.50_pre20150630 (02 Jul 2015)
 



1.1  app-editors/emacs-vcs/emacs-vcs-25.0.50_pre20150523.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-25.0.50_pre20150523.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-25.0.50_pre20150523.ebuild?rev=1.1content-type=text/plain

Index: emacs-vcs-25.0.50_pre20150523.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-25.0.50_pre20150523.ebuild,v
 1.1 2015/07/25 06:53:45 ulm Exp $

EAPI=5

inherit autotools elisp-common eutils flag-o-matic multilib readme.gentoo

if [[ ${PV##*.} =  ]]; then
inherit git-r3
EGIT_REPO_URI=git://git.sv.gnu.org/emacs.git
EGIT_BRANCH=master
EGIT_CHECKOUT_DIR=${WORKDIR}/emacs
S=${EGIT_CHECKOUT_DIR}
else
SRC_URI=http://dev.gentoo.org/~ulm/distfiles/emacs-${PV}.tar.xz
mirror://gnu-alpha/emacs/pretest/emacs-${PV}.tar.xz
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos
# FULL_VERSION keeps the full version number, which is needed in
# order to determine some path information correctly for copy/move
# operations later on
FULL_VERSION=${PV%%_*}
#S=${WORKDIR}/emacs-${FULL_VERSION}
S=${WORKDIR}/emacs
fi

DESCRIPTION=The extensible, customizable, self-documenting real-time display 
editor
HOMEPAGE=http://www.gnu.org/software/emacs/;

LICENSE=GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2
SLOT=25
IUSE=acl alsa aqua athena dbus games gconf gfile gif gnutls gpm gsettings gtk 
+gtk3 gzip-el hesiod imagemagick +inotify jpeg kerberos libxml2 livecd m17n-lib 
motif pax_kernel png selinux sound source svg tiff toolkit-scroll-bars wide-int 
X Xaw3d xft +xpm zlib
REQUIRED_USE=?? ( aqua X )

RDEPEND=sys-libs/ncurses
=app-eselect/eselect-emacs-1.16
=app-emacs/emacs-common-gentoo-1.5[games?,X?]
net-libs/liblockfile
acl? ( virtual/acl )
alsa? ( media-libs/alsa-lib )
dbus? ( sys-apps/dbus )
gfile? ( =dev-libs/glib-2.28.6 )
gnutls? ( net-libs/gnutls )
gpm? ( sys-libs/gpm )
hesiod? ( net-dns/hesiod )
kerberos? ( virtual/krb5 )
libxml2? ( =dev-libs/libxml2-2.2.0 )
selinux? ( sys-libs/libselinux )
zlib? ( sys-libs/zlib )
X? (
x11-libs/libXmu
x11-libs/libXt
x11-misc/xbitmaps
gconf? ( =gnome-base/gconf-2.26.2 )
gsettings? ( =dev-libs/glib-2.28.6 )
gif? ( media-libs/giflib )
jpeg? ( virtual/jpeg:0= )
png? ( =media-libs/libpng-1.4:0= )
svg? ( =gnome-base/librsvg-2.0 )
tiff? ( media-libs/tiff:0 )
xpm? ( x11-libs/libXpm )
imagemagick? ( =media-gfx/imagemagick-6.6.2 )
xft? (
media-libs/fontconfig
media-libs/freetype
x11-libs/libXft
  

[gentoo-commits] gentoo-x86 commit in net-analyzer/wireshark/files: wireshark-1.99.8-qtchooser.patch wireshark-99999999-pkgconfig.patch

2015-07-25 Thread Jeroen Roovers (jer)
jer 15/07/25 07:02:35

  Modified: wireshark--pkgconfig.patch
  Added:wireshark-1.99.8-qtchooser.patch
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.4  
net-analyzer/wireshark/files/wireshark--pkgconfig.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/files/wireshark--pkgconfig.patch?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/files/wireshark--pkgconfig.patch?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/files/wireshark--pkgconfig.patch?r1=1.3r2=1.4

Index: wireshark--pkgconfig.patch
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/wireshark/files/wireshark--pkgconfig.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- wireshark--pkgconfig.patch  13 Apr 2015 17:29:19 -  1.3
+++ wireshark--pkgconfig.patch  25 Jul 2015 07:02:35 -  1.4
@@ -1,23 +1,21 @@
 --- a/configure.ac
 +++ b/configure.ac
-@@ -242,9 +242,10 @@
+@@ -242,7 +242,7 @@
  # This is referenced via AC_REQUIRE([PKG_PROG_PKG_CONFIG] in some macros
  # like PKG_CHECK_MODULES. If the first call to such a macro is under an
  # if statement, it's safer to call PKG_PROG_PKG_CONFIG directly, see
 -# the comments in acolocal.m4
 +# the comments in aclocal.m4
  #
- PKG_PROG_PKG_CONFIG
-+
- if test -z $PKG_CONFIG; then
-   AC_MSG_ERROR(I couldn't find pkg-config; make sure it's installed and 
in your path)
- fi
-@@ -1918,6 +1919,18 @@
+ # We want version 0.7 or better.  (XXX - explain why. Is that just
+ # because our Qt tests were originally based on AM_PATH_GTK, and *it*
+@@ -1910,6 +1910,19 @@
  AC_SUBST(plugins_dir)
  
  #
 +# Find out where to store wireshark.pc and what should be in it
 +#
++
 +PKG_INSTALLDIR
 +
 +AC_SUBST(CMAKE_INSTALL_PREFIX,[$prefix])
@@ -31,7 +29,7 @@
  # If we have dlfcn.h, check whether we have dladdr.
  #
  if test $ac_cv_header_dlfcn_h = yes
-@@ -3086,10 +3099,15 @@
+@@ -3080,10 +3093,15 @@
  sinclude(asn1/Custom.m4) dnl
  ifdef(_CUSTOM_ASN1_AC_OUTPUT_,, define(_CUSTOM_ASN1_AC_OUTPUT_, )) dnl
  



1.1  
net-analyzer/wireshark/files/wireshark-1.99.8-qtchooser.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/files/wireshark-1.99.8-qtchooser.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/files/wireshark-1.99.8-qtchooser.patch?rev=1.1content-type=text/plain

Index: wireshark-1.99.8-qtchooser.patch
===
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -2149,7 +2149,6 @@
# -qt={version} argument, otherwise we look for particular
# tool versions using tool name suffixes.
#
-   AC_PATH_PROG(QTCHOOSER, qtchooser)
if test ! -z $QTCHOOSER; then
#
# We found qtchooser; we assume that means that






[gentoo-commits] gentoo-x86 commit in net-analyzer/wireshark: wireshark-1.99.8.ebuild ChangeLog wireshark-99999999.ebuild wireshark-1.99.7.ebuild

2015-07-25 Thread Jeroen Roovers (jer)
jer 15/07/25 07:02:35

  Modified: ChangeLog wireshark-.ebuild
  Added:wireshark-1.99.8.ebuild
  Removed:  wireshark-1.99.7.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  ChangesPath
1.741net-analyzer/wireshark/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.741view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.741content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/ChangeLog?r1=1.740r2=1.741

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v
retrieving revision 1.740
retrieving revision 1.741
diff -u -r1.740 -r1.741
--- ChangeLog   24 Jul 2015 05:44:36 -  1.740
+++ ChangeLog   25 Jul 2015 07:02:35 -  1.741
@@ -1,6 +1,14 @@
 # ChangeLog for net-analyzer/wireshark
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.740 
2015/07/24 05:44:36 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.741 
2015/07/25 07:02:35 jer Exp $
+
+*wireshark-1.99.8 (25 Jul 2015)
+
+  25 Jul 2015; Jeroen Roovers j...@gentoo.org -wireshark-1.99.7.ebuild,
+  +wireshark-1.99.8.ebuild, wireshark-.ebuild,
+  +files/wireshark-1.99.8-qtchooser.patch,
+  files/wireshark--pkgconfig.patch:
+  Version bump.
 
   24 Jul 2015; Jeroen Roovers j...@gentoo.org wireshark-1.12.6.ebuild,
   +files/wireshark-1.12.6-rcc.patch:



1.18 net-analyzer/wireshark/wireshark-.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/wireshark-.ebuild?rev=1.18view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/wireshark-.ebuild?rev=1.18content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/wireshark-.ebuild?r1=1.17r2=1.18

Index: wireshark-.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-.ebuild,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- wireshark-.ebuild   20 Jul 2015 16:28:19 -  1.17
+++ wireshark-.ebuild   25 Jul 2015 07:02:35 -  1.18
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-.ebuild,v 1.17 
2015/07/20 16:28:19 pinkbyte Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-.ebuild,v 1.18 
2015/07/25 07:02:35 jer Exp $
 
 EAPI=5
 inherit autotools eutils fcaps flag-o-matic git-r3 multilib qmake-utils qt4-r2 
user
@@ -99,7 +99,8 @@
${FILESDIR}/${PN}-1.11.0-oldlibs.patch \
${FILESDIR}/${PN}-1.99.0.1975-sse4_2.patch \
${FILESDIR}/${PN}--pkgconfig.patch \
-   ${FILESDIR}/${PN}-1.99.7-qt-pie.patch
+   ${FILESDIR}/${PN}-1.99.7-qt-pie.patch \
+   ${FILESDIR}/${PN}-1.99.8-qtchooser.patch
 
epatch_user
 



1.1  net-analyzer/wireshark/wireshark-1.99.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/wireshark-1.99.8.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/wireshark-1.99.8.ebuild?rev=1.1content-type=text/plain

Index: wireshark-1.99.8.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.99.8.ebuild,v 1.1 
2015/07/25 07:02:35 jer Exp $

EAPI=5
inherit autotools eutils fcaps flag-o-matic multilib qmake-utils qt4-r2 user

DESCRIPTION=A network protocol analyzer formerly known as ethereal
HOMEPAGE=http://www.wireshark.org/;
SRC_URI=${HOMEPAGE}download/src/all-versions/${P}.tar.bz2

LICENSE=GPL-2
SLOT=0/${PV}
KEYWORDS=
IUSE=
adns +caps crypt doc doc-pdf geoip +gtk3 ipv6 kerberos lua +netlink 
+pcap
portaudio +qt4 qt5 selinux sbc smi cpu_flags_x86_sse4_2 ssl zlib

REQUIRED_USE=
ssl? ( crypt )
?? ( qt4 qt5 )


GTK_COMMON_DEPEND=
x11-libs/gdk-pixbuf
x11-libs/pango
x11-misc/xdg-utils

CDEPEND=
=dev-libs/glib-2.14:2
netlink? ( dev-libs/libnl:3 )
adns? ( =net-dns/c-ares-1.5 )
crypt? ( dev-libs/libgcrypt:0 )
caps? ( sys-libs/libcap )
geoip? ( dev-libs/geoip )

[gentoo-commits] gentoo-x86 commit in dev-vcs/rcs: rcs-5.9.3.ebuild ChangeLog

2015-07-25 Thread Ian Delaney (idella4)
idella4 15/07/25 07:13:56

  Modified: rcs-5.9.3.ebuild ChangeLog
  Log:
  set -std=gnu99 into CFLAGS, thanks to fix by Bernd Buschinski in bug #548320
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  ChangesPath
1.2  dev-vcs/rcs/rcs-5.9.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/rcs-5.9.3.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/rcs-5.9.3.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/rcs-5.9.3.ebuild?r1=1.1r2=1.2

Index: rcs-5.9.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/rcs/rcs-5.9.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rcs-5.9.3.ebuild14 Nov 2014 01:12:48 -  1.1
+++ rcs-5.9.3.ebuild25 Jul 2015 07:13:56 -  1.2
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/rcs-5.9.3.ebuild,v 1.1 
2014/11/14 01:12:48 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/rcs-5.9.3.ebuild,v 1.2 
2015/07/25 07:13:56 idella4 Exp $
 
 EAPI=5
 
-inherit eutils
+inherit eutils flag-o-matic
 
 DESCRIPTION=Revision Control System
 HOMEPAGE=http://www.gnu.org/software/rcs/;
@@ -12,8 +12,7 @@
 
 LICENSE=GPL-3
 SLOT=0
-KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd \
-~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris
+KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris
 IUSE=doc
 
 RDEPEND=
@@ -26,6 +25,11 @@
lib/stdio.in.h || die
 }
 
+src_configure() {
+   append-flags -std=gnu99
+   econf
+}
+
 src_test() {
emake check
 }



1.32 dev-vcs/rcs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/ChangeLog?rev=1.32view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/ChangeLog?rev=1.32content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/ChangeLog?r1=1.31r2=1.32

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/rcs/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog   14 Nov 2014 01:12:48 -  1.31
+++ ChangeLog   25 Jul 2015 07:13:56 -  1.32
@@ -1,6 +1,9 @@
 # ChangeLog for dev-vcs/rcs
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/ChangeLog,v 1.31 2014/11/14 
01:12:48 idella4 Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/ChangeLog,v 1.32 2015/07/25 
07:13:56 idella4 Exp $
+
+  25 Jul 2015; Ian Delaney idel...@gentoo.org rcs-5.9.3.ebuild:
+  set -std=gnu99 into CFLAGS, thanks to fix by Bernd Buschinski in bug #548320
 
 *rcs-5.9.3 (14 Nov 2014)
 






[gentoo-commits] gentoo-x86 commit in dev-ruby/haml: ChangeLog haml-4.0.3.ebuild

2015-07-25 Thread Hans de Graaff (graaff)
graaff  15/07/25 07:16:21

  Modified: ChangeLog
  Removed:  haml-4.0.3.ebuild
  Log:
  Cleanup.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.103dev-ruby/haml/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/ChangeLog?rev=1.103view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/ChangeLog?rev=1.103content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/ChangeLog?r1=1.102r2=1.103

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/haml/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog   25 Jul 2015 07:15:48 -  1.102
+++ ChangeLog   25 Jul 2015 07:16:21 -  1.103
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/haml
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/haml/ChangeLog,v 1.102 2015/07/25 
07:15:48 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/haml/ChangeLog,v 1.103 2015/07/25 
07:16:21 graaff Exp $
+
+  25 Jul 2015; Hans de Graaff gra...@gentoo.org -haml-4.0.3.ebuild:
+  Cleanup.
 
   25 Jul 2015; Hans de Graaff gra...@gentoo.org haml-4.0.6.ebuild:
   Move ~x86 keyword forward to newer version.






[gentoo-commits] gentoo-x86 commit in dev-ruby/haml: ChangeLog haml-4.0.6.ebuild

2015-07-25 Thread Hans de Graaff (graaff)
graaff  15/07/25 07:15:48

  Modified: ChangeLog haml-4.0.6.ebuild
  Log:
  Move ~x86 keyword forward to newer version.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x8883FA56A308A8D7!)

Revision  ChangesPath
1.102dev-ruby/haml/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/ChangeLog?rev=1.102view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/ChangeLog?rev=1.102content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/ChangeLog?r1=1.101r2=1.102

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/haml/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog   26 May 2015 18:34:53 -  1.101
+++ ChangeLog   25 Jul 2015 07:15:48 -  1.102
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/haml
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/haml/ChangeLog,v 1.101 2015/05/26 
18:34:53 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/haml/ChangeLog,v 1.102 2015/07/25 
07:15:48 graaff Exp $
+
+  25 Jul 2015; Hans de Graaff gra...@gentoo.org haml-4.0.6.ebuild:
+  Move ~x86 keyword forward to newer version.
 
   26 May 2015; Michał Górny mgo...@gentoo.org -haml-3.1.8-r2.ebuild:
   Remove lastrited slot :0



1.2  dev-ruby/haml/haml-4.0.6.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/haml-4.0.6.ebuild?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/haml-4.0.6.ebuild?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/haml/haml-4.0.6.ebuild?r1=1.1r2=1.2

Index: haml-4.0.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/haml/haml-4.0.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- haml-4.0.6.ebuild   16 Apr 2015 23:21:34 -  1.1
+++ haml-4.0.6.ebuild   25 Jul 2015 07:15:48 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/haml/haml-4.0.6.ebuild,v 1.1 
2015/04/16 23:21:34 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/haml/haml-4.0.6.ebuild,v 1.2 
2015/07/25 07:15:48 graaff Exp $
 
 EAPI=5
 
@@ -19,7 +19,7 @@
 
 LICENSE=MIT
 SLOT=4
-KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
+KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
 
 IUSE=doc test
 






[gentoo-commits] gentoo-x86 commit in dev-java/batik: batik-1.8-r1.ebuild ChangeLog

2015-07-25 Thread James Le Cuirot (chewi)
chewi   15/07/25 14:45:41

  Modified: batik-1.8-r1.ebuild ChangeLog
  Log:
  Add some missing dies. Closes bug #555870.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
9C6D7DE4)

Revision  ChangesPath
1.6  dev-java/batik/batik-1.8-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/batik/batik-1.8-r1.ebuild?rev=1.6view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/batik/batik-1.8-r1.ebuild?rev=1.6content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/batik/batik-1.8-r1.ebuild?r1=1.5r2=1.6

Index: batik-1.8-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/batik/batik-1.8-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- batik-1.8-r1.ebuild 24 Jul 2015 09:46:03 -  1.5
+++ batik-1.8-r1.ebuild 25 Jul 2015 14:45:41 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/batik/batik-1.8-r1.ebuild,v 1.5 
2015/07/24 09:46:03 monsieurp Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/batik/batik-1.8-r1.ebuild,v 1.6 
2015/07/25 14:45:41 chewi Exp $
 
 EAPI=5
 JAVA_PKG_IUSE=doc
@@ -50,11 +50,11 @@

imports+=(sources/org/apache/batik/script/jacl/JaclInterpreterFactory.java)
for import in ${imports[@]}; do
einfo Fixing missing import in ${import}
-   sed -i '23i import org.apache.batik.script.ImportInfo;' 
${import}
+   sed -i '23i import org.apache.batik.script.ImportInfo;' 
${import} || die
eend $?
done
 
-   cd lib
+   cd lib || die
rm -v *.jar build/*.jar || die
use python  java-pkg_jar-from jython
use tcl  java-pkg_jar-from jacl
@@ -76,7 +76,7 @@
 
# batik-all-1.8.jar is a all-in-one jar that contains all other jars.
# We don't want to package it.
-   rm -v ${PN}-all-${PV}.jar
+   rm -v ${PN}-all-${PV}.jar || die
 }
 
 src_install() {



1.87 dev-java/batik/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/batik/ChangeLog?rev=1.87view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/batik/ChangeLog?rev=1.87content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/batik/ChangeLog?r1=1.86r2=1.87

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-java/batik/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog   24 Jul 2015 09:46:03 -  1.86
+++ ChangeLog   25 Jul 2015 14:45:41 -  1.87
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/batik
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/batik/ChangeLog,v 1.86 2015/07/24 
09:46:03 monsieurp Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/batik/ChangeLog,v 1.87 2015/07/25 
14:45:41 chewi Exp $
+
+  25 Jul 2015; James Le Cuirot ch...@gentoo.org batik-1.8-r1.ebuild:
+  Add some missing dies. Closes bug #555870.
 
   24 Jul 2015; Patrice Clement monsie...@gentoo.org batik-1.8-r1.ebuild:
   Suppress QA warning wrt a trailing whitespace.






[gentoo-commits] dev/mrueg:master commit in: dev-ruby/rugged/

2015-07-25 Thread Manuel Rüger
commit: 3ca61cde32dce3f83074d50bdd377464ee842015
Author: Manuel Rüger mrueg AT gentoo DOT org
AuthorDate: Sat Jul 25 15:29:14 2015 +
Commit: Manuel Rüger mrueg AT gentoo DOT org
CommitDate: Sat Jul 25 15:29:14 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=3ca61cde

[dev-ruby/rugged] Version bump.

Package-Manager: portage-2.2.20

 dev-ruby/rugged/Manifest   | 4 ++--
 dev-ruby/rugged/{rugged-0.22.2.ebuild = rugged-0.23.0.ebuild} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/rugged/Manifest b/dev-ruby/rugged/Manifest
index 6117a74..e0444d3 100644
--- a/dev-ruby/rugged/Manifest
+++ b/dev-ruby/rugged/Manifest
@@ -1,2 +1,2 @@
-DIST rugged-0.22.2-libgit2.tar.gz 3591643 SHA256 
3109f2579180d561fc736bad8bd917d7241477aab11633755c8a273beac53cdc SHA512 
ab97a2a548fa0e9be113bfe58f6d4e97dda9d7b10b4979b5736c6d410a8f1f3fb6801d691aad246481567eecc99b6f658f7bab639076ffdf21d30561243c8eb9
 WHIRLPOOL 
39a55c3a76f7c9f24efb8c72d5322afd35ee4880a06be2e22106690da8321b9d0a685128657c08d332c6c154e0dab6148cf740e676b6b16e9731eb9d99bb49d8
-DIST rugged-0.22.2.tar.gz 593165 SHA256 
4294f846509e143654f6b0f9a4b14ea1b2dcf008322b99cb79a432781cf87bd9 SHA512 
dc38e97bf858b767bd441abd293f0639ddf5179e40587d53f620c633e16e24f812ef2715fdc6ceddb87c85f0997f47227f173926e2557882239de30e4df8b53d
 WHIRLPOOL 
45c2631647980753d3cac2d5b681eb3da25649c63d74e50cb400e61a3035847c75317aa0448ab96cce906a45f6fffbb6d8ad8b9270ce86db7ec9086d6c0f00be
+DIST rugged-0.23.0-libgit2.tar.gz 3714985 SHA256 
49d75c601eb619481ecc0a79f3356cc26b89dfa646f2268e434d7b4c8d90c8a1 SHA512 
e0f414529ba6faf877b1848101fda3f5dc4b84e75c56996378c098d1bdc5f03e60c22a1ee5768a8a9a5d5aab313f52ce8df5b1bd3f9bfb2c36aae7117a368f22
 WHIRLPOOL 
9716f3ac340bd28d151814488898a09df8f867b7a40b59e71c12b6d7d8af3c7ac41ac0ae8de239be0743db03b4451ca87462835faac7f6938d5a82564a7b1f13
+DIST rugged-0.23.0.tar.gz 594989 SHA256 
28bf8c00f3b0b4f1ee9f6b1cdc33aa2062281dd8618c6d069196e96f44232bb8 SHA512 
cda2f1245fd095f0170609f1ec47e6d9a820c54737923b9056784ec67e20bdfd0099a5b5c483e6139ca7d494420a4749dd3ad4fc5746169d1f0efa78374ea2cf
 WHIRLPOOL 
b3f4580f94d5daf16a8b67f85bffebcd07bc317dc0fda20652761649183ecd0f3c7977227cb6b5136b115a8fa06bed226b847fc5462bbe2c7a8f584cd029a284

diff --git a/dev-ruby/rugged/rugged-0.22.2.ebuild 
b/dev-ruby/rugged/rugged-0.23.0.ebuild
similarity index 100%
rename from dev-ruby/rugged/rugged-0.22.2.ebuild
rename to dev-ruby/rugged/rugged-0.23.0.ebuild



[gentoo-commits] gentoo-x86 commit in profiles/arch/alpha: ChangeLog make.defaults

2015-07-25 Thread Mike Gilbert (floppym)
floppym 15/07/25 15:41:19

  Modified: ChangeLog make.defaults
  Log:
  Remove python_targets override.

Revision  ChangesPath
1.231profiles/arch/alpha/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?rev=1.231view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?rev=1.231content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?r1=1.230r2=1.231

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v
retrieving revision 1.230
retrieving revision 1.231
diff -u -r1.230 -r1.231
--- ChangeLog   15 Jul 2015 16:01:34 -  1.230
+++ ChangeLog   25 Jul 2015 15:41:19 -  1.231
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/Alpha profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.230 
2015/07/15 16:01:34 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.231 
2015/07/25 15:41:19 floppym Exp $
+
+  25 Jul 2015; Mike Gilbert flop...@gentoo.org make.defaults:
+  Remove python_targets override.
 
   15 Jul 2015; Tobias Klausmann klaus...@gentoo.org package.use.mask:
   Mask umfpack for gegl since it has very expensive dep-subtree



1.9  profiles/arch/alpha/make.defaults

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/make.defaults?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/make.defaults?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/make.defaults?r1=1.8r2=1.9

Index: make.defaults
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/make.defaults,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- make.defaults   23 Nov 2014 15:55:19 -  1.8
+++ make.defaults   25 Jul 2015 15:41:19 -  1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/make.defaults,v 1.8 
2014/11/23 15:55:19 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/make.defaults,v 1.9 
2015/07/25 15:41:19 floppym Exp $
 
 ARCH=alpha
 ACCEPT_KEYWORDS=alpha
@@ -11,10 +11,6 @@
 FFLAGS=${CFLAGS}
 FCFLAGS=${CFLAGS}
 
-# Mike Gilbert flop...@gentoo.org (23 Nov 2014)
-# Remove when bug 525510 is resolved.
-USE=python_targets_python3_3 -python_targets_python3_4
-
 # Michał Górny mgo...@gentoo.org (01 Jul 2014)
 # Set ABI  DEFAULT_ABI consistently with ${ARCH}, to make ebuild
 # checks simpler.






[gentoo-commits] gentoo-x86 commit in profiles/arch/powerpc: ChangeLog make.defaults

2015-07-25 Thread Mike Gilbert (floppym)
floppym 15/07/25 15:41:19

  Modified: ChangeLog make.defaults
  Log:
  Remove python_targets override.

Revision  ChangesPath
1.342profiles/arch/powerpc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ChangeLog?rev=1.342view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ChangeLog?rev=1.342content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ChangeLog?r1=1.341r2=1.342

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v
retrieving revision 1.341
retrieving revision 1.342
diff -u -r1.341 -r1.342
--- ChangeLog   21 Jul 2015 04:41:02 -  1.341
+++ ChangeLog   25 Jul 2015 15:41:19 -  1.342
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/PPC profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v 1.341 
2015/07/21 04:41:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v 1.342 
2015/07/25 15:41:19 floppym Exp $
+
+  25 Jul 2015; Mike Gilbert flop...@gentoo.org make.defaults:
+  Remove python_targets override.
 
   21 Jul 2015; Jeroen Roovers j...@gentoo.org ppc64/package.use.mask:
   Unmask USE=lv2 for media-sound/audacity on PPC64.



1.4  profiles/arch/powerpc/make.defaults

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/make.defaults?rev=1.4view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/make.defaults?rev=1.4content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/make.defaults?r1=1.3r2=1.4

Index: make.defaults
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/make.defaults,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- make.defaults   23 Nov 2014 15:55:11 -  1.3
+++ make.defaults   25 Jul 2015 15:41:19 -  1.4
@@ -1,7 +1,3 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/make.defaults,v 1.3 
2014/11/23 15:55:11 floppym Exp $
-
-# Mike Gilbert flop...@gentoo.org (23 Nov 2014)
-# Remove when bug 525510 is resolved.
-USE=python_targets_python3_3 -python_targets_python3_4
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/make.defaults,v 1.4 
2015/07/25 15:41:19 floppym Exp $






[gentoo-commits] gentoo-x86 commit in profiles/arch/sparc: ChangeLog make.defaults

2015-07-25 Thread Mike Gilbert (floppym)
floppym 15/07/25 15:41:19

  Modified: ChangeLog make.defaults
  Log:
  Remove python_targets override.

Revision  ChangesPath
1.254profiles/arch/sparc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/ChangeLog?rev=1.254view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/ChangeLog?rev=1.254content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/ChangeLog?r1=1.253r2=1.254

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v
retrieving revision 1.253
retrieving revision 1.254
diff -u -r1.253 -r1.254
--- ChangeLog   28 Jun 2015 23:28:35 -  1.253
+++ ChangeLog   25 Jul 2015 15:41:19 -  1.254
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/sparc profile
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v 1.253 
2015/06/28 23:28:35 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v 1.254 
2015/07/25 15:41:19 floppym Exp $
+
+  25 Jul 2015; Mike Gilbert flop...@gentoo.org make.defaults:
+  Remove python_targets override.
 
   28 Jun 2015; Brian Evans grkni...@gentoo.org use.stable.mask:
   Mask php_targets_php5-6 until bug 550164 is solved



1.7  profiles/arch/sparc/make.defaults

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/make.defaults?rev=1.7view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/make.defaults?rev=1.7content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/make.defaults?r1=1.6r2=1.7

Index: make.defaults
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sparc/make.defaults,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- make.defaults   23 Nov 2014 15:54:44 -  1.6
+++ make.defaults   25 Jul 2015 15:41:19 -  1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/make.defaults,v 1.6 
2014/11/23 15:54:44 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/make.defaults,v 1.7 
2015/07/25 15:41:19 floppym Exp $
 
 ARCH=sparc
 ACCEPT_KEYWORDS=${ARCH}
@@ -40,7 +40,3 @@
 # Defaults for video drivers
 VIDEO_CARDS=fbdev glint mach64 mga r128 radeon sunbw2 suncg14 suncg3 \
suncg6 sunffb sunleo tdfx voodoo
-
-# Mike Gilbert flop...@gentoo.org (23 Nov 2014)
-# Remove when bug 525510 is resolved.
-USE=python_targets_python3_3 -python_targets_python3_4






[gentoo-commits] gentoo-x86 commit in dev-qt/qtlockedfile: ChangeLog qtlockedfile-2.4.1_p20130904.ebuild

2015-07-25 Thread Markus Meier (maekke)
maekke  15/07/25 15:54:17

  Modified: ChangeLog qtlockedfile-2.4.1_p20130904.ebuild
  Log:
  arm stable, bug #549076
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: 
--include-arches=arm, signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.22 dev-qt/qtlockedfile/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtlockedfile/ChangeLog?rev=1.22view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtlockedfile/ChangeLog?rev=1.22content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtlockedfile/ChangeLog?r1=1.21r2=1.22

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtlockedfile/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog   1 Jul 2015 06:02:10 -   1.21
+++ ChangeLog   25 Jul 2015 15:54:17 -  1.22
@@ -1,6 +1,10 @@
 # ChangeLog for dev-qt/qtlockedfile
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtlockedfile/ChangeLog,v 1.21 
2015/07/01 06:02:10 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtlockedfile/ChangeLog,v 1.22 
2015/07/25 15:54:17 maekke Exp $
+
+  25 Jul 2015; Markus Meier mae...@gentoo.org
+  qtlockedfile-2.4.1_p20130904.ebuild:
+  arm stable, bug #549076
 
   01 Jul 2015; Jeroen Roovers j...@gentoo.org
   qtlockedfile-2.4.1_p20150629.ebuild:



1.9  dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20130904.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20130904.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20130904.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20130904.ebuild?r1=1.8r2=1.9

Index: qtlockedfile-2.4.1_p20130904.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20130904.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- qtlockedfile-2.4.1_p20130904.ebuild 29 Jun 2015 17:35:06 -  1.8
+++ qtlockedfile-2.4.1_p20130904.ebuild 25 Jul 2015 15:54:17 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20130904.ebuild,v
 1.8 2015/06/29 17:35:06 pesa Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20130904.ebuild,v
 1.9 2015/07/25 15:54:17 maekke Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=|| ( LGPL-2.1 GPL-3 )
 SLOT=0
-KEYWORDS=amd64 ~arm ppc ~ppc64 x86 ~amd64-linux ~x86-linux
+KEYWORDS=amd64 arm ppc ~ppc64 x86 ~amd64-linux ~x86-linux
 IUSE=doc
 
 DEPEND=dev-qt/qtcore:4






[gentoo-commits] gentoo-x86 commit in dev-qt/qtsingleapplication: ChangeLog qtsingleapplication-2.6.1_p20130904-r1.ebuild

2015-07-25 Thread Markus Meier (maekke)
maekke  15/07/25 15:54:49

  Modified: ChangeLog
qtsingleapplication-2.6.1_p20130904-r1.ebuild
  Log:
  arm stable, bug #549076
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: 
--include-arches=arm, signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.21 dev-qt/qtsingleapplication/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsingleapplication/ChangeLog?rev=1.21view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsingleapplication/ChangeLog?rev=1.21content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsingleapplication/ChangeLog?r1=1.20r2=1.21

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtsingleapplication/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   1 Jul 2015 06:02:30 -   1.20
+++ ChangeLog   25 Jul 2015 15:54:49 -  1.21
@@ -1,6 +1,10 @@
 # ChangeLog for dev-qt/qtsingleapplication
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtsingleapplication/ChangeLog,v 1.20 
2015/07/01 06:02:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtsingleapplication/ChangeLog,v 1.21 
2015/07/25 15:54:49 maekke Exp $
+
+  25 Jul 2015; Markus Meier mae...@gentoo.org
+  qtsingleapplication-2.6.1_p20130904-r1.ebuild:
+  arm stable, bug #549076
 
   01 Jul 2015; Jeroen Roovers j...@gentoo.org
   qtsingleapplication-2.6.1_p20150629.ebuild:



1.9  
dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20130904-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20130904-r1.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20130904-r1.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20130904-r1.ebuild?r1=1.8r2=1.9

Index: qtsingleapplication-2.6.1_p20130904-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20130904-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- qtsingleapplication-2.6.1_p20130904-r1.ebuild   29 Jun 2015 17:41:16 
-  1.8
+++ qtsingleapplication-2.6.1_p20130904-r1.ebuild   25 Jul 2015 15:54:49 
-  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20130904-r1.ebuild,v
 1.8 2015/06/29 17:41:16 pesa Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20130904-r1.ebuild,v
 1.9 2015/07/25 15:54:49 maekke Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE=|| ( LGPL-2.1 GPL-3 )
 SLOT=0
-KEYWORDS=amd64 ~arm ppc ~ppc64 x86 ~amd64-linux ~x86-linux
+KEYWORDS=amd64 arm ppc ~ppc64 x86 ~amd64-linux ~x86-linux
 IUSE=X doc
 
 DEPEND=






[gentoo-commits] gentoo-x86 commit in net-p2p/qbittorrent: ChangeLog qbittorrent-3.1.9.2-r1.ebuild

2015-07-25 Thread Markus Meier (maekke)
maekke  15/07/25 15:55:25

  Modified: ChangeLog qbittorrent-3.1.9.2-r1.ebuild
  Log:
  arm stable, bug #549076
  
  (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: 
--include-arches=arm, signed Manifest commit with key 072AD062)

Revision  ChangesPath
1.251net-p2p/qbittorrent/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.251view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/ChangeLog?rev=1.251content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/ChangeLog?r1=1.250r2=1.251

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v
retrieving revision 1.250
retrieving revision 1.251
diff -u -r1.250 -r1.251
--- ChangeLog   4 Jun 2015 18:19:35 -   1.250
+++ ChangeLog   25 Jul 2015 15:55:25 -  1.251
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/qbittorrent
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.250 
2015/06/04 18:19:35 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/ChangeLog,v 1.251 
2015/07/25 15:55:25 maekke Exp $
+
+  25 Jul 2015; Markus Meier mae...@gentoo.org qbittorrent-3.1.9.2-r1.ebuild:
+  arm stable, bug #549076
 
   04 Jun 2015; Davide Pesavento p...@gentoo.org qbittorrent-3.2.0.ebuild,
   qbittorrent-.ebuild:



1.9  net-p2p/qbittorrent/qbittorrent-3.1.9.2-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.9.2-r1.ebuild?rev=1.9view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.9.2-r1.ebuild?rev=1.9content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.9.2-r1.ebuild?r1=1.8r2=1.9

Index: qbittorrent-3.1.9.2-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.9.2-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- qbittorrent-3.1.9.2-r1.ebuild   10 May 2015 13:12:13 -  1.8
+++ qbittorrent-3.1.9.2-r1.ebuild   25 Jul 2015 15:55:25 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.9.2-r1.ebuild,v 1.8 
2015/05/10 13:12:13 pesa Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.9.2-r1.ebuild,v 1.9 
2015/07/25 15:55:25 maekke Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -14,7 +14,7 @@
 
 LICENSE=GPL-2
 SLOT=0
-KEYWORDS=amd64 ~arm ~ppc64 x86
+KEYWORDS=amd64 arm ~ppc64 x86
 
 IUSE=dbus debug geoip +X
 






[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:00:54

  Modified: ChangeLog
  Log:
  Add slotmove for dev-util/kdevelop-pg-qt. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/169 by a17r.

Revision  ChangesPath
1.10202  profiles/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10202view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10202content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10201r2=1.10202

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v
retrieving revision 1.10201
retrieving revision 1.10202
diff -u -r1.10201 -r1.10202
--- ChangeLog   23 Jul 2015 20:20:35 -  1.10201
+++ ChangeLog   25 Jul 2015 16:00:54 -  1.10202
@@ -1,11 +1,15 @@
 # ChangeLog for profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10201 2015/07/23 
20:20:35 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10202 2015/07/25 
16:00:54 mgorny Exp $
 #
 # This ChangeLog should include records for all changes in profiles directory.
 # Only typo fixes which don't affect portage/repoman behaviour could be avoided
 # here. If in doubt put a record here!
 
+  25 Jul 2015; Michał Górny mgo...@gentoo.org updates/3Q-2015:
+  Add slotmove for dev-util/kdevelop-pg-qt.
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/169 by a17r.
+
   23 Jul 2015; Pacho Ramos pa...@gentoo.org
   arch/powerpc/ppc32/package.use.stable.mask:
   Update package.use.stable.mask






[gentoo-commits] gentoo-x86 commit in profiles/updates: 3Q-2015

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:00:54

  Modified: 3Q-2015
  Log:
  Add slotmove for dev-util/kdevelop-pg-qt. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/169 by a17r.

Revision  ChangesPath
1.3  profiles/updates/3Q-2015

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/3Q-2015?rev=1.3view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/3Q-2015?rev=1.3content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/updates/3Q-2015?r1=1.2r2=1.3

Index: 3Q-2015
===
RCS file: /var/cvsroot/gentoo-x86/profiles/updates/3Q-2015,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- 3Q-2015 11 Jul 2015 20:41:50 -  1.2
+++ 3Q-2015 25 Jul 2015 16:00:54 -  1.3
@@ -1,2 +1,3 @@
 move dev-perl/inline-files dev-perl/Inline-Files
 move dev-perl/locale-maketext-lexicon dev-perl/Locale-Maketext-Lexicon
+slotmove dev-util/kdevelop-pg-qt 0 4






[gentoo-commits] gentoo-x86 commit in kde-apps/kmix: kmix-4.14.3-r1.ebuild ChangeLog

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:12:08

  Modified: ChangeLog
  Added:kmix-4.14.3-r1.ebuild
  Log:
  Fix automagic dep on alsa. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/173 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.2  kde-apps/kmix/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/ChangeLog?rev=1.2view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/ChangeLog?rev=1.2content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/ChangeLog?r1=1.1r2=1.2

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/kde-apps/kmix/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog   4 Jun 2015 18:44:40 -   1.1
+++ ChangeLog   25 Jul 2015 16:12:08 -  1.2
@@ -1,6 +1,13 @@
-# ChangeLog for kde-base/kmix
+# ChangeLog for kde-apps/kmix
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-apps/kmix/ChangeLog,v 1.1 2015/06/04 
18:44:40 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-apps/kmix/ChangeLog,v 1.2 2015/07/25 
16:12:08 mgorny Exp $
+
+*kmix-4.14.3-r1 (25 Jul 2015)
+
+  25 Jul 2015; Michał Górny mgo...@gentoo.org
+  +files/kmix-4.14.3-alsa-optional.patch, +kmix-4.14.3-r1.ebuild:
+  Fix automagic dep on alsa. https://github.com/gentoo/gentoo-portage-rsync-
+  mirror/pull/173 by a17r.
 
   18 Feb 2015; Michał Górny mgo...@gentoo.org -kmix-4.12.5.ebuild:
   Remove KDE SC 4.12



1.1  kde-apps/kmix/kmix-4.14.3-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/kmix-4.14.3-r1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/kmix-4.14.3-r1.ebuild?rev=1.1content-type=text/plain

Index: kmix-4.14.3-r1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-apps/kmix/kmix-4.14.3-r1.ebuild,v 1.1 
2015/07/25 16:12:08 mgorny Exp $

EAPI=5

KDE_HANDBOOK=optional
inherit kde4-base

DESCRIPTION=KDE mixer gui
HOMEPAGE=http://www.kde.org/applications/multimedia/kmix/;
KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux
IUSE=alsa debug canberra pulseaudio

DEPEND=
alsa? ( =media-libs/alsa-lib-1.0.14a )
canberra? ( media-libs/libcanberra )
pulseaudio? ( =media-sound/pulseaudio-0.9.12 )

RDEPEND=${DEPEND}

PATCHES=( ${FILESDIR}/${PN}-4.14.3-alsa-optional.patch )

src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package alsa)
$(cmake-utils_use_with canberra)
$(cmake-utils_use_with pulseaudio PulseAudio)
)

kde4-base_src_configure
}






[gentoo-commits] gentoo-x86 commit in kde-apps/kmix/files: kmix-4.14.3-alsa-optional.patch

2015-07-25 Thread Michal Gorny (mgorny)
mgorny  15/07/25 16:12:08

  Added:kmix-4.14.3-alsa-optional.patch
  Log:
  Fix automagic dep on alsa. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/173 by a17r.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  ChangesPath
1.1  kde-apps/kmix/files/kmix-4.14.3-alsa-optional.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/files/kmix-4.14.3-alsa-optional.patch?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-apps/kmix/files/kmix-4.14.3-alsa-optional.patch?rev=1.1content-type=text/plain

Index: kmix-4.14.3-alsa-optional.patch
===
commit 233f93b01ff05349793a8a2786750a2195f257ab
Author: Andreas Sturmlechner andreas.sturmlech...@gmail.com
Date:   Sat Jul 11 15:48:35 2015 +0200

Fix build w/ optional alsa, make HAVE_LIBASOUND2 work

diff --git a/CMakeLists.txt b/CMakeLists.txt
index c829005..17c106d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -9,8 +9,6 @@ include(MacroLibrary)
 # Do not yet REQUIRE Phonon. Hint: As long as we do not find_package(), 
${KDE4_PHONON_LIBS} will be empty below, but that should not hurt.
 #find_package(Phonon REQUIRED)
 
-find_package(Alsa)
-
 set(PA_VER 0.9.16)
 macro_optional_find_package(PulseAudio ${PA_VER})
 macro_log_feature(PULSEAUDIO_FOUND PulseAudio PulseAudio Audio Server
@@ -20,8 +18,11 @@ macro_optional_find_package(Canberra)
 macro_log_feature(CANBERRA_FOUND libcanberra libcanberra audio library
 http://0pointer.de/lennart/projects/libcanberra/; FALSE  libcanberra 
is needed for kmix sound feedback)
 
-alsa_configure_file(${CMAKE_BINARY_DIR}/config-alsa.h)
-
+find_package(Alsa)
+if(ALSA_FOUND)
+alsa_configure_file(${CMAKE_BINARY_DIR}/config-alsa.h)
+add_definitions(-DHAVE_LIBASOUND2)
+endif(ALSA_FOUND)
 
 add_definitions (${QT_DEFINITIONS} ${QT_QTDBUS_DEFINITIONS} 
${KDE4_DEFINITIONS} )
 add_definitions(-DKDE_DEFAULT_DEBUG_AREA=67100)
diff --git a/backends/kmix-backends.cpp b/backends/kmix-backends.cpp
index 14ecfb3..1397099 100644
--- a/backends/kmix-backends.cpp
+++ b/backends/kmix-backends.cpp
@@ -23,7 +23,9 @@
 /* This code is being #include'd from mixer.cpp */
 
 #include config.h
+#ifdef HAVE_LIBASOUND2
 #include config-alsa.h
+#endif
 
 #include mixer_backend.h
 #include core/mixer.h






[gentoo-commits] proj/lisp:master commit in: dev-lisp/hunchentoot/

2015-07-25 Thread José María Alonso
commit: 8135e0f99e68fe6cea414b50beae42af1b4cc265
Author: Chema Alonso Josa nimiux AT gentoo DOT org
AuthorDate: Sat Jul 25 16:21:11 2015 +
Commit: José María Alonso nimiux AT gentoo DOT org
CommitDate: Sat Jul 25 16:21:11 2015 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=8135e0f9

dev-lisp/hunchentoot: bump to version 1.2.34

 dev-lisp/hunchentoot/hunchentoot-1.2.34.ebuild | 43 ++
 1 file changed, 43 insertions(+)

diff --git a/dev-lisp/hunchentoot/hunchentoot-1.2.34.ebuild 
b/dev-lisp/hunchentoot/hunchentoot-1.2.34.ebuild
new file mode 100644
index 000..181bd06
--- /dev/null
+++ b/dev-lisp/hunchentoot/hunchentoot-1.2.34.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit common-lisp-3
+
+DESCRIPTION=Hunchentoot is a web server written in Common Lisp.
+HOMEPAGE=http://weitz.de/hunchentoot/;
+SRC_URI=https://github.com/edicl/${PN}/archive/v${PV}.tar.gz - ${P}.tar.gz
+
+LICENSE=BSD-2
+SLOT=0
+KEYWORDS=~amd64 ~ppc ~sparc ~x86
+IUSE=doc
+
+DEPEND=doc? ( dev-libs/libxslt )
+RDEPEND==dev-lisp/bordeaux-threads-0.7.0
+   =dev-lisp/chunga-1.1.1
+   =dev-lisp/cl-base64-3.3.0
+   =dev-lisp/cl-fad-0.6.3
+   =dev-lisp/cl-plus-ssl-20081104
+   =dev-lisp/cl-ppcre-2.0.0
+   =dev-lisp/cl-who-0.11.1
+   =dev-lisp/drakma-1.0.0
+   =dev-lisp/flexi-streams-0.12.0
+   =dev-lisp/md5-1.8.5
+   =dev-lisp/rfc2388-1.2
+   =dev-lisp/trivial-backtrace-1.0.2
+   =dev-lisp/usocket-0.4.0
+
+src_compile() {
+   use doc  xsltproc doc/clixdoc.xsl doc/index.xml  doc/index.html
+}
+
+src_install() {
+   common-lisp-install-sources *.lisp url-rewrite
+   common-lisp-install-sources -t all www test
+   common-lisp-install-asdf
+   dodoc CHANGELOG* README
+   use doc  dohtml -r doc/*
+}



[gentoo-commits] gentoo-x86 commit in sci-libs/armadillo: armadillo-5.200.2.ebuild ChangeLog

2015-07-25 Thread Andreas Huettel (dilfridge)
dilfridge15/07/25 20:53:53

  Modified: ChangeLog
  Added:armadillo-5.200.2.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.36 sci-libs/armadillo/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/armadillo/ChangeLog?rev=1.36view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/armadillo/ChangeLog?rev=1.36content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/armadillo/ChangeLog?r1=1.35r2=1.36

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sci-libs/armadillo/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog   21 May 2015 15:47:50 -  1.35
+++ ChangeLog   25 Jul 2015 20:53:53 -  1.36
@@ -1,6 +1,12 @@
 # ChangeLog for sci-libs/armadillo
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/armadillo/ChangeLog,v 1.35 
2015/05/21 15:47:50 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/armadillo/ChangeLog,v 1.36 
2015/07/25 20:53:53 dilfridge Exp $
+
+*armadillo-5.200.2 (25 Jul 2015)
+
+  25 Jul 2015; Andreas K. Huettel dilfri...@gentoo.org
+  +armadillo-5.200.2.ebuild:
+  Version bump
 
   21 May 2015; Andreas K. Hüttel dilfri...@gentoo.org
   -armadillo-4.600.4.ebuild, -armadillo-4.650.2.ebuild:



1.1  sci-libs/armadillo/armadillo-5.200.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/armadillo/armadillo-5.200.2.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/armadillo/armadillo-5.200.2.ebuild?rev=1.1content-type=text/plain

Index: armadillo-5.200.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/sci-libs/armadillo/armadillo-5.200.2.ebuild,v 1.1 
2015/07/25 20:53:53 dilfridge Exp $

EAPI=5

CMAKE_IN_SOURCE_BUILD=1

inherit cmake-utils toolchain-funcs multilib eutils

DESCRIPTION=Streamlined C++ linear algebra library
HOMEPAGE=http://arma.sourceforge.net/;
SRC_URI=mirror://sourceforge/arma/${P}.tar.gz

LICENSE=MPL-2.0
SLOT=0/5
KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux
IUSE=arpack blas debug doc examples hdf5 lapack mkl superlu tbb test
REQUIRED_USE=test? ( lapack )

RDEPEND=
dev-libs/boost
arpack? ( sci-libs/arpack )
blas? ( virtual/blas )
lapack? ( virtual/lapack )
superlu? ( sci-libs/superlu )

DEPEND=${RDEPEND}
arpack? ( virtual/pkgconfig )
blas? ( virtual/pkgconfig )
hdf5? ( sci-libs/hdf5 )
lapack? ( virtual/pkgconfig )
mkl? ( sci-libs/mkl )
tbb? ( dev-cpp/tbb )
PDEPEND=${RDEPEND}
hdf5? ( sci-libs/hdf5 )
mkl? ( sci-libs/mkl )
tbb? ( dev-cpp/tbb )

src_prepare() {
# avoid the automagic cmake macros
sed -i -e '/ARMA_Find/d' CMakeLists.txt || die
cmake-utils_src_prepare
}

src_configure() {
local mycmakeargs=(
-DINSTALL_LIB_DIR=${EPREFIX}/usr/$(get_libdir)
$(cmake-utils_use debug ARMA_EXTRA_DEBUG)
$(cmake-utils_use mkl ARMA_USE_MKL_ALLOC)
$(cmake-utils_use tbb ARMA_USE_TBB_ALLOC)
)
if use arpack; then
mycmakeargs+=(
-DARPACK_FOUND=ON
-DARPACK_LIBRARY=$($(tc-getPKG_CONFIG) --libs arpack)
)
fi
#   if use atlas; then
#   local c=atlas-cblas l=atlas-clapack
#   $(tc-getPKG_CONFIG) --exists ${c}-threads  c+=-threads
#   $(tc-getPKG_CONFIG) --exists ${l}-threads  l+=-threads
#   mycmakeargs+=(
#   -DCBLAS_FOUND=ON
#   -DCBLAS_INCLUDE_DIR=$($(tc-getPKG_CONFIG) 
--cflags-only-I ${c} | sed 's/-I//')
#   -DCBLAS_LIBRARIES=$($(tc-getPKG_CONFIG) --libs ${c})
#   -DCLAPACK_FOUND=ON
#   -DCLAPACK_INCLUDE_DIR=$($(tc-getPKG_CONFIG) 
--cflags-only-I ${l} | sed 's/-I//')
#   -DCLAPACK_LIBRARIES=$($(tc-getPKG_CONFIG) --libs ${l})
#   )
#   fi
if use blas; then
mycmakeargs+=(
-DBLAS_FOUND=ON
-DBLAS_LIBRARIES=$($(tc-getPKG_CONFIG) --libs blas)
)
fi
if use hdf5; then
mycmakeargs+=(
-DHDF5_FOUND=ON
-DHDF5_LIBRARIES=-lhdf5
)
fi
if use lapack; then
mycmakeargs+=(
-DLAPACK_FOUND=ON

[gentoo-commits] gentoo-x86 commit in net-misc/htpdate: htpdate-1.1.1.ebuild ChangeLog htpdate-1.0.5.ebuild htpdate-1.0.4.ebuild

2015-07-25 Thread Lars Wendler (polynomial-c)
polynomial-c15/07/25 21:14:29

  Modified: ChangeLog
  Added:htpdate-1.1.1.ebuild
  Removed:  htpdate-1.0.5.ebuild htpdate-1.0.4.ebuild
  Log:
  Version bump. Removed old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
981CA6FC)

Revision  ChangesPath
1.57 net-misc/htpdate/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/htpdate/ChangeLog?rev=1.57view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/htpdate/ChangeLog?rev=1.57content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/htpdate/ChangeLog?r1=1.56r2=1.57

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/htpdate/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog   18 Jan 2014 10:38:58 -  1.56
+++ ChangeLog   25 Jul 2015 21:14:29 -  1.57
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/htpdate
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/htpdate/ChangeLog,v 1.56 
2014/01/18 10:38:58 vapier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/htpdate/ChangeLog,v 1.57 
2015/07/25 21:14:29 polynomial-c Exp $
+
+*htpdate-1.1.1 (25 Jul 2015)
+
+  25 Jul 2015; Lars Wendler polynomia...@gentoo.org -htpdate-1.0.4.ebuild,
+  -htpdate-1.0.5.ebuild, +htpdate-1.1.1.ebuild, -files/htpdate.init:
+  Version bump. Removed old.
 
   18 Jan 2014; Mike Frysinger vap...@gentoo.org htpdate-1.0.7.ebuild:
   Add arm64 love.



1.1  net-misc/htpdate/htpdate-1.1.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/htpdate/htpdate-1.1.1.ebuild?rev=1.1view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/htpdate/htpdate-1.1.1.ebuild?rev=1.1content-type=text/plain

Index: htpdate-1.1.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/htpdate/htpdate-1.1.1.ebuild,v 1.1 
2015/07/25 21:14:29 polynomial-c Exp $

EAPI=5

inherit readme.gentoo toolchain-funcs unpacker

DESCRIPTION=Synchronize local workstation with time offered by remote 
webservers
HOMEPAGE=http://www.vervest.org/fiki/bin/view/HTP/DownloadC;
SRC_URI=http://www.vervest.org/htp/archive/c/${P}.tar.gz;

LICENSE=GPL-2
SLOT=0
KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 
~amd64-linux ~x86-linux

DEPEND=
RDEPEND=

DOC_CONTENTS=If you would like to run htpdate as a daemon, set
appropriate http servers in /etc/conf.d/htpdate!

src_prepare() {
# Use more standard adjtimex() to fix uClibc builds.
sed -i 's:ntp_adjtime:adjtimex:g' htpdate.[8c] || die
}

src_compile() {
emake CFLAGS=-Wall ${CFLAGS} ${LDFLAGS} CC=$(tc-getCC)
}

src_install() {
dosbin htpdate
doman htpdate.8
dodoc README Changelog

newconfd ${FILESDIR}/htpdate.conf htpdate
newinitd ${FILESDIR}/htpdate.init-r1 htpdate

readme.gentoo_create_doc
}






[gentoo-commits] gentoo-x86 commit in net-misc/htpdate/files: htpdate.init

2015-07-25 Thread Lars Wendler (polynomial-c)
polynomial-c15/07/25 21:14:29

  Removed:  htpdate.init
  Log:
  Version bump. Removed old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
981CA6FC)



[gentoo-commits] gentoo-x86 commit in media-libs/libvisio: ChangeLog libvisio-0.1.0.ebuild

2015-07-25 Thread Andreas Huettel (dilfridge)
dilfridge15/07/25 21:18:45

  Modified: ChangeLog
  Removed:  libvisio-0.1.0.ebuild
  Log:
  Remove old
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0B08240A96F66571)

Revision  ChangesPath
1.67 media-libs/libvisio/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.67view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.67content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?r1=1.66r2=1.67

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog   25 Jul 2015 21:16:53 -  1.66
+++ ChangeLog   25 Jul 2015 21:18:45 -  1.67
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libvisio
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.66 
2015/07/25 21:16:53 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.67 
2015/07/25 21:18:45 dilfridge Exp $
+
+  25 Jul 2015; Andreas K. Huettel dilfri...@gentoo.org 
-libvisio-0.1.0.ebuild:
+  Remove old
 
   25 Jul 2015; Andreas K. Huettel dilfri...@gentoo.org libvisio-0.1.3.ebuild,
   libvisio-.ebuild:






  1   2   3   4   >