[gentoo-commits] gentoo-x86 commit in eclass: autotools.eclass
vapier 14/11/15 07:50:02 Modified: autotools.eclass Log: abort when AUTOTOOLS_AUTO_DEPEND changes on us as it will not work and is not intended behavior #409611 by Michał Górny Revision ChangesPath 1.169eclass/autotools.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.169&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.169&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?r1=1.168&r2=1.169 Index: autotools.eclass === RCS file: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v retrieving revision 1.168 retrieving revision 1.169 diff -u -r1.168 -r1.169 --- autotools.eclass15 Nov 2014 07:11:41 - 1.168 +++ autotools.eclass15 Nov 2014 07:50:02 - 1.169 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.168 2014/11/15 07:11:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.169 2014/11/15 07:50:02 vapier Exp $ # @ECLASS: autotools.eclass # @MAINTAINER: @@ -13,6 +13,16 @@ # Note: We require GNU m4, as does autoconf. So feel free to use any features # from the GNU version of m4 without worrying about other variants (i.e. BSD). +if [[ ${__AUTOTOOLS_AUTO_DEPEND+set} == "set" ]] ; then + # See if we were included already, but someone changed the value + # of AUTOTOOLS_AUTO_DEPEND on us. We could reload the entire + # eclass at that point, but that adds overhead, and it's trivial + # to re-order inherit in eclasses/ebuilds instead. #409611 + if [[ ${__AUTOTOOLS_AUTO_DEPEND} != ${AUTOTOOLS_AUTO_DEPEND} ]] ; then + die "AUTOTOOLS_AUTO_DEPEND changed value between inherits; please inherit autotools.eclass first! ${__AUTOTOOLS_AUTO_DEPEND} -> ${AUTOTOOLS_AUTO_DEPEND}" + fi +fi + if [[ -z ${_AUTOTOOLS_ECLASS} ]]; then _AUTOTOOLS_ECLASS=1 @@ -107,6 +117,7 @@ if [[ ${AUTOTOOLS_AUTO_DEPEND} != "no" ]] ; then DEPEND=${AUTOTOOLS_DEPEND} fi +__AUTOTOOLS_AUTO_DEPEND=${AUTOTOOLS_AUTO_DEPEND} # See top of eclass unset _automake_atom _autoconf_atom
[gentoo-commits] gentoo-x86 commit in eclass: xfconf.eclass
vapier 14/11/15 07:49:11 Modified: xfconf.eclass Log: set AUTOTOOLS_AUTO_DEPEND based on EAUTORECONF so that we do not clobber earlier settings #409611 by Michał Górny Revision ChangesPath 1.47 eclass/xfconf.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/xfconf.eclass?rev=1.47&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/xfconf.eclass?rev=1.47&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/xfconf.eclass?r1=1.46&r2=1.47 Index: xfconf.eclass === RCS file: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- xfconf.eclass 27 Feb 2014 17:12:01 - 1.46 +++ xfconf.eclass 15 Nov 2014 07:49:11 - 1.47 @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.46 2014/02/27 17:12:01 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.47 2014/11/15 07:49:11 vapier Exp $ # @ECLASS: xfconf.eclass # @MAINTAINER: @@ -13,12 +13,16 @@ # @DESCRIPTION: # Run eautoreconf instead of elibtoolize if the variable is set +if [[ -n ${EAUTORECONF} ]] ; then + AUTOTOOLS_AUTO_DEPEND=yes +else + : ${AUTOTOOLS_AUTO_DEPEND:=no} +fi + # @ECLASS-VARIABLE: XFCONF # @DESCRIPTION: # This should be an array defining arguments for econf -AUTOTOOLS_AUTO_DEPEND=no - unset _xfconf_live [[ $PV == ** ]] && _xfconf_live=git-2 @@ -28,7 +32,7 @@ EGIT_REPO_URI="git://git.xfce.org/xfce/${MY_PN:-${PN}}" _xfconf_deps="" -_xfconf_m4=">=dev-util/xfce4-dev-tools-4.10 ${AUTOTOOLS_DEPEND}" +_xfconf_m4=">=dev-util/xfce4-dev-tools-4.10" [[ -n $_xfconf_live ]] && _xfconf_deps+=" dev-util/gtk-doc ${_xfconf_m4}" [[ -n $EAUTORECONF ]] && _xfconf_deps+=" ${_xfconf_m4}"
[gentoo-commits] gentoo-x86 commit in dev-ruby/pygments_rb: ChangeLog pygments_rb-0.6.0-r2.ebuild
graaff 14/11/15 07:42:45 Modified: ChangeLog pygments_rb-0.6.0-r2.ebuild Log: Avoid unneeded dependency on git, fixing bug 529226. (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!) Revision ChangesPath 1.7 dev-ruby/pygments_rb/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pygments_rb/ChangeLog?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pygments_rb/ChangeLog?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pygments_rb/ChangeLog?r1=1.6&r2=1.7 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-ruby/pygments_rb/ChangeLog,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ChangeLog 10 Sep 2014 12:15:02 - 1.6 +++ ChangeLog 15 Nov 2014 07:42:45 - 1.7 @@ -1,6 +1,9 @@ # ChangeLog for dev-ruby/pygments_rb # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pygments_rb/ChangeLog,v 1.6 2014/09/10 12:15:02 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pygments_rb/ChangeLog,v 1.7 2014/11/15 07:42:45 graaff Exp $ + + 15 Nov 2014; Hans de Graaff pygments_rb-0.6.0-r2.ebuild: + Avoid unneeded dependency on git, fixing bug 529226. *pygments_rb-0.6.0-r2 (10 Sep 2014) 1.2 dev-ruby/pygments_rb/pygments_rb-0.6.0-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pygments_rb/pygments_rb-0.6.0-r2.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pygments_rb/pygments_rb-0.6.0-r2.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pygments_rb/pygments_rb-0.6.0-r2.ebuild?r1=1.1&r2=1.2 Index: pygments_rb-0.6.0-r2.ebuild === RCS file: /var/cvsroot/gentoo-x86/dev-ruby/pygments_rb/pygments_rb-0.6.0-r2.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- pygments_rb-0.6.0-r2.ebuild 10 Sep 2014 12:15:02 - 1.1 +++ pygments_rb-0.6.0-r2.ebuild 15 Nov 2014 07:42:45 - 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pygments_rb/pygments_rb-0.6.0-r2.ebuild,v 1.1 2014/09/10 12:15:02 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pygments_rb/pygments_rb-0.6.0-r2.ebuild,v 1.2 2014/11/15 07:42:45 graaff Exp $ EAPI=5 @@ -44,7 +44,7 @@ all_ruby_prepare() { sed -i -e '/[Bb]undler/d' Rakefile || die - sed -i -e 's/~> 1.1.0/~> 1.1/' pygments.rb.gemspec || die + sed -i -e 's/~> 1.1.0/~> 1.1/' -e '/s.files/d' pygments.rb.gemspec || die python_fix_shebang lib/pygments/mentos.py # we are loosing a "custom github lexer here", no idea what it is, # but if we need it, it should go into dev-python/pygments
[gentoo-commits] gentoo-x86 commit in dev-ruby/sass: ChangeLog sass-3.4.8.ebuild
graaff 14/11/15 07:35:14 Modified: ChangeLog Added:sass-3.4.8.ebuild Log: Version bump. (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!) Revision ChangesPath 1.66 dev-ruby/sass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sass/ChangeLog?rev=1.66&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sass/ChangeLog?rev=1.66&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sass/ChangeLog?r1=1.65&r2=1.66 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-ruby/sass/ChangeLog,v retrieving revision 1.65 retrieving revision 1.66 diff -u -r1.65 -r1.66 --- ChangeLog 1 Nov 2014 07:40:13 - 1.65 +++ ChangeLog 15 Nov 2014 07:35:14 - 1.66 @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/sass # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sass/ChangeLog,v 1.65 2014/11/01 07:40:13 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sass/ChangeLog,v 1.66 2014/11/15 07:35:14 graaff Exp $ + +*sass-3.4.8 (15 Nov 2014) + + 15 Nov 2014; Hans de Graaff +sass-3.4.8.ebuild: + Version bump. *sass-3.4.7 (01 Nov 2014) 1.1 dev-ruby/sass/sass-3.4.8.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sass/sass-3.4.8.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sass/sass-3.4.8.ebuild?rev=1.1&content-type=text/plain Index: sass-3.4.8.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/sass/sass-3.4.8.ebuild,v 1.1 2014/11/15 07:35:14 graaff Exp $ EAPI=5 USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_DOCDIR="doc" RUBY_FAKEGEM_EXTRADOC="README.md" RUBY_FAKEGEM_EXTRAINSTALL="rails init.rb VERSION VERSION_NAME" inherit ruby-fakegem versionator DESCRIPTION="An extension of CSS3, adding nested rules, variables, mixins, selector inheritance, and more" HOMEPAGE="http://sass-lang.com/"; LICENSE="MIT" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" SLOT="$(get_version_component_range 1-2)" IUSE="" ruby_add_bdepend "doc? ( >=dev-ruby/yard-0.5.3 )" ruby_add_rdepend ">=dev-ruby/listen-1.3.1 !!
[gentoo-commits] gentoo-x86 commit in games-puzzle/brainworkshop/files: brainworkshop-4.8.1-fix-paths.patch
mr_bones_14/11/15 07:22:35 Removed: brainworkshop-4.8.1-fix-paths.patch Log: old (Portage version: 2.2.8-r2/cvs/Linux x86_64, unsigned Manifest commit)
[gentoo-commits] gentoo-x86 commit in games-puzzle/brainworkshop: ChangeLog brainworkshop-4.8.1.ebuild
mr_bones_14/11/15 07:22:35 Modified: ChangeLog Removed: brainworkshop-4.8.1.ebuild Log: old (Portage version: 2.2.8-r2/cvs/Linux x86_64, unsigned Manifest commit) Revision ChangesPath 1.8 games-puzzle/brainworkshop/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/brainworkshop/ChangeLog?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/brainworkshop/ChangeLog?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/brainworkshop/ChangeLog?r1=1.7&r2=1.8 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/games-puzzle/brainworkshop/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ChangeLog 3 Nov 2014 09:38:55 - 1.7 +++ ChangeLog 15 Nov 2014 07:22:34 - 1.8 @@ -1,6 +1,10 @@ # ChangeLog for games-puzzle/brainworkshop # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/brainworkshop/ChangeLog,v 1.7 2014/11/03 09:38:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/brainworkshop/ChangeLog,v 1.8 2014/11/15 07:22:34 mr_bones_ Exp $ + + 15 Nov 2014; Michael Sterrett + -brainworkshop-4.8.1.ebuild, -files/brainworkshop-4.8.1-fix-paths.patch: + old 03 Nov 2014; Agostino Sarubbo brainworkshop-4.8.4.ebuild: Stable for x86, wrt bug #527132
[gentoo-commits] gentoo-x86 commit in games-fps/xonotic: ChangeLog xonotic-0.6.0.ebuild
mr_bones_14/11/15 07:11:13 Modified: ChangeLog Removed: xonotic-0.6.0.ebuild Log: old (Portage version: 2.2.8-r2/cvs/Linux x86_64, unsigned Manifest commit) Revision ChangesPath 1.16 games-fps/xonotic/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/ChangeLog?rev=1.16&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/ChangeLog?rev=1.16&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/xonotic/ChangeLog?r1=1.15&r2=1.16 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- ChangeLog 12 Oct 2014 08:46:57 - 1.15 +++ ChangeLog 15 Nov 2014 07:11:13 - 1.16 @@ -1,6 +1,9 @@ # ChangeLog for games-fps/xonotic # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v 1.15 2014/10/12 08:46:57 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v 1.16 2014/11/15 07:11:13 mr_bones_ Exp $ + + 15 Nov 2014; Michael Sterrett -xonotic-0.6.0.ebuild: + old 12 Oct 2014; Agostino Sarubbo xonotic-0.7.0.ebuild: Stable for x86, wrt bug #503928
[gentoo-commits] gentoo-x86 commit in eclass: autotools.eclass
vapier 14/11/15 07:11:41 Modified: autotools.eclass Log: autotools_env_setup: fix die message to list all the versions we tried and not just the first one #514724 by Alon Bar-Lev Revision ChangesPath 1.168eclass/autotools.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.168&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.168&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?r1=1.167&r2=1.168 Index: autotools.eclass === RCS file: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v retrieving revision 1.167 retrieving revision 1.168 diff -u -r1.167 -r1.168 --- autotools.eclass15 Nov 2014 05:40:04 - 1.167 +++ autotools.eclass15 Nov 2014 07:11:41 - 1.168 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.167 2014/11/15 05:40:04 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.168 2014/11/15 07:11:41 vapier Exp $ # @ECLASS: autotools.eclass # @MAINTAINER: @@ -432,7 +432,7 @@ ROOT=/ has_version "=sys-devel/automake-${pv}*" && export WANT_AUTOMAKE="${pv}" done [[ ${WANT_AUTOMAKE} == "latest" ]] && \ - die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" + die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE[*]}" fi [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 }
[gentoo-commits] gentoo-x86 commit in x11-libs/glamor: glamor-0.6.0.ebuild glamor-0.6.0-r1.ebuild ChangeLog
vapier 14/11/15 06:53:45 Modified: glamor-0.6.0.ebuild glamor-0.6.0-r1.ebuild ChangeLog Log: Fix eclass inherit order so autotools-utils does not stomp on xorg-2 setup #506416 by Nikoli. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D2E96200) Revision ChangesPath 1.12 x11-libs/glamor/glamor-0.6.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild?r1=1.11&r2=1.12 Index: glamor-0.6.0.ebuild === RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- glamor-0.6.0.ebuild 21 Jul 2014 08:41:25 - 1.11 +++ glamor-0.6.0.ebuild 15 Nov 2014 06:53:45 - 1.12 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.11 2014/07/21 08:41:25 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.12 2014/11/15 06:53:45 vapier Exp $ EAPI=5 @@ -10,7 +10,7 @@ XORG_MODULE_REBUILD=yes S=${WORKDIR}/${PN}-egl-${PV} -inherit autotools-utils xorg-2 toolchain-funcs +inherit xorg-2 autotools-utils toolchain-funcs DESCRIPTION="OpenGL based 2D rendering acceleration library" SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${PN}-egl-${PV}.tar.bz2" 1.3 x11-libs/glamor/glamor-0.6.0-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/glamor-0.6.0-r1.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/glamor-0.6.0-r1.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/glamor-0.6.0-r1.ebuild?r1=1.2&r2=1.3 Index: glamor-0.6.0-r1.ebuild === RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0-r1.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- glamor-0.6.0-r1.ebuild 21 Jul 2014 08:41:25 - 1.2 +++ glamor-0.6.0-r1.ebuild 15 Nov 2014 06:53:45 - 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0-r1.ebuild,v 1.2 2014/07/21 08:41:25 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0-r1.ebuild,v 1.3 2014/11/15 06:53:45 vapier Exp $ EAPI=5 @@ -10,7 +10,7 @@ XORG_MODULE_REBUILD=yes S=${WORKDIR}/${PN}-egl-${PV} -inherit autotools-utils xorg-2 toolchain-funcs +inherit xorg-2 autotools-utils toolchain-funcs DESCRIPTION="OpenGL based 2D rendering acceleration library" SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${PN}-egl-${PV}.tar.bz2" 1.38 x11-libs/glamor/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/ChangeLog?rev=1.38&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/ChangeLog?rev=1.38&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/ChangeLog?r1=1.37&r2=1.38 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v retrieving revision 1.37 retrieving revision 1.38 diff -u -r1.37 -r1.38 --- ChangeLog 21 Jul 2014 08:41:25 - 1.37 +++ ChangeLog 15 Nov 2014 06:53:45 - 1.38 @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/glamor # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.37 2014/07/21 08:41:25 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.38 2014/11/15 06:53:45 vapier Exp $ + + 15 Nov 2014; Mike Frysinger glamor-0.6.0-r1.ebuild, + glamor-0.6.0.ebuild: + Fix eclass inherit order so autotools-utils does not stomp on xorg-2 setup + #506416 by Nikoli. 21 Jul 2014; Chí-Thanh Christopher Nguyễn -glamor-0.5-r1.ebuild, -glamor-0.5.1-r1.ebuild, -glamor-0.5.1.ebuild,
[gentoo-commits] gentoo-x86 commit in app-arch/snappy: snappy-1.1.2-r1.ebuild ChangeLog
vapier 14/11/15 06:49:21 Modified: snappy-1.1.2-r1.ebuild ChangeLog Log: Make sure we depend on autotools #529078 by Nikoli. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D2E96200) Revision ChangesPath 1.6 app-arch/snappy/snappy-1.1.2-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/snappy/snappy-1.1.2-r1.ebuild?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/snappy/snappy-1.1.2-r1.ebuild?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/snappy/snappy-1.1.2-r1.ebuild?r1=1.5&r2=1.6 Index: snappy-1.1.2-r1.ebuild === RCS file: /var/cvsroot/gentoo-x86/app-arch/snappy/snappy-1.1.2-r1.ebuild,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- snappy-1.1.2-r1.ebuild 30 Oct 2014 18:45:33 - 1.5 +++ snappy-1.1.2-r1.ebuild 15 Nov 2014 06:49:21 - 1.6 @@ -1,9 +1,10 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/snappy/snappy-1.1.2-r1.ebuild,v 1.5 2014/10/30 18:45:33 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/snappy/snappy-1.1.2-r1.ebuild,v 1.6 2014/11/15 06:49:21 vapier Exp $ EAPI="5" +AUTOTOOLS_AUTO_DEPEND="yes" inherit eutils autotools-multilib DESCRIPTION="A high-speed compression/decompression library by Google" 1.21 app-arch/snappy/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/snappy/ChangeLog?rev=1.21&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/snappy/ChangeLog?rev=1.21&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/snappy/ChangeLog?r1=1.20&r2=1.21 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-arch/snappy/ChangeLog,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- ChangeLog 30 Oct 2014 18:45:33 - 1.20 +++ ChangeLog 15 Nov 2014 06:49:21 - 1.21 @@ -1,6 +1,9 @@ # ChangeLog for app-arch/snappy # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/snappy/ChangeLog,v 1.20 2014/10/30 18:45:33 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/snappy/ChangeLog,v 1.21 2014/11/15 06:49:21 vapier Exp $ + + 15 Nov 2014; Mike Frysinger snappy-1.1.2-r1.ebuild: + Make sure we depend on autotools #529078 by Nikoli. 30 Oct 2014; Markus Meier snappy-1.1.2-r1.ebuild: arm stable, bug #526038
[gentoo-commits] gentoo-x86 commit in sys-devel/automake/files: automake-1.4-perl-dyn-call.patch
vapier 14/11/15 06:42:33 Added:automake-1.4-perl-dyn-call.patch Log: Fix perl syntax to work with latest versions (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key D2E96200) Revision ChangesPath 1.1 sys-devel/automake/files/automake-1.4-perl-dyn-call.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/files/automake-1.4-perl-dyn-call.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/files/automake-1.4-perl-dyn-call.patch?rev=1.1&content-type=text/plain Index: automake-1.4-perl-dyn-call.patch === at some point, a perl update broke this syntax. use a newer style that works with at least perl-5.16. --- a/automake.in +++ b/automake.in @@ -983,7 +983,7 @@ sub finish_languages # Compute the function name of the finisher and then call it. $name = 'lang_' . $lang . '_finish'; - do $name (); + &$name (); } # If the project is entirely C++ or entirely Fortran 77, don't @@ -1144,7 +1144,7 @@ sub handle_single_transform_list # Found the language, so see what it says. local ($subr) = 'lang_' . $lang . '_rewrite'; # Note: computed subr call. - local ($r) = do $subr ($base, $extension); + local ($r) = &$subr ($base, $extension); # Skip this entry if we were asked not to process it. next if ! $r;
[gentoo-commits] gentoo-x86 commit in sys-devel/automake: automake-1.4_p6-r2.ebuild ChangeLog automake-1.4_p6-r1.ebuild
vapier 14/11/15 06:42:33 Modified: ChangeLog Added:automake-1.4_p6-r2.ebuild Removed: automake-1.4_p6-r1.ebuild Log: Fix perl syntax to work with latest versions (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key D2E96200) Revision ChangesPath 1.217sys-devel/automake/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.217&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.217&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?r1=1.216&r2=1.217 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v retrieving revision 1.216 retrieving revision 1.217 diff -u -r1.216 -r1.217 --- ChangeLog 15 Nov 2014 06:30:36 - 1.216 +++ ChangeLog 15 Nov 2014 06:42:33 - 1.217 @@ -1,6 +1,12 @@ # ChangeLog for sys-devel/automake # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.216 2014/11/15 06:30:36 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.217 2014/11/15 06:42:33 vapier Exp $ + +*automake-1.4_p6-r2 (15 Nov 2014) + + 15 Nov 2014; Mike Frysinger +automake-1.4_p6-r2.ebuild, + +files/automake-1.4-perl-dyn-call.patch, -automake-1.4_p6-r1.ebuild: + Fix perl syntax to work with latest versions *automake-1.10.3-r1 (15 Nov 2014) *automake-1.11.6-r1 (15 Nov 2014) 1.1 sys-devel/automake/automake-1.4_p6-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.4_p6-r2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.4_p6-r2.ebuild?rev=1.1&content-type=text/plain Index: automake-1.4_p6-r2.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.4_p6-r2.ebuild,v 1.1 2014/11/15 06:42:33 vapier Exp $ EAPI="4" inherit eutils MY_P="${P/_/-}" DESCRIPTION="Used to generate Makefile.in from Makefile.am" HOMEPAGE="http://www.gnu.org/software/automake/"; SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz" LICENSE="GPL-2" # Use Gentoo versioning for slotting. SLOT="${PV:0:3}" KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd" IUSE="" RDEPEND="dev-lang/perl >=sys-devel/automake-wrapper-9 >=sys-devel/autoconf-2.69 sys-devel/gnuconfig" DEPEND="${RDEPEND}" S=${WORKDIR}/${MY_P} src_prepare() { export WANT_AUTOCONF=2.5 epatch "${FILESDIR}"/${PN}-1.4-nls-nuisances.patch #121151 epatch "${FILESDIR}"/${PN}-1.4-libtoolize.patch epatch "${FILESDIR}"/${PN}-1.4-subdirs-89656.patch epatch "${FILESDIR}"/${PN}-1.4-ansi2knr-stdlib.patch epatch "${FILESDIR}"/${PN}-1.4-CVE-2009-4029.patch #295357 epatch "${FILESDIR}"/${PN}-1.4-perl-5.11.patch epatch "${FILESDIR}"/${PN}-1.4-perl-dyn-call.patch sed -i 's:error\.test::' tests/Makefile.in #79529 } # slot the info pages. do this w/out munging the source so we don't have # to depend on texinfo to regen things. #464146 (among others) slot_info_pages() { pushd "${D}"/usr/share/info >/dev/null rm -f dir # Rewrite all the references to other pages. # before: * aclocal-invocation: (automake)aclocal Invocation. Generating aclocal.m4. # after: * aclocal-invocation v1.13: (automake-1.13)aclocal Invocation. Generating aclocal.m4. local p pages=( *.info ) args=() for p in "${pages[@]/%.info}" ; do args+=( -e "/START-INFO-DIR-ENTRY/,/END-INFO-DIR-ENTRY/s|: (${p})| v${SLOT}&|" -e "s:(${p}):(${p}-${SLOT}):g" ) done sed -i "${args[@]}" * || die # Rewrite all the file references, and rename them in the process. local f d for f in * ; do d=${f/.info/-${SLOT}.info} mv "${f}" "${d}" || die sed -i -e "s:${f}:${d}:g" * || die done popd >/dev/null } src_install() { emake install DESTDIR="${D}" \ pkgdatadir=/usr/share/automake-${SLOT} \ m4datadir=/usr/share/aclocal-${SLOT} slot_info_pages rm -f "${D}"/usr/bin/{aclocal,automake} dosym automake-${SLOT} /usr/share/automake dodoc NEWS README THANKS TODO AUTHORS ChangeLog # remove all config.guess and config.sub files replacing them # w/a symlink to a specific g
[gentoo-commits] gentoo-x86 commit in sys-devel/automake: automake-1.11.6-r1.ebuild automake-1.10.3-r1.ebuild ChangeLog automake-1.10.3.ebuild automake-1.11.6.ebuild
vapier 14/11/15 06:30:36 Modified: ChangeLog Added:automake-1.11.6-r1.ebuild automake-1.10.3-r1.ebuild Removed: automake-1.10.3.ebuild automake-1.11.6.ebuild Log: Backport fix from upstream for warnings with perl-5.16+ #424453 by Alexander Huemer. (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key D2E96200) Revision ChangesPath 1.216sys-devel/automake/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.216&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.216&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?r1=1.215&r2=1.216 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v retrieving revision 1.215 retrieving revision 1.216 diff -u -r1.215 -r1.216 --- ChangeLog 15 Nov 2014 06:21:57 - 1.215 +++ ChangeLog 15 Nov 2014 06:30:36 - 1.216 @@ -1,6 +1,15 @@ # ChangeLog for sys-devel/automake # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.215 2014/11/15 06:21:57 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.216 2014/11/15 06:30:36 vapier Exp $ + +*automake-1.10.3-r1 (15 Nov 2014) +*automake-1.11.6-r1 (15 Nov 2014) + + 15 Nov 2014; Mike Frysinger +automake-1.10.3-r1.ebuild, + +automake-1.11.6-r1.ebuild, +files/automake-1.10-perl-5.16.patch, + -automake-1.10.3.ebuild, -automake-1.11.6.ebuild: + Backport fix from upstream for warnings with perl-5.16+ #424453 by Alexander + Huemer. *automake-1.8.5-r5 (15 Nov 2014) *automake-1.5-r2 (15 Nov 2014) 1.1 sys-devel/automake/automake-1.11.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.11.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.11.6-r1.ebuild?rev=1.1&content-type=text/plain Index: automake-1.11.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.11.6-r1.ebuild,v 1.1 2014/11/15 06:30:36 vapier Exp $ EAPI="4" inherit eutils DESCRIPTION="Used to generate Makefile.in from Makefile.am" HOMEPAGE="http://www.gnu.org/software/automake/"; SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" LICENSE="GPL-2" # Use Gentoo versioning for slotting. SLOT="${PV:0:4}" KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" IUSE="" RDEPEND="dev-lang/perl >=sys-devel/automake-wrapper-9 >=sys-devel/autoconf-2.69 sys-devel/gnuconfig" DEPEND="${RDEPEND} sys-apps/help2man" src_prepare() { export WANT_AUTOCONF=2.5 epatch "${FILESDIR}"/${PN}-1.10-perl-5.16.patch #424453 chmod a+rx tests/*.test } src_configure() { econf --docdir=/usr/share/doc/${PF} HELP2MAN=true } src_compile() { emake APIVERSION="${SLOT}" pkgvdatadir="/usr/share/${PN}-${SLOT}" local x for x in aclocal automake; do help2man "perl -Ilib ${x}" > doc/${x}-${SLOT}.1 done } # slot the info pages. do this w/out munging the source so we don't have # to depend on texinfo to regen things. #464146 (among others) slot_info_pages() { pushd "${D}"/usr/share/info >/dev/null rm -f dir # Rewrite all the references to other pages. # before: * aclocal-invocation: (automake)aclocal Invocation. Generating aclocal.m4. # after: * aclocal-invocation v1.13: (automake-1.13)aclocal Invocation. Generating aclocal.m4. local p pages=( *.info ) args=() for p in "${pages[@]/%.info}" ; do args+=( -e "/START-INFO-DIR-ENTRY/,/END-INFO-DIR-ENTRY/s|: (${p})| v${SLOT}&|" -e "s:(${p}):(${p}-${SLOT}):g" ) done sed -i "${args[@]}" * || die # Rewrite all the file references, and rename them in the process. local f d for f in * ; do d=${f/.info/-${SLOT}.info} mv "${f}" "${d}" || die sed -i -e "s:${f}:${d}:g" * || die done popd >/dev/null } src_install() { emake DESTDIR="${D}" install \ APIVERSION="${SLOT}" pkgvdatadir="/usr/share/${PN}-${SLOT}" slot_info_pages dodoc NEWS README THANKS TODO AUTHORS ChangeLog rm \ "${D}"/usr/bin/{aclocal,automake} \ "${D}"/usr/share/man/man1/{aclocal
[gentoo-commits] gentoo-x86 commit in sys-devel/automake/files: automake-1.10-perl-5.16.patch
vapier 14/11/15 06:30:36 Added:automake-1.10-perl-5.16.patch Log: Backport fix from upstream for warnings with perl-5.16+ #424453 by Alexander Huemer. (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key D2E96200) Revision ChangesPath 1.1 sys-devel/automake/files/automake-1.10-perl-5.16.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/files/automake-1.10-perl-5.16.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/files/automake-1.10-perl-5.16.patch?rev=1.1&content-type=text/plain Index: automake-1.10-perl-5.16.patch === https://bugs.gentoo.org/424453 >From 6bf58a59a1f3803e57e3f0378aa9344686707b75 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Mon, 28 May 2012 13:32:03 +0200 Subject: [PATCH] aclocal: declare function prototypes, do not use '&' in function calls This change will also fix automake bug#11543 (from a report by Matt Burgess). * aclocal.in: Declare prototypes for almost all functions early, before any actual function definition (but omit the prototype for the dynamically generated '&search' function). Add prototypes to any function definition. Remove '&' from function invocations (i.e., simply use "func(ARGS..)" instead of "&func(ARGS...)"). * THANKS, NEWS: Update. Signed-off-by: Stefano Lattarini --- NEWS | 4 THANKS | 1 + aclocal.in | 42 ++ 3 files changed, 39 insertions(+), 8 deletions(-) diff --git a/aclocal.in b/aclocal.in index dfb851b..e8855d5 100644 --- a/aclocal.in +++ b/aclocal.in @@ -152,8 +152,34 @@ my $erase_me; +# Prototypes for all subroutines. + +sub unlink_tmp (;$); +sub xmkdir_p ($); +sub check_acinclude (); +sub reset_maps (); +sub install_file ($$); +sub list_compare (\@\@); +sub scan_m4_dirs ($@); +sub scan_m4_files (); +sub add_macro ($); +sub scan_configure_dep ($); +sub add_file ($); +sub scan_file ($$$); +sub strip_redundant_includes (%); +sub trace_used_macros (); +sub scan_configure (); +sub write_aclocal ($@); +sub usage ($); +sub version (); +sub handle_acdir_option ($$); +sub parse_arguments (); +sub parse_ACLOCAL_PATH (); + + + # Erase temporary file ERASE_ME. Handle signals. -sub unlink_tmp +sub unlink_tmp (;$) { my ($sig) = @_; @@ -350,7 +376,7 @@ sub scan_m4_dirs ($@) next if $file eq 'aclocal.m4'; my $fullfile = File::Spec->canonpath ("$m4dir/$file"); - &scan_file ($type, $fullfile, 'aclocal'); + scan_file ($type, $fullfile, 'aclocal'); } closedir (DIR); } @@ -361,12 +387,12 @@ sub scan_m4_files () { # First, scan configure.ac. It may contain macro definitions, # or may include other files that define macros. - &scan_file (FT_USER, $configure_ac, 'aclocal'); + scan_file (FT_USER, $configure_ac, 'aclocal'); # Then, scan acinclude.m4 if it exists. if (-f 'acinclude.m4') { - &scan_file (FT_USER, 'acinclude.m4', 'aclocal'); + scan_file (FT_USER, 'acinclude.m4', 'aclocal'); } # Finally, scan all files in our search paths. @@ -380,7 +406,7 @@ sub scan_m4_files () my $search = "sub search {\nmy \$found = 0;\n"; foreach my $key (reverse sort keys %map) { - $search .= ('if (/\b\Q' . $key . '\E(?!\w)/) { & add_macro ("' . $key + $search .= ('if (/\b\Q' . $key . '\E(?!\w)/) { add_macro ("' . $key . '"); $found = 1; }' . "\n"); } $search .= "return \$found;\n};\n"; @@ -403,7 +429,7 @@ sub add_macro ($) verb "saw macro $macro"; $macro_seen{$macro} = 1; - &add_file ($map{$macro}); + add_file ($map{$macro}); } # scan_configure_dep ($file) @@ -465,7 +491,7 @@ sub scan_configure_dep ($) } add_macro ($_) foreach (@rlist); - &scan_configure_dep ($_) foreach @ilist; + scan_configure_dep ($_) foreach @ilist; } # add_file ($FILE) @@ -931,7 +957,7 @@ EOF } # Print version and exit. -sub version() +sub version () { print <
[gentoo-commits] gentoo-x86 commit in sys-devel/automake: automake-1.8.5-r5.ebuild automake-1.6.3-r2.ebuild automake-1.4_p6-r1.ebuild automake-1.7.9-r3.ebuild automake-1.9.6-r4.ebuild automake-1.5-r2.
vapier 14/11/15 06:21:57 Modified: automake-1.4_p6-r1.ebuild ChangeLog Added:automake-1.8.5-r5.ebuild automake-1.6.3-r2.ebuild automake-1.7.9-r3.ebuild automake-1.9.6-r4.ebuild automake-1.5-r2.ebuild Removed: automake-1.7.9-r2.ebuild automake-1.8.5-r4.ebuild automake-1.9.6-r3.ebuild automake-1.6.3-r1.ebuild automake-1.5-r1.ebuild Log: Backport fix from upstream for warnings when using perl-5.11+. (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key D2E96200) Revision ChangesPath 1.13 sys-devel/automake/automake-1.4_p6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.4_p6-r1.ebuild?rev=1.13&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.4_p6-r1.ebuild?rev=1.13&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.4_p6-r1.ebuild?r1=1.12&r2=1.13 Index: automake-1.4_p6-r1.ebuild === RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.4_p6-r1.ebuild,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- automake-1.4_p6-r1.ebuild 15 Nov 2014 06:07:49 - 1.12 +++ automake-1.4_p6-r1.ebuild 15 Nov 2014 06:21:57 - 1.13 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.4_p6-r1.ebuild,v 1.12 2014/11/15 06:07:49 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.4_p6-r1.ebuild,v 1.13 2014/11/15 06:21:57 vapier Exp $ EAPI="4" @@ -32,6 +32,7 @@ epatch "${FILESDIR}"/${PN}-1.4-subdirs-89656.patch epatch "${FILESDIR}"/${PN}-1.4-ansi2knr-stdlib.patch epatch "${FILESDIR}"/${PN}-1.4-CVE-2009-4029.patch #295357 + epatch "${FILESDIR}"/${PN}-1.4-perl-5.11.patch sed -i 's:error\.test::' tests/Makefile.in #79529 } 1.215sys-devel/automake/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.215&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.215&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?r1=1.214&r2=1.215 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v retrieving revision 1.214 retrieving revision 1.215 diff -u -r1.214 -r1.215 --- ChangeLog 15 Nov 2014 06:07:49 - 1.214 +++ ChangeLog 15 Nov 2014 06:21:57 - 1.215 @@ -1,6 +1,22 @@ # ChangeLog for sys-devel/automake # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.214 2014/11/15 06:07:49 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.215 2014/11/15 06:21:57 vapier Exp $ + +*automake-1.8.5-r5 (15 Nov 2014) +*automake-1.5-r2 (15 Nov 2014) +*automake-1.7.9-r3 (15 Nov 2014) +*automake-1.9.6-r4 (15 Nov 2014) +*automake-1.6.3-r2 (15 Nov 2014) + + 15 Nov 2014; Mike Frysinger +automake-1.5-r2.ebuild, + +automake-1.6.3-r2.ebuild, +automake-1.7.9-r3.ebuild, + +automake-1.8.5-r5.ebuild, +automake-1.9.6-r4.ebuild, + +files/automake-1.4-perl-5.11.patch, +files/automake-1.5-perl-5.11.patch, + +files/automake-1.8-perl-5.11.patch, -automake-1.5-r1.ebuild, + -automake-1.6.3-r1.ebuild, -automake-1.7.9-r2.ebuild, + -automake-1.8.5-r4.ebuild, -automake-1.9.6-r3.ebuild, + automake-1.4_p6-r1.ebuild: + Backport fix from upstream for warnings when using perl-5.11+. 15 Nov 2014; Mike Frysinger automake-1.10.3.ebuild, automake-1.11.6.ebuild, automake-1.12.6.ebuild, automake-1.13.4.ebuild, 1.1 sys-devel/automake/automake-1.8.5-r5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.8.5-r5.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.8.5-r5.ebuild?rev=1.1&content-type=text/plain Index: automake-1.8.5-r5.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.8.5-r5.ebuild,v 1.1 2014/11/15 06:21:57 vapier Exp $ EAPI="4" inherit eutils DESCRIPTION="Used to generate Makefile.in from Makefile.am" HOMEPAGE="http://www.gnu.org/software/automake/"; SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2" LICENSE="GPL-2" # Use Gentoo versioning for slot
[gentoo-commits] gentoo-x86 commit in sys-devel/automake/files: automake-1.5-perl-5.11.patch automake-1.8-perl-5.11.patch automake-1.4-perl-5.11.patch
vapier 14/11/15 06:21:57 Added:automake-1.5-perl-5.11.patch automake-1.8-perl-5.11.patch automake-1.4-perl-5.11.patch Log: Backport fix from upstream for warnings when using perl-5.11+. (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key D2E96200) Revision ChangesPath 1.1 sys-devel/automake/files/automake-1.5-perl-5.11.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/files/automake-1.5-perl-5.11.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/files/automake-1.5-perl-5.11.patch?rev=1.1&content-type=text/plain Index: automake-1.5-perl-5.11.patch === >From 375912c466b28a6121d351b9ff5513133a1c7227 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 29 Nov 2009 20:35:03 +0100 Subject: [PATCH] avoid a warning from perl-5.11 * lib/Automake/Wrap.pm (_tab_length): Remove useless use of tr's "/d" modifier. Signed-off-by: Ralf Wildenhues --- ChangeLog| 6 ++ lib/Automake/Wrap.pm | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) --- a/automake.in +++ b/automake.in @@ -5277,7 +5277,7 @@ sub pretty_print_internal # character counts for eight. So we count the number of Tabs and # multiply by 7. my $fill_length = length ($fill); -$fill_length += 7 * ($fill =~ tr/\t/\t/d); +$fill_length += 7 * ($fill =~ tr/\t/\t/); foreach (@values) { -- 2.1.3 1.1 sys-devel/automake/files/automake-1.8-perl-5.11.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/files/automake-1.8-perl-5.11.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/files/automake-1.8-perl-5.11.patch?rev=1.1&content-type=text/plain Index: automake-1.8-perl-5.11.patch === >From 375912c466b28a6121d351b9ff5513133a1c7227 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 29 Nov 2009 20:35:03 +0100 Subject: [PATCH] avoid a warning from perl-5.11 * lib/Automake/Wrap.pm (_tab_length): Remove useless use of tr's "/d" modifier. Signed-off-by: Ralf Wildenhues --- ChangeLog| 6 ++ lib/Automake/Wrap.pm | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/Automake/Wrap.pm b/lib/Automake/Wrap.pm index 09a135a..66213d1 100644 --- a/lib/Automake/Wrap.pm +++ b/lib/Automake/Wrap.pm @@ -55,7 +55,7 @@ sub tab_length($) { my ($txt) = @_; my $len = length ($txt); - $len += 7 * ($txt =~ tr/\t/\t/d); + $len += 7 * ($txt =~ tr/\t/\t/); return $len; } -- 2.1.3 1.1 sys-devel/automake/files/automake-1.4-perl-5.11.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/files/automake-1.4-perl-5.11.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/files/automake-1.4-perl-5.11.patch?rev=1.1&content-type=text/plain Index: automake-1.4-perl-5.11.patch === >From 375912c466b28a6121d351b9ff5513133a1c7227 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 29 Nov 2009 20:35:03 +0100 Subject: [PATCH] avoid a warning from perl-5.11 * lib/Automake/Wrap.pm (_tab_length): Remove useless use of tr's "/d" modifier. Signed-off-by: Ralf Wildenhues --- ChangeLog| 6 ++ lib/Automake/Wrap.pm | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) --- a/automake.in +++ b/automake.in @@ -5126,7 +5126,7 @@ sub pretty_print_internal # character counts for eight. So we count the number of Tabs and # multiply by 7. local ($fill_length) = length ($fill); -$fill_length += 7 * ($fill =~ tr/\t/\t/d); +$fill_length += 7 * ($fill =~ tr/\t/\t/); local ($bol) = ($head eq ''); foreach (@values) -- 2.1.3
[gentoo-commits] gentoo-x86 commit in eclass: gnuconfig.eclass
vapier 14/11/15 06:20:07 Modified: gnuconfig.eclass Log: use $EPREFIX when looking for config.sub files #470146 Revision ChangesPath 1.36 eclass/gnuconfig.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnuconfig.eclass?rev=1.36&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnuconfig.eclass?rev=1.36&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnuconfig.eclass?r1=1.35&r2=1.36 Index: gnuconfig.eclass === RCS file: /var/cvsroot/gentoo-x86/eclass/gnuconfig.eclass,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- gnuconfig.eclass22 May 2013 06:03:08 - 1.35 +++ gnuconfig.eclass15 Nov 2014 06:20:07 - 1.36 @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnuconfig.eclass,v 1.35 2013/05/22 06:03:08 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnuconfig.eclass,v 1.36 2014/11/15 06:20:07 vapier Exp $ # # THIS ECLASS IS DEAD: It has been integrated into portage # @@ -88,10 +88,10 @@ # returns the directory where they can be found. gnuconfig_findnewest() { local locations=( - /usr/share/misc/config.sub - /usr/share/gnuconfig/config.sub - /usr/share/automake*/config.sub - /usr/share/libtool/config.sub + "${EPREFIX}"/usr/share/misc/config.sub + "${EPREFIX}"/usr/share/gnuconfig/config.sub + "${EPREFIX}"/usr/share/automake*/config.sub + "${EPREFIX}"/usr/share/libtool/config.sub ) grep -s '^timestamp' "${locations[@]}" | \ sort -r -n -t\' -k2 | \
[gentoo-commits] gentoo-x86 commit in sys-devel/automake: automake-1.7.9-r2.ebuild automake-1.6.3-r1.ebuild automake-1.9.6-r3.ebuild automake-1.4_p6-r1.ebuild automake-1.5-r1.ebuild automake-1.11.6.eb
vapier 14/11/15 06:07:49 Modified: automake-1.7.9-r2.ebuild automake-1.6.3-r1.ebuild automake-1.9.6-r3.ebuild automake-1.4_p6-r1.ebuild automake-1.5-r1.ebuild automake-1.11.6.ebuild automake-1.8.5-r4.ebuild automake-1.10.3.ebuild automake-1.14.1.ebuild automake-1.12.6.ebuild automake-.ebuild automake-1.13.4.ebuild ChangeLog Log: Update to EAPI=4 and unify behavior across versions. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D2E96200) Revision ChangesPath 1.12 sys-devel/automake/automake-1.7.9-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.7.9-r2.ebuild?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.7.9-r2.ebuild?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.7.9-r2.ebuild?r1=1.11&r2=1.12 Index: automake-1.7.9-r2.ebuild === RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.7.9-r2.ebuild,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- automake-1.7.9-r2.ebuild17 Jan 2014 04:23:14 - 1.11 +++ automake-1.7.9-r2.ebuild15 Nov 2014 06:07:49 - 1.12 @@ -1,6 +1,8 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.7.9-r2.ebuild,v 1.11 2014/01/17 04:23:14 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.7.9-r2.ebuild,v 1.12 2014/11/15 06:07:49 vapier Exp $ + +EAPI="4" inherit eutils @@ -9,26 +11,25 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2" LICENSE="GPL-2" +# Use Gentoo versioning for slotting. SLOT="${PV:0:3}" KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd" IUSE="" RDEPEND="dev-lang/perl >=sys-devel/automake-wrapper-9 - >=sys-devel/autoconf-2.59-r6 + >=sys-devel/autoconf-2.69 sys-devel/gnuconfig" DEPEND="${RDEPEND}" -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { + export WANT_AUTOCONF=2.5 epatch "${FILESDIR}"/${P}-infopage-namechange.patch epatch "${FILESDIR}"/${P}-test-fixes.patch epatch "${FILESDIR}"/${PN}-1.9.6-subst-test.patch #25 epatch "${FILESDIR}"/${P}-libtool-2.patch #257544 epatch "${FILESDIR}"/${PN}-1.10-ccnoco-ldflags.patch #203914 epatch "${FILESDIR}"/${PN}-1.5-CVE-2009-4029.patch #295357 - export WANT_AUTOCONF=2.5 } # slot the info pages. do this w/out munging the source so we don't have @@ -61,15 +62,13 @@ } src_install() { - emake DESTDIR="${D}" install || die + default slot_info_pages rm -f "${D}"/usr/bin/{aclocal,automake} - dodoc NEWS README THANKS TODO AUTHORS ChangeLog - # remove all config.guess and config.sub files replacing them # w/a symlink to a specific gnuconfig version - local x= + local x for x in guess sub ; do dosym ../gnuconfig/config.${x} /usr/share/${PN}-${SLOT}/config.${x} done 1.12 sys-devel/automake/automake-1.6.3-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.6.3-r1.ebuild?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.6.3-r1.ebuild?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.6.3-r1.ebuild?r1=1.11&r2=1.12 Index: automake-1.6.3-r1.ebuild === RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.6.3-r1.ebuild,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- automake-1.6.3-r1.ebuild17 Jan 2014 04:23:14 - 1.11 +++ automake-1.6.3-r1.ebuild15 Nov 2014 06:07:49 - 1.12 @@ -1,6 +1,8 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.6.3-r1.ebuild,v 1.11 2014/01/17 04:23:14 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.6.3-r1.ebuild,v 1.12 2014/11/15 06:07:49 vapier Exp $ + +EAPI="4" inherit eutils @@ -9,23 +11,22 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2" LICENSE="GPL-2" +# Use Gentoo versioning for slotting. SLOT="${PV:0:3}" KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd" IUSE="" RDEPEND="dev-lang/perl >=sys-devel/automake-wrapper-
[gentoo-commits] gentoo-x86 commit in eclass: autotools.eclass
vapier 14/11/15 05:40:04 Modified: autotools.eclass Log: eautomake: fix parsing of version output #509786 by Brian Evans Revision ChangesPath 1.167eclass/autotools.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.167&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.167&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?r1=1.166&r2=1.167 Index: autotools.eclass === RCS file: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v retrieving revision 1.166 retrieving revision 1.167 diff -u -r1.166 -r1.167 --- autotools.eclass15 Nov 2014 05:10:47 - 1.166 +++ autotools.eclass15 Nov 2014 05:40:04 - 1.167 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.166 2014/11/15 05:10:47 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.167 2014/11/15 05:40:04 vapier Exp $ # @ECLASS: autotools.eclass # @MAINTAINER: @@ -354,7 +354,8 @@ done _automake_version() { - autotools_run_tool automake --version 2>/dev/null | sed -n -e '1{s:.*(GNU automake) ::p;q}' + autotools_run_tool --at-output automake --version 2>/dev/null | + sed -n -e '1{s:.*(GNU automake) ::p;q}' } if [[ -z ${makefile_name} ]] ; then @@ -369,8 +370,9 @@ sed -e 's:.*by automake \(.*\) from .*:\1:') if [[ ${installed_automake} != ${used_automake} ]]; then - einfo "Automake used for the package (${used_automake}) differs from" - einfo "the installed version (${installed_automake})." + ewarn "Automake used for the package (${used_automake}) differs from" \ + "the installed version (${installed_automake})." + ewarn "Forcing a full rebuild of the autotools to workaround." eautoreconf return 0 fi @@ -436,19 +438,20 @@ } # @FUNCTION: autotools_run_tool -# @USAGE: [--at-no-fail] [--at-m4flags] [--at-missing] [tool-specific flags] +# @USAGE: [--at-no-fail] [--at-m4flags] [--at-missing] [--at-output] [tool-specific flags] # @INTERNAL # @DESCRIPTION: # Run the specified autotool helper, but do logging and error checking # around it in the process. autotools_run_tool() { # Process our own internal flags first - local autofail=true m4flags=false missing_ok=false + local autofail=true m4flags=false missing_ok=false return_output=false while [[ -n $1 ]] ; do case $1 in --at-no-fail) autofail=false;; --at-m4flags) m4flags=true;; --at-missing) missing_ok=true;; + --at-output) return_output=true;; # whatever is left goes to the actual tool *) break;; esac @@ -482,6 +485,12 @@ set -- "${1}" $(autotools_m4dir_include) "${@:2}" $(autotools_m4sysdir_include) fi + # If the caller wants to probe something, then let them do it directly. + if ${return_output} ; then + "$@" + return + fi + printf "* $1 *\n* PWD: ${PWD}\n* $*\n\n" > "${STDERR_TARGET}" ebegin "Running $@"
[gentoo-commits] proj/portage:master commit in: pym/portage/package/ebuild/, pym/portage/
commit: 690b9deaf22f85a3cc7b366f5bd126b9e603c90d Author: Zac Medico gentoo org> AuthorDate: Sun Nov 9 23:19:11 2014 + Commit: Zac Medico gentoo org> CommitDate: Sat Nov 15 05:12:14 2014 + URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=690b9dea unprivileged mode: generate PORTAGE_DEPCACHEDIR For unprivileged mode, if PORTAGE_DEPCACHEDIR is unset and the default PORTAGE_DEPCACHEDIR setting does not refer to a writable directory (or there are not sufficient permissions to create it), then automatically make PORTAGE_DEPCACHEDIR relative to the current target root (which should always be writable for unprivileged mode). Also, in create_trees, propagate the automatically generated PORTAGE_DEPCACHEDIR setting to the config instance that is instantiated for ROOT = "/". The result is that unprivileged mode will get a writable PORTAGE_DEPCACHEDIR by default, and the default can be overridden by setting the PORTAGE_DEPCACHEDIR variable. Fixes: 1364fcd89384 ("Support unprivileged mode for bug #433453.") X-Gentoo-Bug: 433453 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=433453 Acked-by: Alexander Berntsen gentoo.org> --- pym/portage/__init__.py | 3 +++ pym/portage/package/ebuild/config.py | 39 +++- 2 files changed, 32 insertions(+), 10 deletions(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 66bfeb0..d8046f3 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -570,6 +570,7 @@ def create_trees(config_root=None, target_root=None, trees=None, env=None, env=env, eprefix=eprefix) settings.lock() + depcachedir = settings.get('PORTAGE_DEPCACHEDIR') trees._target_eroot = settings['EROOT'] myroots = [(settings['EROOT'], settings)] if settings["ROOT"] == "/" and settings["EPREFIX"] == const.EPREFIX: @@ -587,6 +588,8 @@ def create_trees(config_root=None, target_root=None, trees=None, env=None, v = settings.get(k) if v is not None: clean_env[k] = v + if depcachedir is not None: + clean_env['PORTAGE_DEPCACHEDIR'] = depcachedir settings = config(config_root=None, target_root="/", env=clean_env, eprefix=None) settings.lock() diff --git a/pym/portage/package/ebuild/config.py b/pym/portage/package/ebuild/config.py index 2ceb122..c7308a4 100644 --- a/pym/portage/package/ebuild/config.py +++ b/pym/portage/package/ebuild/config.py @@ -8,6 +8,7 @@ __all__ = [ ] import copy +import errno from itertools import chain import grp import logging @@ -826,16 +827,6 @@ class config(object): if "USE_ORDER" not in self: self.backupenv["USE_ORDER"] = "env:pkg:conf:defaults:pkginternal:repo:env.d" - self.depcachedir = DEPCACHE_PATH - if portage.const.EPREFIX: - self.depcachedir = os.path.join(portage.const.EPREFIX, - DEPCACHE_PATH.lstrip(os.sep)) - - if self.get("PORTAGE_DEPCACHEDIR", None): - self.depcachedir = self["PORTAGE_DEPCACHEDIR"] - self["PORTAGE_DEPCACHEDIR"] = self.depcachedir - self.backup_changes("PORTAGE_DEPCACHEDIR") - if "CBUILD" not in self and "CHOST" in self: self["CBUILD"] = self["CHOST"] self.backup_changes("CBUILD") @@ -898,6 +889,34 @@ class config(object): self[var] = default_val self.backup_changes(var) + self.depcachedir = self.get("PORTAGE_DEPCACHEDIR") + if self.depcachedir is None: + self.depcachedir = os.path.join(os.sep, + portage.const.EPREFIX, DEPCACHE_PATH.lstrip(os.sep)) + if unprivileged and target_root != os.sep: + # In unprivileged mode, automatically make + # depcachedir relative to target_root if the + # default depcachedir is not writable. + current_dir = self.depcachedir + found_dir = False + while current_dir != os.sep and not found_dir: + try: + os.stat(current_dir) + found_dir = True + except OSError as e: +
[gentoo-commits] gentoo-x86 commit in eclass: autotools.eclass
vapier 14/11/15 05:10:47 Modified: autotools.eclass Log: eautoconf: dump a QA warning when we find old configure.in files instead of configure.ac #426262 Revision ChangesPath 1.166eclass/autotools.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.166&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.166&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?r1=1.165&r2=1.166 Index: autotools.eclass === RCS file: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v retrieving revision 1.165 retrieving revision 1.166 diff -u -r1.165 -r1.166 --- autotools.eclass14 Nov 2014 01:31:01 - 1.165 +++ autotools.eclass15 Nov 2014 05:10:47 - 1.166 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.165 2014/11/14 01:31:01 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.166 2014/11/15 05:10:47 vapier Exp $ # @ECLASS: autotools.eclass # @MAINTAINER: @@ -330,6 +330,11 @@ echo die "No configure.{ac,in} present!" fi + if [[ -e configure.in ]] ; then + eqawarn "This package has a configure.in file which has long been deprecated. Please" + eqawarn "update it to use configure.ac instead as newer versions of autotools will die" + eqawarn "when it finds this file. See https://bugs.gentoo.org/426262 for details." + fi autotools_run_tool --at-m4flags autoconf "$@" }
[gentoo-commits] gentoo-x86 commit in dev-python/chaco: chaco-4.5.0.ebuild ChangeLog
idella4 14/11/15 04:39:30 Modified: ChangeLog Added:chaco-4.5.0.ebuild Log: bump; update deps, add fix to qa issue in the build, correction to test phase (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D) Revision ChangesPath 1.23 dev-python/chaco/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chaco/ChangeLog?rev=1.23&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chaco/ChangeLog?rev=1.23&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chaco/ChangeLog?r1=1.22&r2=1.23 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-python/chaco/ChangeLog,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- ChangeLog 29 Jan 2014 17:39:35 - 1.22 +++ ChangeLog 15 Nov 2014 04:39:30 - 1.23 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/chaco # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/chaco/ChangeLog,v 1.22 2014/01/29 17:39:35 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/chaco/ChangeLog,v 1.23 2014/11/15 04:39:30 idella4 Exp $ + +*chaco-4.5.0 (15 Nov 2014) + + 15 Nov 2014; Ian Delaney +chaco-4.5.0.ebuild: + bump; update deps, add fix to qa issue in the build, correction to test phase *chaco-4.4.1 (29 Jan 2014) 1.1 dev-python/chaco/chaco-4.5.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chaco/chaco-4.5.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chaco/chaco-4.5.0.ebuild?rev=1.1&content-type=text/plain Index: chaco-4.5.0.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/chaco/chaco-4.5.0.ebuild,v 1.1 2014/11/15 04:39:30 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 virtualx flag-o-matic DESCRIPTION="Enthought Tool Suite: Interactive plotting toolkit" HOMEPAGE="http://code.enthought.com/projects/chaco/"; SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="test" RDEPEND=" >=dev-python/enable-4.4.0[${PYTHON_USEDEP}] dev-python/numpy[${PYTHON_USEDEP}] >=dev-python/traitsui-4[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] test? ( media-fonts/font-cursor-misc media-fonts/font-misc-misc )" python_prepare_all() { append-cflags -fno-strict-aliasing distutils-r1_python_prepare_all } python_test() { cd "${BUILD_DIR}"/lib || die VIRTUALX_COMMAND="nosetests" virtualmake }
[gentoo-commits] gentoo-x86 commit in sys-devel/automake: ChangeLog automake-1.13.1.ebuild automake-1.13.2.ebuild automake-1.13.3.ebuild automake-1.14.ebuild
vapier 14/11/15 04:27:29 Modified: ChangeLog Removed: automake-1.13.1.ebuild automake-1.13.2.ebuild automake-1.13.3.ebuild automake-1.14.ebuild Log: Old. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D2E96200) Revision ChangesPath 1.213sys-devel/automake/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.213&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.213&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?r1=1.212&r2=1.213 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v retrieving revision 1.212 retrieving revision 1.213 diff -u -r1.212 -r1.213 --- ChangeLog 17 Jan 2014 04:23:15 - 1.212 +++ ChangeLog 15 Nov 2014 04:27:29 - 1.213 @@ -1,6 +1,10 @@ # ChangeLog for sys-devel/automake # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.212 2014/01/17 04:23:15 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.213 2014/11/15 04:27:29 vapier Exp $ + + 15 Nov 2014; Mike Frysinger -automake-1.13.1.ebuild, + -automake-1.13.2.ebuild, -automake-1.13.3.ebuild, -automake-1.14.ebuild: + Old. 17 Jan 2014; Mike Frysinger automake-1.10.3.ebuild, automake-1.11.6.ebuild, automake-1.12.6.ebuild, automake-1.13.4.ebuild,
[gentoo-commits] gentoo-x86 commit in app-arch/unrar: unrar-5.2.2.ebuild ChangeLog
vapier 14/11/15 04:17:12 Modified: unrar-5.2.2.ebuild ChangeLog Log: Build the lib & bin in diff subdirs so we can avoid the clean step. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D2E96200) Revision ChangesPath 1.3 app-arch/unrar/unrar-5.2.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.2.2.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.2.2.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.2.2.ebuild?r1=1.2&r2=1.3 Index: unrar-5.2.2.ebuild === RCS file: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.2.2.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- unrar-5.2.2.ebuild 15 Nov 2014 04:16:16 - 1.2 +++ unrar-5.2.2.ebuild 15 Nov 2014 04:17:12 - 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.2.2.ebuild,v 1.2 2014/11/15 04:16:16 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.2.2.ebuild,v 1.3 2014/11/15 04:17:12 vapier Exp $ EAPI=5 inherit eutils flag-o-matic multilib toolchain-funcs @@ -32,27 +32,29 @@ sed -i "${sed_args[@]}" makefile } +src_configure() { + mkdir -p build-{lib,bin} + printf 'VPATH = ..\ninclude ../makefile' > build-lib/Makefile || die + cp build-{lib,bin}/Makefile || die +} + src_compile() { unrar_make() { emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" STRIP=true "$@" } - unrar_make CXXFLAGS+=" -fPIC" lib - ln -s libunrar$(get_libname ${PV%.*.*}) libunrar$(get_libname) - ln -s libunrar$(get_libname ${PV%.*.*}) libunrar$(get_libname ${PV}) - - # The stupid code compiles a lot of objects differently if - # they're going into a lib (-DRARDLL) or into the main app. - # So for now, we can't link the main app against the lib. - unrar_make clean - unrar_make + unrar_make CXXFLAGS+=" -fPIC" -C build-lib lib + ln -s libunrar$(get_libname ${PV%.*.*}) build-lib/libunrar$(get_libname) + ln -s libunrar$(get_libname ${PV%.*.*}) build-lib/libunrar$(get_libname ${PV}) + + unrar_make -C build-bin } src_install() { - dobin unrar + dobin build-bin/unrar dodoc readme.txt - dolib.so libunrar* + dolib.so build-lib/libunrar* insinto /usr/include/libunrar${PV%.*.*} doins *.hpp 1.238app-arch/unrar/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?rev=1.238&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?rev=1.238&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?r1=1.237&r2=1.238 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v retrieving revision 1.237 retrieving revision 1.238 diff -u -r1.237 -r1.238 --- ChangeLog 15 Nov 2014 04:16:16 - 1.237 +++ ChangeLog 15 Nov 2014 04:17:12 - 1.238 @@ -1,6 +1,9 @@ # ChangeLog for app-arch/unrar # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v 1.237 2014/11/15 04:16:16 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v 1.238 2014/11/15 04:17:12 vapier Exp $ + + 15 Nov 2014; Mike Frysinger unrar-5.2.2.ebuild: + Build the lib & bin in diff subdirs so we can avoid the clean step. 15 Nov 2014; Mike Frysinger unrar-5.1.6.ebuild, unrar-5.2.1.ebuild, unrar-5.2.2.ebuild,
[gentoo-commits] gentoo-x86 commit in app-arch/unrar/files: unrar-5.2.2-no-auto-clean.patch
vapier 14/11/15 04:16:16 Added:unrar-5.2.2-no-auto-clean.patch Log: Fix parallel build #528218 by Alexander E. Patrakov. Revision ChangesPath 1.1 app-arch/unrar/files/unrar-5.2.2-no-auto-clean.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/files/unrar-5.2.2-no-auto-clean.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/files/unrar-5.2.2-no-auto-clean.patch?rev=1.1&content-type=text/plain Index: unrar-5.2.2-no-auto-clean.patch === if clean runs in parallel with $(OBJECTS), it is possible to build some objects first, then the clean target fires and deletes some, and then we try to link and fail. https://bugs.gentoo.org/528218 --- a/makefile +++ b/makefile @@ -118,7 +118,7 @@ clean: @rm -f *.o *.bak *~ -unrar: clean $(OBJECTS) $(UNRAR_OBJ) +unrar: $(OBJECTS) $(UNRAR_OBJ) $(LINK) -o unrar $(CXXFLAGS) $(LDFLAGS) $(OBJECTS) $(UNRAR_OBJ) $(LIBS) $(STRIP) unrar
[gentoo-commits] gentoo-x86 commit in app-arch/unrar: ChangeLog unrar-5.1.6.ebuild unrar-5.2.1.ebuild unrar-5.2.2.ebuild
vapier 14/11/15 04:16:16 Modified: ChangeLog unrar-5.1.6.ebuild unrar-5.2.1.ebuild unrar-5.2.2.ebuild Log: Fix parallel build #528218 by Alexander E. Patrakov. Revision ChangesPath 1.237app-arch/unrar/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?rev=1.237&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?rev=1.237&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?r1=1.236&r2=1.237 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v retrieving revision 1.236 retrieving revision 1.237 diff -u -r1.236 -r1.237 --- ChangeLog 15 Nov 2014 04:15:15 - 1.236 +++ ChangeLog 15 Nov 2014 04:16:16 - 1.237 @@ -1,6 +1,11 @@ # ChangeLog for app-arch/unrar # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v 1.236 2014/11/15 04:15:15 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v 1.237 2014/11/15 04:16:16 vapier Exp $ + + 15 Nov 2014; Mike Frysinger unrar-5.1.6.ebuild, + unrar-5.2.1.ebuild, unrar-5.2.2.ebuild, + +files/unrar-5.2.2-no-auto-clean.patch: + Fix parallel build #528218 by Alexander E. Patrakov. 15 Nov 2014; Mike Frysinger unrar-5.1.6.ebuild: Stabilize for alpha/arm64/ia64/m68k/ppc/ppc64/s390/sh #518926. 1.7 app-arch/unrar/unrar-5.1.6.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.1.6.ebuild?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.1.6.ebuild?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.1.6.ebuild?r1=1.6&r2=1.7 Index: unrar-5.1.6.ebuild === RCS file: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.1.6.ebuild,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- unrar-5.1.6.ebuild 15 Nov 2014 04:15:15 - 1.6 +++ unrar-5.1.6.ebuild 15 Nov 2014 04:16:16 - 1.7 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.1.6.ebuild,v 1.6 2014/11/15 04:15:15 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.1.6.ebuild,v 1.7 2014/11/15 04:16:16 vapier Exp $ EAPI=5 inherit eutils flag-o-matic multilib toolchain-funcs @@ -22,6 +22,7 @@ src_prepare() { epatch "${FILESDIR}"/${PN}-5.0.2-build.patch + epatch "${FILESDIR}"/${PN}-5.2.2-no-auto-clean.patch #528218 local sed_args=( -e "/libunrar/s:.so:$(get_libname ${PV%.*.*}):" ) if [[ ${CHOST} == *-darwin* ]] ; then sed_args+=( -e "s:-shared:-dynamiclib -install_name ${EPREFIX}/usr/$(get_libdir)/libunrar$(get_libname ${PV%.*.*}):" ) 1.2 app-arch/unrar/unrar-5.2.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.2.1.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.2.1.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.2.1.ebuild?r1=1.1&r2=1.2 Index: unrar-5.2.1.ebuild === RCS file: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.2.1.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- unrar-5.2.1.ebuild 24 Oct 2014 17:25:10 - 1.1 +++ unrar-5.2.1.ebuild 15 Nov 2014 04:16:16 - 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.2.1.ebuild,v 1.1 2014/10/24 17:25:10 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.2.1.ebuild,v 1.2 2014/11/15 04:16:16 vapier Exp $ EAPI=5 inherit eutils flag-o-matic multilib toolchain-funcs @@ -22,6 +22,7 @@ src_prepare() { epatch "${FILESDIR}"/${PN}-5.0.2-build.patch + epatch "${FILESDIR}"/${PN}-5.2.2-no-auto-clean.patch #528218 local sed_args=( -e "/libunrar/s:.so:$(get_libname ${PV%.*.*}):" ) if [[ ${CHOST} == *-darwin* ]] ; then sed_args+=( -e "s:-shared:-dynamiclib -install_name ${EPREFIX}/usr/$(get_libdir)/libunrar$(get_libname ${PV%.*.*}):" ) 1.2 app-arch/unrar/unrar-5.2.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.2.2.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.2.2.ebuild?rev=1.2&content-typ
[gentoo-commits] gentoo-x86 commit in app-arch/unrar: ChangeLog unrar-5.1.6.ebuild
vapier 14/11/15 04:15:15 Modified: ChangeLog unrar-5.1.6.ebuild Log: Stabilize for alpha/arm64/ia64/m68k/ppc/ppc64/s390/sh #518926. Revision ChangesPath 1.236app-arch/unrar/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?rev=1.236&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?rev=1.236&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/ChangeLog?r1=1.235&r2=1.236 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v retrieving revision 1.235 retrieving revision 1.236 diff -u -r1.235 -r1.236 --- ChangeLog 8 Nov 2014 19:00:23 - 1.235 +++ ChangeLog 15 Nov 2014 04:15:15 - 1.236 @@ -1,6 +1,9 @@ # ChangeLog for app-arch/unrar # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v 1.235 2014/11/08 19:00:23 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/ChangeLog,v 1.236 2014/11/15 04:15:15 vapier Exp $ + + 15 Nov 2014; Mike Frysinger unrar-5.1.6.ebuild: + Stabilize for alpha/arm64/ia64/m68k/ppc/ppc64/s390/sh #518926. *unrar-5.2.2 (08 Nov 2014) 1.6 app-arch/unrar/unrar-5.1.6.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.1.6.ebuild?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.1.6.ebuild?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unrar/unrar-5.1.6.ebuild?r1=1.5&r2=1.6 Index: unrar-5.1.6.ebuild === RCS file: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.1.6.ebuild,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- unrar-5.1.6.ebuild 13 Sep 2014 11:54:53 - 1.5 +++ unrar-5.1.6.ebuild 15 Nov 2014 04:15:15 - 1.6 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.1.6.ebuild,v 1.5 2014/09/13 11:54:53 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-5.1.6.ebuild,v 1.6 2014/11/15 04:15:15 vapier Exp $ EAPI=5 inherit eutils flag-o-matic multilib toolchain-funcs @@ -13,7 +13,7 @@ LICENSE="unRAR" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="" RDEPEND="!<=app-arch/unrar-gpl-0.0.1_p20080417"
[gentoo-commits] gentoo-x86 commit in dev-python/PyQt4: PyQt4-4.11.3.ebuild ChangeLog PyQt4-4.11.3_pre20141024.ebuild
pesa14/11/15 03:12:12 Modified: ChangeLog Added:PyQt4-4.11.3.ebuild Removed: PyQt4-4.11.3_pre20141024.ebuild Log: Version bump. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.276dev-python/PyQt4/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/ChangeLog?rev=1.276&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/ChangeLog?rev=1.276&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/ChangeLog?r1=1.275&r2=1.276 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-python/PyQt4/ChangeLog,v retrieving revision 1.275 retrieving revision 1.276 diff -u -r1.275 -r1.276 --- ChangeLog 1 Nov 2014 02:58:19 - 1.275 +++ ChangeLog 15 Nov 2014 03:12:12 - 1.276 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/PyQt4 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/ChangeLog,v 1.275 2014/11/01 02:58:19 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/ChangeLog,v 1.276 2014/11/15 03:12:12 pesa Exp $ + +*PyQt4-4.11.3 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +PyQt4-4.11.3.ebuild, + -PyQt4-4.11.3_pre20141024.ebuild: + Version bump. *PyQt4-4.11.3_pre20141024 (01 Nov 2014) 1.1 dev-python/PyQt4/PyQt4-4.11.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/PyQt4-4.11.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/PyQt4/PyQt4-4.11.3.ebuild?rev=1.1&content-type=text/plain Index: PyQt4-4.11.3.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/PyQt4-4.11.3.ebuild,v 1.1 2014/11/15 03:12:12 pesa Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} ) inherit eutils multibuild python-r1 qmake-utils DESCRIPTION="Python bindings for the Qt framework" HOMEPAGE="http://www.riverbankcomputing.co.uk/software/pyqt/intro/ https://pypi.python.org/pypi/PyQt4"; MY_PN="PyQt-x11-gpl" if [[ ${PV} == *_pre* ]]; then REVISION=adb94530c076 MY_P=${MY_PN}-${PV%_pre*}-snapshot-${REVISION} SRC_URI="http://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.xz"; else MY_P=${MY_PN}-${PV} SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz" fi LICENSE="|| ( GPL-2 GPL-3 )" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="X dbus debug declarative designer doc examples help kde multimedia opengl phonon script scripttools sql svg testlib webkit xmlpatterns" REQUIRED_USE=" ${PYTHON_REQUIRED_USE} sql? ( X ) testlib? ( X ) " # Minimal supported version of Qt. QT_PV="4.8.5:4" RDEPEND=" ${PYTHON_DEPS} >=dev-python/sip-4.16.4:=[${PYTHON_USEDEP}] >=dev-qt/qtcore-${QT_PV} X? ( >=dev-qt/qtgui-${QT_PV} ) dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] >=dev-qt/qtdbus-${QT_PV} ) declarative? ( >=dev-qt/qtdeclarative-${QT_PV} ) designer? ( >=dev-qt/designer-${QT_PV} ) help? ( >=dev-qt/qthelp-${QT_PV} ) multimedia? ( >=dev-qt/qtmultimedia-${QT_PV} ) opengl? ( >=dev-qt/qtopengl-${QT_PV} ) phonon? ( kde? ( >=media-libs/phonon-4.7[qt4] ) !kde? ( || ( >=dev-qt/qtphonon-${QT_PV} >=media-libs/phonon-4.7[qt4] ) ) ) script? ( >=dev-qt/qtscript-${QT_PV} ) scripttools? ( >=dev-qt/qtgui-${QT_PV} ) sql? ( >=dev-qt/qtsql-${QT_PV} ) svg? ( >=dev-qt/qtsvg-${QT_PV} ) testlib? ( >=dev-qt/qttest-${QT_PV} ) webkit? ( >=dev-qt/qtwebkit-${QT_PV} ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-${QT_PV} ) " DEPEND="${RDEPEND} dbus? ( virtual/pkgconfig ) " S=${WORKDIR}/${MY_P} src_prepare() { # Support qreal on arm architecture (bug 322349). use arm && epatch "${FILESDIR}/${PN}-4.7.3-qreal_float_support.patch" # Allow building against KDE's phonon (bug 525354). epatch "${FILESDIR}/${PN}-4.11.2-phonon.patch" # Avoid automagic dependency. use dbus || rm -fr dbus } pyqt_use_enable() { use $1 && echo --enable=${2:-Qt$(tr 'a-z' 'A-Z' <<< ${1:0:1})${1:1}} } src_configure() { local qmake_path=${EPREFIX}/usr/$(get_libdir)/qt4/bin/qmake [[ ! -x ${qmake_path} ]] && qmake_path=${EPREFIX}/usr/bin/qmake configuration() { local myconf=( "${PYTHON}" "${S}"/configure-ng.py
[gentoo-commits] proj/qt:master commit in: dev-qt/pixeltool/, dev-qt/qtsvg/, dev-qt/assistant/, dev-qt/qtmultimedia/, ...
commit: b28043fd8d37e0eb68ce8469ef5d39509587cdec Author: Davide Pesavento gentoo org> AuthorDate: Sat Nov 15 02:42:59 2014 + Commit: Davide Pesavento gentoo org> CommitDate: Sat Nov 15 02:42:59 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=b28043fd Qt 4.8.6 moved to the main tree. --- dev-qt/assistant/Manifest | 1 - dev-qt/assistant/assistant-4.8.6.ebuild | 57 --- dev-qt/designer/Manifest | 1 - dev-qt/designer/designer-4.8.6.ebuild | 58 dev-qt/linguist/Manifest | 1 - dev-qt/linguist/linguist-4.8.6.ebuild | 43 -- dev-qt/pixeltool/Manifest | 1 - dev-qt/pixeltool/pixeltool-4.8.6.ebuild | 36 - dev-qt/qdbusviewer/Manifest | 1 - dev-qt/qdbusviewer/qdbusviewer-4.8.6.ebuild | 43 -- dev-qt/qt3support/Manifest| 1 - dev-qt/qt3support/qt3support-4.8.6.ebuild | 37 - dev-qt/qtbearer/Manifest | 1 - dev-qt/qtbearer/qtbearer-4.8.6.ebuild | 47 -- dev-qt/qtcore/Manifest| 1 - dev-qt/qtcore/qtcore-4.8.6.ebuild | 91 dev-qt/qtdbus/Manifest| 1 - dev-qt/qtdbus/qtdbus-4.8.6.ebuild | 44 -- dev-qt/qtdeclarative/Manifest | 1 - dev-qt/qtdeclarative/qtdeclarative-4.8.6.ebuild | 55 --- dev-qt/qtdemo/Manifest| 1 - dev-qt/qtdemo/qtdemo-4.8.6.ebuild | 97 dev-qt/qtgui/Manifest | 1 - dev-qt/qtgui/qtgui-4.8.6.ebuild | 173 -- dev-qt/qthelp/Manifest| 1 - dev-qt/qthelp/qthelp-4.8.6.ebuild | 110 -- dev-qt/qtmultimedia/Manifest | 1 - dev-qt/qtmultimedia/qtmultimedia-4.8.6.ebuild | 47 -- dev-qt/qtopengl/Manifest | 1 - dev-qt/qtopengl/qtopengl-4.8.6.ebuild | 49 -- dev-qt/qtopenvg/Manifest | 1 - dev-qt/qtopenvg/qtopenvg-4.8.6.ebuild | 46 -- dev-qt/qtphonon/Manifest | 1 - dev-qt/qtphonon/qtphonon-4.8.6.ebuild | 55 --- dev-qt/qtscript/Manifest | 1 - dev-qt/qtscript/qtscript-4.8.6.ebuild | 41 - dev-qt/qtsql/Manifest | 1 - dev-qt/qtsql/qtsql-4.8.6.ebuild | 63 dev-qt/qtsvg/Manifest | 1 - dev-qt/qtsvg/qtsvg-4.8.6.ebuild | 46 -- dev-qt/qttest/Manifest| 1 - dev-qt/qttest/qttest-4.8.6.ebuild | 36 - dev-qt/qttranslations/Manifest| 1 - dev-qt/qttranslations/qttranslations-4.8.6.ebuild | 30 dev-qt/qtwebkit/Manifest | 1 - dev-qt/qtwebkit/qtwebkit-4.8.6.ebuild | 75 -- dev-qt/qtxmlpatterns/Manifest | 1 - dev-qt/qtxmlpatterns/qtxmlpatterns-4.8.6.ebuild | 37 - 48 files changed, 1440 deletions(-) diff --git a/dev-qt/assistant/Manifest b/dev-qt/assistant/Manifest index eaa9e0f..ec643bb 100644 --- a/dev-qt/assistant/Manifest +++ b/dev-qt/assistant/Manifest @@ -1,2 +1 @@ -DIST qt-everywhere-opensource-src-4.8.6.tar.gz 241623667 SHA256 8b14dd91b52862e09b8e6a963507b74bc2580787d171feda197badfa7034032c SHA512 c2d07c3cf9d687cb9b93e337c89df3f0055bd02bc8aa5ecd55d3ffb238b31a4308aeabc3c51a4f94ac76a1b00796f047513d02e427ed93ae8dd99f836fff7692 WHIRLPOOL 473566814a77237dbdd37a47980c1085f6cf39599c4d6b0120959fe80dadf65c4eaafd5f528dd86cea8815562faa204bedfe3b766c2ca4f2d2c99efc21dbca84 DIST qttools-opensource-src-5.4.0-beta.tar.xz 8984836 SHA256 112767096f859b3162737914c65af8df8ea7e11757f670139cebbc005aa75f82 SHA512 1a6592ed77fad0af07bdee383caa2303ea3187e649c3bd9ac02171db62133ca4a96ce0119ccce876335bb6f87aca4ef985320af5f77514fd16649b2d08ccb7ed WHIRLPOOL ae352a6c8a8d9e51d7a0d6cac1cc5357119212123eee18d1412abcd5df0e2605221101e2b1980b64e3f4fd59337dd7e545412a79ac4d2e30a8e2c3284cd5789e diff --git a/dev-qt/assistant/assistant-4.8.6.ebuild b/dev-qt/assistant/assistant-4.8.6.ebuild deleted file mode 100644 index 0c9c6a2..000 --- a/dev-qt/assistant/assistant-4.8.6.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit eutils qt4-build-multilib - -DESCRIPTION="Tool for viewing on-line documentation in Qt help file format" - -if [[ ${QT4_BUILD_TYPE} == live ]]; then - KEYWORDS="" -else - KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~p
[gentoo-commits] gentoo-x86 commit in dev-qt/qtxmlpatterns: qtxmlpatterns-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:39:06 Modified: ChangeLog Added:qtxmlpatterns-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.18 dev-qt/qtxmlpatterns/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtxmlpatterns/ChangeLog?rev=1.18&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtxmlpatterns/ChangeLog?rev=1.18&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtxmlpatterns/ChangeLog?r1=1.17&r2=1.18 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtxmlpatterns/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ChangeLog 16 Sep 2014 14:48:11 - 1.17 +++ ChangeLog 15 Nov 2014 02:39:06 - 1.18 @@ -1,6 +1,12 @@ # ChangeLog for dev-qt/qtxmlpatterns # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtxmlpatterns/ChangeLog,v 1.17 2014/09/16 14:48:11 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtxmlpatterns/ChangeLog,v 1.18 2014/11/15 02:39:06 pesa Exp $ + +*qtxmlpatterns-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento + +qtxmlpatterns-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). *qtxmlpatterns-5.3.2 (16 Sep 2014) 1.1 dev-qt/qtxmlpatterns/qtxmlpatterns-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtxmlpatterns/qtxmlpatterns-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtxmlpatterns/qtxmlpatterns-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtxmlpatterns-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtxmlpatterns/qtxmlpatterns-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:39:06 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The XmlPatterns module for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES=" src/xmlpatterns tools/xmlpatterns tools/xmlpatternsvalidator" QCONFIG_ADD="xmlpatterns" QCONFIG_DEFINE="QT_XMLPATTERNS" multilib_src_configure() { local myconf=( -xmlpatterns ) qt4_multilib_src_configure }
[gentoo-commits] gentoo-x86 commit in dev-qt/qttranslations: qttranslations-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:38:42 Modified: ChangeLog Added:qttranslations-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.6 dev-qt/qttranslations/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qttranslations/ChangeLog?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qttranslations/ChangeLog?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qttranslations/ChangeLog?r1=1.5&r2=1.6 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qttranslations/ChangeLog,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- ChangeLog 16 Sep 2014 14:47:31 - 1.5 +++ ChangeLog 15 Nov 2014 02:38:42 - 1.6 @@ -1,6 +1,12 @@ # ChangeLog for dev-qt/qttranslations # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qttranslations/ChangeLog,v 1.5 2014/09/16 14:47:31 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qttranslations/ChangeLog,v 1.6 2014/11/15 02:38:42 pesa Exp $ + +*qttranslations-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento + +qttranslations-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). *qttranslations-5.3.2 (16 Sep 2014) 1.1 dev-qt/qttranslations/qttranslations-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qttranslations/qttranslations-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qttranslations/qttranslations-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qttranslations-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qttranslations/qttranslations-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:38:42 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="Translation files for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="" DEPEND=" ~dev-qt/qtcore-${PV} " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES="translations" multilib_src_configure() { qt4_prepare_env qt4_symlink_tools_to_build_dir qt4_foreach_target_subdir qt4_qmake }
[gentoo-commits] gentoo-x86 commit in dev-qt/qtwebkit: qtwebkit-4.8.6-r1.ebuild metadata.xml ChangeLog
pesa14/11/15 02:38:53 Modified: metadata.xml ChangeLog Added:qtwebkit-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.8 dev-qt/qtwebkit/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtwebkit/metadata.xml?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtwebkit/metadata.xml?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtwebkit/metadata.xml?r1=1.7&r2=1.8 Index: metadata.xml === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtwebkit/metadata.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- metadata.xml22 Oct 2014 17:39:37 - 1.7 +++ metadata.xml15 Nov 2014 02:38:53 - 1.8 @@ -5,9 +5,8 @@ Add support for exceptions - like catching them inside the event loop (recommended by upstream) - Enable HTML5 audio/video support via media-libs/gstreamer - Enable HTML5 audio/video support via media-libs/gstreamer:0.10 - instead of :1.0 + Enable HTML5 audio/video support via media-libs/gstreamer:1.0 + Enable HTML5 audio/video support via media-libs/gstreamer:0.10 Enable HTML5 audio/video support via dev-qt/qtmultimedia Enable printing via dev-qt/qtprintsupport Build QML/QtQuick bindings 1.21 dev-qt/qtwebkit/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtwebkit/ChangeLog?rev=1.21&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtwebkit/ChangeLog?rev=1.21&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtwebkit/ChangeLog?r1=1.20&r2=1.21 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtwebkit/ChangeLog,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- ChangeLog 22 Oct 2014 17:39:37 - 1.20 +++ ChangeLog 15 Nov 2014 02:38:53 - 1.21 @@ -1,6 +1,12 @@ # ChangeLog for dev-qt/qtwebkit # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtwebkit/ChangeLog,v 1.20 2014/10/22 17:39:37 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtwebkit/ChangeLog,v 1.21 2014/11/15 02:38:53 pesa Exp $ + +*qtwebkit-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qtwebkit-4.8.6-r1.ebuild, + metadata.xml: + Version bump (bug 510042). Add multilib support (bug 498010). 22 Oct 2014; Michael Palimaka metadata.xml, qtwebkit-5.3.2-r1.ebuild: 1.1 dev-qt/qtwebkit/qtwebkit-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtwebkit/qtwebkit-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtwebkit/qtwebkit-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtwebkit-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtwebkit/qtwebkit-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:38:53 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The WebKit module for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="+gstreamer icu +jit" # libxml2[!icu?] is needed for bugs 407315 and 411091 DEPEND=" >=dev-db/sqlite-3.8.3:3[${MULTILIB_USEDEP}] ~dev-qt/qtcore-${PV}[aqua=,debug=,ssl,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtxmlpatterns-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] >=x11-libs/libX11-1.5.0-r1[${MULTILIB_USEDEP}] >=x11-libs/libXrender-0.9.7-r1[${MULTILIB_USEDEP}] gstreamer? ( dev-libs/glib:2[${MULTILIB_USEDEP}] dev-libs/libxml2:2[!icu?,${MULTILIB_USEDEP}] >=media-libs/gstreamer-0.10.36-r1:0.10[${MULTILIB_USEDEP}] >=media-libs/gst-plugins-base-0.10.36-r1:0.10[${MULTILIB_USEDEP}] ) icu? ( dev-libs/icu:=[${MULTILIB_USEDEP}] ) " RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}/4.8.2-javascriptcore-x32.patch" ) QT4_TARGET_DIRECTORIES=" src/3rdparty/webkit/Source/JavaScriptCore src/3rdparty/webkit/Source/WebCore
[gentoo-commits] gentoo-x86 commit in dev-qt/qttest: qttest-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:38:30 Modified: ChangeLog Added:qttest-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.18 dev-qt/qttest/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qttest/ChangeLog?rev=1.18&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qttest/ChangeLog?rev=1.18&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qttest/ChangeLog?r1=1.17&r2=1.18 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qttest/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ChangeLog 16 Sep 2014 14:47:26 - 1.17 +++ ChangeLog 15 Nov 2014 02:38:30 - 1.18 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qttest # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qttest/ChangeLog,v 1.17 2014/09/16 14:47:26 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qttest/ChangeLog,v 1.18 2014/11/15 02:38:30 pesa Exp $ + +*qttest-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qttest-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). *qttest-5.3.2 (16 Sep 2014) 1.1 dev-qt/qttest/qttest-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qttest/qttest-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qttest/qttest-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qttest-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qttest/qttest-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:38:30 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The QtTest module for unit testing Qt applications and libraries" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES="src/testlib" multilib_src_configure() { local myconf=( -no-xkb -no-fontconfig -no-xrender -no-xrandr -no-xfixes -no-xcursor -no-xinerama -no-xshape -no-sm -no-opengl -no-nas-sound -no-dbus -no-cups -no-nis -no-gif -no-libpng -no-libmng -no-libjpeg -no-openssl -system-zlib -no-webkit -no-phonon -no-qt3support -no-xmlpatterns -no-freetype -no-libtiff -no-accessibility -no-fontconfig -no-glib -no-svg ) qt4_multilib_src_configure }
[gentoo-commits] gentoo-x86 commit in dev-qt/qtsvg: qtsvg-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:38:17 Modified: ChangeLog Added:qtsvg-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.18 dev-qt/qtsvg/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsvg/ChangeLog?rev=1.18&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsvg/ChangeLog?rev=1.18&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsvg/ChangeLog?r1=1.17&r2=1.18 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtsvg/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ChangeLog 16 Sep 2014 14:47:15 - 1.17 +++ ChangeLog 15 Nov 2014 02:38:17 - 1.18 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qtsvg # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtsvg/ChangeLog,v 1.17 2014/09/16 14:47:15 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtsvg/ChangeLog,v 1.18 2014/11/15 02:38:17 pesa Exp $ + +*qtsvg-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qtsvg-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). *qtsvg-5.3.2 (16 Sep 2014) 1.1 dev-qt/qtsvg/qtsvg-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsvg/qtsvg-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsvg/qtsvg-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtsvg-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtsvg/qtsvg-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:38:17 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The SVG module for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="+accessibility" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[accessibility=,aqua=,debug=,${MULTILIB_USEDEP}] >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES=" src/svg src/plugins/imageformats/svg src/plugins/iconengines/svgiconengine" QCONFIG_ADD="svg" QCONFIG_DEFINE="QT_SVG" multilib_src_configure() { local myconf=( -svg $(qt_use accessibility) -no-xkb -no-xrender -no-xrandr -no-xfixes -no-xcursor -no-xinerama -no-xshape -no-sm -no-opengl -no-nas-sound -no-dbus -no-cups -no-nis -no-gif -no-libpng -no-libmng -no-libjpeg -no-openssl -system-zlib -no-webkit -no-phonon -no-qt3support -no-xmlpatterns -no-freetype -no-libtiff -no-fontconfig -no-glib -no-gtkstyle ) qt4_multilib_src_configure }
[gentoo-commits] gentoo-x86 commit in dev-qt/qtphonon: metadata.xml qtphonon-4.8.6-r1.ebuild qtphonon-4.8.5.ebuild ChangeLog
pesa14/11/15 02:37:39 Modified: metadata.xml qtphonon-4.8.5.ebuild ChangeLog Added:qtphonon-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.3 dev-qt/qtphonon/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtphonon/metadata.xml?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtphonon/metadata.xml?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtphonon/metadata.xml?r1=1.2&r2=1.3 Index: metadata.xml === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtphonon/metadata.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- metadata.xml26 Jan 2014 18:04:46 - 1.2 +++ metadata.xml15 Nov 2014 02:37:39 - 1.3 @@ -1,7 +1,7 @@ http://www.gentoo.org/dtd/metadata.dtd";> - qt + qt Add support for exceptions - like catching them inside the event loop (recommended by upstream) 1.7 dev-qt/qtphonon/qtphonon-4.8.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtphonon/qtphonon-4.8.5.ebuild?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtphonon/qtphonon-4.8.5.ebuild?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtphonon/qtphonon-4.8.5.ebuild?r1=1.6&r2=1.7 Index: qtphonon-4.8.5.ebuild === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtphonon/qtphonon-4.8.5.ebuild,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- qtphonon-4.8.5.ebuild 11 Nov 2013 14:00:49 - 1.6 +++ qtphonon-4.8.5.ebuild 15 Nov 2014 02:37:39 - 1.7 @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtphonon/qtphonon-4.8.5.ebuild,v 1.6 2013/11/11 14:00:49 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtphonon/qtphonon-4.8.5.ebuild,v 1.7 2014/11/15 02:37:39 pesa Exp $ EAPI=4 @@ -23,7 +23,7 @@ !media-sound/phonon !aqua? ( media-libs/gstreamer:0.10 media-plugins/gst-plugins-meta:0.10 ) - aqua? ( ~dev-qt/qtopengl-${PV}[aqua,debug=,qt3support=] ) + aqua? ( ~dev-qt/qtopengl-${PV}[aqua=,debug=,qt3support=] ) dbus? ( ~dev-qt/qtdbus-${PV}[aqua=,debug=] ) " RDEPEND="${DEPEND}" 1.9 dev-qt/qtphonon/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtphonon/ChangeLog?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtphonon/ChangeLog?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtphonon/ChangeLog?r1=1.8&r2=1.9 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtphonon/ChangeLog,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ChangeLog 26 Jan 2014 18:04:46 - 1.8 +++ ChangeLog 15 Nov 2014 02:37:39 - 1.9 @@ -1,6 +1,12 @@ # ChangeLog for dev-qt/qtphonon # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtphonon/ChangeLog,v 1.8 2014/01/26 18:04:46 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtphonon/ChangeLog,v 1.9 2014/11/15 02:37:39 pesa Exp $ + +*qtphonon-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qtphonon-4.8.6-r1.ebuild, + metadata.xml, qtphonon-4.8.5.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). 26 Jan 2014; Davide Pesavento -qtphonon-4.8.4.ebuild, metadata.xml: 1.1 dev-qt/qtphonon/qtphonon-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtphonon/qtphonon-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtphonon/qtphonon-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtphonon-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtphonon/qtphonon-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:37:39 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The Phonon module for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd6
[gentoo-commits] gentoo-x86 commit in dev-qt/qtsql: qtsql-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:38:04 Modified: ChangeLog Added:qtsql-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.20 dev-qt/qtsql/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsql/ChangeLog?rev=1.20&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsql/ChangeLog?rev=1.20&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsql/ChangeLog?r1=1.19&r2=1.20 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtsql/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- ChangeLog 3 Nov 2014 12:42:18 - 1.19 +++ ChangeLog 15 Nov 2014 02:38:04 - 1.20 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qtsql # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtsql/ChangeLog,v 1.19 2014/11/03 12:42:18 titanofold Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtsql/ChangeLog,v 1.20 2014/11/15 02:38:04 pesa Exp $ + +*qtsql-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qtsql-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). 03 Nov 2014; Aaron W. Swenson qtsql-4.8.5.ebuild, qtsql-5.3.2.ebuild: 1.1 dev-qt/qtsql/qtsql-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsql/qtsql-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsql/qtsql-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtsql-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtsql/qtsql-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:38:04 pesa Exp $ EAPI=5 inherit multilib qt4-build-multilib DESCRIPTION="The SQL module for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="freetds mysql oci8 odbc postgres qt3support +sqlite" REQUIRED_USE=" || ( freetds mysql oci8 odbc postgres sqlite ) " DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,qt3support=,${MULTILIB_USEDEP}] freetds? ( dev-db/freetds ) mysql? ( >=virtual/mysql-5.6-r2:=[${MULTILIB_USEDEP}] ) oci8? ( >=dev-db/oracle-instantclient-basic-11.2.0.4[${MULTILIB_USEDEP}] ) odbc? ( || ( >=dev-db/unixODBC-2.3.2[${MULTILIB_USEDEP}] >=dev-db/libiodbc-3.52.8[${MULTILIB_USEDEP}] ) ) postgres? ( virtual/postgresql:* ) sqlite? ( >=dev-db/sqlite-3.8.3:3[${MULTILIB_USEDEP}] ) " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES=" src/sql src/plugins/sqldrivers" multilib_src_configure() { local myconf=( $(qt_native_use freetds sql-tdsplugin) $(qt_usemysqlsql-mysql plugin) $(use mysql && echo "-I${EPREFIX}/usr/include/mysql -L${EPREFIX}/usr/$(get_libdir)/mysql") $(qt_useoci8 sql-ociplugin) $(use oci8 && echo "-I${ORACLE_HOME}/include -L${ORACLE_HOME}/$(get_libdir)") $(qt_useodbc sql-odbc plugin) $(use odbc && echo "-I${EPREFIX}/usr/include/iodbc") $(qt_native_use postgres sql-psql plugin) $(use postgres && multilib_is_native_abi && echo "-I${EPREFIX}/usr/include/postgresql/pgsql") $(qt_usesqlite sql-sqlite plugin) $(use sqlite && echo -system-sqlite) -no-sql-db2 -no-sql-ibase -no-sql-sqlite2 -no-sql-symsql $(qt_use qt3support) -no-accessibility -no-xmlpatterns -no-multimedia -no-audio-backend -no-phonon -no-phonon-backend -no-svg -no-webkit -no-script -no-scripttools -no-declarative -system-zlib -no-gif -no-libtiff -no-libpng -no-libmng -no-libjpeg -no-openssl -no-cups -no-dbus -no-gtkstyle -no-nas-sound -no-opengl -no-sm -no-xshape -no-xvideo -no-xsync -no-xinerama -no-xcursor -no-xfixes -no-xrandr -no-xrender -no-mitshm -no-fontconfig -no-freetype -no-xinput -no-xkb -no-glib ) qt4_multilib_src_configure }
[gentoo-commits] gentoo-x86 commit in dev-qt/qtscript: qtscript-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:37:51 Modified: ChangeLog Added:qtscript-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.19 dev-qt/qtscript/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtscript/ChangeLog?rev=1.19&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtscript/ChangeLog?rev=1.19&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtscript/ChangeLog?r1=1.18&r2=1.19 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtscript/ChangeLog,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- ChangeLog 16 Sep 2014 14:46:48 - 1.18 +++ ChangeLog 15 Nov 2014 02:37:51 - 1.19 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qtscript # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtscript/ChangeLog,v 1.18 2014/09/16 14:46:48 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtscript/ChangeLog,v 1.19 2014/11/15 02:37:51 pesa Exp $ + +*qtscript-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qtscript-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). *qtscript-5.3.2 (16 Sep 2014) 1.1 dev-qt/qtscript/qtscript-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtscript/qtscript-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtscript/qtscript-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtscript-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtscript/qtscript-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:37:51 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The QtScript module for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="iconv +jit" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES="src/script" QCONFIG_ADD="script" QCONFIG_DEFINE="QT_SCRIPT" multilib_src_configure() { local myconf=( $(qt_use iconv) $(qt_use jit javascript-jit) -no-xkb -no-fontconfig -no-xrender -no-xrandr -no-xfixes -no-xcursor -no-xinerama -no-xshape -no-sm -no-opengl -no-nas-sound -no-dbus -no-cups -no-nis -no-gif -no-libpng -no-libmng -no-libjpeg -no-openssl -system-zlib -no-webkit -no-phonon -no-qt3support -no-xmlpatterns -no-freetype -no-libtiff -no-accessibility -no-fontconfig -no-glib -no-opengl -no-svg -no-gtkstyle ) qt4_multilib_src_configure }
[gentoo-commits] gentoo-x86 commit in dev-qt/qtopengl: qtopengl-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:37:18 Modified: ChangeLog Added:qtopengl-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.18 dev-qt/qtopengl/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtopengl/ChangeLog?rev=1.18&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtopengl/ChangeLog?rev=1.18&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtopengl/ChangeLog?r1=1.17&r2=1.18 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtopengl/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ChangeLog 3 Oct 2014 00:53:01 - 1.17 +++ ChangeLog 15 Nov 2014 02:37:18 - 1.18 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qtopengl # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtopengl/ChangeLog,v 1.17 2014/10/03 00:53:01 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtopengl/ChangeLog,v 1.18 2014/11/15 02:37:18 pesa Exp $ + +*qtopengl-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qtopengl-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). *qtopengl-5.3.2-r1 (03 Oct 2014) 1.1 dev-qt/qtopengl/qtopengl-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtopengl/qtopengl-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtopengl/qtopengl-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtopengl-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtopengl/qtopengl-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:37:18 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The OpenGL module for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="egl qt3support" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,qt3support=,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[aqua=,debug=,egl=,qt3support=,${MULTILIB_USEDEP}] >=x11-libs/libX11-1.5.0-r1[${MULTILIB_USEDEP}] >=x11-libs/libXrender-0.9.7-r1[${MULTILIB_USEDEP}] >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}] " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES=" src/opengl src/plugins/graphicssystems/opengl" QCONFIG_ADD="opengl" QCONFIG_DEFINE="QT_OPENGL" multilib_src_configure() { local myconf=( -opengl $(qt_use qt3support) $(qt_use egl) ) qt4_multilib_src_configure } multilib_src_install_all() { qt4_multilib_src_install_all dodir /usr/share/qt4/graphicssystems echo "experimental" > "${ED}"/usr/share/qt4/graphicssystems/opengl || die }
[gentoo-commits] gentoo-x86 commit in dev-qt/qtopenvg: qtopenvg-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:37:28 Modified: ChangeLog Added:qtopenvg-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.8 dev-qt/qtopenvg/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtopenvg/ChangeLog?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtopenvg/ChangeLog?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtopenvg/ChangeLog?r1=1.7&r2=1.8 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtopenvg/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ChangeLog 26 Jan 2014 18:03:18 - 1.7 +++ ChangeLog 15 Nov 2014 02:37:28 - 1.8 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qtopenvg # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtopenvg/ChangeLog,v 1.7 2014/01/26 18:03:18 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtopenvg/ChangeLog,v 1.8 2014/11/15 02:37:28 pesa Exp $ + +*qtopenvg-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qtopenvg-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). 26 Jan 2014; Davide Pesavento -qtopenvg-4.8.4.ebuild, metadata.xml: 1.1 dev-qt/qtopenvg/qtopenvg-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtopenvg/qtopenvg-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtopenvg/qtopenvg-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtopenvg-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtopenvg/qtopenvg-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:37:28 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The OpenVG module for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="qt3support" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,qt3support=,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[aqua=,debug=,egl,qt3support=,${MULTILIB_USEDEP}] media-libs/mesa[egl,openvg,${MULTILIB_USEDEP}] " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES=" src/openvg src/plugins/graphicssystems/openvg" QCONFIG_ADD="openvg" QCONFIG_DEFINE="QT_OPENVG" multilib_src_configure() { local myconf=( -openvg -egl $(qt_use qt3support) ) qt4_multilib_src_configure } multilib_src_install_all() { qt4_multilib_src_install_all dodir /usr/share/qt4/graphicssystems echo "experimental" > "${ED}"/usr/share/qt4/graphicssystems/openvg || die }
[gentoo-commits] gentoo-x86 commit in dev-qt/qtmultimedia: qtmultimedia-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:37:05 Modified: ChangeLog Added:qtmultimedia-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.16 dev-qt/qtmultimedia/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtmultimedia/ChangeLog?rev=1.16&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtmultimedia/ChangeLog?rev=1.16&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtmultimedia/ChangeLog?r1=1.15&r2=1.16 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtmultimedia/ChangeLog,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- ChangeLog 11 Oct 2014 02:58:05 - 1.15 +++ ChangeLog 15 Nov 2014 02:37:05 - 1.16 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qtmultimedia # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtmultimedia/ChangeLog,v 1.15 2014/10/11 02:58:05 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtmultimedia/ChangeLog,v 1.16 2014/11/15 02:37:05 pesa Exp $ + +*qtmultimedia-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qtmultimedia-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). 11 Oct 2014; Davide Pesavento qtmultimedia-5.3.2.ebuild: No need to enable alsa by default. 1.1 dev-qt/qtmultimedia/qtmultimedia-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtmultimedia/qtmultimedia-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtmultimedia/qtmultimedia-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtmultimedia-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtmultimedia/qtmultimedia-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:37:05 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The Multimedia module for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" fi IUSE="alsa" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] ) " RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}/${PN}-4.8.0-alsa.patch" ) QT4_TARGET_DIRECTORIES="src/multimedia" QCONFIG_ADD="multimedia" QCONFIG_DEFINE="QT_MULTIMEDIA" multilib_src_configure() { local myconf=( -multimedia -audio-backend $(qt_use alsa) -no-accessibility -no-qt3support -no-xmlpatterns -no-phonon -no-phonon-backend -no-svg -no-webkit -no-script -no-scripttools -no-declarative -system-zlib -no-gif -no-libtiff -no-libpng -no-libmng -no-libjpeg -no-openssl -no-cups -no-dbus -no-gtkstyle -no-nas-sound -no-opengl -no-sm -no-xshape -no-xvideo -no-xsync -no-xinerama -no-xcursor -no-xfixes -no-xrandr -no-xrender -no-mitshm -no-fontconfig -no-freetype -no-xinput -no-xkb ) qt4_multilib_src_configure }
[gentoo-commits] gentoo-x86 commit in dev-qt/qthelp: qthelp-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:36:55 Modified: ChangeLog Added:qthelp-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.23 dev-qt/qthelp/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qthelp/ChangeLog?rev=1.23&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qthelp/ChangeLog?rev=1.23&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qthelp/ChangeLog?r1=1.22&r2=1.23 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qthelp/ChangeLog,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- ChangeLog 16 Sep 2014 14:45:48 - 1.22 +++ ChangeLog 15 Nov 2014 02:36:55 - 1.23 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qthelp # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qthelp/ChangeLog,v 1.22 2014/09/16 14:45:48 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qthelp/ChangeLog,v 1.23 2014/11/15 02:36:55 pesa Exp $ + +*qthelp-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qthelp-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). *qthelp-5.3.2 (16 Sep 2014) 1.1 dev-qt/qthelp/qthelp-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qthelp/qthelp-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qthelp/qthelp-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qthelp-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qthelp/qthelp-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:36:55 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The Help module for the Qt toolkit" SRC_URI+=" compat? ( ftp://ftp.qt.nokia.com/qt/source/qt-assistant-qassistantclient-library-compat-src-4.6.3.tar.gz http://dev.gentoo.org/~pesa/distfiles/qt-assistant-compat-headers-4.7.tar.gz )" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" fi IUSE="compat doc" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtsql-${PV}[aqua=,debug=,sqlite,${MULTILIB_USEDEP}] compat? ( ~dev-qt/qtdbus-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES=" tools/assistant/lib/fulltextsearch tools/assistant/lib tools/assistant/tools/qhelpgenerator tools/assistant/tools/qcollectiongenerator tools/assistant/tools/qhelpconverter tools/qdoc3" pkg_setup() { use compat && QT4_TARGET_DIRECTORIES+=" tools/assistant/compat tools/assistant/compat/lib" } src_unpack() { qt4-build-multilib_src_unpack # compat version # http://blog.qt.digia.com/blog/2010/06/22/qt-assistant-compat-version-available-as-extra-source-package/ if use compat; then unpack qt-assistant-qassistantclient-library-compat-src-4.6.3.tar.gz \ qt-assistant-compat-headers-4.7.tar.gz mv "${WORKDIR}"/qt-assistant-qassistantclient-library-compat-version-4.6.3 \ "${S}"/tools/assistant/compat || die mv "${WORKDIR}"/QtAssistant "${S}"/include/ || die fi } src_prepare() { use compat && PATCHES+=("${FILESDIR}/${PN}-4.8.5-fix-compat.patch") qt4-build-multilib_src_prepare # prevent rebuild of QtCore and QtXml (bug 348034) sed -i -e '/^sub-qdoc3\.depends/d' doc/doc.pri || die } multilib_src_configure() { local myconf=( -system-libpng -system-libjpeg -system-zlib -no-sql-mysql -no-sql-psql -no-sql-ibase -no-sql-sqlite2 -no-sql-odbc -sm -xshape -xsync -xcursor -xfixes -xrandr -xrender -mitshm -xinput -xkb -no-multimedia -no-opengl -no-phonon -no-qt3support -no-svg -no-webkit -no-xmlpatterns -no-nas-sound -no-cups -no-nis -fontconfig ) qt4_multilib_src_configure } multilib_src_compile() { qt4_multilib_src_compile # release tarballs are shipped with prebuilt docs if [[ ${QT4_BUILD_TYPE} == live ]] && multilib_is_native_abi; the
[gentoo-commits] gentoo-x86 commit in dev-qt/qtgui: qtgui-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:36:43 Modified: ChangeLog Added:qtgui-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.49 dev-qt/qtgui/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtgui/ChangeLog?rev=1.49&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtgui/ChangeLog?rev=1.49&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtgui/ChangeLog?r1=1.48&r2=1.49 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtgui/ChangeLog,v retrieving revision 1.48 retrieving revision 1.49 diff -u -r1.48 -r1.49 --- ChangeLog 16 Oct 2014 18:58:37 - 1.48 +++ ChangeLog 15 Nov 2014 02:36:43 - 1.49 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qtgui # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtgui/ChangeLog,v 1.48 2014/10/16 18:58:37 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtgui/ChangeLog,v 1.49 2014/11/15 02:36:43 pesa Exp $ + +*qtgui-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qtgui-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). 16 Oct 2014; Davide Pesavento qtgui-5.3.2.ebuild: Add subslot operator to libxcb dependency. 1.1 dev-qt/qtgui/qtgui-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtgui/qtgui-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtgui/qtgui-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtgui-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtgui/qtgui-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:36:43 pesa Exp $ EAPI=5 inherit eutils qt4-build-multilib DESCRIPTION="The GUI module for the Qt toolkit" SRC_URI+=" http://dev.gentoo.org/~pesa/patches/${PN}-systemtrayicon-plugin-system.patch"; if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="+accessibility cups egl +glib gtkstyle mng nas nis qt3support tiff trace xinerama +xv" REQUIRED_USE=" gtkstyle? ( glib ) " # cairo[-qt4] is needed because of bug 454066 RDEPEND=" app-admin/eselect-qtgraphicssystem ~dev-qt/qtcore-${PV}[aqua=,debug=,glib=,qt3support=,${MULTILIB_USEDEP}] ~dev-qt/qtscript-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] >=media-libs/fontconfig-2.10.2-r1[${MULTILIB_USEDEP}] >=media-libs/freetype-2.4.11-r1:2[${MULTILIB_USEDEP}] media-libs/libpng:0=[${MULTILIB_USEDEP}] >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] virtual/jpeg:0[${MULTILIB_USEDEP}] !aqua? ( >=x11-libs/libICE-1.0.8-r1[${MULTILIB_USEDEP}] >=x11-libs/libSM-1.2.1-r1[${MULTILIB_USEDEP}] >=x11-libs/libX11-1.5.0-r1[${MULTILIB_USEDEP}] >=x11-libs/libXcursor-1.1.13-r1[${MULTILIB_USEDEP}] >=x11-libs/libXext-1.3.1-r1[${MULTILIB_USEDEP}] >=x11-libs/libXfixes-5.0-r1[${MULTILIB_USEDEP}] >=x11-libs/libXi-1.6.2-r1[${MULTILIB_USEDEP}] >=x11-libs/libXrandr-1.4.0-r1[${MULTILIB_USEDEP}] >=x11-libs/libXrender-0.9.7-r1[${MULTILIB_USEDEP}] xinerama? ( >=x11-libs/libXinerama-1.1.2-r1[${MULTILIB_USEDEP}] ) xv? ( >=x11-libs/libXv-1.0.7-r1[${MULTILIB_USEDEP}] ) ) cups? ( net-print/cups[${MULTILIB_USEDEP}] ) egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] ) glib? ( dev-libs/glib:2[${MULTILIB_USEDEP}] ) gtkstyle? ( >=x11-libs/cairo-1.12[-qt4,${MULTILIB_USEDEP}] >=x11-libs/gtk+-2.24.23-r1:2[aqua=,${MULTILIB_USEDEP}] ) mng? ( >=media-libs/libmng-1.0.10-r2:=[${MULTILIB_USEDEP}] ) nas? ( >=media-libs/nas-1.9.3-r1[${MULTILIB_USEDEP}] ) tiff? ( >=media-libs/tiff-4.0.3-r2:0[${MULTILIB_USEDEP}] ) ! "${ED}"/usr/share/qt4/graphicssystems/raster || die echo "" > "${ED}"/usr/share/qt4/graphicssystems/native || die if has tools/qtconfig ${QT4_TARGET_DIRECTORIES}; then newicon tools/qtconfig/images/appicon.png qtconfig.png make_desktop_entry qtconfig 'Qt Configuration Tool' qtconfig 'Qt;Settings;DesktopSettings' fi } pkg_postinst() { qt4-build-multilib_pkg_post
[gentoo-commits] gentoo-x86 commit in dev-qt/qtdeclarative: qtdeclarative-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:36:17 Modified: ChangeLog Added:qtdeclarative-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.18 dev-qt/qtdeclarative/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdeclarative/ChangeLog?rev=1.18&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdeclarative/ChangeLog?rev=1.18&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdeclarative/ChangeLog?r1=1.17&r2=1.18 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtdeclarative/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ChangeLog 16 Sep 2014 14:45:15 - 1.17 +++ ChangeLog 15 Nov 2014 02:36:17 - 1.18 @@ -1,6 +1,12 @@ # ChangeLog for dev-qt/qtdeclarative # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtdeclarative/ChangeLog,v 1.17 2014/09/16 14:45:15 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtdeclarative/ChangeLog,v 1.18 2014/11/15 02:36:17 pesa Exp $ + +*qtdeclarative-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento + +qtdeclarative-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). *qtdeclarative-5.3.2 (16 Sep 2014) 1.1 dev-qt/qtdeclarative/qtdeclarative-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdeclarative/qtdeclarative-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdeclarative/qtdeclarative-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtdeclarative-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtdeclarative/qtdeclarative-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:36:17 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The Declarative module for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos" fi IUSE="+accessibility qt3support webkit" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,qt3support=,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[accessibility=,aqua=,debug=,qt3support=,${MULTILIB_USEDEP}] ~dev-qt/qtopengl-${PV}[aqua=,debug=,qt3support=,${MULTILIB_USEDEP}] ~dev-qt/qtscript-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtsql-${PV}[aqua=,debug=,qt3support=,${MULTILIB_USEDEP}] ~dev-qt/qtsvg-${PV}[accessibility=,aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtxmlpatterns-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] qt3support? ( ~dev-qt/qt3support-${PV}[accessibility=,aqua=,debug=,${MULTILIB_USEDEP}] ) webkit? ( ~dev-qt/qtwebkit-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES=" src/declarative src/imports src/plugins/qmltooling tools/qml tools/qmlplugindump" QCONFIG_ADD="declarative" QCONFIG_DEFINE="QT_DECLARATIVE" pkg_setup() { use webkit && QT4_TARGET_DIRECTORIES+=" src/3rdparty/webkit/Source/WebKit/qt/declarative" } multilib_src_configure() { local myconf=( -declarative -no-gtkstyle $(qt_use accessibility) $(qt_use qt3support) $(qt_use webkit) ) qt4_multilib_src_configure }
[gentoo-commits] gentoo-x86 commit in dev-qt/qtdemo: metadata.xml qtdemo-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:36:28 Modified: metadata.xml ChangeLog Added:qtdemo-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.4 dev-qt/qtdemo/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdemo/metadata.xml?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdemo/metadata.xml?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdemo/metadata.xml?r1=1.3&r2=1.4 Index: metadata.xml === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtdemo/metadata.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- metadata.xml26 Jan 2014 17:55:58 - 1.3 +++ metadata.xml15 Nov 2014 02:36:28 - 1.4 @@ -1,7 +1,7 @@ http://www.gentoo.org/dtd/metadata.dtd";> - qt + qt Build QtDBus examples and demos Build QtDeclarative examples and demos 1.12 dev-qt/qtdemo/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdemo/ChangeLog?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdemo/ChangeLog?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdemo/ChangeLog?r1=1.11&r2=1.12 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtdemo/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ChangeLog 26 Jan 2014 17:55:58 - 1.11 +++ ChangeLog 15 Nov 2014 02:36:28 - 1.12 @@ -1,6 +1,12 @@ # ChangeLog for dev-qt/qtdemo # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtdemo/ChangeLog,v 1.11 2014/01/26 17:55:58 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtdemo/ChangeLog,v 1.12 2014/11/15 02:36:28 pesa Exp $ + +*qtdemo-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qtdemo-4.8.6-r1.ebuild, + metadata.xml: + Version bump (bug 510042). Add multilib support (bug 498010). 26 Jan 2014; Davide Pesavento -qtdemo-4.8.4.ebuild, metadata.xml: 1.1 dev-qt/qtdemo/qtdemo-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdemo/qtdemo-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdemo/qtdemo-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtdemo-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtdemo/qtdemo-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:36:28 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="Demonstration module and examples for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x64-macos" fi IUSE="dbus declarative kde multimedia opengl openvg phonon webkit xmlpatterns" DEPEND=" ~dev-qt/designer-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qthelp-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtscript-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtsql-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtsvg-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qttest-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] dbus? ( ~dev-qt/qtdbus-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) declarative? ( ~dev-qt/qtdeclarative-${PV}[aqua=,debug=,webkit?,${MULTILIB_USEDEP}] ) multimedia? ( ~dev-qt/qtmultimedia-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) opengl? ( ~dev-qt/qtopengl-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) openvg? ( ~dev-qt/qtopenvg-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) phonon? ( kde? ( media-libs/phonon[aqua=] ) !kde? ( || ( ~dev-qt/qtphonon-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] media-libs/phonon[aqua=] ) ) ) webkit? ( ~dev-qt/qtwebkit-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) xmlpatterns? ( ~dev-qt/qtxmlpatterns-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) " RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}/${PN}-4.6-plugandpaint.patch" ) QT4_TARGET_DIRECTORIES=" demos examples" src_prepare() { qt4-build-multilib_src_prepare # Array mapping USE flags to subdirs local flags_subdirs_map=( 'dbus' 'de
[gentoo-commits] gentoo-x86 commit in dev-qt/qtdbus: qtdbus-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:36:03 Modified: ChangeLog Added:qtdbus-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.17 dev-qt/qtdbus/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdbus/ChangeLog?rev=1.17&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdbus/ChangeLog?rev=1.17&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdbus/ChangeLog?r1=1.16&r2=1.17 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtdbus/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- ChangeLog 16 Sep 2014 14:45:04 - 1.16 +++ ChangeLog 15 Nov 2014 02:36:03 - 1.17 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qtdbus # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtdbus/ChangeLog,v 1.16 2014/09/16 14:45:04 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtdbus/ChangeLog,v 1.17 2014/11/15 02:36:03 pesa Exp $ + +*qtdbus-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qtdbus-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). *qtdbus-5.3.2 (16 Sep 2014) 1.1 dev-qt/qtdbus/qtdbus-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdbus/qtdbus-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtdbus/qtdbus-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtdbus-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtdbus/qtdbus-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:36:03 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The DBus module for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] sys-apps/dbus[${MULTILIB_USEDEP}] " RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}/${PN}-4.7-qdbusintegrator-no-const.patch" "${FILESDIR}/${PN}-4.8.4-qdbusconnection-silence-warning.patch" ) QT4_TARGET_DIRECTORIES=" src/dbus tools/qdbus/qdbus tools/qdbus/qdbusxml2cpp tools/qdbus/qdbuscpp2xml" QCONFIG_ADD="dbus dbus-linked" QCONFIG_DEFINE="QT_DBUS" multilib_src_configure() { local myconf=( -dbus-linked ) qt4_multilib_src_configure }
[gentoo-commits] gentoo-x86 commit in dev-qt/qtbearer: qtbearer-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:35:38 Modified: ChangeLog Added:qtbearer-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.16 dev-qt/qtbearer/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtbearer/ChangeLog?rev=1.16&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtbearer/ChangeLog?rev=1.16&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtbearer/ChangeLog?r1=1.15&r2=1.16 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtbearer/ChangeLog,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- ChangeLog 26 Jan 2014 17:46:44 - 1.15 +++ ChangeLog 15 Nov 2014 02:35:38 - 1.16 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qtbearer # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtbearer/ChangeLog,v 1.15 2014/01/26 17:46:44 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtbearer/ChangeLog,v 1.16 2014/11/15 02:35:38 pesa Exp $ + +*qtbearer-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qtbearer-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). 26 Jan 2014; Davide Pesavento -qtbearer-4.8.4.ebuild, metadata.xml: 1.1 dev-qt/qtbearer/qtbearer-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtbearer/qtbearer-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtbearer/qtbearer-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtbearer-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtbearer/qtbearer-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:35:38 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The network bearer plugins for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" fi IUSE="connman networkmanager" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] connman? ( ~dev-qt/qtdbus-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) networkmanager? ( ~dev-qt/qtdbus-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) " RDEPEND="${DEPEND} connman? ( net-misc/connman ) networkmanager? ( net-misc/networkmanager ) " pkg_setup() { QT4_TARGET_DIRECTORIES=" src/plugins/bearer/generic $(use connman && echo src/plugins/bearer/connman) $(use networkmanager && echo src/plugins/bearer/networkmanager)" } multilib_src_configure() { local myconf=( $(use connman || use networkmanager || echo -no-dbus) -no-accessibility -no-xmlpatterns -no-multimedia -no-audio-backend -no-phonon -no-phonon-backend -no-svg -no-webkit -no-script -no-scripttools -no-declarative -system-zlib -no-gif -no-libtiff -no-libpng -no-libmng -no-libjpeg -no-cups -no-gtkstyle -no-nas-sound -no-opengl -no-sm -no-xshape -no-xvideo -no-xsync -no-xinerama -no-xcursor -no-xfixes -no-xrandr -no-xrender -no-mitshm -no-fontconfig -no-freetype -no-xinput -no-xkb ) qt4_multilib_src_configure }
[gentoo-commits] gentoo-x86 commit in dev-qt/pixeltool: pixeltool-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:35:00 Modified: ChangeLog Added:pixeltool-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.18 dev-qt/pixeltool/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/pixeltool/ChangeLog?rev=1.18&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/pixeltool/ChangeLog?rev=1.18&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/pixeltool/ChangeLog?r1=1.17&r2=1.18 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/pixeltool/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ChangeLog 16 Sep 2014 14:44:16 - 1.17 +++ ChangeLog 15 Nov 2014 02:35:00 - 1.18 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/pixeltool # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/pixeltool/ChangeLog,v 1.17 2014/09/16 14:44:16 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/pixeltool/ChangeLog,v 1.18 2014/11/15 02:35:00 pesa Exp $ + +*pixeltool-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +pixeltool-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). *pixeltool-5.3.2 (16 Sep 2014) 1.1 dev-qt/pixeltool/pixeltool-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/pixeltool/pixeltool-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/pixeltool/pixeltool-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: pixeltool-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/pixeltool/pixeltool-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:35:00 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="Qt screen magnifier" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" fi IUSE="" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] !
[gentoo-commits] gentoo-x86 commit in dev-qt/qtcore: qtcore-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:35:51 Modified: ChangeLog Added:qtcore-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.58 dev-qt/qtcore/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtcore/ChangeLog?rev=1.58&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtcore/ChangeLog?rev=1.58&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtcore/ChangeLog?r1=1.57&r2=1.58 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtcore/ChangeLog,v retrieving revision 1.57 retrieving revision 1.58 diff -u -r1.57 -r1.58 --- ChangeLog 28 Sep 2014 22:47:22 - 1.57 +++ ChangeLog 15 Nov 2014 02:35:51 - 1.58 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qtcore # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtcore/ChangeLog,v 1.57 2014/09/28 22:47:22 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtcore/ChangeLog,v 1.58 2014/11/15 02:35:51 pesa Exp $ + +*qtcore-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qtcore-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). 28 Sep 2014; Davide Pesavento -qtcore-4.8.5-r1.ebuild: old 1.1 dev-qt/qtcore/qtcore-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtcore/qtcore-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtcore/qtcore-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qtcore-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qtcore/qtcore-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:35:51 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="Cross-platform application development framework" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="+glib iconv icu qt3support ssl" DEPEND=" >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] glib? ( dev-libs/glib:2[${MULTILIB_USEDEP}] ) icu? ( dev-libs/icu:=[${MULTILIB_USEDEP}] ) ssl? ( >=dev-libs/openssl-1.0.1h-r2:0[${MULTILIB_USEDEP}] ) " RDEPEND="${DEPEND}" PDEPEND=" ~dev-qt/qttranslations-${PV} qt3support? ( ~dev-qt/qtgui-${PV}[aqua=,debug=,glib=,qt3support,${MULTILIB_USEDEP}] ) " MULTILIB_WRAPPED_HEADERS=( /usr/include/qt4/Qt/qconfig.h /usr/include/qt4/QtCore/qconfig.h ) PATCHES=( "${FILESDIR}/${PN}-4.8.5-moc-boost-lexical-cast.patch" "${FILESDIR}/${PN}-4.8.5-honor-ExcludeSocketNotifiers-in-glib-event-loop.patch" # bug 514968 "${FILESDIR}/${PN}-4.8.5-qeventdispatcher-recursive.patch" # bug 514968 ) QT4_TARGET_DIRECTORIES=" src/tools/bootstrap src/tools/moc src/tools/rcc src/tools/uic src/corelib src/network src/xml src/plugins/codecs/cn src/plugins/codecs/jp src/plugins/codecs/kr src/plugins/codecs/tw tools/linguist/lconvert tools/linguist/lrelease tools/linguist/lupdate" QCONFIG_DEFINE="QT_ZLIB" src_prepare() { qt4-build-multilib_src_prepare # bug 172219 sed -i -e "s:CXXFLAGS.*=:CXXFLAGS=${CXXFLAGS} :" \ -e "s:LFLAGS.*=:LFLAGS=${LDFLAGS} :" \ qmake/Makefile.unix || die "sed qmake/Makefile.unix failed" # bug 427782 sed -i -e '/^CPPFLAGS\s*=/ s/-g //' \ qmake/Makefile.unix || die "sed CPPFLAGS in qmake/Makefile.unix failed" sed -i -e 's/setBootstrapVariable QMAKE_CFLAGS_RELEASE/QMakeVar set QMAKE_CFLAGS_RELEASE/' \ -e 's/setBootstrapVariable QMAKE_CXXFLAGS_RELEASE/QMakeVar set QMAKE_CXXFLAGS_RELEASE/' \ configure || die "sed configure setBootstrapVariable failed" } multilib_src_configure() { local myconf=( -no-accessibility -no-xmlpatterns -no-multimedia -no-audio-backend -no-phonon -no-phonon-backend -no-svg -no-webkit -no-script -no-scripttools -no-declarative -system-zlib -no-gif -no-libtiff -no-libpng -no-libmng -no-libjpeg -no-cups -no-dbus -no-gtkstyle -no-nas-sound -no-opengl -no-openvg -no-sm -no-xshape -no-xvideo -no-xsync -no-xinerama -no-xcursor -no-xfixes -no-xrandr -no
[gentoo-commits] gentoo-x86 commit in dev-qt/qt3support: qt3support-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:35:25 Modified: ChangeLog Added:qt3support-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.14 dev-qt/qt3support/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qt3support/ChangeLog?rev=1.14&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qt3support/ChangeLog?rev=1.14&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qt3support/ChangeLog?r1=1.13&r2=1.14 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qt3support/ChangeLog,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- ChangeLog 26 Jan 2014 17:45:45 - 1.13 +++ ChangeLog 15 Nov 2014 02:35:25 - 1.14 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qt3support # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qt3support/ChangeLog,v 1.13 2014/01/26 17:45:45 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qt3support/ChangeLog,v 1.14 2014/11/15 02:35:25 pesa Exp $ + +*qt3support-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qt3support-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). 26 Jan 2014; Davide Pesavento -qt3support-4.8.4.ebuild, metadata.xml: 1.1 dev-qt/qt3support/qt3support-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qt3support/qt3support-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qt3support/qt3support-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qt3support-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qt3support/qt3support-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:35:25 pesa Exp $ EAPI=5 inherit qt4-build-multilib DESCRIPTION="The Qt3Support module for the Qt toolkit" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="+accessibility" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,qt3support,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[accessibility=,aqua=,debug=,qt3support,${MULTILIB_USEDEP}] ~dev-qt/qtsql-${PV}[aqua=,debug=,qt3support,${MULTILIB_USEDEP}] " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES=" src/qt3support src/tools/uic3 tools/porting" multilib_src_configure() { local myconf=( -qt3support $(qt_use accessibility) ) qt4_multilib_src_configure }
[gentoo-commits] gentoo-x86 commit in dev-qt/qdbusviewer: qdbusviewer-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:35:13 Modified: ChangeLog Added:qdbusviewer-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.17 dev-qt/qdbusviewer/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qdbusviewer/ChangeLog?rev=1.17&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qdbusviewer/ChangeLog?rev=1.17&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qdbusviewer/ChangeLog?r1=1.16&r2=1.17 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/qdbusviewer/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- ChangeLog 16 Sep 2014 14:44:32 - 1.16 +++ ChangeLog 15 Nov 2014 02:35:13 - 1.17 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/qdbusviewer # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qdbusviewer/ChangeLog,v 1.16 2014/09/16 14:44:32 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qdbusviewer/ChangeLog,v 1.17 2014/11/15 02:35:13 pesa Exp $ + +*qdbusviewer-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +qdbusviewer-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). *qdbusviewer-5.3.2 (16 Sep 2014) 1.1 dev-qt/qdbusviewer/qdbusviewer-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qdbusviewer/qdbusviewer-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qdbusviewer/qdbusviewer-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: qdbusviewer-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/qdbusviewer/qdbusviewer-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:35:13 pesa Exp $ EAPI=5 inherit eutils qt4-build-multilib DESCRIPTION="Graphical tool that lets you introspect D-Bus objects and messages" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtdbus-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES="tools/qdbus/qdbusviewer" multilib_src_configure() { local myconf=( -system-libpng -system-libjpeg -system-zlib -no-sql-mysql -no-sql-psql -no-sql-ibase -no-sql-sqlite -no-sql-sqlite2 -no-sql-odbc -sm -xshape -xsync -xcursor -xfixes -xrandr -xrender -mitshm -xinput -xkb -fontconfig -no-svg -no-webkit -no-phonon -no-opengl ) qt4_multilib_src_configure } multilib_src_install_all() { qt4_multilib_src_install_all newicon tools/qdbus/qdbusviewer/images/qdbusviewer-128.png qdbusviewer.png make_desktop_entry qdbusviewer QDBusViewer qdbusviewer 'Qt;Development' }
[gentoo-commits] gentoo-x86 commit in dev-qt/linguist: linguist-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:34:48 Modified: ChangeLog Added:linguist-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.19 dev-qt/linguist/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/linguist/ChangeLog?rev=1.19&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/linguist/ChangeLog?rev=1.19&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/linguist/ChangeLog?r1=1.18&r2=1.19 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/linguist/ChangeLog,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- ChangeLog 16 Sep 2014 14:44:01 - 1.18 +++ ChangeLog 15 Nov 2014 02:34:48 - 1.19 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/linguist # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/linguist/ChangeLog,v 1.18 2014/09/16 14:44:01 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/linguist/ChangeLog,v 1.19 2014/11/15 02:34:48 pesa Exp $ + +*linguist-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +linguist-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). *linguist-5.3.2 (16 Sep 2014) 1.1 dev-qt/linguist/linguist-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/linguist/linguist-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/linguist/linguist-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: linguist-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/linguist/linguist-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:34:48 pesa Exp $ EAPI=5 inherit eutils qt4-build-multilib DESCRIPTION="Graphical tool for translating Qt applications" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi IUSE="" DEPEND=" ~dev-qt/designer-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES="tools/linguist/linguist" multilib_src_configure() { local myconf=( -system-libpng -system-libjpeg -system-zlib -no-sql-mysql -no-sql-psql -no-sql-ibase -no-sql-sqlite -no-sql-sqlite2 -no-sql-odbc -sm -xshape -xsync -xcursor -xfixes -xrandr -xrender -mitshm -xinput -xkb -fontconfig -no-svg -no-webkit -no-phonon -no-opengl ) qt4_multilib_src_configure } multilib_src_install_all() { qt4_multilib_src_install_all newicon tools/linguist/linguist/images/icons/linguist-128-32.png linguist.png make_desktop_entry linguist Linguist linguist 'Qt;Development;Translation' }
[gentoo-commits] gentoo-x86 commit in dev-qt/designer: designer-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:34:35 Modified: ChangeLog Added:designer-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.20 dev-qt/designer/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/designer/ChangeLog?rev=1.20&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/designer/ChangeLog?rev=1.20&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/designer/ChangeLog?r1=1.19&r2=1.20 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/designer/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- ChangeLog 26 Sep 2014 23:30:34 - 1.19 +++ ChangeLog 15 Nov 2014 02:34:35 - 1.20 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/designer # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/designer/ChangeLog,v 1.19 2014/09/26 23:30:34 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/designer/ChangeLog,v 1.20 2014/11/15 02:34:35 pesa Exp $ + +*designer-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +designer-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). 26 Sep 2014; Davide Pesavento -designer-5.3.2.ebuild: Remove -r0 with wrong USE dependency. 1.1 dev-qt/designer/designer-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/designer/designer-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/designer/designer-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: designer-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/designer/designer-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:34:35 pesa Exp $ EAPI=5 inherit eutils qt4-build-multilib DESCRIPTION="WYSIWYG tool for designing and building Qt-based GUIs" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" fi DESIGNER_PLUGINS="declarative phonon qt3support webkit" IUSE="${DESIGNER_PLUGINS}" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtscript-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] declarative? ( ~dev-qt/qtdeclarative-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) phonon? ( ~dev-qt/qtphonon-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) qt3support? ( ~dev-qt/qt3support-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) webkit? ( ~dev-qt/qtwebkit-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) " RDEPEND="${DEPEND}" QT4_TARGET_DIRECTORIES="tools/designer" src_prepare() { qt4-build-multilib_src_prepare local plugin for plugin in ${DESIGNER_PLUGINS}; do use ${plugin} || sed -i -e "/\<${plugin}\>/d" \ tools/designer/src/plugins/plugins.pro || die done } multilib_src_configure() { local myconf=( -system-libpng -system-libjpeg -system-zlib -no-sql-mysql -no-sql-psql -no-sql-ibase -no-sql-sqlite -no-sql-sqlite2 -no-sql-odbc -sm -xshape -xsync -xcursor -xfixes -xrandr -xrender -mitshm -xinput -xkb -fontconfig -no-svg -no-webkit -no-phonon -no-opengl ) qt4_multilib_src_configure } multilib_src_install_all() { qt4_multilib_src_install_all doicon tools/designer/src/designer/images/designer.png make_desktop_entry designer Designer designer 'Qt;Development;GUIDesigner' }
[gentoo-commits] gentoo-x86 commit in dev-qt/assistant: ChangeLog
pesa14/11/15 02:31:08 Modified: ChangeLog Log: Sign manifest (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.16 dev-qt/assistant/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/assistant/ChangeLog?rev=1.16&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/assistant/ChangeLog?rev=1.16&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/assistant/ChangeLog?r1=1.15&r2=1.16 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/assistant/ChangeLog,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- ChangeLog 15 Nov 2014 02:22:22 - 1.15 +++ ChangeLog 15 Nov 2014 02:31:08 - 1.16 @@ -1,6 +1,9 @@ # ChangeLog for dev-qt/assistant # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/assistant/ChangeLog,v 1.15 2014/11/15 02:22:22 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/assistant/ChangeLog,v 1.16 2014/11/15 02:31:08 pesa Exp $ + + 15 Nov 2014; Davide Pesavento assistant-4.8.6-r1.ebuild: + Sign manifest *assistant-4.8.6-r1 (15 Nov 2014)
[gentoo-commits] gentoo-x86 commit in dev-qt/assistant: assistant-4.8.6-r1.ebuild ChangeLog
pesa14/11/15 02:22:22 Modified: ChangeLog Added:assistant-4.8.6-r1.ebuild Log: Version bump (bug 510042). Add multilib support (bug 498010). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!) Revision ChangesPath 1.15 dev-qt/assistant/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/assistant/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/assistant/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/assistant/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-qt/assistant/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 6 Oct 2014 09:53:19 - 1.14 +++ ChangeLog 15 Nov 2014 02:22:22 - 1.15 @@ -1,6 +1,11 @@ # ChangeLog for dev-qt/assistant # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/assistant/ChangeLog,v 1.14 2014/10/06 09:53:19 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/assistant/ChangeLog,v 1.15 2014/11/15 02:22:22 pesa Exp $ + +*assistant-4.8.6-r1 (15 Nov 2014) + + 15 Nov 2014; Davide Pesavento +assistant-4.8.6-r1.ebuild: + Version bump (bug 510042). Add multilib support (bug 498010). 06 Oct 2014; Michael Palimaka assistant-5.3.2.ebuild: dev-qt/qtwebkit:5 no longer has a widgets USE flag. 1.1 dev-qt/assistant/assistant-4.8.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/assistant/assistant-4.8.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/assistant/assistant-4.8.6-r1.ebuild?rev=1.1&content-type=text/plain Index: assistant-4.8.6-r1.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-qt/assistant/assistant-4.8.6-r1.ebuild,v 1.1 2014/11/15 02:22:22 pesa Exp $ EAPI=5 inherit eutils qt4-build-multilib DESCRIPTION="Tool for viewing on-line documentation in Qt help file format" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" fi IUSE="webkit" DEPEND=" ~dev-qt/qtcore-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtgui-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qthelp-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ~dev-qt/qtsql-${PV}[aqua=,debug=,sqlite,${MULTILIB_USEDEP}] webkit? ( ~dev-qt/qtwebkit-${PV}[aqua=,debug=,${MULTILIB_USEDEP}] ) " RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}/${PN}-4.8.2+gcc-4.7.patch" ) QT4_TARGET_DIRECTORIES="tools/assistant/tools/assistant" src_prepare() { # bug 401173 use webkit || PATCHES+=("${FILESDIR}/disable-webkit.patch") qt4-build-multilib_src_prepare } multilib_src_configure() { local myconf=( -system-libpng -system-libjpeg -system-zlib -no-sql-mysql -no-sql-psql -no-sql-ibase -no-sql-sqlite2 -no-sql-odbc -sm -xshape -xsync -xcursor -xfixes -xrandr -xrender -mitshm -xinput -xkb -fontconfig -no-multimedia -no-opengl -no-phonon -no-svg -no-xmlpatterns $(qt_use webkit) ) qt4_multilib_src_configure } multilib_src_install_all() { qt4_multilib_src_install_all doicon tools/assistant/tools/assistant/images/assistant.png make_desktop_entry assistant Assistant assistant 'Qt;Development;Documentation' }
[gentoo-commits] gentoo-x86 commit in sys-kernel/gentoo-sources: gentoo-sources-3.17.3.ebuild ChangeLog
mpagano 14/11/15 01:19:17 Modified: ChangeLog Added:gentoo-sources-3.17.3.ebuild Log: Linux patch 3.17.3. Removal of redundant patch. (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key B576E4E3) Revision ChangesPath 1.1440 sys-kernel/gentoo-sources/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog?rev=1.1440&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog?rev=1.1440&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog?r1=1.1439&r2=1.1440 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v retrieving revision 1.1439 retrieving revision 1.1440 diff -u -r1.1439 -r1.1440 --- ChangeLog 15 Nov 2014 00:43:30 - 1.1439 +++ ChangeLog 15 Nov 2014 01:19:17 - 1.1440 @@ -1,6 +1,11 @@ # ChangeLog for sys-kernel/gentoo-sources # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 1.1439 2014/11/15 00:43:30 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 1.1440 2014/11/15 01:19:17 mpagano Exp $ + +*gentoo-sources-3.17.3 (15 Nov 2014) + + 15 Nov 2014; Mike Pagano +gentoo-sources-3.17.3.ebuild: + Linux patch 3.17.3. Removal of redundant patch. *gentoo-sources-3.14.24 (15 Nov 2014) 1.1 sys-kernel/gentoo-sources/gentoo-sources-3.17.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.17.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.17.3.ebuild?rev=1.1&content-type=text/plain Index: gentoo-sources-3.17.3.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.17.3.ebuild,v 1.1 2014/11/15 01:19:17 mpagano Exp $ EAPI="5" ETYPE="sources" K_WANT_GENPATCHES="base extras experimental" K_GENPATCHES_VER="6" K_DEBLOB_AVAILABLE="1" inherit kernel-2 detect_version detect_arch KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches"; IUSE="deblob experimental" DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" pkg_postinst() { kernel-2_pkg_postinst einfo "For more info on this patchset, and how to report problems, see:" einfo "${HOMEPAGE}" } pkg_postrm() { kernel-2_pkg_postrm }
[gentoo-commits] proj/qt:master commit in: dev-qt/qttest/, dev-qt/qtgui/, dev-qt/linguist/, dev-qt/qtphonon/, ...
commit: 9e384cdabffedbe2c7fea96c96ec1f620c4465f4 Author: Davide Pesavento gentoo org> AuthorDate: Sat Nov 15 01:10:53 2014 + Commit: Davide Pesavento gentoo org> CommitDate: Sat Nov 15 01:10:53 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=9e384cda [dev-qt/*] s/Nokia/upstream/ --- dev-qt/assistant/metadata.xml | 2 +- dev-qt/designer/metadata.xml | 2 +- dev-qt/linguist/metadata.xml | 2 +- dev-qt/pixeltool/metadata.xml | 2 +- dev-qt/qdbusviewer/metadata.xml | 2 +- dev-qt/qt3support/metadata.xml| 2 +- dev-qt/qtbearer/metadata.xml | 2 +- dev-qt/qtcore/metadata.xml| 2 +- dev-qt/qtdbus/metadata.xml| 2 +- dev-qt/qtdeclarative/metadata.xml | 2 +- dev-qt/qtdemo/metadata.xml| 2 +- dev-qt/qtgui/metadata.xml | 2 +- dev-qt/qthelp/metadata.xml| 2 +- dev-qt/qtmultimedia/metadata.xml | 2 +- dev-qt/qtopengl/metadata.xml | 2 +- dev-qt/qtphonon/metadata.xml | 2 +- dev-qt/qtscript/metadata.xml | 2 +- dev-qt/qtsql/metadata.xml | 2 +- dev-qt/qtsvg/metadata.xml | 2 +- dev-qt/qttest/metadata.xml| 2 +- dev-qt/qtwebkit/metadata.xml | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/dev-qt/assistant/metadata.xml b/dev-qt/assistant/metadata.xml index cf47457..14dca05 100644 --- a/dev-qt/assistant/metadata.xml +++ b/dev-qt/assistant/metadata.xml @@ -4,7 +4,7 @@ qt Add support for exceptions - like catching them - inside the event loop (recommended by Nokia) + inside the event loop (recommended by upstream) https://bugreports.qt-project.org/ diff --git a/dev-qt/designer/metadata.xml b/dev-qt/designer/metadata.xml index d44ee0b..4f7e848 100644 --- a/dev-qt/designer/metadata.xml +++ b/dev-qt/designer/metadata.xml @@ -5,7 +5,7 @@ Build the qdeclarativeview plugin Add support for exceptions - like catching them - inside the event loop (recommended by Nokia) + inside the event loop (recommended by upstream) Build the phononwidgets plugin Build the qt3supportwidgets plugin Build the qwebview plugin diff --git a/dev-qt/linguist/metadata.xml b/dev-qt/linguist/metadata.xml index cf47457..14dca05 100644 --- a/dev-qt/linguist/metadata.xml +++ b/dev-qt/linguist/metadata.xml @@ -4,7 +4,7 @@ qt Add support for exceptions - like catching them - inside the event loop (recommended by Nokia) + inside the event loop (recommended by upstream) https://bugreports.qt-project.org/ diff --git a/dev-qt/pixeltool/metadata.xml b/dev-qt/pixeltool/metadata.xml index cf47457..14dca05 100644 --- a/dev-qt/pixeltool/metadata.xml +++ b/dev-qt/pixeltool/metadata.xml @@ -4,7 +4,7 @@ qt Add support for exceptions - like catching them - inside the event loop (recommended by Nokia) + inside the event loop (recommended by upstream) https://bugreports.qt-project.org/ diff --git a/dev-qt/qdbusviewer/metadata.xml b/dev-qt/qdbusviewer/metadata.xml index cf47457..14dca05 100644 --- a/dev-qt/qdbusviewer/metadata.xml +++ b/dev-qt/qdbusviewer/metadata.xml @@ -4,7 +4,7 @@ qt Add support for exceptions - like catching them - inside the event loop (recommended by Nokia) + inside the event loop (recommended by upstream) https://bugreports.qt-project.org/ diff --git a/dev-qt/qt3support/metadata.xml b/dev-qt/qt3support/metadata.xml index cf47457..14dca05 100644 --- a/dev-qt/qt3support/metadata.xml +++ b/dev-qt/qt3support/metadata.xml @@ -4,7 +4,7 @@ qt Add support for exceptions - like catching them - inside the event loop (recommended by Nokia) + inside the event loop (recommended by upstream) https://bugreports.qt-project.org/ diff --git a/dev-qt/qtbearer/metadata.xml b/dev-qt/qtbearer/metadata.xml index cf47457..14dca05 100644 --- a/dev-qt/qtbearer/metadata.xml +++ b/dev-qt/qtbearer/metadata.xml @@ -4,7 +4,7 @@ qt Add support for exceptions - like catching them - inside the event loop (recommended by Nokia) + inside the event loop (recommended by upstream) https://bugreports.qt-project.org/ diff --git a/dev-qt/qtcore/metadata.xml b/dev-qt/qtcore/metadata.xml index 683d8f9..c0ae526 100644 --- a/dev-qt/qtcore/metadata.xml +++ b/dev-qt/qtcore/metadata.xml @@ -4,7 +4,7 @@
[gentoo-commits] proj/linux-patches: New tag: 3.17-6
commit: Commit: Mike Pagano gentoo org> CommitDate: Sat Nov 15 01:03:19 2014 + New tag: 3.17-6
[gentoo-commits] proj/sci:master commit in: profiles/
commit: c7967190beccd959c121a688463ee692fde459a8 Author: Christoph Junghans gentoo org> AuthorDate: Sat Nov 15 00:59:05 2014 + Commit: Christoph Junghans gentoo org> CommitDate: Sat Nov 15 00:59:05 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c7967190 sci-misc/salome-* masked for removal --- profiles/package.mask | 15 +++ 1 file changed, 15 insertions(+) diff --git a/profiles/package.mask b/profiles/package.mask index b831700..69e1676 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -30,6 +30,21 @@ #--- END OF EXAMPLES --- +# Christoph Junghans (14 Nov 2014) +# sci-misc/salome-* masked for removal in 30 days +# not bumped since 2010, reintroduced back in science overlay +# if properly maintained +sci-misc/salome-component +sci-misc/salome-geom +sci-misc/salome-gui +sci-misc/salome-kernel +sci-misc/salome-med +sci-misc/salome-meta +sci-misc/salome-pycalculator +sci-misc/salome-smesh +sci-misc/salome-visu +sci-misc/salome-yacs + # Andreas K. Huettel (1 Nov 2014) # Lab::Instrument and Lab::Tools provided as separate packages # are way outdated. These are now supplied as parts of the package
[gentoo-commits] gentoo-x86 commit in net-mail/pfqueue: pfqueue-0.5.6.ebuild ChangeLog
jer 14/11/15 00:57:34 Modified: pfqueue-0.5.6.ebuild ChangeLog Log: Fix building against sys-libs/ncurses[tinfo] (bug #527664). Do not install static plugins. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.8 net-mail/pfqueue/pfqueue-0.5.6.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/pfqueue/pfqueue-0.5.6.ebuild?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/pfqueue/pfqueue-0.5.6.ebuild?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/pfqueue/pfqueue-0.5.6.ebuild?r1=1.7&r2=1.8 Index: pfqueue-0.5.6.ebuild === RCS file: /var/cvsroot/gentoo-x86/net-mail/pfqueue/pfqueue-0.5.6.ebuild,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- pfqueue-0.5.6.ebuild7 May 2010 04:15:42 - 1.7 +++ pfqueue-0.5.6.ebuild15 Nov 2014 00:57:34 - 1.8 @@ -1,27 +1,35 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/pfqueue/pfqueue-0.5.6.ebuild,v 1.7 2010/05/07 04:15:42 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/pfqueue/pfqueue-0.5.6.ebuild,v 1.8 2014/11/15 00:57:34 jer Exp $ -inherit eutils toolchain-funcs +EAPI=5 +inherit autotools eutils toolchain-funcs -DESCRIPTION="pfqueue is an ncurses console-based tool for managing Postfix -queued messages" +DESCRIPTION="pfqueue is an ncurses console-based tool for managing Postfix queued messages" HOMEPAGE="http://pfqueue.sourceforge.net/"; SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86" -IUSE="" -DEPEND="sys-devel/libtool - sys-libs/ncurses" -RDEPEND="" - -src_compile() { - econf || die "econf failed" - emake || die "make failed" + +RDEPEND=" + sys-libs/ncurses + sys-devel/libtool +" +DEPEND="${RDEPEND}" + +src_prepare() { + epatch "${FILESDIR}"/${P}-tinfo.patch + eautoreconf } +src_configure() { + econf --disable-static +} + +DOCS=( README ChangeLog NEWS TODO AUTHORS ) + src_install() { - make DESTDIR="${D}" install || die - dodoc README ChangeLog NEWS TODO AUTHORS + default + prune_libtool_files } 1.45 net-mail/pfqueue/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/pfqueue/ChangeLog?rev=1.45&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/pfqueue/ChangeLog?rev=1.45&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/pfqueue/ChangeLog?r1=1.44&r2=1.45 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-mail/pfqueue/ChangeLog,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- ChangeLog 7 May 2010 04:15:42 - 1.44 +++ ChangeLog 15 Nov 2014 00:57:34 - 1.45 @@ -1,6 +1,11 @@ # ChangeLog for net-mail/pfqueue -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/pfqueue/ChangeLog,v 1.44 2010/05/07 04:15:42 jer Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/pfqueue/ChangeLog,v 1.45 2014/11/15 00:57:34 jer Exp $ + + 15 Nov 2014; Jeroen Roovers +files/pfqueue-0.5.6-tinfo.patch, + pfqueue-0.5.6.ebuild: + Fix building against sys-libs/ncurses[tinfo] (bug #527664). Do not install + static plugins. 07 May 2010; Jeroen Roovers pfqueue-0.5.6.ebuild: Fix implicit RDEPEND (bug #221631). @@ -194,4 +199,3 @@ 05 Jan 2005; Andrej Kacian +metadata.xml, +pfqueue-0.2.0.ebuild: Initial import, ebuild submitted by eGore . Closes #75173. -
[gentoo-commits] gentoo-x86 commit in net-mail/pfqueue/files: pfqueue-0.5.6-tinfo.patch
jer 14/11/15 00:57:34 Added:pfqueue-0.5.6-tinfo.patch Log: Fix building against sys-libs/ncurses[tinfo] (bug #527664). Do not install static plugins. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.1 net-mail/pfqueue/files/pfqueue-0.5.6-tinfo.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/pfqueue/files/pfqueue-0.5.6-tinfo.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/pfqueue/files/pfqueue-0.5.6-tinfo.patch?rev=1.1&content-type=text/plain Index: pfqueue-0.5.6-tinfo.patch === --- a/configure.in +++ b/configure.in @@ -38,6 +38,7 @@ dnl Checks for library functions. AC_CHECK_LIB(ncurses,newwin) +AC_SEARCH_LIBS(COLS, tinfo) AC_CHECK_LIB(pthread,pthread_create) AC_CHECK_LIB(c_r,pthread_create) AC_CHECK_LIB(dl,dlopen)
[gentoo-commits] gentoo-x86 commit in games-board/xboard/files: xboard-4.7.2-Xaw3d.patch xboard-4.7.2-paths.patch xboard-4.7.2-configure-switches.patch xboard-4.7.2-gettext.patch xboard-4.7.2-gnuchess
mr_bones_14/11/15 00:46:13 Removed: xboard-4.7.2-Xaw3d.patch xboard-4.7.2-paths.patch xboard-4.7.2-configure-switches.patch xboard-4.7.2-gettext.patch xboard-4.7.2-gnuchess-default.patch Log: old (Portage version: 2.2.8-r2/cvs/Linux x86_64, unsigned Manifest commit)
[gentoo-commits] gentoo-x86 commit in games-board/xboard: ChangeLog xboard-4.7.2.ebuild
mr_bones_14/11/15 00:46:13 Modified: ChangeLog Removed: xboard-4.7.2.ebuild Log: old (Portage version: 2.2.8-r2/cvs/Linux x86_64, unsigned Manifest commit) Revision ChangesPath 1.68 games-board/xboard/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/xboard/ChangeLog?rev=1.68&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/xboard/ChangeLog?rev=1.68&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/xboard/ChangeLog?r1=1.67&r2=1.68 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/games-board/xboard/ChangeLog,v retrieving revision 1.67 retrieving revision 1.68 diff -u -r1.67 -r1.68 --- ChangeLog 3 Nov 2014 19:31:16 - 1.67 +++ ChangeLog 15 Nov 2014 00:46:13 - 1.68 @@ -1,6 +1,12 @@ # ChangeLog for games-board/xboard # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/xboard/ChangeLog,v 1.67 2014/11/03 19:31:16 sping Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/xboard/ChangeLog,v 1.68 2014/11/15 00:46:13 mr_bones_ Exp $ + + 15 Nov 2014; Michael Sterrett + -files/xboard-4.7.2-Xaw3d.patch, -files/xboard-4.7.2-configure-switches.patch, + -files/xboard-4.7.2-gettext.patch, -files/xboard-4.7.2-gnuchess-default.patch, + -files/xboard-4.7.2-paths.patch, -xboard-4.7.2.ebuild: + old *xboard-4.8.0 (03 Nov 2014)
[gentoo-commits] gentoo-x86 commit in sys-kernel/gentoo-sources: ChangeLog gentoo-sources-3.14.24.ebuild
mpagano 14/11/15 00:43:30 Modified: ChangeLog Added:gentoo-sources-3.14.24.ebuild Log: Linux patch 3.14.24 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key B576E4E3) Revision ChangesPath 1.1439 sys-kernel/gentoo-sources/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog?rev=1.1439&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog?rev=1.1439&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog?r1=1.1438&r2=1.1439 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v retrieving revision 1.1438 retrieving revision 1.1439 diff -u -r1.1438 -r1.1439 --- ChangeLog 14 Nov 2014 20:36:31 - 1.1438 +++ ChangeLog 15 Nov 2014 00:43:30 - 1.1439 @@ -1,6 +1,11 @@ # ChangeLog for sys-kernel/gentoo-sources # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 1.1438 2014/11/14 20:36:31 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 1.1439 2014/11/15 00:43:30 mpagano Exp $ + +*gentoo-sources-3.14.24 (15 Nov 2014) + + 15 Nov 2014; Mike Pagano +gentoo-sources-3.14.24.ebuild: + Linux patch 3.14.24 *gentoo-sources-3.10.60 (14 Nov 2014) 1.1 sys-kernel/gentoo-sources/gentoo-sources-3.14.24.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.14.24.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.14.24.ebuild?rev=1.1&content-type=text/plain Index: gentoo-sources-3.14.24.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.14.24.ebuild,v 1.1 2014/11/15 00:43:30 mpagano Exp $ EAPI="5" ETYPE="sources" K_WANT_GENPATCHES="base extras experimental" K_GENPATCHES_VER="29" K_DEBLOB_AVAILABLE="1" inherit kernel-2 detect_version detect_arch KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches"; IUSE="deblob experimental" DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" pkg_postinst() { kernel-2_pkg_postinst einfo "For more info on this patchset, and how to report problems, see:" einfo "${HOMEPAGE}" } pkg_postrm() { kernel-2_pkg_postrm }
[gentoo-commits] gentoo-x86 commit in net-mail/up-imapproxy: up-imapproxy-1.2.7.ebuild ChangeLog
jer 14/11/15 00:42:13 Modified: up-imapproxy-1.2.7.ebuild ChangeLog Log: Fix building against sys-libs/ncurses[tinfo] (bug #527570). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.5 net-mail/up-imapproxy/up-imapproxy-1.2.7.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/up-imapproxy/up-imapproxy-1.2.7.ebuild?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/up-imapproxy/up-imapproxy-1.2.7.ebuild?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/up-imapproxy/up-imapproxy-1.2.7.ebuild?r1=1.4&r2=1.5 Index: up-imapproxy-1.2.7.ebuild === RCS file: /var/cvsroot/gentoo-x86/net-mail/up-imapproxy/up-imapproxy-1.2.7.ebuild,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- up-imapproxy-1.2.7.ebuild 10 Aug 2014 20:47:04 - 1.4 +++ up-imapproxy-1.2.7.ebuild 15 Nov 2014 00:42:13 - 1.5 @@ -1,10 +1,11 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/up-imapproxy/up-imapproxy-1.2.7.ebuild,v 1.4 2014/08/10 20:47:04 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/up-imapproxy/up-imapproxy-1.2.7.ebuild,v 1.5 2014/11/15 00:42:13 jer Exp $ -EAPI=4 +EAPI=5 -inherit eutils +WANT_AUTOCONF="2.1" +inherit autotools eutils toolchain-funcs DESCRIPTION="Proxy IMAP transactions between an IMAP client and an IMAP server" HOMEPAGE="http://www.imapproxy.org/"; @@ -26,8 +27,11 @@ src_prepare() { epatch "${FILESDIR}/${P}"-ldflags.patch - sed -i -e 's:in\.imapproxyd:imapproxyd:g' \ - README Makefile.in include/imapproxy.h || die "sed failed" + epatch "${FILESDIR}/${P}"-tinfo.patch + + sed -i \ + -e 's:in\.imapproxyd:imapproxyd:g' \ + README Makefile.in include/imapproxy.h || die #buffer oveflow #http://lists.andrew.cmu.edu/pipermail/imapproxy-info/2010-June/000874.html @@ -35,9 +39,12 @@ -e "/define BUFSIZE/s/4096/8192/" \ -e "/define MAXPASSWDLEN/s/64/8192/" \ include/imapproxy.h + + eautoreconf } src_configure() { + tc-export CC econf \ $(use_with kerberos krb5) \ $(use_with ssl openssl) \ 1.31 net-mail/up-imapproxy/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/up-imapproxy/ChangeLog?rev=1.31&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/up-imapproxy/ChangeLog?rev=1.31&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/up-imapproxy/ChangeLog?r1=1.30&r2=1.31 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-mail/up-imapproxy/ChangeLog,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- ChangeLog 10 Aug 2014 20:47:04 - 1.30 +++ ChangeLog 15 Nov 2014 00:42:13 - 1.31 @@ -1,6 +1,10 @@ # ChangeLog for net-mail/up-imapproxy # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/up-imapproxy/ChangeLog,v 1.30 2014/08/10 20:47:04 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/up-imapproxy/ChangeLog,v 1.31 2014/11/15 00:42:13 jer Exp $ + + 15 Nov 2014; Jeroen Roovers + +files/up-imapproxy-1.2.7-tinfo.patch, up-imapproxy-1.2.7.ebuild: + Fix building against sys-libs/ncurses[tinfo] (bug #527570). 10 Aug 2014; Sergei Trofimovich up-imapproxy-1.2.7.ebuild: QA: drop trailing '.' from DESCRIPTION
[gentoo-commits] gentoo-x86 commit in net-mail/up-imapproxy/files: up-imapproxy-1.2.7-tinfo.patch
jer 14/11/15 00:42:13 Added:up-imapproxy-1.2.7-tinfo.patch Log: Fix building against sys-libs/ncurses[tinfo] (bug #527570). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.1 net-mail/up-imapproxy/files/up-imapproxy-1.2.7-tinfo.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/up-imapproxy/files/up-imapproxy-1.2.7-tinfo.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/up-imapproxy/files/up-imapproxy-1.2.7-tinfo.patch?rev=1.1&content-type=text/plain Index: up-imapproxy-1.2.7-tinfo.patch === --- a/configure.in +++ b/configure.in @@ -121,12 +121,16 @@ save_LIBS="$LIBS" LIB_CURSES="" AC_CHECK_LIB(curses, initscr, LIB_CURSES="-lcurses", [ curses_found=no ]) -if test "$curses_found" == no; then +if test "$curses_found" = no; then AC_CHECK_LIB(ncurses, initscr, LIB_CURSES="-lncurses", AC_ERROR([Can't compile without curses!!!])) fi LIBS="$save_LIBS" + +AC_SEARCH_LIBS(stdscr, tinfo curses ncurses, [LIB_CURSES="$LIB_CURSES $ac_cv_search_stdscr"], + AC_MSG_ERROR([Cannot find a library providing stdscr])) + AC_SUBST(LIB_CURSES)
[gentoo-commits] proj/linux-patches: New tag: 3.14-29
commit: Commit: Mike Pagano gentoo org> CommitDate: Sat Nov 15 00:35:29 2014 + New tag: 3.14-29
[gentoo-commits] proj/sci:master commit in: sys-cluster/charm/, sys-cluster/charm/files/
commit: ab63448739af960f1d8f83caa6bf2b396901823f Author: Christoph Junghans gentoo org> AuthorDate: Sat Nov 15 00:01:01 2014 + Commit: Christoph Junghans gentoo org> CommitDate: Sat Nov 15 00:01:01 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=ab634487 never version in gx86 --- sys-cluster/charm/ChangeLog| 157 sys-cluster/charm/charm-6.6.0_rc1-r1.ebuild| 220 --- sys-cluster/charm/charm-6.6.0_rc1.ebuild | 222 sys-cluster/charm/charm-6.6.0_rc2.ebuild | 221 --- .../charm/files/charm-6.5.0-charmc-gentoo.patch| 25 -- .../charm/files/charm-6.5.1-CkReductionMgr.patch | 34 -- .../charm/files/charm-6.5.1-charmc-gentoo.patch| 39 -- .../charm/files/charm-6.5.1-cleanup-config.patch | 58 --- .../files/charm-6.5.1-fix-markupSanitizer.patch| 203 --- .../files/charm-6.5.1-fix-navmenuGenerator.patch | 30 -- .../files/charm-6.5.1-fix-string-parsing.patch | 50 --- .../files/charm-6.5.1-static-library-fix.patch | 396 .../files/charm-6.6.0-static-library-fix.patch | 403 - sys-cluster/charm/metadata.xml | 18 - 14 files changed, 2076 deletions(-) diff --git a/sys-cluster/charm/ChangeLog b/sys-cluster/charm/ChangeLog deleted file mode 100644 index 9b9425c..000 --- a/sys-cluster/charm/ChangeLog +++ /dev/null @@ -1,157 +0,0 @@ -# ChangeLog for sys-cluster/charm -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - - 06 May 2014; Christoph Junghans charm-6.6.0_rc2.ebuild: - do not compress examples - - 20 Feb 2014; Christoph Junghans charm-6.6.0_rc2.ebuild: - fixed build, gcc doesn't understand -j1 - -*charm-6.6.0_rc2 (19 Feb 2014) - - 19 Feb 2014; Nicolas Bock +charm-6.6.0_rc2.ebuild: - sys-cluster/charm-6.6.0_rc2: Version bump to new release candidate. - - 06 Jan 2014; Nicolas Bock charm-6.6.0_rc1-r1.ebuild: - sys-cluster/charm-6.6.0_rc1-r1: After ongoing problems with charm's git - repository, I packaged the rc as a tar file and serve it from my personal dev - webpage. - - 03 Jan 2014; Nicolas Bock charm-6.6.0_rc1-r1.ebuild: - sys-cluster/charm-6.6.0_rc1-r1: Add non-shallow option to git to avoid - breakage of checked out repository. - -*charm-6.6.0_rc1-r1 (02 Jan 2014) - - 02 Jan 2014; Nicolas Bock +charm-6.6.0_rc1-r1.ebuild: - sys-cluster/charm-6.6.0_rc1-r1: Cleanup of python deps. - - 02 Jan 2014; Nicolas Bock -Manifest, - -charm-6.5.1-r2.ebuild, -charm-6.5.1-r3.ebuild: - sys-cluster/charm: Removing versions moved to x86. - - 13 Dec 2013; Nicolas Bock metadata.xml: - sys-cluster/charm: Updated maintainer email to gentoo.org. - - 22 Nov 2013; Nicolas Bock charm-6.6.0_rc1.ebuild: - sys-cluster/charm-6.6.0-rc1: Reorganized some variables. - - 20 Nov 2013; Nicolas Bock - +files/charm-6.6.0-static-library-fix.patch, charm-6.6.0_rc1.ebuild: - sys-cluster/charm-6.6.0_rc1: Rewrote patch to enable shared mode. The patch - is targeted now for v6.7.0 by upstream. - -*charm-6.6.0_rc1 (20 Nov 2013) - - 20 Nov 2013; Nicolas Bock +charm-6.6.0_rc1.ebuild: - sys-cluster/charm-6.6.0_rc1: Version bump. - -*charm-6.5.1-r3 (08 Nov 2013) - - 08 Nov 2013; Nicolas Bock +charm-6.5.1-r3.ebuild, - +files/charm-6.5.1-fix-markupSanitizer.patch: - sys-cluster/charm-6.5.1-r3: Added patch to fix doc. When building the - documentation, we used to have to force https://charm.cs.illinois.edu/redmine/issues/328). - - 18 Oct 2013; Christoph Junghans -charm-6.5.1-r1.ebuild, - -charm-6.5.1.ebuild: - remove old - - 15 Oct 2013; Nicolas Bock - files/charm-6.5.1-static-library-fix.patch: - sys-cluster/charm-6.5.1-r2: Updated static library patch with upstream patch. - -*charm-6.5.1-r2 (14 Oct 2013) - - 14 Oct 2013; Nicolas Bock +charm-6.5.1-r2.ebuild, - +files/charm-6.5.1-static-library-fix.patch: - sys-cluster/charm-6.5.1-r2: Fixed shared library bug. When charm is built - with --enable-shared, not all libraries are actually built as shared - libraries. I have reported this bug upstream and submitted a patch. I - backported this patch and added it to this revision. - - 01 Oct 2013; Christoph Junghans charm-6.5.1-r1.ebuild: - fixed deps - - 01 Oct 2013; Nicolas Bock - +files/charm-6.5.1-fix-navmenuGenerator.patch, charm-6.5.1-r1.ebuild: - sys-cluster/charm-6.5.1-r1: Fix docs with -j1 Docs don't build when using - anything more than -j1. - - 27 Sep 2013; Nicolas Bock charm-6.5.1-r1.ebuild: - sys-cluster/charm-6.5.1-r1: Added python dependencies The documentation is - built partly with python2.x scripts. I added the necessary dependencies. - - 27 Sep 2013; Nicolas Bock charm-6.5.1-r1.ebuild: - sys-cluster/charm-6.5.1-r1: doc depends on python-2 - - 27 Sep 2013; Nicolas Bock charm-6.5.1-r1.ebuild: - sys-cluster/charm-6.5.1-r1: Added another missing DEPEND. - - 27 Sep 2013; Nicolas Bock
[gentoo-commits] proj/sci:master commit in: dev-util/amdapp/
commit: 08f55023f47700036603c7efb63478efdf938f84 Author: Christoph Junghans gentoo org> AuthorDate: Fri Nov 14 23:57:01 2014 + Commit: Christoph Junghans gentoo org> CommitDate: Fri Nov 14 23:57:01 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=08f55023 switch to virtual/opencl Package-Manager: portage-2.2.8-r2 --- dev-util/amdapp/ChangeLog | 6 ++ dev-util/amdapp/amdapp-2.8.ebuild | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-util/amdapp/ChangeLog b/dev-util/amdapp/ChangeLog new file mode 100644 index 000..85df99a --- /dev/null +++ b/dev-util/amdapp/ChangeLog @@ -0,0 +1,6 @@ +# ChangeLog for dev-util/amdapp +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 14 Nov 2014; Christoph Junghans amdapp-2.8.ebuild: + switch to virtual/opencl diff --git a/dev-util/amdapp/amdapp-2.8.ebuild b/dev-util/amdapp/amdapp-2.8.ebuild index 7676903..53a239e 100644 --- a/dev-util/amdapp/amdapp-2.8.ebuild +++ b/dev-util/amdapp/amdapp-2.8.ebuild @@ -29,8 +29,7 @@ RDEPEND=" sys-devel/gcc media-libs/mesa media-libs/freeglut - || ( dev-util/opencl-headers dev-util/nvidia-cuda-toolkit - >=x11-drivers/ati-drivers-11.12[opencl] ) + virtual/opencl examples? ( media-libs/glew ) app-admin/eselect-opencl" DEPEND="
[gentoo-commits] proj/sci:master commit in: sys-cluster/mvapich2/
commit: 05174174fa6bf421e86fa0a3e0e58ee16bcb2046 Author: Christoph Junghans gentoo org> AuthorDate: Sat Nov 15 00:06:29 2014 + Commit: Christoph Junghans gentoo org> CommitDate: Sat Nov 15 00:06:29 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=05174174 drop old deps Package-Manager: portage-2.2.8-r2 --- sys-cluster/mvapich2/ChangeLog | 6 -- sys-cluster/mvapich2/mvapich2-1.6-r1.ebuild | 14 ++ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/sys-cluster/mvapich2/ChangeLog b/sys-cluster/mvapich2/ChangeLog index 65629c7..01a5312 100644 --- a/sys-cluster/mvapich2/ChangeLog +++ b/sys-cluster/mvapich2/ChangeLog @@ -1,7 +1,9 @@ # ChangeLog for sys-cluster/mvapich2 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 15 Nov 2014; Christoph Junghans mvapich2-1.6-r1.ebuild: + drop old deps + 03 Mar 2013; Justin Lecher mvapich2-1.6-r1.ebuild: Add missing flag-o-matic.eclass - diff --git a/sys-cluster/mvapich2/mvapich2-1.6-r1.ebuild b/sys-cluster/mvapich2/mvapich2-1.6-r1.ebuild index 30cdb98..d13c57c 100644 --- a/sys-cluster/mvapich2/mvapich2-1.6-r1.ebuild +++ b/sys-cluster/mvapich2/mvapich2-1.6-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI="4" +EAPI="5" inherit flag-o-matic fortran-2 mpi @@ -16,13 +16,11 @@ KEYWORDS="~x86 ~amd64" IUSE="debug fortran large-cluster medium-cluster romio threads" RDEPEND=" - || ( - ( - sys-infiniband/libibverbs - sys-infiniband/libibumad - sys-infiniband/libibmad - sys-infiniband/librdmacm ) - sys-infiniband/openib-userspace )" + sys-infiniband/libibverbs + sys-infiniband/libibumad + sys-infiniband/libibmad + sys-infiniband/librdmacm + " DEPEND="${RDEPEND}" S="${WORKDIR}/mvapich2-${PV/_/-}"
[gentoo-commits] proj/sci:master commit in: virtual/geant/
commit: 7ae038944fbfe5679efb95df512ac24a2347bcad Author: Christoph Junghans gentoo org> AuthorDate: Sat Nov 15 00:13:34 2014 + Commit: Christoph Junghans gentoo org> CommitDate: Sat Nov 15 00:13:34 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7ae03894 fixed geant-vmc deps Package-Manager: portage-2.2.8-r2 --- virtual/geant/ChangeLog | 5 - virtual/geant/geant-3.ebuild | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/virtual/geant/ChangeLog b/virtual/geant/ChangeLog index e0d9322..a5031fe 100644 --- a/virtual/geant/ChangeLog +++ b/virtual/geant/ChangeLog @@ -1,7 +1,10 @@ # ChangeLog for virtual/geant -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 15 Nov 2014; Christoph Junghans geant-3.ebuild: + fixed geant-vmc deps + *geant-3 (18 Jan 2013) 18 Jan 2013; Sébastien Fabbro +geant-3.ebuild, diff --git a/virtual/geant/geant-3.ebuild b/virtual/geant/geant-3.ebuild index 134c8bb..49ed9aa 100644 --- a/virtual/geant/geant-3.ebuild +++ b/virtual/geant/geant-3.ebuild @@ -14,4 +14,4 @@ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="" DEPEND="" -RDEPEND="|| ( sci-physics/geant:3 sci-physics/geant3-vmc )" +RDEPEND="|| ( sci-physics/geant:3 sci-physics/geant-vmc:3 )"
[gentoo-commits] proj/sci:master commit in: sci-mathematics/freefem++/
commit: f2e1b1993b8ffc2defc2f7910e564eccfdb7b252 Author: Christoph Junghans gentoo org> AuthorDate: Sat Nov 15 00:15:13 2014 + Commit: Christoph Junghans gentoo org> CommitDate: Sat Nov 15 00:15:13 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f2e1b199 fixed latex dep Package-Manager: portage-2.2.8-r2 --- sci-mathematics/freefem++/ChangeLog| 3 +++ sci-mathematics/freefem++/freefem++-3.8.ebuild | 9 ++--- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/sci-mathematics/freefem++/ChangeLog b/sci-mathematics/freefem++/ChangeLog index 3e11bdb..616b17a 100644 --- a/sci-mathematics/freefem++/ChangeLog +++ b/sci-mathematics/freefem++/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 15 Nov 2014; Christoph Junghans freefem++-3.8.ebuild: + fixed latex dep + 12 Nov 2014; Justin Lecher freefem++-3.8.ebuild: Bump to EAPI=5 diff --git a/sci-mathematics/freefem++/freefem++-3.8.ebuild b/sci-mathematics/freefem++/freefem++-3.8.ebuild index 2262fab..4163738 100644 --- a/sci-mathematics/freefem++/freefem++-3.8.ebuild +++ b/sci-mathematics/freefem++/freefem++-3.8.ebuild @@ -39,13 +39,8 @@ RDEPEND=" DEPEND="${RDEPEND} virtual/pkgconfig doc? ( - || ( - ( - dev-texlive/texlive-latexrecommended - dev-texlive/texlive-latexextra - ) - app-text/ptex - ) + dev-texlive/texlive-latexrecommended + dev-texlive/texlive-latexextra virtual/latex-base media-gfx/imagemagick )"
[gentoo-commits] proj/sci:master commit in: virtual/mpi/
commit: c9c5481237d0f405dc72cc34d1f282640a298d25 Author: Christoph Junghans gentoo org> AuthorDate: Sat Nov 15 00:10:44 2014 + Commit: Christoph Junghans gentoo org> CommitDate: Sat Nov 15 00:10:44 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c9c54812 fix mvapich2 dep Package-Manager: portage-2.2.8-r2 --- virtual/mpi/ChangeLog | 5 - virtual/mpi/mpi-2.0-r3.ebuild | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/virtual/mpi/ChangeLog b/virtual/mpi/ChangeLog index aea8f1d..9528b39 100644 --- a/virtual/mpi/ChangeLog +++ b/virtual/mpi/ChangeLog @@ -1,7 +1,10 @@ # ChangeLog for virtual/mpi -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 15 Nov 2014; Christoph Junghans mpi-2.0-r3.ebuild: + fix mvapich2 dep + 12 Jul 2013; Christoph Junghans mpi-2.0-r3.ebuild: fix nullmpi use flags diff --git a/virtual/mpi/mpi-2.0-r3.ebuild b/virtual/mpi/mpi-2.0-r3.ebuild index 58b5e29..bc417cd 100644 --- a/virtual/mpi/mpi-2.0-r3.ebuild +++ b/virtual/mpi/mpi-2.0-r3.ebuild @@ -16,7 +16,7 @@ RDEPEND="|| ( sys-cluster/openmpi[cxx?,fortran?,romio?,threads?] sys-cluster/mpich[cxx?,fortran?,romio?,threads?] sys-cluster/mpich2[cxx?,fortran?,romio?,threads?] - sys-cluster/mvapich2[cxx?,fortran?,romio?,threads?] + sys-cluster/mvapich2[fortran?,romio?,threads?] sys-cluster/nullmpi[cxx(-)?,fortran(-)?,romio(-)?,threads(-)?] sys-cluster/native-mpi )"
[gentoo-commits] proj/sci:master commit in: sci-libs/wannier90/
commit: 39e2504dc9093cff78f6dbeb9b96d829e12d36ca Author: Christoph Junghans gentoo org> AuthorDate: Sat Nov 15 00:17:10 2014 + Commit: Christoph Junghans gentoo org> CommitDate: Sat Nov 15 00:17:10 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=39e2504d fixed latex dep Package-Manager: portage-2.2.8-r2 --- sci-libs/wannier90/ChangeLog | 6 -- sci-libs/wannier90/wannier90-1.2-r2.ebuild | 6 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/sci-libs/wannier90/ChangeLog b/sci-libs/wannier90/ChangeLog index ff8ee50..4311efb 100644 --- a/sci-libs/wannier90/ChangeLog +++ b/sci-libs/wannier90/ChangeLog @@ -1,7 +1,10 @@ # ChangeLog for sci-libs/wannier90 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 15 Nov 2014; Christoph Junghans wannier90-1.2-r2.ebuild: + fixed latex dep + *wannier90-1.2-r2 (19 Sep 2013) 19 Sep 2013; Honza Macháček @@ -37,4 +40,3 @@ +files/wannier90-1.1-0001.patch, +files/wannier90-1.1-0002.patch, +wannier90-1.2.ebuild: A wannier90 ebuild for sci-physics/abinit - diff --git a/sci-libs/wannier90/wannier90-1.2-r2.ebuild b/sci-libs/wannier90/wannier90-1.2-r2.ebuild index 7741e9f..6396770 100644 --- a/sci-libs/wannier90/wannier90-1.2-r2.ebuild +++ b/sci-libs/wannier90/wannier90-1.2-r2.ebuild @@ -22,11 +22,7 @@ RDEPEND=" DEPEND="${RDEPEND} virtual/pkgconfig doc? ( virtual/latex-base - || ( - dev-texlive/texlive-latexextra - app-text/tetex - app-tex/ptex - ) + dev-texlive/texlive-latexextra )" src_prepare() {
[gentoo-commits] proj/sci:master commit in: /
commit: a75abfd771787cacc7a641916a5febbd9ae5f730 Author: Christoph Junghans gentoo org> AuthorDate: Sat Nov 15 00:21:33 2014 + Commit: Christoph Junghans gentoo org> CommitDate: Sat Nov 15 00:21:33 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a75abfd7 .travis.yml: test different portage versions --- .travis.yml | 15 ++- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 84e0f78..1ebe1b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,19 +1,24 @@ +env: + - PORTAGE=2.2.12 + - PORTAGE=2.2.14 + before_script: - mkdir travis-overlay - mv !(travis-overlay) travis-overlay/ - mv .git travis-overlay/ -- wget "http://distfiles.gentoo.org/distfiles/portage-2.2.12.tar.bz2"; +- wget "http://distfiles.gentoo.org/distfiles/portage-$PORTAGE.tar.bz2"; - wget "http://distfiles.gentoo.org/snapshots/portage-latest.tar.xz"; - sudo chmod 777 /etc/passwd /etc/group /etc /usr - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd - echo "portage::250:portage,travis" >> /etc/group - mkdir -p /etc/portage/ /usr/portage/distfiles -- tar xjf portage-2.2.12.tar.bz2 +- tar xjf portage-$PORTAGE.tar.bz2 - tar xJf portage-latest.tar.xz -C /usr/ -- cp portage-2.2.12/cnf/repos.conf /etc/portage/ +- cp portage-$PORTAGE/cnf/repos.conf /etc/portage/ - rsync --recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --checksum --quiet rsync://rsync.gentoo.org/gentoo-portage /usr/portage - ln -s /usr/portage/profiles/base/ /etc/portage/make.profile - cd travis-overlay -- sed -i 's/fcmd=fcmd/fcmd=("%s -q" % fcmd)/' ./../portage-2.2.12/bin/repoman +- sed -i 's/fcmd=fcmd/fcmd=("%s -q" % fcmd)/' ./../portage-$PORTAGE/bin/repoman + script: -- "./../portage-2.2.12/bin/repoman full -d -v" +- "./../portage-$PORTAGE/bin/repoman full -d -v"
[gentoo-commits] gentoo-x86 commit in sys-process/lsof: ChangeLog lsof-4.87-r1.ebuild
jer 14/11/14 23:24:30 Modified: ChangeLog lsof-4.87-r1.ebuild Log: Stable for HPPA (bug #529126). (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613) Revision ChangesPath 1.102sys-process/lsof/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/lsof/ChangeLog?rev=1.102&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/lsof/ChangeLog?rev=1.102&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/lsof/ChangeLog?r1=1.101&r2=1.102 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-process/lsof/ChangeLog,v retrieving revision 1.101 retrieving revision 1.102 diff -u -r1.101 -r1.102 --- ChangeLog 14 Nov 2014 21:26:34 - 1.101 +++ ChangeLog 14 Nov 2014 23:24:30 - 1.102 @@ -1,6 +1,9 @@ # ChangeLog for sys-process/lsof # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/lsof/ChangeLog,v 1.101 2014/11/14 21:26:34 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/lsof/ChangeLog,v 1.102 2014/11/14 23:24:30 jer Exp $ + + 14 Nov 2014; Jeroen Roovers lsof-4.87-r1.ebuild: + Stable for HPPA (bug #529126). 14 Nov 2014; Markus Meier lsof-4.87-r1.ebuild: arm stable, bug #529126 1.6 sys-process/lsof/lsof-4.87-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/lsof/lsof-4.87-r1.ebuild?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/lsof/lsof-4.87-r1.ebuild?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/lsof/lsof-4.87-r1.ebuild?r1=1.5&r2=1.6 Index: lsof-4.87-r1.ebuild === RCS file: /var/cvsroot/gentoo-x86/sys-process/lsof/lsof-4.87-r1.ebuild,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- lsof-4.87-r1.ebuild 14 Nov 2014 21:26:34 - 1.5 +++ lsof-4.87-r1.ebuild 14 Nov 2014 23:24:30 - 1.6 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/lsof/lsof-4.87-r1.ebuild,v 1.5 2014/11/14 21:26:34 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/lsof/lsof-4.87-r1.ebuild,v 1.6 2014/11/14 23:24:30 jer Exp $ EAPI="4" @@ -15,7 +15,7 @@ LICENSE="lsof" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="examples ipv6 rpc selinux static" RDEPEND="rpc? ( net-libs/libtirpc )
[gentoo-commits] gentoo-x86 commit in dev-tex/latex-beamer: latex-beamer-3.33.ebuild ChangeLog
jer 14/11/14 23:23:22 Modified: latex-beamer-3.33.ebuild ChangeLog Log: Stable for HPPA (bug #523140). (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613) Revision ChangesPath 1.3 dev-tex/latex-beamer/latex-beamer-3.33.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/latex-beamer/latex-beamer-3.33.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/latex-beamer/latex-beamer-3.33.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/latex-beamer/latex-beamer-3.33.ebuild?r1=1.2&r2=1.3 Index: latex-beamer-3.33.ebuild === RCS file: /var/cvsroot/gentoo-x86/dev-tex/latex-beamer/latex-beamer-3.33.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- latex-beamer-3.33.ebuild13 Nov 2014 15:18:55 - 1.2 +++ latex-beamer-3.33.ebuild14 Nov 2014 23:23:22 - 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex-beamer/latex-beamer-3.33.ebuild,v 1.2 2014/11/13 15:18:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex-beamer/latex-beamer-3.33.ebuild,v 1.3 2014/11/14 23:23:22 jer Exp $ EAPI=5 @@ -12,7 +12,7 @@ LICENSE="GPL-2 FDL-1.2 LPPL-1.3c" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="doc examples" DEPEND="app-arch/unzip 1.158dev-tex/latex-beamer/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/latex-beamer/ChangeLog?rev=1.158&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/latex-beamer/ChangeLog?rev=1.158&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/latex-beamer/ChangeLog?r1=1.157&r2=1.158 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-tex/latex-beamer/ChangeLog,v retrieving revision 1.157 retrieving revision 1.158 diff -u -r1.157 -r1.158 --- ChangeLog 13 Nov 2014 15:18:55 - 1.157 +++ ChangeLog 14 Nov 2014 23:23:22 - 1.158 @@ -1,6 +1,9 @@ # ChangeLog for dev-tex/latex-beamer # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex-beamer/ChangeLog,v 1.157 2014/11/13 15:18:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex-beamer/ChangeLog,v 1.158 2014/11/14 23:23:22 jer Exp $ + + 14 Nov 2014; Jeroen Roovers latex-beamer-3.33.ebuild: + Stable for HPPA (bug #523140). 13 Nov 2014; Agostino Sarubbo latex-beamer-3.33.ebuild: Stable for amd64, wrt bug #523140
[gentoo-commits] gentoo-x86 commit in app-office/lyx: ChangeLog lyx-2.1.2.ebuild
jer 14/11/14 23:21:36 Modified: ChangeLog lyx-2.1.2.ebuild Log: Stable for HPPA (bug #529102). (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613) Revision ChangesPath 1.322app-office/lyx/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/lyx/ChangeLog?rev=1.322&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/lyx/ChangeLog?rev=1.322&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/lyx/ChangeLog?r1=1.321&r2=1.322 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-office/lyx/ChangeLog,v retrieving revision 1.321 retrieving revision 1.322 diff -u -r1.321 -r1.322 --- ChangeLog 13 Nov 2014 15:19:12 - 1.321 +++ ChangeLog 14 Nov 2014 23:21:36 - 1.322 @@ -1,6 +1,9 @@ # ChangeLog for app-office/lyx # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/ChangeLog,v 1.321 2014/11/13 15:19:12 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/ChangeLog,v 1.322 2014/11/14 23:21:36 jer Exp $ + + 14 Nov 2014; Jeroen Roovers lyx-2.1.2.ebuild: + Stable for HPPA (bug #529102). 13 Nov 2014; Agostino Sarubbo lyx-2.1.2.ebuild: Stable for amd64, wrt bug #529102 1.3 app-office/lyx/lyx-2.1.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/lyx/lyx-2.1.2.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/lyx/lyx-2.1.2.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/lyx/lyx-2.1.2.ebuild?r1=1.2&r2=1.3 Index: lyx-2.1.2.ebuild === RCS file: /var/cvsroot/gentoo-x86/app-office/lyx/lyx-2.1.2.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- lyx-2.1.2.ebuild13 Nov 2014 15:19:12 - 1.2 +++ lyx-2.1.2.ebuild14 Nov 2014 23:21:36 - 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/lyx-2.1.2.ebuild,v 1.2 2014/11/13 15:19:12 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/lyx-2.1.2.ebuild,v 1.3 2014/11/14 23:21:36 jer Exp $ EAPI=5 @@ -19,7 +19,7 @@ LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x86-macos" IUSE="cups debug nls +latex monolithic-build html rtf dot docbook dia subversion rcs svg gnumeric +hunspell aspell enchant" LANGS="ar ca cs de da el en es eu fi fr gl he hu ia id it ja nb nn pl pt ro ru sk sr sv tr uk zh_CN zh_TW"
[gentoo-commits] gentoo-x86 commit in net-misc/youtube-dl: ChangeLog youtube-dl-2014.11.14.ebuild youtube-dl-2014.11.12.1.ebuild
jer 14/11/14 23:13:14 Modified: ChangeLog Added:youtube-dl-2014.11.14.ebuild Removed: youtube-dl-2014.11.12.1.ebuild Log: Version bump. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.418net-misc/youtube-dl/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?rev=1.418&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?rev=1.418&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?r1=1.417&r2=1.418 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v retrieving revision 1.417 retrieving revision 1.418 diff -u -r1.417 -r1.418 --- ChangeLog 13 Nov 2014 11:30:29 - 1.417 +++ ChangeLog 14 Nov 2014 23:13:14 - 1.418 @@ -1,6 +1,12 @@ # ChangeLog for net-misc/youtube-dl # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.417 2014/11/13 11:30:29 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.418 2014/11/14 23:13:14 jer Exp $ + +*youtube-dl-2014.11.14 (14 Nov 2014) + + 14 Nov 2014; Jeroen Roovers -youtube-dl-2014.11.12.1.ebuild, + +youtube-dl-2014.11.14.ebuild: + Version bump. *youtube-dl-2014.11.13 (13 Nov 2014) 1.1 net-misc/youtube-dl/youtube-dl-2014.11.14.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/youtube-dl-2014.11.14.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/youtube-dl-2014.11.14.ebuild?rev=1.1&content-type=text/plain Index: youtube-dl-2014.11.14.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/youtube-dl-2014.11.14.ebuild,v 1.1 2014/11/14 23:13:14 jer Exp $ EAPI=5 PYTHON_COMPAT=(python{2_7,3_3,3_4}) DISTUTILS_SINGLE_IMPL=true inherit bash-completion-r1 distutils-r1 eutils DESCRIPTION="Download videos from YouTube.com (and more sites...)" HOMEPAGE="http://rg3.github.com/youtube-dl/"; SRC_URI="http://youtube-dl.org/downloads/${PV}/${P}.tar.gz"; LICENSE="public-domain" SLOT="0" KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" IUSE="offensive test" DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[coverage(+)] ) " S="${WORKDIR}/${PN}" src_prepare() { if ! use offensive; then sed -i -e "/__version__/s|'$|-gentoo_no_offensive_sites'|g" \ youtube_dl/version.py || die local xxx=( anysex behindkink drtuber eporner extremetube fourtube goshgay hentaistigma hornbunny mofosex motherless pornhd pornhub pornotube pornoxo redtube sexykarma sexu sunporno slutload spankwire thisav trutube tube8 vporn xbef xhamster xnxx xtube xvideos youjizz youporn ) sed -i -e $( printf '/%s/d;' ${xxx[@]} ) youtube_dl/extractor/__init__.py || die rm $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) \ test/test_age_restriction.py || die fi } src_compile() { distutils-r1_src_compile } src_test() { emake test } src_install() { python_domodule youtube_dl dobin bin/${PN} dodoc README.txt doman ${PN}.1 newbashcomp ${PN}.bash-completion ${PN} python_fix_shebang "${ED}" }
[gentoo-commits] proj/sci:master commit in: /
commit: 6cafb4b3e28da558c814f078103c552f2e2095c4 Author: Justin gentoo org> AuthorDate: Fri Nov 14 11:48:13 2014 + Commit: Christoph Junghans gentoo org> CommitDate: Fri Nov 14 11:48:13 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=6cafb4b3 Merge pull request #285 from buzden/altgr-ergo Alt-Ergo solver installation was fixed. sci-mathematics/alt-ergo/alt-ergo-0.95.2.ebuild | 1 + 1 file changed, 1 insertion(+)
[gentoo-commits] proj/sci:master commit in: /
commit: 495c985d452e53e0f93800b7542ee82af25db869 Author: Christoph Junghans gentoo org> AuthorDate: Fri Nov 14 23:05:16 2014 + Commit: Christoph Junghans gentoo org> CommitDate: Fri Nov 14 23:05:16 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=495c985d Merge branch 'master' of ssh://github.com/gentoo-science/sci sci-mathematics/alt-ergo/alt-ergo-0.95.2.ebuild | 1 + 1 file changed, 1 insertion(+)
[gentoo-commits] proj/sci:master commit in: sci-mathematics/alt-ergo/
commit: ec8363f4fc80dcedc6f542687e7057c5bcbe5522 Author: Denis V. Buzdalov buzden ru> AuthorDate: Fri Nov 14 11:42:56 2014 + Commit: Christoph Junghans gentoo org> CommitDate: Fri Nov 14 11:42:56 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=ec8363f4 AltGr-Ergo (GUI of Alt-Ergo) installation command was added. --- sci-mathematics/alt-ergo/alt-ergo-0.95.2.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/sci-mathematics/alt-ergo/alt-ergo-0.95.2.ebuild b/sci-mathematics/alt-ergo/alt-ergo-0.95.2.ebuild index cf18236..16e1dbe 100644 --- a/sci-mathematics/alt-ergo/alt-ergo-0.95.2.ebuild +++ b/sci-mathematics/alt-ergo/alt-ergo-0.95.2.ebuild @@ -35,5 +35,6 @@ src_compile(){ src_install(){ emake install DESTDIR="${D}" + use gtk && emake install-gui DESTDIR="${D}" dodoc README.md CHANGES }
[gentoo-commits] proj/sci:master commit in: dev-cpp/icnc/
commit: cb7c322d048ab7ff047e656282356192bbf7b923 Author: Christoph Junghans gentoo org> AuthorDate: Fri Nov 14 23:03:14 2014 + Commit: Christoph Junghans gentoo org> CommitDate: Fri Nov 14 23:03:35 2014 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=cb7c322d fully supports mpi Package-Manager: portage-2.2.8-r2 --- dev-cpp/icnc/ChangeLog| 3 +++ dev-cpp/icnc/icnc-.ebuild | 7 +-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/dev-cpp/icnc/ChangeLog b/dev-cpp/icnc/ChangeLog index 210238b..2b0943a 100644 --- a/dev-cpp/icnc/ChangeLog +++ b/dev-cpp/icnc/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 14 Nov 2014; Christoph Junghans icnc-.ebuild: + fully supports mpi + 13 Nov 2014; Christoph Junghans icnc-.ebuild: added IUSE=mpi diff --git a/dev-cpp/icnc/icnc-.ebuild b/dev-cpp/icnc/icnc-.ebuild index 97fe17a..b2970ad 100644 --- a/dev-cpp/icnc/icnc-.ebuild +++ b/dev-cpp/icnc/icnc-.ebuild @@ -22,15 +22,10 @@ LICENSE="BSD" SLOT="0" IUSE="mpi" -# https://github.com/icnc/icnc/issues/14 OpenMPI not supported, only *ch implementation DEPEND=" >=dev-cpp/tbb-4.2 sys-libs/glibc - mpi? ( || ( - sys-cluster/mpich - sys-cluster/mpich2 - sys-cluster/mvapich2 - ) ) + mpi? ( virtual/mpi ) " RDEPEND="${DEPEND}"
[gentoo-commits] gentoo-x86 commit in media-video/mpv: ChangeLog mpv-0.6.2.ebuild mpv-0.6.0.ebuild
dlan14/11/14 22:46:27 Modified: ChangeLog Added:mpv-0.6.2.ebuild Removed: mpv-0.6.0.ebuild Log: version bump per maintainer request, bug 528978 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55) Revision ChangesPath 1.104media-video/mpv/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mpv/ChangeLog?rev=1.104&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mpv/ChangeLog?rev=1.104&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mpv/ChangeLog?r1=1.103&r2=1.104 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-video/mpv/ChangeLog,v retrieving revision 1.103 retrieving revision 1.104 diff -u -r1.103 -r1.104 --- ChangeLog 2 Nov 2014 12:07:03 - 1.103 +++ ChangeLog 14 Nov 2014 22:46:27 - 1.104 @@ -1,6 +1,12 @@ # ChangeLog for media-video/mpv # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/mpv/ChangeLog,v 1.103 2014/11/02 12:07:03 swift Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/mpv/ChangeLog,v 1.104 2014/11/14 22:46:27 dlan Exp $ + +*mpv-0.6.2 (14 Nov 2014) + + 14 Nov 2014; Yixun Lan -mpv-0.6.0.ebuild, + +mpv-0.6.2.ebuild: + version bump per maintainer request, bug 528978 02 Nov 2014; Sven Vermeulen mpv-0.3.10.ebuild, mpv-0.3.11.ebuild, mpv-0.4.2.ebuild, mpv-0.5.4.ebuild, mpv-0.6.0.ebuild, 1.1 media-video/mpv/mpv-0.6.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mpv/mpv-0.6.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/mpv/mpv-0.6.2.ebuild?rev=1.1&content-type=text/plain Index: mpv-0.6.2.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-video/mpv/mpv-0.6.2.ebuild,v 1.1 2014/11/14 22:46:27 dlan Exp $ EAPI=5 EGIT_REPO_URI="https://github.com/mpv-player/mpv.git"; inherit eutils waf-utils pax-utils fdo-mime gnome2-utils [[ ${PV} == ** ]] && inherit git-r3 WAF_V="1.7.16" DESCRIPTION="Video player based on MPlayer/mplayer2" HOMEPAGE="http://mpv.io/"; SRC_URI="http://ftp.waf.io/pub/release/waf-${WAF_V}"; [[ ${PV} == ** ]] || \ SRC_URI+=" https://github.com/mpv-player/mpv/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" [[ ${PV} == ** ]] || \ KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux" IUSE="+alsa bluray bs2b cdio -doc-pdf dvb +dvd dvdnav +enca encode +iconv jack -joystick jpeg ladspa lcms +libass libcaca libguess libmpv lirc lua luajit +mpg123 -openal +opengl oss portaudio postproc pulseaudio pvr +quvi samba sdl selinux +shm v4l vaapi vdpau vf-dlopen wayland +X xinerama +xscreensaver +xv" REQUIRED_USE=" dvdnav? ( dvd ) enca? ( iconv ) lcms? ( opengl ) libguess? ( iconv ) luajit? ( lua ) opengl? ( || ( wayland X ) ) pvr? ( v4l ) vaapi? ( X ) vdpau? ( X ) wayland? ( opengl ) xinerama? ( X ) xscreensaver? ( X ) xv? ( X ) " RDEPEND+=" || ( >=media-video/libav-10:=[encode?,threads,vaapi?,vdpau?] >=media-video/ffmpeg-2.1.4:0=[encode?,threads,vaapi?,vdpau?] ) sys-libs/zlib X? ( x11-libs/libX11 x11-libs/libXext >=x11-libs/libXrandr-1.2.0 opengl? ( virtual/opengl ) lcms? ( >=media-libs/lcms-2.6:2 ) vaapi? ( >=x11-libs/libva-0.34.0[X(+)] ) vdpau? ( >=x11-libs/libvdpau-0.2 ) xinerama? ( x11-libs/libXinerama ) xscreensaver? ( x11-libs/libXScrnSaver ) xv? ( x11-libs/libXv ) ) alsa? ( media-libs/alsa-lib ) bluray? ( >=media-libs/libbluray-0.3.0 ) bs2b? ( media-libs/libbs2b ) cdio? ( dev-libs/libcdio dev-libs/libcdio-paranoia ) dvb? ( virtual/linuxtv-dvb-headers ) dvd? ( >=media-libs/libdvdread-4.1.3 dvdnav? ( >=media-libs/libdvdnav-4.2.0 ) ) enca? ( app-i18n/enca ) iconv? ( virtual/libiconv ) jack? ( media-sound/jack-audio-connection-kit ) jpeg? ( virtual/jpeg:0 ) ladspa? ( media-libs/ladspa-sdk ) libass? ( >=media-libs/libass-0.9.10:=[enca?,fontconfig] virtual/ttf-fonts ) libcaca? ( >=media-libs/libcaca-0.99_beta18 ) libguess? ( >=app-i18n/libguess-1.0 ) lirc? ( app-misc/lirc ) lua? ( !luajit?
[gentoo-commits] gentoo-x86 commit in x11-drivers/nvidia-drivers: nvidia-drivers-346.16.ebuild ChangeLog
jer 14/11/14 22:42:41 Modified: nvidia-drivers-346.16.ebuild ChangeLog Log: Set sub-SLOT dependency on x11-base/xorg-server. Install nvidia-drm-outputclass.conf only when >x11-base/xorg-server-1.16 (bug #529254 by Oliver Freyermuth). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.4 x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild?r1=1.3&r2=1.4 Index: nvidia-drivers-346.16.ebuild === RCS file: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- nvidia-drivers-346.16.ebuild14 Nov 2014 22:21:34 - 1.3 +++ nvidia-drivers-346.16.ebuild14 Nov 2014 22:42:41 - 1.4 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild,v 1.3 2014/11/14 22:21:34 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild,v 1.4 2014/11/14 22:42:41 jer Exp $ EAPI=5 @@ -55,7 +55,7 @@ x11-libs/pango[X] ) X? ( - =x11-libs/libvdpau-0.3-r1 multilib? ( || ( @@ -287,8 +287,10 @@ /usr/$(get_libdir)/opengl/nvidia/extensions # Xorg nvidia.conf - insinto /usr/share/X11/xorg.conf.d - newins {,50-}nvidia-drm-outputclass.conf + if has_version '>=x11-base/xorg-server-1.16'; then + insinto /usr/share/X11/xorg.conf.d + newins {,50-}nvidia-drm-outputclass.conf + fi fi # OpenCL ICD for NVIDIA 1.592x11-drivers/nvidia-drivers/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?rev=1.592&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?rev=1.592&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?r1=1.591&r2=1.592 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v retrieving revision 1.591 retrieving revision 1.592 diff -u -r1.591 -r1.592 --- ChangeLog 14 Nov 2014 22:21:34 - 1.591 +++ ChangeLog 14 Nov 2014 22:42:41 - 1.592 @@ -1,6 +1,11 @@ # ChangeLog for x11-drivers/nvidia-drivers # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v 1.591 2014/11/14 22:21:34 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v 1.592 2014/11/14 22:42:41 jer Exp $ + + 14 Nov 2014; Jeroen Roovers nvidia-drivers-346.16.ebuild: + Set sub-SLOT dependency on x11-base/xorg-server. Install nvidia-drm- + outputclass.conf only when >x11-base/xorg-server-1.16 (bug #529254 by Oliver + Freyermuth). 14 Nov 2014; Jeroen Roovers nvidia-drivers-346.16.ebuild: Set MAKEOPTS=-j1 unconditionally (bug #529258 by thygreatswaggedone).
[gentoo-commits] gentoo commit in xml/htdocs/proj/en/metastructure/herds: herds.xml
bircoph 14/11/14 22:21:57 Modified: herds.xml Log: Add myself to sci herd and subherds of interest. Revision ChangesPath 1.1126 xml/htdocs/proj/en/metastructure/herds/herds.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?rev=1.1126&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?rev=1.1126&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml?r1=1.1125&r2=1.1126 Index: herds.xml === RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v retrieving revision 1.1125 retrieving revision 1.1126 diff -u -r1.1125 -r1.1126 --- herds.xml 14 Nov 2014 02:26:58 - 1.1125 +++ herds.xml 14 Nov 2014 22:21:57 - 1.1126 @@ -20,7 +20,7 @@ always a description without a lang attribute. Also there are no overlapping descriptions allowed (multiple description tags with the same language) - $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1125 2014/11/14 02:26:58 tomwij Exp $ + $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1126 2014/11/14 22:21:57 bircoph Exp $ --> @@ -741,6 +741,10 @@ tam...@gentoo.org Matthias Maier + +birc...@gentoo.org +Andrew Savchenko + sci-astronomy @@ -754,6 +758,10 @@ xarthis...@gentoo.org Kacper Kowalik + +birc...@gentoo.org +Andrew Savchenko + sci-biology @@ -840,6 +848,10 @@ tam...@gentoo.org Matthias Maier + +birc...@gentoo.org +Andrew Savchenko + sci-physics @@ -857,6 +869,11 @@ jauh...@gentoo.org Jauhien Piatlicki + +birc...@gentoo.org +Andrew Savchenko +HEP related packages + sci-geosciences
[gentoo-commits] gentoo-x86 commit in x11-drivers/nvidia-drivers: nvidia-drivers-346.16.ebuild ChangeLog
jer 14/11/14 22:21:34 Modified: nvidia-drivers-346.16.ebuild ChangeLog Log: Set MAKEOPTS=-j1 unconditionally (bug #529258 by thygreatswaggedone). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.3 x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild?r1=1.2&r2=1.3 Index: nvidia-drivers-346.16.ebuild === RCS file: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- nvidia-drivers-346.16.ebuild14 Nov 2014 22:13:00 - 1.2 +++ nvidia-drivers-346.16.ebuild14 Nov 2014 22:21:34 - 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild,v 1.2 2014/11/14 22:13:00 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild,v 1.3 2014/11/14 22:21:34 jer Exp $ EAPI=5 @@ -193,7 +193,7 @@ MAKE="$(get_bmake)" CFLAGS="-Wno-sign-compare" emake CC="$(tc-getCC)" \ LD="$(tc-getLD)" LDFLAGS="$(raw-ldflags)" || die elif use kernel_linux; then - use uvm && MAKEOPTS=-j1 + MAKEOPTS=-j1 linux-mod_src_compile fi } 1.591x11-drivers/nvidia-drivers/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?rev=1.591&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?rev=1.591&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?r1=1.590&r2=1.591 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v retrieving revision 1.590 retrieving revision 1.591 diff -u -r1.590 -r1.591 --- ChangeLog 14 Nov 2014 22:13:00 - 1.590 +++ ChangeLog 14 Nov 2014 22:21:34 - 1.591 @@ -1,6 +1,9 @@ # ChangeLog for x11-drivers/nvidia-drivers # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v 1.590 2014/11/14 22:13:00 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v 1.591 2014/11/14 22:21:34 jer Exp $ + + 14 Nov 2014; Jeroen Roovers nvidia-drivers-346.16.ebuild: + Set MAKEOPTS=-j1 unconditionally (bug #529258 by thygreatswaggedone). 14 Nov 2014; Jeroen Roovers nvidia-drivers-346.16.ebuild, metadata.xml:
[gentoo-commits] gentoo-x86 commit in x11-drivers/nvidia-drivers: nvidia-drivers-346.16.ebuild ChangeLog metadata.xml
jer 14/11/14 22:13:00 Modified: nvidia-drivers-346.16.ebuild ChangeLog metadata.xml Log: Add missing GTK+ support library for nvidia-settings. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.2 x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild?r1=1.1&r2=1.2 Index: nvidia-drivers-346.16.ebuild === RCS file: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- nvidia-drivers-346.16.ebuild14 Nov 2014 14:25:08 - 1.1 +++ nvidia-drivers-346.16.ebuild14 Nov 2014 22:13:00 - 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild,v 1.1 2014/11/14 14:25:08 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-346.16.ebuild,v 1.2 2014/11/14 22:13:00 jer Exp $ EAPI=5 @@ -25,7 +25,7 @@ LICENSE="GPL-2 NVIDIA-r2" SLOT="0" KEYWORDS="-* ~amd64 ~x86 ~amd64-fbsd ~x86-fbsd" -IUSE="acpi multilib kernel_FreeBSD kernel_linux pax_kernel +tools +X uvm" +IUSE="acpi multilib kernel_FreeBSD kernel_linux pax_kernel +tools gtk2 gtk3 +X uvm" RESTRICT="bindist mirror strip" EMULTILIB_PKG="true" @@ -48,7 +48,8 @@ dev-libs/atk dev-libs/glib x11-libs/gdk-pixbuf - >=x11-libs/gtk+-2.4:2 + gtk2? ( >=x11-libs/gtk+-2.4:2 ) + gtk3? ( x11-libs/gtk+:3 ) x11-libs/libX11 x11-libs/libXext x11-libs/pango[X] @@ -68,7 +69,10 @@ ) " -REQUIRED_USE="tools? ( X )" +REQUIRED_USE=" + tools? ( X ) + X? ( || ( gtk2 gtk3 ) ) +" QA_PREBUILT="opt/* usr/lib*" @@ -339,6 +343,8 @@ if use tools; then doexe ${NV_OBJ}/nvidia-settings + use gtk2 && donvidia libnvidia-gtk2.so ${PV} + use gtk3 && donvidia libnvidia-gtk3.so ${PV} insinto /usr/share/nvidia/ doins nvidia-application-profiles-${PV}-key-documentation insinto /etc/nvidia 1.590x11-drivers/nvidia-drivers/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?rev=1.590&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?rev=1.590&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog?r1=1.589&r2=1.590 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v retrieving revision 1.589 retrieving revision 1.590 diff -u -r1.589 -r1.590 --- ChangeLog 14 Nov 2014 14:25:08 - 1.589 +++ ChangeLog 14 Nov 2014 22:13:00 - 1.590 @@ -1,6 +1,10 @@ # ChangeLog for x11-drivers/nvidia-drivers # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v 1.589 2014/11/14 14:25:08 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/ChangeLog,v 1.590 2014/11/14 22:13:00 jer Exp $ + + 14 Nov 2014; Jeroen Roovers nvidia-drivers-346.16.ebuild, + metadata.xml: + Add missing GTK+ support library for nvidia-settings. *nvidia-drivers-346.16 (14 Nov 2014) 1.27 x11-drivers/nvidia-drivers/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/metadata.xml?rev=1.27&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/metadata.xml?rev=1.27&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/nvidia-drivers/metadata.xml?r1=1.26&r2=1.27 Index: metadata.xml === RCS file: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/metadata.xml,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- metadata.xml31 Mar 2014 19:03:27 - 1.26 +++ metadata.xml14 Nov 2014 22:13:00 - 1.27 @@ -6,6 +6,8 @@ Install the X.org driver, OpenGL libraries, XvMC libraries, and VDPAU libraries + Install nvidia-setti
[gentoo-commits] gentoo-x86 commit in sci-libs/scikits_learn: ChangeLog scikits_learn-0.15.2.ebuild scikits_learn-0.15.1.ebuild
jlec14/11/14 21:53:43 Modified: ChangeLog scikits_learn-0.15.1.ebuild Added:scikits_learn-0.15.2.ebuild Log: sci-libs/scikits_learn: Version BUmp (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!) Revision ChangesPath 1.27 sci-libs/scikits_learn/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/scikits_learn/ChangeLog?rev=1.27&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/scikits_learn/ChangeLog?rev=1.27&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/scikits_learn/ChangeLog?r1=1.26&r2=1.27 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sci-libs/scikits_learn/ChangeLog,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- ChangeLog 26 Oct 2014 18:33:23 - 1.26 +++ ChangeLog 14 Nov 2014 21:53:42 - 1.27 @@ -1,6 +1,12 @@ # ChangeLog for sci-libs/scikits_learn # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scikits_learn/ChangeLog,v 1.26 2014/10/26 18:33:23 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/scikits_learn/ChangeLog,v 1.27 2014/11/14 21:53:42 jlec Exp $ + +*scikits_learn-0.15.2 (14 Nov 2014) + + 14 Nov 2014; Justin Lecher scikits_learn-0.15.1.ebuild, + +scikits_learn-0.15.2.ebuild: + Version BUmp 26 Oct 2014; Justin Lecher scikits_learn-0.15.1.ebuild: Add missing dep for doc building, #451834 1.3 sci-libs/scikits_learn/scikits_learn-0.15.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/scikits_learn/scikits_learn-0.15.1.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/scikits_learn/scikits_learn-0.15.1.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/scikits_learn/scikits_learn-0.15.1.ebuild?r1=1.2&r2=1.3 Index: scikits_learn-0.15.1.ebuild === RCS file: /var/cvsroot/gentoo-x86/sci-libs/scikits_learn/scikits_learn-0.15.1.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- scikits_learn-0.15.1.ebuild 26 Oct 2014 18:33:23 - 1.2 +++ scikits_learn-0.15.1.ebuild 14 Nov 2014 21:53:42 - 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scikits_learn/scikits_learn-0.15.1.ebuild,v 1.2 2014/10/26 18:33:23 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/scikits_learn/scikits_learn-0.15.1.ebuild,v 1.3 2014/11/14 21:53:42 jlec Exp $ EAPI=5 @@ -23,10 +23,11 @@ RDEPEND=" dev-python/joblib[${PYTHON_USEDEP}] - sci-libs/scikits[${PYTHON_USEDEP}] + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] dev-python/numpy[lapack,${PYTHON_USEDEP}] - sci-libs/scipy[${PYTHON_USEDEP}] - dev-python/matplotlib[${PYTHON_USEDEP}]" + sci-libs/scikits[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}]" DEPEND=" dev-python/cython[${PYTHON_USEDEP}] dev-python/numpy[lapack,${PYTHON_USEDEP}] @@ -36,10 +37,7 @@ dev-python/joblib[${PYTHON_USEDEP}] dev-python/matplotlib[${PYTHON_USEDEP}] dev-python/sphinx[${PYTHON_USEDEP}] - ) - test? ( - dev-python/joblib[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] )" + )" S="${WORKDIR}/${MYP}" 1.1 sci-libs/scikits_learn/scikits_learn-0.15.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/scikits_learn/scikits_learn-0.15.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/scikits_learn/scikits_learn-0.15.2.ebuild?rev=1.1&content-type=text/plain Index: scikits_learn-0.15.2.ebuild === # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-libs/scikits_learn/scikits_learn-0.15.2.ebuild,v 1.1 2014/11/14 21:53:42 jlec Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} ) DISTUTILS_NO_PARALLEL_BUILD=true inherit distutils-r1 eutils multilib flag-o-matic MYPN="${PN/scikits_/scikit-}" MYP="${MYPN}-${PV}" DESCRIPTION="Python modules for machine learning and data mining" HOMEPAGE="http://scikit-learn.org"; SRC_URI="mirror://pypi/${MYPN:0:1}/${MYPN}/${MYP}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="doc examples test" RDEPEND=" dev-python/joblib[${PYTHON_USEDEP}] dev-python/matplotlib[${
[gentoo-commits] gentoo-x86 commit in sys-kernel/linux-headers: ChangeLog linux-headers-3.16.ebuild
maekke 14/11/14 21:36:11 Modified: ChangeLog linux-headers-3.16.ebuild Log: arm stable, bug #528902 (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062) Revision ChangesPath 1.421sys-kernel/linux-headers/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-headers/ChangeLog?rev=1.421&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-headers/ChangeLog?rev=1.421&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-headers/ChangeLog?r1=1.420&r2=1.421 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-kernel/linux-headers/ChangeLog,v retrieving revision 1.420 retrieving revision 1.421 diff -u -r1.420 -r1.421 --- ChangeLog 13 Nov 2014 15:19:06 - 1.420 +++ ChangeLog 14 Nov 2014 21:36:11 - 1.421 @@ -1,6 +1,9 @@ # ChangeLog for sys-kernel/linux-headers # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-headers/ChangeLog,v 1.420 2014/11/13 15:19:06 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-headers/ChangeLog,v 1.421 2014/11/14 21:36:11 maekke Exp $ + + 14 Nov 2014; Markus Meier linux-headers-3.16.ebuild: + arm stable, bug #528902 13 Nov 2014; Agostino Sarubbo linux-headers-3.16.ebuild: Stable for amd64, wrt bug #528902 1.4 sys-kernel/linux-headers/linux-headers-3.16.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-headers/linux-headers-3.16.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-headers/linux-headers-3.16.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-headers/linux-headers-3.16.ebuild?r1=1.3&r2=1.4 Index: linux-headers-3.16.ebuild === RCS file: /var/cvsroot/gentoo-x86/sys-kernel/linux-headers/linux-headers-3.16.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- linux-headers-3.16.ebuild 13 Nov 2014 15:19:06 - 1.3 +++ linux-headers-3.16.ebuild 14 Nov 2014 21:36:11 - 1.4 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-headers/linux-headers-3.16.ebuild,v 1.3 2014/11/13 15:19:06 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-headers/linux-headers-3.16.ebuild,v 1.4 2014/11/14 21:36:11 maekke Exp $ EAPI="4" @@ -13,7 +13,7 @@ SRC_URI="mirror://gentoo/gentoo-headers-base-${PV}.tar.xz ${PATCH_VER:+mirror://gentoo/gentoo-headers-${PV}-${PATCH_VER}.tar.xz}" -KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux" DEPEND="app-arch/xz-utils dev-lang/perl"
[gentoo-commits] gentoo-x86 commit in sys-apps/dbus: ChangeLog dbus-1.8.10.ebuild
maekke 14/11/14 21:28:01 Modified: ChangeLog dbus-1.8.10.ebuild Log: arm stable, bug #528900 (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062) Revision ChangesPath 1.455sys-apps/dbus/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/ChangeLog?rev=1.455&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/ChangeLog?rev=1.455&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/ChangeLog?r1=1.454&r2=1.455 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v retrieving revision 1.454 retrieving revision 1.455 diff -u -r1.454 -r1.455 --- ChangeLog 13 Nov 2014 09:52:22 - 1.454 +++ ChangeLog 14 Nov 2014 21:28:01 - 1.455 @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/dbus # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.454 2014/11/13 09:52:22 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.455 2014/11/14 21:28:01 maekke Exp $ + + 14 Nov 2014; Markus Meier dbus-1.8.10.ebuild: + arm stable, bug #528900 13 Nov 2014; Agostino Sarubbo dbus-1.8.10.ebuild: Stable for x86, wrt bug #528900 1.5 sys-apps/dbus/dbus-1.8.10.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.10.ebuild?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.10.ebuild?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.10.ebuild?r1=1.4&r2=1.5 Index: dbus-1.8.10.ebuild === RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.10.ebuild,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- dbus-1.8.10.ebuild 13 Nov 2014 09:52:22 - 1.4 +++ dbus-1.8.10.ebuild 14 Nov 2014 21:28:01 - 1.5 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.10.ebuild,v 1.4 2014/11/13 09:52:22 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.10.ebuild,v 1.5 2014/11/14 21:28:01 maekke Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) @@ -12,7 +12,7 @@ LICENSE="|| ( AFL-2.1 GPL-2 )" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="debug doc selinux static-libs systemd test X" CDEPEND=">=dev-libs/expat-2
[gentoo-commits] gentoo-x86 commit in sys-process/lsof: lsof-4.87-r1.ebuild ChangeLog
maekke 14/11/14 21:26:34 Modified: lsof-4.87-r1.ebuild ChangeLog Log: arm stable, bug #529126 (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062) Revision ChangesPath 1.5 sys-process/lsof/lsof-4.87-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/lsof/lsof-4.87-r1.ebuild?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/lsof/lsof-4.87-r1.ebuild?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/lsof/lsof-4.87-r1.ebuild?r1=1.4&r2=1.5 Index: lsof-4.87-r1.ebuild === RCS file: /var/cvsroot/gentoo-x86/sys-process/lsof/lsof-4.87-r1.ebuild,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- lsof-4.87-r1.ebuild 13 Nov 2014 15:19:00 - 1.4 +++ lsof-4.87-r1.ebuild 14 Nov 2014 21:26:34 - 1.5 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/lsof/lsof-4.87-r1.ebuild,v 1.4 2014/11/13 15:19:00 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/lsof/lsof-4.87-r1.ebuild,v 1.5 2014/11/14 21:26:34 maekke Exp $ EAPI="4" @@ -15,7 +15,7 @@ LICENSE="lsof" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="examples ipv6 rpc selinux static" RDEPEND="rpc? ( net-libs/libtirpc ) 1.101sys-process/lsof/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/lsof/ChangeLog?rev=1.101&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/lsof/ChangeLog?rev=1.101&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/lsof/ChangeLog?r1=1.100&r2=1.101 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-process/lsof/ChangeLog,v retrieving revision 1.100 retrieving revision 1.101 diff -u -r1.100 -r1.101 --- ChangeLog 13 Nov 2014 15:19:00 - 1.100 +++ ChangeLog 14 Nov 2014 21:26:34 - 1.101 @@ -1,6 +1,9 @@ # ChangeLog for sys-process/lsof # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/lsof/ChangeLog,v 1.100 2014/11/13 15:19:00 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/lsof/ChangeLog,v 1.101 2014/11/14 21:26:34 maekke Exp $ + + 14 Nov 2014; Markus Meier lsof-4.87-r1.ebuild: + arm stable, bug #529126 13 Nov 2014; Agostino Sarubbo lsof-4.87-r1.ebuild: Stable for amd64, wrt bug #529126
[gentoo-commits] gentoo-x86 commit in profiles/arch/arm: ChangeLog package.use.mask
maekke 14/11/14 21:25:53 Modified: ChangeLog package.use.mask Log: package.use.mask net-im/prosody[libevent,mysql,postgres,sqlite], bug #511532 Revision ChangesPath 1.325profiles/arch/arm/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/ChangeLog?rev=1.325&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/ChangeLog?rev=1.325&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/ChangeLog?r1=1.324&r2=1.325 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/profiles/arch/arm/ChangeLog,v retrieving revision 1.324 retrieving revision 1.325 diff -u -r1.324 -r1.325 --- ChangeLog 4 Nov 2014 09:33:08 - 1.324 +++ ChangeLog 14 Nov 2014 21:25:53 - 1.325 @@ -1,6 +1,9 @@ # ChangeLog for Gentoo/ARM profile directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/ChangeLog,v 1.324 2014/11/04 09:33:08 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/ChangeLog,v 1.325 2014/11/14 21:25:53 maekke Exp $ + + 14 Nov 2014; Markus Meier package.use.mask: + package.use.mask net-im/prosody[libevent,mysql,postgres,sqlite], bug #511532 04 Nov 2014; Alexis Ballier +armv7a/use.force, armv7a/use.mask: 1.225profiles/arch/arm/package.use.mask file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/package.use.mask?rev=1.225&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/package.use.mask?rev=1.225&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/package.use.mask?r1=1.224&r2=1.225 Index: package.use.mask === RCS file: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v retrieving revision 1.224 retrieving revision 1.225 diff -u -r1.224 -r1.225 --- package.use.mask25 Oct 2014 17:23:15 - 1.224 +++ package.use.mask14 Nov 2014 21:25:53 - 1.225 @@ -1,6 +1,10 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v 1.224 2014/10/25 17:23:15 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v 1.225 2014/11/14 21:25:53 maekke Exp $ + +# Markus Meier (14 Nov 2014) +# Unkeyworded deps, bug #511532 +net-im/prosody libevent mysql postgres sqlite # Michael Palimaka (25 Oct 2014) # Unkeyworded deps, bug #525558
[gentoo-commits] gentoo-x86 commit in net-im/prosody: ChangeLog prosody-0.9.4.ebuild
maekke 14/11/14 21:25:32 Modified: ChangeLog prosody-0.9.4.ebuild Log: arm stable, bug #511532 (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062) Revision ChangesPath 1.43 net-im/prosody/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/ChangeLog?rev=1.43&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/ChangeLog?rev=1.43&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/ChangeLog?r1=1.42&r2=1.43 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-im/prosody/ChangeLog,v retrieving revision 1.42 retrieving revision 1.43 diff -u -r1.42 -r1.43 --- ChangeLog 15 Oct 2014 08:12:34 - 1.42 +++ ChangeLog 14 Nov 2014 21:25:32 - 1.43 @@ -1,6 +1,9 @@ # ChangeLog for net-im/prosody # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/ChangeLog,v 1.42 2014/10/15 08:12:34 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/ChangeLog,v 1.43 2014/11/14 21:25:32 maekke Exp $ + + 14 Nov 2014; Markus Meier prosody-0.9.4.ebuild: + arm stable, bug #511532 15 Oct 2014; Tobias Klausmann prosody-0.9.5-r2.ebuild: Fix referencing old & broken init file 1.5 net-im/prosody/prosody-0.9.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/prosody-0.9.4.ebuild?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/prosody-0.9.4.ebuild?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/prosody-0.9.4.ebuild?r1=1.4&r2=1.5 Index: prosody-0.9.4.ebuild === RCS file: /var/cvsroot/gentoo-x86/net-im/prosody/prosody-0.9.4.ebuild,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- prosody-0.9.4.ebuild13 Oct 2014 18:56:33 - 1.4 +++ prosody-0.9.4.ebuild14 Nov 2014 21:25:32 - 1.5 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/prosody-0.9.4.ebuild,v 1.4 2014/10/13 18:56:33 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/prosody-0.9.4.ebuild,v 1.5 2014/11/14 21:25:32 maekke Exp $ EAPI=5 @@ -14,7 +14,7 @@ LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 arm ~x86" IUSE="ipv6 libevent mysql postgres sqlite ssl zlib jit" DEPEND="net-im/jabber-base
[gentoo-commits] gentoo-x86 commit in dev-lua/luasec: ChangeLog luasec-0.4.1_p20130620.ebuild
maekke 14/11/14 21:21:16 Modified: ChangeLog luasec-0.4.1_p20130620.ebuild Log: arm stable, bug #511532 (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062) Revision ChangesPath 1.11 dev-lua/luasec/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luasec/ChangeLog?rev=1.11&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luasec/ChangeLog?rev=1.11&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luasec/ChangeLog?r1=1.10&r2=1.11 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-lua/luasec/ChangeLog,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ChangeLog 10 Aug 2014 20:42:04 - 1.10 +++ ChangeLog 14 Nov 2014 21:21:16 - 1.11 @@ -1,6 +1,9 @@ # ChangeLog for dev-lua/luasec # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luasec/ChangeLog,v 1.10 2014/08/10 20:42:04 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luasec/ChangeLog,v 1.11 2014/11/14 21:21:16 maekke Exp $ + + 14 Nov 2014; Markus Meier luasec-0.4.1_p20130620.ebuild: + arm stable, bug #511532 10 Aug 2014; Sergei Trofimovich luasec-0.4.1.ebuild, luasec-0.4.1_p20130620.ebuild, luasec-0.4.ebuild: 1.3 dev-lua/luasec/luasec-0.4.1_p20130620.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luasec/luasec-0.4.1_p20130620.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luasec/luasec-0.4.1_p20130620.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luasec/luasec-0.4.1_p20130620.ebuild?r1=1.2&r2=1.3 Index: luasec-0.4.1_p20130620.ebuild === RCS file: /var/cvsroot/gentoo-x86/dev-lua/luasec/luasec-0.4.1_p20130620.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- luasec-0.4.1_p20130620.ebuild 10 Aug 2014 20:42:04 - 1.2 +++ luasec-0.4.1_p20130620.ebuild 14 Nov 2014 21:21:16 - 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luasec/luasec-0.4.1_p20130620.ebuild,v 1.2 2014/08/10 20:42:04 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luasec/luasec-0.4.1_p20130620.ebuild,v 1.3 2014/11/14 21:21:16 maekke Exp $ EAPI=5 @@ -13,7 +13,7 @@ LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" +KEYWORDS="~amd64 arm ~x86" IUSE="" RDEPEND=">=dev-lang/lua-5.1[deprecated]
[gentoo-commits] gentoo-x86 commit in dev-lua/lua-zlib: ChangeLog lua-zlib-0.3.ebuild
maekke 14/11/14 21:20:44 Modified: ChangeLog lua-zlib-0.3.ebuild Log: arm stable, bug #511532 (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062) Revision ChangesPath 1.9 dev-lua/lua-zlib/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/lua-zlib/ChangeLog?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/lua-zlib/ChangeLog?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/lua-zlib/ChangeLog?r1=1.8&r2=1.9 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-lua/lua-zlib/ChangeLog,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ChangeLog 19 Oct 2014 17:15:32 - 1.8 +++ ChangeLog 14 Nov 2014 21:20:44 - 1.9 @@ -1,6 +1,9 @@ # ChangeLog for dev-lua/lua-zlib # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/lua-zlib/ChangeLog,v 1.8 2014/10/19 17:15:32 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/lua-zlib/ChangeLog,v 1.9 2014/11/14 21:20:44 maekke Exp $ + + 14 Nov 2014; Markus Meier lua-zlib-0.3.ebuild: + arm stable, bug #511532 *lua-zlib-0.3 (19 Oct 2014) 1.2 dev-lua/lua-zlib/lua-zlib-0.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/lua-zlib/lua-zlib-0.3.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/lua-zlib/lua-zlib-0.3.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/lua-zlib/lua-zlib-0.3.ebuild?r1=1.1&r2=1.2 Index: lua-zlib-0.3.ebuild === RCS file: /var/cvsroot/gentoo-x86/dev-lua/lua-zlib/lua-zlib-0.3.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- lua-zlib-0.3.ebuild 19 Oct 2014 17:15:32 - 1.1 +++ lua-zlib-0.3.ebuild 14 Nov 2014 21:20:44 - 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/lua-zlib/lua-zlib-0.3.ebuild,v 1.1 2014/10/19 17:15:32 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/lua-zlib/lua-zlib-0.3.ebuild,v 1.2 2014/11/14 21:20:44 maekke Exp $ EAPI=5 @@ -12,7 +12,7 @@ LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" +KEYWORDS="~amd64 arm ~x86" IUSE="" RDEPEND="dev-lang/lua
[gentoo-commits] gentoo-x86 commit in dev-lua/luasocket: ChangeLog luasocket-3.0_rc1-r3.ebuild
maekke 14/11/14 21:20:07 Modified: ChangeLog luasocket-3.0_rc1-r3.ebuild Log: arm stable, bug #511532 (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062) Revision ChangesPath 1.22 dev-lua/luasocket/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luasocket/ChangeLog?rev=1.22&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luasocket/ChangeLog?rev=1.22&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luasocket/ChangeLog?r1=1.21&r2=1.22 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-lua/luasocket/ChangeLog,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- ChangeLog 23 Oct 2014 13:46:17 - 1.21 +++ ChangeLog 14 Nov 2014 21:20:07 - 1.22 @@ -1,6 +1,9 @@ # ChangeLog for dev-lua/luasocket # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luasocket/ChangeLog,v 1.21 2014/10/23 13:46:17 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luasocket/ChangeLog,v 1.22 2014/11/14 21:20:07 maekke Exp $ + + 14 Nov 2014; Markus Meier luasocket-3.0_rc1-r3.ebuild: + arm stable, bug #511532 23 Oct 2014; Pacho Ramos luasocket-3.0_rc1-r3.ebuild: amd64/x86 stable, bug #525992 1.4 dev-lua/luasocket/luasocket-3.0_rc1-r3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luasocket/luasocket-3.0_rc1-r3.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luasocket/luasocket-3.0_rc1-r3.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luasocket/luasocket-3.0_rc1-r3.ebuild?r1=1.3&r2=1.4 Index: luasocket-3.0_rc1-r3.ebuild === RCS file: /var/cvsroot/gentoo-x86/dev-lua/luasocket/luasocket-3.0_rc1-r3.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- luasocket-3.0_rc1-r3.ebuild 23 Oct 2014 13:46:17 - 1.3 +++ luasocket-3.0_rc1-r3.ebuild 14 Nov 2014 21:20:07 - 1.4 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luasocket/luasocket-3.0_rc1-r3.ebuild,v 1.3 2014/10/23 13:46:17 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luasocket/luasocket-3.0_rc1-r3.ebuild,v 1.4 2014/11/14 21:20:07 maekke Exp $ EAPI=5 @@ -12,7 +12,7 @@ LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~arm ~hppa ~mips x86" +KEYWORDS="amd64 arm ~hppa ~mips x86" IUSE="debug" RDEPEND=">=dev-lang/lua-5.1.5-r2[deprecated,${MULTILIB_USEDEP}]"
[gentoo-commits] gentoo-x86 commit in sys-auth/pam_ldap: ChangeLog pam_ldap-186-r1.ebuild
maekke 14/11/14 21:19:15 Modified: ChangeLog pam_ldap-186-r1.ebuild Log: arm stable, bug #525280 (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062) Revision ChangesPath 1.55 sys-auth/pam_ldap/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ldap/ChangeLog?rev=1.55&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ldap/ChangeLog?rev=1.55&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ldap/ChangeLog?r1=1.54&r2=1.55 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-auth/pam_ldap/ChangeLog,v retrieving revision 1.54 retrieving revision 1.55 diff -u -r1.54 -r1.55 --- ChangeLog 2 Nov 2014 09:11:16 - 1.54 +++ ChangeLog 14 Nov 2014 21:19:15 - 1.55 @@ -1,6 +1,9 @@ # ChangeLog for sys-auth/pam_ldap # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ldap/ChangeLog,v 1.54 2014/11/02 09:11:16 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ldap/ChangeLog,v 1.55 2014/11/14 21:19:15 maekke Exp $ + + 14 Nov 2014; Markus Meier pam_ldap-186-r1.ebuild: + arm stable, bug #525280 02 Nov 2014; Agostino Sarubbo pam_ldap-186-r1.ebuild: Stable for alpha, wrt bug #525280 1.12 sys-auth/pam_ldap/pam_ldap-186-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ldap/pam_ldap-186-r1.ebuild?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ldap/pam_ldap-186-r1.ebuild?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ldap/pam_ldap-186-r1.ebuild?r1=1.11&r2=1.12 Index: pam_ldap-186-r1.ebuild === RCS file: /var/cvsroot/gentoo-x86/sys-auth/pam_ldap/pam_ldap-186-r1.ebuild,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- pam_ldap-186-r1.ebuild 2 Nov 2014 09:11:16 - 1.11 +++ pam_ldap-186-r1.ebuild 14 Nov 2014 21:19:15 - 1.12 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ldap/pam_ldap-186-r1.ebuild,v 1.11 2014/11/02 09:11:16 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ldap/pam_ldap-186-r1.ebuild,v 1.12 2014/11/14 21:19:15 maekke Exp $ EAPI=5 inherit eutils multilib-minimal pam @@ -11,7 +11,7 @@ LICENSE="|| ( GPL-2 LGPL-2 )" SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd" IUSE="ssl sasl" DEPEND="|| ( >=sys-libs/glibc-2.1.3 >=sys-freebsd/freebsd-lib-9.1 )
[gentoo-commits] gentoo-x86 commit in sys-auth/nss_ldap: nss_ldap-265-r5.ebuild ChangeLog
maekke 14/11/14 21:18:02 Modified: nss_ldap-265-r5.ebuild ChangeLog Log: arm stable, bug #525278 (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062) Revision ChangesPath 1.12 sys-auth/nss_ldap/nss_ldap-265-r5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r5.ebuild?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r5.ebuild?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r5.ebuild?r1=1.11&r2=1.12 Index: nss_ldap-265-r5.ebuild === RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r5.ebuild,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- nss_ldap-265-r5.ebuild 2 Nov 2014 09:10:55 - 1.11 +++ nss_ldap-265-r5.ebuild 14 Nov 2014 21:18:02 - 1.12 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r5.ebuild,v 1.11 2014/11/02 09:10:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r5.ebuild,v 1.12 2014/11/14 21:18:02 maekke Exp $ EAPI=5 inherit fixheadtails eutils multilib multilib-minimal autotools prefix @@ -13,7 +13,7 @@ SLOT="0" LICENSE="LGPL-2" -KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux" DEPEND=">=net-nds/openldap-2.4.38-r1[${MULTILIB_USEDEP}] sasl? ( >=dev-libs/cyrus-sasl-2.1.26-r3[${MULTILIB_USEDEP}] ) 1.98 sys-auth/nss_ldap/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.98&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?rev=1.98&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/nss_ldap/ChangeLog?r1=1.97&r2=1.98 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v retrieving revision 1.97 retrieving revision 1.98 diff -u -r1.97 -r1.98 --- ChangeLog 2 Nov 2014 09:10:55 - 1.97 +++ ChangeLog 14 Nov 2014 21:18:02 - 1.98 @@ -1,6 +1,9 @@ # ChangeLog for sys-auth/nss_ldap # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.97 2014/11/02 09:10:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.98 2014/11/14 21:18:02 maekke Exp $ + + 14 Nov 2014; Markus Meier nss_ldap-265-r5.ebuild: + arm stable, bug #525278 02 Nov 2014; Agostino Sarubbo nss_ldap-265-r5.ebuild: Stable for alpha, wrt bug #525278
[gentoo-commits] gentoo-x86 commit in media-libs/libraw: ChangeLog libraw-0.16.0.ebuild
maekke 14/11/14 21:16:36 Modified: ChangeLog libraw-0.16.0.ebuild Log: arm stable, bug #526072 (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062) Revision ChangesPath 1.78 media-libs/libraw/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libraw/ChangeLog?rev=1.78&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libraw/ChangeLog?rev=1.78&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libraw/ChangeLog?r1=1.77&r2=1.78 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-libs/libraw/ChangeLog,v retrieving revision 1.77 retrieving revision 1.78 diff -u -r1.77 -r1.78 --- ChangeLog 24 Jul 2014 22:07:49 - 1.77 +++ ChangeLog 14 Nov 2014 21:16:36 - 1.78 @@ -1,6 +1,9 @@ # ChangeLog for media-libs/libraw # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libraw/ChangeLog,v 1.77 2014/07/24 22:07:49 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libraw/ChangeLog,v 1.78 2014/11/14 21:16:36 maekke Exp $ + + 14 Nov 2014; Markus Meier libraw-0.16.0.ebuild: + arm stable, bug #526072 *libraw-0.16.0 (24 Jul 2014) 1.2 media-libs/libraw/libraw-0.16.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libraw/libraw-0.16.0.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libraw/libraw-0.16.0.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libraw/libraw-0.16.0.ebuild?r1=1.1&r2=1.2 Index: libraw-0.16.0.ebuild === RCS file: /var/cvsroot/gentoo-x86/media-libs/libraw/libraw-0.16.0.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- libraw-0.16.0.ebuild24 Jul 2014 22:07:49 - 1.1 +++ libraw-0.16.0.ebuild14 Nov 2014 21:16:36 - 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libraw/libraw-0.16.0.ebuild,v 1.1 2014/07/24 22:07:49 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libraw/libraw-0.16.0.ebuild,v 1.2 2014/11/14 21:16:36 maekke Exp $ EAPI=5 @@ -23,7 +23,7 @@ # http://www.libraw.org/data/LICENSE.LibRaw.pdf LICENSE="LGPL-2.1 CDDL GPL-2 GPL-3" SLOT="0/10" # subslot = libraw soname version -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha ~amd64 arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="demosaic examples jpeg jpeg2k +lcms openmp" RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] )
[gentoo-commits] gentoo-x86 commit in dev-lua/luaexpat: ChangeLog luaexpat-1.3.0-r1.ebuild
maekke 14/11/14 21:15:07 Modified: ChangeLog luaexpat-1.3.0-r1.ebuild Log: arm stable, bug #518372 (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062) Revision ChangesPath 1.22 dev-lua/luaexpat/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaexpat/ChangeLog?rev=1.22&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaexpat/ChangeLog?rev=1.22&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaexpat/ChangeLog?r1=1.21&r2=1.22 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/ChangeLog,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- ChangeLog 13 Oct 2014 18:52:58 - 1.21 +++ ChangeLog 14 Nov 2014 21:15:07 - 1.22 @@ -1,6 +1,9 @@ # ChangeLog for dev-lua/luaexpat # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/ChangeLog,v 1.21 2014/10/13 18:52:58 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/ChangeLog,v 1.22 2014/11/14 21:15:07 maekke Exp $ + + 14 Nov 2014; Markus Meier luaexpat-1.3.0-r1.ebuild: + arm stable, bug #518372 13 Oct 2014; Tobias Klausmann luaexpat-1.3.0-r1.ebuild: Stable on amd64, bug 518372 1.6 dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild?r1=1.5&r2=1.6 Index: luaexpat-1.3.0-r1.ebuild === RCS file: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- luaexpat-1.3.0-r1.ebuild13 Oct 2014 18:52:58 - 1.5 +++ luaexpat-1.3.0-r1.ebuild14 Nov 2014 21:15:07 - 1.6 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild,v 1.5 2014/10/13 18:52:58 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild,v 1.6 2014/11/14 21:15:07 maekke Exp $ EAPI=5 @@ -12,7 +12,7 @@ LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~arm hppa ~x86" +KEYWORDS="amd64 arm hppa ~x86" IUSE="" RDEPEND=">=dev-lang/lua-5.1.5-r2[deprecated,${MULTILIB_USEDEP}]