[gentoo-commits] proj/dotnet:master commit in: dev-util/monodevelop/
commit: e3db261d68841f0e269f9bf69b9281ce1a8330a3 Author: Heather live ru> AuthorDate: Sun Jan 11 08:03:34 2015 + Commit: Heather Cynede gentoo org> CommitDate: Sun Jan 11 08:03:34 2015 + URL: http://sources.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=e3db261d modevelop: QA --- dev-util/monodevelop/monodevelop-5.0.1.ebuild | 7 +++ dev-util/monodevelop/monodevelop-.ebuild | 9 - 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/dev-util/monodevelop/monodevelop-5.0.1.ebuild b/dev-util/monodevelop/monodevelop-5.0.1.ebuild index 672b530..a57ce1a 100644 --- a/dev-util/monodevelop/monodevelop-5.0.1.ebuild +++ b/dev-util/monodevelop/monodevelop-5.0.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ @@ -39,11 +39,10 @@ MAKEOPTS="${MAKEOPTS} -j1" #nowarn src_prepare() { # Remove the git rev-parse (changelog?) - sed -i '/.*#True#' {} + || die + find "${S}" -name '*.csproj' -exec sed -i 's#.*#True#' {} + || die } src_configure() { diff --git a/dev-util/monodevelop/monodevelop-.ebuild b/dev-util/monodevelop/monodevelop-.ebuild index d351229..0cf72ee 100644 --- a/dev-util/monodevelop/monodevelop-.ebuild +++ b/dev-util/monodevelop/monodevelop-.ebuild @@ -14,7 +14,7 @@ EGIT_HAS_SUBMODULES=1 LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="doc tests" +IUSE="doc test" RDEPEND=">=dev-lang/mono-3.2.8 >=dev-dotnet/gnome-sharp-2.24.2-r1 @@ -35,24 +35,23 @@ DEPEND="${RDEPEND} virtual/pkgconfig sys-devel/gettext x11-misc/shared-mime-info" - MAKEOPTS="${MAKEOPTS} -j1" #nowarn src_prepare() { # Set specific_version to prevent binding problem # when gtk#-3 is installed alongside gtk#-2 - find ${S} -name '*.csproj' -exec sed -i 's#.*#True#' {} + || die + find "${S}" -name '*.csproj' -exec sed -i 's#.*#True#' {} + || die } src_configure() { - if use tests + if use test then tests="--enable-tests" else tests="" fi ./configure \ --prefix=/usr \ --profile=stable \ - $tests || die + "${tests}" || die } pkg_preinst() {
[gentoo-commits] proj/dotnet:master commit in: dev-lang/mono/
commit: 92a4af901dd2a1e690891f0fd7ed6edd3362969f Author: Heather live ru> AuthorDate: Sun Jan 11 08:11:30 2015 + Commit: Heather Cynede gentoo org> CommitDate: Sun Jan 11 08:11:30 2015 + URL: http://sources.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=92a4af90 mono: QA + clean up --- dev-lang/mono/mono-3.0.7.ebuild | 105 dev-lang/mono/mono-3.1.2.ebuild | 105 dev-lang/mono/mono-3.10.0.ebuild | 4 +- dev-lang/mono/mono-3.2.0.ebuild | 105 dev-lang/mono/mono-3.2.1.ebuild | 110 - dev-lang/mono/mono-3.2.3.ebuild | 118 dev-lang/mono/mono-3.2.5.ebuild | 118 dev-lang/mono/mono-3.2.8.ebuild | 118 dev-lang/mono/mono-3.4.0.ebuild | 128 --- dev-lang/mono/mono-3.8.0.ebuild | 128 --- dev-lang/mono/mono-.ebuild | 2 +- 11 files changed, 3 insertions(+), 1038 deletions(-) diff --git a/dev-lang/mono/mono-3.0.7.ebuild b/dev-lang/mono/mono-3.0.7.ebuild deleted file mode 100644 index fab3787..000 --- a/dev-lang/mono/mono-3.0.7.ebuild +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/mono/mono-3.0.7.ebuild $ - -EAPI="5" -AUTOTOOLS_PRUNE_LIBTOOL_FILES="all" - -inherit linux-info mono-env flag-o-matic pax-utils autotools-utils - -DESCRIPTION="Mono runtime and class libraries, a C# compiler/interpreter" -HOMEPAGE="http://www.mono-project.com/Main_Page"; -SRC_URI="http://download.mono-project.com/sources/${PN}/${P}.tar.bz2"; - -LICENSE="MIT LGPL-2.1 GPL-2 BSD-4 NPL-1.1 Ms-PL GPL-2-with-linking-exception IDPL" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86 amd64-linux" -IUSE="minimal pax_kernel xen doc" - -COMMONDEPEND=" - !minimal? ( >=dev-dotnet/libgdiplus-2.10 ) - ia64? ( sys-libs/libunwind ) -" -RDEPEND="${COMMONDEPEND} - || ( www-client/links www-client/lynx ) -" -DEPEND="${COMMONDEPEND} - sys-devel/bc - virtual/yacc - pax_kernel? ( sys-apps/elfix ) -" - -pkg_pretend() { - # If CONFIG_SYSVIPC is not set in your kernel .config, mono will hang while compiling. - # See http://bugs.gentoo.org/261869 for more info." - CONFIG_CHECK="SYSVIPC" - use kernel_linux && check_extra_config -} - -pkg_setup() { - linux-info_pkg_setup - mono-env_pkg_setup -} - -src_prepare() { - # we need to sed in the paxctl-ng -mr in the runtime/mono-wrapper.in so it don't - # get killed in the build proces when MPROTEC is enable. #286280 - # RANDMMAP kill the build proces to #347365 - if use pax_kernel ; then - ewarn "We are disabling MPROTECT on the mono binary." - - # issue 9 : https://github.com/Heather/gentoo-dotnet/issues/9 - sed '/exec "/ i\paxctl-ng -mr "$r/@mono_runtime@"' -i "${S}"/runtime/mono-wrapper.in - fi - - # mono build system can fail otherwise - strip-flags - - # Remove this at your own peril. Mono will barf in unexpected ways. - append-flags -fno-strict-aliasing - - autotools-utils_src_prepare -} - -src_configure() { - # NOTE: We need the static libs for now so mono-debugger works. - # See http://bugs.gentoo.org/show_bug.cgi?id=256264 for details - # - # --without-moonlight since www-plugins/moonlight is not the only one - # using mono: https://bugzilla.novell.com/show_bug.cgi?id=641005#c3 - # - # --with-profile4 needs to be always enabled since it's used by default - # and, otherwise, problems like bug #340641 appear. - # - # sgen fails on ppc, bug #359515 - local myeconfargs=( - --enable-system-aot=yes - --enable-static - --disable-quiet-build - --without-moonlight - --with-libgdiplus=$(use minimal && printf "no" || printf "installed" ) - $(use_with xen xen_opt) - --without-ikvm-native - --with-jit - --disable-dtrace - --with-profile4 - --with-sgen=$(use ppc && printf "no" || printf "yes" ) - $(use_with doc mcs-docs) - ) - - autotools-utils_src_configure -} - -src_test() { - emake check -} - -src_install() { - autotools-utils_src_install - - # Remove files not respecting LDFLAGS and that we are not supposed to provide, see Fedora - # mono.spec and http://www.mail-archive.com/mono-devel-list@lists.ximian.com/msg24870.html - # for reference. - rm -f "${ED}"/usr/lib/mono/{2.0,4.5}/mscorlib.dll.so - rm -f "${ED}"/usr/lib/mono/{2.0,4.5}/mcs.exe.so -} diff --git a/dev-lang/mono
[gentoo-commits] gentoo-x86 commit in dev-python/chameleon: ChangeLog chameleon-2.19.ebuild
idella4 15/01/11 08:13:30 Modified: ChangeLog Added:chameleon-2.19.ebuild Log: bump (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D) Revision ChangesPath 1.29 dev-python/chameleon/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chameleon/ChangeLog?rev=1.29&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chameleon/ChangeLog?rev=1.29&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chameleon/ChangeLog?r1=1.28&r2=1.29 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-python/chameleon/ChangeLog,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- ChangeLog 28 Dec 2014 10:06:31 - 1.28 +++ ChangeLog 11 Jan 2015 08:13:30 - 1.29 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/chameleon -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/chameleon/ChangeLog,v 1.28 2014/12/28 10:06:31 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/chameleon/ChangeLog,v 1.29 2015/01/11 08:13:30 idella4 Exp $ + +*chameleon-2.19 (11 Jan 2015) + + 11 Jan 2015; Ian Delaney +chameleon-2.19.ebuild: + bump 28 Dec 2014; Agostino Sarubbo chameleon-2.16.ebuild: Stable for x86, wrt bug #531866 1.1 dev-python/chameleon/chameleon-2.19.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chameleon/chameleon-2.19.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/chameleon/chameleon-2.19.ebuild?rev=1.1&content-type=text/plain Index: chameleon-2.19.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/chameleon/chameleon-2.19.ebuild,v 1.1 2015/01/11 08:13:30 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 ) inherit distutils-r1 MY_PN="Chameleon" MY_P="${MY_PN}-${PV}" DESCRIPTION="Fast HTML/XML template compiler for Python" HOMEPAGE="http://chameleon.repoze.org http://pypi.python.org/pypi/Chameleon"; SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="repoze" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" RDEPEND="" S="${WORKDIR}/${MY_P}" python_compile_all() { use doc && emake html } python_test() { esetup.py test } python_install_all() { use doc && local HTML_DOCS=( _build/html/{[a-z]*,_static} ) distutils-r1_python_install_all }
[gentoo-commits] proj/dotnet:master commit in: dev-util/mono-tools/
commit: 5b783a858038d988d1fb67b4fdec54a2b8704055 Author: Heather live ru> AuthorDate: Sun Jan 11 08:20:44 2015 + Commit: Heather Cynede gentoo org> CommitDate: Sun Jan 11 08:20:44 2015 + URL: http://sources.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=5b783a85 QA --- dev-util/mono-tools/mono-tools-.ebuild | 14 +- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/dev-util/mono-tools/mono-tools-.ebuild b/dev-util/mono-tools/mono-tools-.ebuild index 65afdda..6875809 100644 --- a/dev-util/mono-tools/mono-tools-.ebuild +++ b/dev-util/mono-tools/mono-tools-.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/mono-tools/mono-tools-.ebuild $ @@ -14,17 +14,14 @@ EGIT_REPO_URI="git://github.com/mono/${PN}.git" LICENSE="GPL-2 MIT" SLOT="0" KEYWORDS="" -IUSE="+webkit gtkhtml" +IUSE="+webkit" -RDEPEND="dev-lang/mono - >=dev-dotnet/gtk-sharp-2.12.21 - >=dev-dotnet/gnome-sharp-2.24.2-r1 - gtkhtml? ( >=dev-dotnet/gtkhtml-sharp-2.24.0:2 ) - webkit? ( >=dev-dotnet/webkit-sharp-0.2-r1 )" +RDEPEND=">=dev-dotnet/gtk-sharp-2.99 + webkit? ( dev-dotnet/webkit-sharp )" DEPEND="${RDEPEND} sys-devel/gettext virtual/pkgconfig" -PATCHES=( +PATCHES=( "${FILESDIR}/${PN}-2.8-html-renderer-fixes.patch" "${FILESDIR}/${P}_make_build_use_2_0.patch" ) @@ -48,7 +45,6 @@ src_prepare() { src_configure() { econf --disable-dependency-tracking \ --disable-gecko \ - $(use_enable gtkhtml) \ $(use_enable webkit) \ --disable-monowebbrowser || die }
[gentoo-commits] proj/dotnet:master commit in: dev-dotnet/log4net/
commit: b0fc8525a8a411fc7d9f9112ce357e4cd6954dce Author: Heather live ru> AuthorDate: Sun Jan 11 08:22:48 2015 + Commit: Heather Cynede gentoo org> CommitDate: Sun Jan 11 08:22:48 2015 + URL: http://sources.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=b0fc8525 log4net QA --- dev-dotnet/log4net/log4net-1.2.10.ebuild | 51 dev-dotnet/log4net/log4net-1.2.11.ebuild | 6 ++-- 2 files changed, 3 insertions(+), 54 deletions(-) diff --git a/dev-dotnet/log4net/log4net-1.2.10.ebuild b/dev-dotnet/log4net/log4net-1.2.10.ebuild deleted file mode 100644 index 597d317..000 --- a/dev-dotnet/log4net/log4net-1.2.10.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="5" - -inherit eutils dotnet versionator - -PV_MAJOR=$(get_version_component_range 1-2) - -DESCRIPTION="tool to help the programmer output log statements to a variety of output targets." -HOMEPAGE="http://logging.apache.org/log4net/"; -SRC_URI="mirror://debian/pool/main/l/log4net/log4net_${PV}+dfsg.orig.tar.gz -> ${P}.tar.gz - http://dev.gentoo.org/~pacho/dotnet/log4net.snk"; - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~x86 ~amd64" -IUSE="doc examples" - -RDEPEND="${RDEPEND}" -DEPEND="${RDEPEND}" - -pkg_setup() { - unset doc examples - use doc && doc=yes - use examples && examples=yes -} - -src_compile() { - /usr/bin/gmcs \ - -t:library \ - -out:log4net.dll \ - -keyfile:"${DISTDIR}"/log4net.snk \ - -r:System.Data \ - -r:System.Web \ - $(find src -name "*.cs") || die -} - -src_install() { - egacinstall log4net.dll - dodir /usr/$(get_libdir)/pkgconfig - sed -e "s:@VERSION@:${PV}:" \ - -e "s:@LIBDIR@:$(get_libdir):" \ - -e "s:@NET_VERSION@:2.0:" \ - "${FILESDIR}"/${PN}.pc.in-r1 > "${D}"/usr/$(get_libdir)/pkgconfig/${PN}-${PV}.pc - dosym ${PN}-${PV}.pc /usr/$(get_libdir)/pkgconfig/${PN}-${PV_MAJOR}.pc - dosym ${PN}-${PV}.pc /usr/$(get_libdir)/pkgconfig/${PN}.pc - - dodoc README.txt -} diff --git a/dev-dotnet/log4net/log4net-1.2.11.ebuild b/dev-dotnet/log4net/log4net-1.2.11.ebuild index fcc19da..9182f77 100644 --- a/dev-dotnet/log4net/log4net-1.2.11.ebuild +++ b/dev-dotnet/log4net/log4net-1.2.11.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI="5" +EAPI=5 -inherit eutils mono multilib versionator +inherit eutils mono-env multilib versionator PV_MAJOR=$(get_version_component_range 1-2)
[gentoo-commits] gentoo-x86 commit in www-apache/mod_wsgi: metadata.xml ChangeLog
djc 15/01/11 08:26:32 Modified: metadata.xml ChangeLog Log: Update remote-id to look at PyPI (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 30380381) Revision ChangesPath 1.7 www-apache/mod_wsgi/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_wsgi/metadata.xml?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_wsgi/metadata.xml?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_wsgi/metadata.xml?r1=1.6&r2=1.7 Index: metadata.xml === RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_wsgi/metadata.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- metadata.xml27 Nov 2012 19:37:31 - 1.6 +++ metadata.xml11 Jan 2015 08:26:32 - 1.7 @@ -6,6 +6,6 @@ Dirkjan Ochtman - modwsgi + mod_wsgi 1.53 www-apache/mod_wsgi/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_wsgi/ChangeLog?rev=1.53&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_wsgi/ChangeLog?rev=1.53&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_wsgi/ChangeLog?r1=1.52&r2=1.53 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_wsgi/ChangeLog,v retrieving revision 1.52 retrieving revision 1.53 diff -u -r1.52 -r1.53 --- ChangeLog 22 Dec 2014 16:47:41 - 1.52 +++ ChangeLog 11 Jan 2015 08:26:32 - 1.53 @@ -1,6 +1,9 @@ # ChangeLog for www-apache/mod_wsgi -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_wsgi/ChangeLog,v 1.52 2014/12/22 16:47:41 djc Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_wsgi/ChangeLog,v 1.53 2015/01/11 08:26:32 djc Exp $ + + 11 Jan 2015; Dirkjan Ochtman metadata.xml: + Update remote-id to look at PyPI *mod_wsgi-4.4.2 (22 Dec 2014)
[gentoo-commits] proj/dotnet:master commit in: dev-dotnet/gudev-sharp/
commit: 8a997e85b8e09de181eb344dbe7cd822721c1aee Author: Heather live ru> AuthorDate: Sun Jan 11 08:27:19 2015 + Commit: Heather Cynede gentoo org> CommitDate: Sun Jan 11 08:27:19 2015 + URL: http://sources.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=8a997e85 gudev-sharp: QA --- dev-dotnet/gudev-sharp/gudev-sharp-0.1-r1.ebuild | 27 dev-dotnet/gudev-sharp/gudev-sharp-3.0.ebuild| 6 +++--- 2 files changed, 3 insertions(+), 30 deletions(-) diff --git a/dev-dotnet/gudev-sharp/gudev-sharp-0.1-r1.ebuild b/dev-dotnet/gudev-sharp/gudev-sharp-0.1-r1.ebuild deleted file mode 100644 index 0c21262..000 --- a/dev-dotnet/gudev-sharp/gudev-sharp-0.1-r1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="5" -inherit mono-env - -DESCRIPTION="GUDEV API C# binding" -HOMEPAGE="http://launchpad.net/gudev-sharp"; -SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${PN}-1.0-${PV}.tar.gz"; - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="dev-dotnet/gtk-sharp - virtual/udev[gudev]" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S=${WORKDIR}/${PN}-1.0-${PV} - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS -} diff --git a/dev-dotnet/gudev-sharp/gudev-sharp-3.0.ebuild b/dev-dotnet/gudev-sharp/gudev-sharp-3.0.ebuild index 6713e70..3ac802c 100644 --- a/dev-dotnet/gudev-sharp/gudev-sharp-3.0.ebuild +++ b/dev-dotnet/gudev-sharp/gudev-sharp-3.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI="5" +EAPI=5 inherit mono-env DESCRIPTION="GUDEV API C# binding" @@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="dev-dotnet/gtk-sharp - virtual/udev[gudev]" + sys-fs/udev[gudev]" DEPEND="${RDEPEND} virtual/pkgconfig"
[gentoo-commits] gentoo-x86 commit in www-apache/mod_wsgi: mod_wsgi-4.4.5.ebuild ChangeLog
djc 15/01/11 08:29:17 Modified: ChangeLog Added:mod_wsgi-4.4.5.ebuild Log: Version bump mod_wsgi to 4.4.5 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 30380381) Revision ChangesPath 1.54 www-apache/mod_wsgi/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_wsgi/ChangeLog?rev=1.54&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_wsgi/ChangeLog?rev=1.54&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_wsgi/ChangeLog?r1=1.53&r2=1.54 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_wsgi/ChangeLog,v retrieving revision 1.53 retrieving revision 1.54 diff -u -r1.53 -r1.54 --- ChangeLog 11 Jan 2015 08:26:32 - 1.53 +++ ChangeLog 11 Jan 2015 08:29:17 - 1.54 @@ -1,6 +1,11 @@ # ChangeLog for www-apache/mod_wsgi # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_wsgi/ChangeLog,v 1.53 2015/01/11 08:26:32 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_wsgi/ChangeLog,v 1.54 2015/01/11 08:29:17 djc Exp $ + +*mod_wsgi-4.4.5 (11 Jan 2015) + + 11 Jan 2015; Dirkjan Ochtman +mod_wsgi-4.4.5.ebuild: + Version bump mod_wsgi to 4.4.5 11 Jan 2015; Dirkjan Ochtman metadata.xml: Update remote-id to look at PyPI 1.1 www-apache/mod_wsgi/mod_wsgi-4.4.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_wsgi/mod_wsgi-4.4.5.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_wsgi/mod_wsgi-4.4.5.ebuild?rev=1.1&content-type=text/plain Index: mod_wsgi-4.4.5.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/www-apache/mod_wsgi/mod_wsgi-4.4.5.ebuild,v 1.1 2015/01/11 08:29:17 djc Exp $ EAPI="5" PYTHON_COMPAT=( python2_6 python2_7 python3_2 python3_3 python3_4 ) PYTHON_REQ_USE="threads" inherit apache-module eutils python-single-r1 DESCRIPTION="An Apache2 module for running Python WSGI applications" HOMEPAGE="http://code.google.com/p/modwsgi/"; SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="" DEPEND="" RDEPEND="" APACHE2_MOD_CONF="70_${PN}" APACHE2_MOD_DEFINE="WSGI" APACHE2_MOD_FILE="${S}/src/server/.libs/${PN}.so" DOCFILES="README.rst" need_apache2 src_configure() { econf --with-apxs=${APXS} --with-python=${PYTHON} } src_compile() { default }
[gentoo-commits] gentoo-x86 commit in dev-python/colorama: ChangeLog colorama-0.3.3.ebuild colorama-0.3.1.ebuild colorama-0.2.4-r1.ebuild colorama-0.2.7.ebuild
idella4 15/01/11 08:50:37 Modified: ChangeLog Added:colorama-0.3.3.ebuild Removed: colorama-0.3.1.ebuild colorama-0.2.4-r1.ebuild colorama-0.2.7.ebuild Log: bump, rm old (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D) Revision ChangesPath 1.15 dev-python/colorama/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colorama/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colorama/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colorama/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-python/colorama/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 9 Jan 2015 13:44:16 - 1.14 +++ ChangeLog 11 Jan 2015 08:50:37 - 1.15 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/colorama # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/colorama/ChangeLog,v 1.14 2015/01/09 13:44:16 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/colorama/ChangeLog,v 1.15 2015/01/11 08:50:37 idella4 Exp $ + +*colorama-0.3.3 (11 Jan 2015) + + 11 Jan 2015; Ian Delaney +colorama-0.3.3.ebuild, + -colorama-0.2.4-r1.ebuild, -colorama-0.2.7.ebuild, -colorama-0.3.1.ebuild: + bump, rm old 09 Jan 2015; Agostino Sarubbo colorama-0.3.2.ebuild: Stable for amd64, wrt bug #535318 1.1 dev-python/colorama/colorama-0.3.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colorama/colorama-0.3.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colorama/colorama-0.3.3.ebuild?rev=1.1&content-type=text/plain Index: colorama-0.3.3.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/colorama/colorama-0.3.3.ebuild,v 1.1 2015/01/11 08:50:37 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) inherit distutils-r1 DESCRIPTION="Makes ANSI escape character sequences for producing colored terminal text & cursor positioning" HOMEPAGE="http://code.google.com/p/colorama/"; SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="examples" python_install_all() { use examples && local EXAMPLES=( demos/. ) distutils-r1_python_install_all }
[gentoo-commits] gentoo-x86 commit in net-misc/strongswan: ChangeLog strongswan-5.2.2.ebuild strongswan-5.2.1.ebuild
gurligebis15/01/11 09:02:58 Modified: ChangeLog Added:strongswan-5.2.2.ebuild Removed: strongswan-5.2.1.ebuild Log: Bumping to 5.2.2, containing fix for CVE-2014-9221. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 15AE484C) Revision ChangesPath 1.148net-misc/strongswan/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/strongswan/ChangeLog?rev=1.148&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/strongswan/ChangeLog?rev=1.148&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/strongswan/ChangeLog?r1=1.147&r2=1.148 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-misc/strongswan/ChangeLog,v retrieving revision 1.147 retrieving revision 1.148 diff -u -r1.147 -r1.148 --- ChangeLog 26 Oct 2014 13:13:00 - 1.147 +++ ChangeLog 11 Jan 2015 09:02:58 - 1.148 @@ -1,6 +1,12 @@ # ChangeLog for net-misc/strongswan -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/strongswan/ChangeLog,v 1.147 2014/10/26 13:13:00 gurligebis Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/strongswan/ChangeLog,v 1.148 2015/01/11 09:02:58 gurligebis Exp $ + +*strongswan-5.2.2 (11 Jan 2015) + + 11 Jan 2015; -strongswan-5.2.1.ebuild, + +strongswan-5.2.2.ebuild: + Bumping to 5.2.2, containing fix for CVE-2014-9221. *strongswan-5.2.1 (26 Oct 2014) 1.1 net-misc/strongswan/strongswan-5.2.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/strongswan/strongswan-5.2.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/strongswan/strongswan-5.2.2.ebuild?rev=1.1&content-type=text/plain Index: strongswan-5.2.2.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/strongswan/strongswan-5.2.2.ebuild,v 1.1 2015/01/11 09:02:58 gurligebis Exp $ EAPI=5 inherit eutils linux-info systemd user DESCRIPTION="IPsec-based VPN solution focused on security and ease of use, supporting IKEv1/IKEv2 and MOBIKE" HOMEPAGE="http://www.strongswan.org/"; SRC_URI="http://download.strongswan.org/${P}.tar.bz2"; LICENSE="GPL-2 RSA DES" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" IUSE="+caps curl +constraints debug dhcp eap farp gcrypt +gmp ldap mysql networkmanager +non-root +openssl sqlite pam pkcs11" STRONGSWAN_PLUGINS_STD="led lookip systime-fix unity vici" STRONGSWAN_PLUGINS_OPT="blowfish ccm ctr gcm ha ipseckey ntru padlock rdrand unbound whitelist" for mod in $STRONGSWAN_PLUGINS_STD; do IUSE="${IUSE} +strongswan_plugins_${mod}" done for mod in $STRONGSWAN_PLUGINS_OPT; do IUSE="${IUSE} strongswan_plugins_${mod}" done COMMON_DEPEND="!net-misc/openswan gmp? ( >=dev-libs/gmp-4.1.5 ) gcrypt? ( dev-libs/libgcrypt:0 ) caps? ( sys-libs/libcap ) curl? ( net-misc/curl ) ldap? ( net-nds/openldap ) openssl? ( >=dev-libs/openssl-0.9.8[-bindist] ) mysql? ( virtual/mysql ) sqlite? ( >=dev-db/sqlite-3.3.1 ) networkmanager? ( net-misc/networkmanager ) pam? ( sys-libs/pam ) strongswan_plugins_unbound? ( net-dns/unbound )" DEPEND="${COMMON_DEPEND} virtual/linux-sources sys-kernel/linux-headers" RDEPEND="${COMMON_DEPEND} virtual/logger sys-apps/iproute2 !net-misc/libreswan" UGID="ipsec" pkg_setup() { linux-info_pkg_setup elog "Linux kernel version: ${KV_FULL}" if ! kernel_is -ge 2 6 16; then eerror eerror "This ebuild currently only supports ${PN} with the" eerror "native Linux 2.6 IPsec stack on kernels >= 2.6.16." eerror fi if kernel_is -lt 2 6 34; then ewarn ewarn "IMPORTANT KERNEL NOTES: Please read carefully..." ewarn if kernel_is -lt 2 6 29; then ewarn "[ < 2.6.29 ] Due to a missing kernel feature, you have to" ewarn "include all required IPv6 modules even if you just intend" ewarn "to run on IPv4 only." ewarn ewarn "This has been fixed with kernels >= 2.6.29." ewarn fi if kernel_is -lt 2 6 33; then ewarn "[ < 2.6.33 ] Kernels prior to 2.6.33 include a non-standards" ewarn "compliant implementation for SHA-2 HMAC support in ESP and"
[gentoo-commits] proj/sci:master commit in: sci-biology/rnaplex/
commit: 564be65c08d2b9079ea9e13a9a91ab7c1381624c Author: Marius Brehler linux sungazer de> AuthorDate: Sat Jan 10 15:54:49 2015 + Commit: Justin Lecher gentoo org> CommitDate: Sat Jan 10 15:54:49 2015 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=564be65c ci-biology/rnaplex: Move to EAPI=5; Update homepage and SRC_URI. --- sci-biology/rnaplex/ChangeLog | 6 +- sci-biology/rnaplex/rnaplex-0.2.ebuild | 10 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/sci-biology/rnaplex/ChangeLog b/sci-biology/rnaplex/ChangeLog index a960c4f..240e682 100644 --- a/sci-biology/rnaplex/ChangeLog +++ b/sci-biology/rnaplex/ChangeLog @@ -1,7 +1,11 @@ # ChangeLog for sci-biology/rnaplex -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 10 Jan 2015; Marius Brehler + rnaplex-0.2.ebuild: + Move to EAPI=5; Update homepage and SRC_URI. + 29 Apr 2009; Andrey Kislyuk ChangeLog: New package, ebuild written by me diff --git a/sci-biology/rnaplex/rnaplex-0.2.ebuild b/sci-biology/rnaplex/rnaplex-0.2.ebuild index f2a9199..8aa1b7e 100644 --- a/sci-biology/rnaplex/rnaplex-0.2.ebuild +++ b/sci-biology/rnaplex/rnaplex-0.2.ebuild @@ -1,14 +1,14 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI=2 +EAPI=5 MY_P=RNAplex-${PV} DESCRIPTION="RNA-RNA interaction search" -HOMEPAGE="http://www.tbi.univie.ac.at/~htafer/"; -SRC_URI="http://www.tbi.univie.ac.at/~htafer/RNAplex/${MY_P}.tar.gz"; +HOMEPAGE="http://www.bioinf.uni-leipzig.de/Software/RNAplex/"; +SRC_URI="http://www.bioinf.uni-leipzig.de/Software/RNAplex/RNAplex-0.2.tar.gz"; LICENSE="GPL-2" SLOT="0" @@ -16,7 +16,7 @@ IUSE="" KEYWORDS="~amd64 ~x86" DEPEND="" -RDEPEND="" +RDEPEND="${DEPEND}" S=${WORKDIR}/${MY_P} src_install() {
[gentoo-commits] proj/sci:master commit in: sci-biology/rnaplex/
commit: 49de1484da2ae49b3b7e2b218c6ea55214defaa6 Author: Marius Brehler linux sungazer de> AuthorDate: Sat Jan 10 17:51:26 2015 + Commit: Justin Lecher gentoo org> CommitDate: Sat Jan 10 17:51:26 2015 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=49de1484 sci-biology/rnaplex: Fixes according to jlec's advices --- sci-biology/rnaplex/ChangeLog | 2 +- sci-biology/rnaplex/rnaplex-0.2.ebuild | 8 +--- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/sci-biology/rnaplex/ChangeLog b/sci-biology/rnaplex/ChangeLog index 240e682..dbdac52 100644 --- a/sci-biology/rnaplex/ChangeLog +++ b/sci-biology/rnaplex/ChangeLog @@ -4,7 +4,7 @@ 10 Jan 2015; Marius Brehler rnaplex-0.2.ebuild: - Move to EAPI=5; Update homepage and SRC_URI. + Move to EAPI=5; Update homepage and SRC_URI; Cleanup. 29 Apr 2009; Andrey Kislyuk ChangeLog: New package, ebuild written by me diff --git a/sci-biology/rnaplex/rnaplex-0.2.ebuild b/sci-biology/rnaplex/rnaplex-0.2.ebuild index 1ac1499..d9e693b 100644 --- a/sci-biology/rnaplex/rnaplex-0.2.ebuild +++ b/sci-biology/rnaplex/rnaplex-0.2.ebuild @@ -8,17 +8,11 @@ MY_P=RNAplex-${PV} DESCRIPTION="RNA-RNA interaction search" HOMEPAGE="http://www.bioinf.uni-leipzig.de/Software/RNAplex/"; -SRC_URI="http://www.bioinf.uni-leipzig.de/Software/RNAplex/RNAplex-0.2.tar.gz"; +SRC_URI="http://www.bioinf.uni-leipzig.de/Software/RNAplex/${MY_P}.tar.gz"; LICENSE="GPL-2" SLOT="0" IUSE="" KEYWORDS="~amd64 ~x86" -DEPEND="" -RDEPEND="${DEPEND}" S=${WORKDIR}/${MY_P} - -src_install() { - emake DESTDIR="${D}" install -}
[gentoo-commits] proj/sci:master commit in: sci-chemistry/dssp2pdb/
commit: 1b67c650c2890a103b3b56931268bdc18ed4ba9b Author: Justin Lecher gentoo org> AuthorDate: Sun Jan 11 09:12:26 2015 + Commit: Justin Lecher gentoo org> CommitDate: Sun Jan 11 09:12:26 2015 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=1b67c650 sci-chemistry/dssp2pdb: Fix S Package-Manager: portage-2.2.15 --- sci-chemistry/dssp2pdb/ChangeLog| 5 - sci-chemistry/dssp2pdb/dssp2pdb-0.03.ebuild | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/sci-chemistry/dssp2pdb/ChangeLog b/sci-chemistry/dssp2pdb/ChangeLog index 62c0f74..5237a5f 100644 --- a/sci-chemistry/dssp2pdb/ChangeLog +++ b/sci-chemistry/dssp2pdb/ChangeLog @@ -1,7 +1,10 @@ # ChangeLog for sci-chemistry/dssp2pdb -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 11 Jan 2015; Justin Lecher dssp2pdb-0.03.ebuild: + Fix S + 11 Nov 2014; Justin Lecher dssp2pdb-0.03.ebuild, metadata.xml: Bump to EAPI=5 diff --git a/sci-chemistry/dssp2pdb/dssp2pdb-0.03.ebuild b/sci-chemistry/dssp2pdb/dssp2pdb-0.03.ebuild index bef71e6..cebb6ca 100644 --- a/sci-chemistry/dssp2pdb/dssp2pdb-0.03.ebuild +++ b/sci-chemistry/dssp2pdb/dssp2pdb-0.03.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ @@ -18,6 +18,8 @@ RDEPEND=" sci-chemistry/dssp" DEPEND="" +S="${WORKDIR}" + src_install() { dobin ${PN} }
[gentoo-commits] proj/sci:master commit in: /
commit: b57991369687010ca643fc11e2a09c7130d76add Author: Justin Lecher gentoo org> AuthorDate: Sun Jan 11 09:12:43 2015 + Commit: Justin Lecher gentoo org> CommitDate: Sun Jan 11 09:12:43 2015 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b5799136 Merge remote-tracking branch 'github/master' * github/master: sci-libs/arrayfire: Improve and clean gtest src handling sci-libs/arrayfire: Fix DEPEND, unpacker is used instead of unzip sci-biology/rnaplex: Fixes according to jlec's advices sci-biology/codonw: Drop unnecessary dies Drop unnecessary die ci-biology/rnaplex: Move to EAPI=5; Update homepage and SRC_URI. sci-biology/codonw: Move to EAPI=5 sci-biology/codonw/ChangeLog | 6 +- sci-biology/codonw/codonw-1.4.4-r1.ebuild | 12 ++-- sci-biology/rnaplex/ChangeLog | 6 +- sci-biology/rnaplex/Manifest | 2 +- sci-biology/rnaplex/rnaplex-0.2.ebuild| 14 -- sci-libs/arrayfire/arrayfire-.ebuild | 13 +++-- 6 files changed, 28 insertions(+), 25 deletions(-)
[gentoo-commits] proj/sci:master commit in: sci-biology/codonw/
commit: e95477b2468656bfdb318892b538e7e29e733d4a Author: Marius Brehler linux sungazer de> AuthorDate: Sat Jan 10 16:00:59 2015 + Commit: Justin Lecher gentoo org> CommitDate: Sat Jan 10 16:00:59 2015 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e95477b2 sci-biology/codonw: Drop unnecessary dies --- sci-biology/codonw/codonw-1.4.4-r1.ebuild | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sci-biology/codonw/codonw-1.4.4-r1.ebuild b/sci-biology/codonw/codonw-1.4.4-r1.ebuild index 50e2f9c..85c0c5e 100644 --- a/sci-biology/codonw/codonw-1.4.4-r1.ebuild +++ b/sci-biology/codonw/codonw-1.4.4-r1.ebuild @@ -26,14 +26,14 @@ src_prepare() { } src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" } src_install() { - dobin codonw || die + dobin codonw # woohoo watch out for collisions for i in rscu cu aau raau tidy reader cutab cutot transl bases base3s dinuc cai fop gc3s gc cbi enc; do - dosym codonw /usr/bin/${i} || die + dosym codonw /usr/bin/${i} done - dodoc *.txt || die + dodoc *.txt }
[gentoo-commits] proj/sci:master commit in: /
commit: 968c11d9a497e51812b09b70d7e601468e962b30 Author: Christoph Junghans gmail com> AuthorDate: Sat Jan 10 18:22:42 2015 + Commit: Justin Lecher gentoo org> CommitDate: Sat Jan 10 18:22:42 2015 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=968c11d9 Merge pull request #317 from marbre/codonw sci-biology/codonw: Move to EAPI=5 sci-biology/codonw/ChangeLog | 6 +- sci-biology/codonw/codonw-1.4.4-r1.ebuild | 12 ++-- 2 files changed, 11 insertions(+), 7 deletions(-)
[gentoo-commits] proj/sci:master commit in: sci-libs/arrayfire/
commit: b0825ab2c556914504da8037850fadaea006bfaa Author: Marius Brehler linux sungazer de> AuthorDate: Sat Jan 10 18:11:03 2015 + Commit: Justin Lecher gentoo org> CommitDate: Sat Jan 10 18:11:03 2015 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b0825ab2 sci-libs/arrayfire: Fix DEPEND, unpacker is used instead of unzip --- sci-libs/arrayfire/arrayfire-.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sci-libs/arrayfire/arrayfire-.ebuild b/sci-libs/arrayfire/arrayfire-.ebuild index a1af26b..50aca35 100644 --- a/sci-libs/arrayfire/arrayfire-.ebuild +++ b/sci-libs/arrayfire/arrayfire-.ebuild @@ -22,8 +22,7 @@ RDEPEND=" virtual/cblas cuda? ( >=dev-util/nvidia-cuda-toolkit-6.0 ) sci-libs/fftw:3.0" -DEPEND="${RDEPEND} - test? ( app-arch/unzip )" +DEPEND="${RDEPEND}" BUILD_DIR="${S}/build" CMAKE_BUILD_TYPE=Release
[gentoo-commits] proj/sci:master commit in: /
commit: a3fb2f2846f14b9f2dce81a74c56c2747a1f685d Author: Christoph Junghans gmail com> AuthorDate: Sun Jan 11 01:10:30 2015 + Commit: Justin Lecher gentoo org> CommitDate: Sun Jan 11 01:10:30 2015 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a3fb2f28 Merge pull request #320 from marbre/arrayfire sci-libs/arrayfire: Fix DEPEND and replace unpacker by unpack sci-libs/arrayfire/arrayfire-.ebuild | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-)
[gentoo-commits] proj/sci:master commit in: /
commit: 7751b06c2a4cc7cba604e7f986c7c8c49bb5a7c5 Author: Justin gentoo org> AuthorDate: Sat Jan 10 18:44:29 2015 + Commit: Justin Lecher gentoo org> CommitDate: Sat Jan 10 18:44:29 2015 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7751b06c Merge pull request #319 from marbre/rnaplex ci-biology/rnaplex: Move to EAPI=5; Update homepage and SRC_URI. sci-biology/rnaplex/ChangeLog | 6 +- sci-biology/rnaplex/Manifest | 2 +- sci-biology/rnaplex/rnaplex-0.2.ebuild | 14 -- 3 files changed, 10 insertions(+), 12 deletions(-)
[gentoo-commits] proj/sci:master commit in: sci-libs/arrayfire/
commit: 8e5938c433a09162e517e7e3127fa365a764ea45 Author: Marius Brehler linux sungazer de> AuthorDate: Sat Jan 10 22:39:47 2015 + Commit: Justin Lecher gentoo org> CommitDate: Sat Jan 10 22:39:47 2015 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=8e5938c4 sci-libs/arrayfire: Improve and clean gtest src handling --- sci-libs/arrayfire/arrayfire-.ebuild | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sci-libs/arrayfire/arrayfire-.ebuild b/sci-libs/arrayfire/arrayfire-.ebuild index 50aca35..107af24 100644 --- a/sci-libs/arrayfire/arrayfire-.ebuild +++ b/sci-libs/arrayfire/arrayfire-.ebuild @@ -4,12 +4,14 @@ EAPI=5 -inherit cmake-utils git-r3 unpacker +inherit cmake-utils git-r3 + +GTEST_PV="1.7.0" DESCRIPTION="A general purpose GPU library." HOMEPAGE="http://www.arrayfire.com/"; EGIT_REPO_URI="https://github.com/arrayfire/arrayfire.git"; -SRC_URI="test? ( https://googletest.googlecode.com/files/gtest-1.7.0.zip )" +SRC_URI="test? ( https://googletest.googlecode.com/files/gtest-${GTEST_PV}.zip )" KEYWORDS="~amd64" LICENSE="BSD" @@ -51,8 +53,8 @@ src_unpack() { if use test; then mkdir -p "${BUILD_DIR}"/third_party/src/ || die cd "${BUILD_DIR}"/third_party/src/ || die - unpack_zip "${DISTDIR}/"gtest-1.7.0.zip - mv "${BUILD_DIR}"/third_party/src/gtest-1.7.0 "${BUILD_DIR}"/third_party/src/googletest || die + unpack ${A} + mv "${BUILD_DIR}"/third_party/src/gtest-"${GTEST_PV}" "${BUILD_DIR}"/third_party/src/googletest || die fi }
[gentoo-commits] proj/sci:master commit in: sci-biology/rnaplex/
commit: db7ca5d3a8f045d5dc8d92ebee03981130d0b3ea Author: Marius Brehler linux sungazer de> AuthorDate: Sat Jan 10 15:57:01 2015 + Commit: Justin Lecher gentoo org> CommitDate: Sat Jan 10 15:57:01 2015 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=db7ca5d3 Drop unnecessary die --- sci-biology/rnaplex/rnaplex-0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-biology/rnaplex/rnaplex-0.2.ebuild b/sci-biology/rnaplex/rnaplex-0.2.ebuild index 8aa1b7e..1ac1499 100644 --- a/sci-biology/rnaplex/rnaplex-0.2.ebuild +++ b/sci-biology/rnaplex/rnaplex-0.2.ebuild @@ -20,5 +20,5 @@ RDEPEND="${DEPEND}" S=${WORKDIR}/${MY_P} src_install() { - emake DESTDIR="${D}" install || die "install failed" + emake DESTDIR="${D}" install }
[gentoo-commits] proj/sci:master commit in: sci-biology/codonw/
commit: 2b3e8f43608da0a1585a5bf5a37cb21a09b9e1e8 Author: Marius Brehler linux sungazer de> AuthorDate: Sat Jan 10 15:40:35 2015 + Commit: Justin Lecher gentoo org> CommitDate: Sat Jan 10 15:40:35 2015 + URL:http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2b3e8f43 sci-biology/codonw: Move to EAPI=5 --- sci-biology/codonw/ChangeLog | 6 +- sci-biology/codonw/codonw-1.4.4-r1.ebuild | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sci-biology/codonw/ChangeLog b/sci-biology/codonw/ChangeLog index d2f9cc3..00b6629 100644 --- a/sci-biology/codonw/ChangeLog +++ b/sci-biology/codonw/ChangeLog @@ -1,7 +1,11 @@ # ChangeLog for sci-biology/codonw -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 10 Jan 2015; Marius Brehler + condow-1.4.4-r1.ebuild: + Move to EAPI=5. + *codonw-1.4.4-r1 (08 Nov 2010) 08 Nov 2010; Kacper Kowalik -codonw-1.4.4.ebuild, diff --git a/sci-biology/codonw/codonw-1.4.4-r1.ebuild b/sci-biology/codonw/codonw-1.4.4-r1.ebuild index f7f48e1..50e2f9c 100644 --- a/sci-biology/codonw/codonw-1.4.4-r1.ebuild +++ b/sci-biology/codonw/codonw-1.4.4-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI=2 +EAPI=5 inherit toolchain-funcs versionator
[gentoo-commits] gentoo-x86 commit in net-im/prosody: ChangeLog prosody-0.9.7.ebuild
klausman15/01/11 09:09:57 Modified: ChangeLog prosody-0.9.7.ebuild Log: Stable on amd64, bug 511532 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8) Revision ChangesPath 1.45 net-im/prosody/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/ChangeLog?rev=1.45&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/ChangeLog?rev=1.45&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/ChangeLog?r1=1.44&r2=1.45 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-im/prosody/ChangeLog,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- ChangeLog 11 Dec 2014 10:01:09 - 1.44 +++ ChangeLog 11 Jan 2015 09:09:57 - 1.45 @@ -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.44 2014/12/11 10:01:09 klausman Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/ChangeLog,v 1.45 2015/01/11 09:09:57 klausman Exp $ + + 11 Jan 2015; Tobias Klausmann prosody-0.9.7.ebuild: + Stable on amd64, bug 511532 *prosody-0.9.7 (11 Dec 2014) 1.2 net-im/prosody/prosody-0.9.7.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/prosody-0.9.7.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/prosody-0.9.7.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/prosody-0.9.7.ebuild?r1=1.1&r2=1.2 Index: prosody-0.9.7.ebuild === RCS file: /var/cvsroot/gentoo-x86/net-im/prosody/prosody-0.9.7.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- prosody-0.9.7.ebuild11 Dec 2014 10:01:09 - 1.1 +++ prosody-0.9.7.ebuild11 Jan 2015 09:09:57 - 1.2 @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/prosody-0.9.7.ebuild,v 1.1 2014/12/11 10:01:09 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/prosody-0.9.7.ebuild,v 1.2 2015/01/11 09:09:57 klausman 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-vcs/mercurial: ChangeLog mercurial-3.2.1.ebuild mercurial-3.1.2.ebuild mercurial-2.8.2.ebuild mercurial-2.4.2.ebuild mercurial-3.2.2.ebuild
djc 15/01/11 09:24:24 Modified: ChangeLog Removed: mercurial-3.2.1.ebuild mercurial-3.1.2.ebuild mercurial-2.8.2.ebuild mercurial-2.4.2.ebuild mercurial-3.2.2.ebuild Log: Remove old versions of mercurial (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 30380381) Revision ChangesPath 1.170dev-vcs/mercurial/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/mercurial/ChangeLog?rev=1.170&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/mercurial/ChangeLog?rev=1.170&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/mercurial/ChangeLog?r1=1.169&r2=1.170 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/ChangeLog,v retrieving revision 1.169 retrieving revision 1.170 diff -u -r1.169 -r1.170 --- ChangeLog 9 Jan 2015 10:52:56 - 1.169 +++ ChangeLog 11 Jan 2015 09:24:24 - 1.170 @@ -1,6 +1,11 @@ # ChangeLog for dev-vcs/mercurial # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/ChangeLog,v 1.169 2015/01/09 10:52:56 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/ChangeLog,v 1.170 2015/01/11 09:24:24 djc Exp $ + + 11 Jan 2015; Dirkjan Ochtman -mercurial-2.4.2.ebuild, + -mercurial-2.8.2.ebuild, -mercurial-3.1.2.ebuild, -mercurial-3.2.1.ebuild, + -mercurial-3.2.2.ebuild: + Remove old versions of mercurial 09 Jan 2015; Tobias Klausmann mercurial-3.2.3.ebuild: Stable on alpha, bug 533008
[gentoo-commits] gentoo-x86 commit in dev-vcs/mercurial: mercurial-3.2.4.ebuild ChangeLog
djc 15/01/11 09:36:42 Modified: ChangeLog Added:mercurial-3.2.4.ebuild Log: Version bump mercurial to 3.2.4 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 30380381) Revision ChangesPath 1.171dev-vcs/mercurial/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/mercurial/ChangeLog?rev=1.171&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/mercurial/ChangeLog?rev=1.171&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/mercurial/ChangeLog?r1=1.170&r2=1.171 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/ChangeLog,v retrieving revision 1.170 retrieving revision 1.171 diff -u -r1.170 -r1.171 --- ChangeLog 11 Jan 2015 09:24:24 - 1.170 +++ ChangeLog 11 Jan 2015 09:36:42 - 1.171 @@ -1,6 +1,11 @@ # ChangeLog for dev-vcs/mercurial # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/ChangeLog,v 1.170 2015/01/11 09:24:24 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/ChangeLog,v 1.171 2015/01/11 09:36:42 djc Exp $ + +*mercurial-3.2.4 (11 Jan 2015) + + 11 Jan 2015; Dirkjan Ochtman +mercurial-3.2.4.ebuild: + Version bump mercurial to 3.2.4 11 Jan 2015; Dirkjan Ochtman -mercurial-2.4.2.ebuild, -mercurial-2.8.2.ebuild, -mercurial-3.1.2.ebuild, -mercurial-3.2.1.ebuild, 1.1 dev-vcs/mercurial/mercurial-3.2.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/mercurial/mercurial-3.2.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/mercurial/mercurial-3.2.4.ebuild?rev=1.1&content-type=text/plain Index: mercurial-3.2.4.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-3.2.4.ebuild,v 1.1 2015/01/11 09:36:42 djc Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7} ) PYTHON_REQ_USE="threads" inherit bash-completion-r1 elisp-common eutils distutils-r1 flag-o-matic DESCRIPTION="Scalable distributed SCM" HOMEPAGE="http://mercurial.selenic.com/"; SRC_URI="http://mercurial.selenic.com/release/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="bugzilla emacs gpg test tk" RDEPEND="bugzilla? ( dev-python/mysql-python[${PYTHON_USEDEP}] ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) app-misc/ca-certificates" DEPEND="emacs? ( virtual/emacs ) test? ( app-arch/unzip dev-python/pygments[${PYTHON_USEDEP}] )" SITEFILE="70${PN}-gentoo.el" PATCHES=( "${FILESDIR}/${PN}-3.0.1-po_fixes.patch" ) python_prepare_all() { # fix up logic that won't work in Gentoo Prefix (also won't outside in # certain cases), bug #362891 sed -i -e 's:xcodebuild:nocodebuild:' setup.py || die distutils-r1_python_prepare_all } python_configure_all() { strip-flags -ftracer -ftree-vectorize # Note: make it impl-conditional if py3 is supported append-flags -fno-strict-aliasing "${PYTHON}" setup.py build_mo || die } python_compile_all() { rm -r contrib/{win32,macosx} || die if use emacs; then cd contrib || die elisp-compile mercurial.el || die "elisp-compile failed!" fi } python_install_all() { distutils-r1_python_install_all newbashcomp contrib/bash_completion hg insinto /usr/share/zsh/site-functions newins contrib/zsh_completion _hg rm -f doc/*.?.txt dodoc CONTRIBUTORS cp hgweb*.cgi "${ED}"/usr/share/doc/${PF}/ || die dobin hgeditor dobin contrib/hgk python_foreach_impl python_doscript contrib/hg-ssh if use emacs; then elisp-install ${PN} contrib/mercurial.el* || die "elisp-install failed!" elisp-site-file-install "${FILESDIR}"/${SITEFILE} fi local RM_CONTRIB=(hgk hg-ssh bash_completion zsh_completion wix buildrpm plan9 *.el mercurial.spec) for f in ${RM_CONTRIB[@]}; do rm -r contrib/$f || die done dodoc -r contrib docompress -x /usr/share/doc/${PF}/contrib doman doc/*.? cat > "${T}/80mercurial" <<-EOF HG="${EPREFIX}/usr/bin/hg" EOF doenvd "${T}/80mercurial" insinto /etc/mercurial/hgrc.d doins "${FILESDIR}/cacerts.rc" } src_test
[gentoo-commits] gentoo-x86 commit in net-misc/networkmanager-openvpn: networkmanager-openvpn-1.0.0-r1.ebuild ChangeLog
pacho 15/01/11 10:53:17 Modified: ChangeLog Added:networkmanager-openvpn-1.0.0-r1.ebuild Log: -localstatedir=/var needed (#536248 by poncho) (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A188FBD4) Revision ChangesPath 1.52 net-misc/networkmanager-openvpn/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/networkmanager-openvpn/ChangeLog?rev=1.52&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/networkmanager-openvpn/ChangeLog?rev=1.52&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/networkmanager-openvpn/ChangeLog?r1=1.51&r2=1.52 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-misc/networkmanager-openvpn/ChangeLog,v retrieving revision 1.51 retrieving revision 1.52 diff -u -r1.51 -r1.52 --- ChangeLog 10 Jan 2015 15:24:59 - 1.51 +++ ChangeLog 11 Jan 2015 10:53:17 - 1.52 @@ -1,6 +1,12 @@ # ChangeLog for net-misc/networkmanager-openvpn # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/networkmanager-openvpn/ChangeLog,v 1.51 2015/01/10 15:24:59 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/networkmanager-openvpn/ChangeLog,v 1.52 2015/01/11 10:53:17 pacho Exp $ + +*networkmanager-openvpn-1.0.0-r1 (11 Jan 2015) + + 11 Jan 2015; Pacho Ramos + +networkmanager-openvpn-1.0.0-r1.ebuild: + -localstatedir=/var needed (#536248 by poncho) *networkmanager-openvpn-1.0.0 (10 Jan 2015) 1.1 net-misc/networkmanager-openvpn/networkmanager-openvpn-1.0.0-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.0.0-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.0.0-r1.ebuild?rev=1.1&content-type=text/plain Index: networkmanager-openvpn-1.0.0-r1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.0.0-r1.ebuild,v 1.1 2015/01/11 10:53:17 pacho Exp $ EAPI=5 GCONF_DEBUG="no" GNOME_ORG_MODULE="NetworkManager-${PN##*-}" inherit eutils gnome2 DESCRIPTION="NetworkManager OpenVPN plugin" HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"; LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" IUSE="gtk test" RDEPEND=" >=dev-libs/dbus-glib-0.74 >=dev-libs/glib-2.32:2 >=net-misc/networkmanager-0.9.10:= >=net-misc/openvpn-2.1_rc9 gtk? ( app-crypt/libsecret >=gnome-extra/nm-applet-0.9.9.0 >=x11-libs/gtk+-3.4:3 )" DEPEND="${RDEPEND} sys-devel/gettext >=dev-util/intltool-0.35 virtual/pkgconfig " src_prepare() { # Test will fail if the machine doesn't have a particular locale installed # FAIL: (tls-import-data) unexpected 'ca' secret value, upstream bug #742708 sed '/test_non_utf8_import (plugin, test_dir)/ d' \ -i properties/tests/test-import-export.c || die "sed failed" gnome2_src_prepare } src_configure() { # --localstatedir=/var needed per bug #536248 gnome2_src_configure \ --localstatedir=/var \ --disable-more-warnings \ --disable-static \ --with-dist-version=Gentoo \ $(use_with gtk gnome) \ $(use_with test tests) }
[gentoo-commits] gentoo-x86 commit in gnome-base/gnome: ChangeLog gnome-3.14.0.ebuild
eva 15/01/11 10:54:19 Modified: ChangeLog gnome-3.14.0.ebuild Log: Re-add ~arm keyword since keywording of dependencies allow it. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.483gnome-base/gnome/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome/ChangeLog?rev=1.483&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome/ChangeLog?rev=1.483&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome/ChangeLog?r1=1.482&r2=1.483 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/gnome-base/gnome/ChangeLog,v retrieving revision 1.482 retrieving revision 1.483 diff -u -r1.482 -r1.483 --- ChangeLog 26 Dec 2014 03:04:19 - 1.482 +++ ChangeLog 11 Jan 2015 10:54:19 - 1.483 @@ -1,6 +1,9 @@ # ChangeLog for gnome-base/gnome -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome/ChangeLog,v 1.482 2014/12/26 03:04:19 patrick Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome/ChangeLog,v 1.483 2015/01/11 10:54:19 eva Exp $ + + 11 Jan 2015; Gilles Dartiguelongue gnome-3.14.0.ebuild: + Re-add ~arm keyword since keywording of dependencies allow it. 26 Dec 2014; Patrick Lauer gnome-3.14.0.ebuild: Remove keywords until dependencies catch up 1.3 gnome-base/gnome/gnome-3.14.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome/gnome-3.14.0.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome/gnome-3.14.0.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome/gnome-3.14.0.ebuild?r1=1.2&r2=1.3 Index: gnome-3.14.0.ebuild === RCS file: /var/cvsroot/gentoo-x86/gnome-base/gnome/gnome-3.14.0.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- gnome-3.14.0.ebuild 26 Dec 2014 03:04:19 - 1.2 +++ gnome-3.14.0.ebuild 11 Jan 2015 10:54:19 - 1.3 @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome/gnome-3.14.0.ebuild,v 1.2 2014/12/26 03:04:19 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome/gnome-3.14.0.ebuild,v 1.3 2015/01/11 10:54:19 eva Exp $ EAPI="5" @@ -12,7 +12,7 @@ # when unmasking for an arch # double check none of the deps are still masked ! -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~arm" IUSE="accessibility +bluetooth +classic +cdr cups +extras"
[gentoo-commits] gentoo-x86 commit in media-sound/qmmp: qmmp-9999.ebuild qmmp-0.8.2.ebuild qmmp-0.8.0.ebuild ChangeLog
hwoarang15/01/11 11:00:39 Modified: qmmp-.ebuild qmmp-0.8.2.ebuild qmmp-0.8.0.ebuild ChangeLog Log: Add missing dev-qt/qtgui dependency. Thanks to Toralf Förster. Bug #534322 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 09BF4F54C2BA7F3C!) Revision ChangesPath 1.31 media-sound/qmmp/qmmp-.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmmp/qmmp-.ebuild?rev=1.31&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmmp/qmmp-.ebuild?rev=1.31&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmmp/qmmp-.ebuild?r1=1.30&r2=1.31 Index: qmmp-.ebuild === RCS file: /var/cvsroot/gentoo-x86/media-sound/qmmp/qmmp-.ebuild,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- qmmp-.ebuild24 Jul 2014 11:48:33 - 1.30 +++ qmmp-.ebuild11 Jan 2015 11:00:39 - 1.31 @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qmmp/qmmp-.ebuild,v 1.30 2014/07/24 11:48:33 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/qmmp/qmmp-.ebuild,v 1.31 2015/01/11 11:00:39 hwoarang Exp $ EAPI="5" @@ -26,6 +26,7 @@ projectm pulseaudio scrobbler sndfile stereo tray udisks +vorbis wavpack" RDEPEND="media-libs/taglib + dev-qt/qtgui alsa? ( media-libs/alsa-lib ) bs2b? ( media-libs/libbs2b ) cdda? ( dev-libs/libcdio-paranoia ) 1.2 media-sound/qmmp/qmmp-0.8.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmmp/qmmp-0.8.2.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmmp/qmmp-0.8.2.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmmp/qmmp-0.8.2.ebuild?r1=1.1&r2=1.2 Index: qmmp-0.8.2.ebuild === RCS file: /var/cvsroot/gentoo-x86/media-sound/qmmp/qmmp-0.8.2.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- qmmp-0.8.2.ebuild 11 Nov 2014 18:28:57 - 1.1 +++ qmmp-0.8.2.ebuild 11 Jan 2015 11:00:39 - 1.2 @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qmmp/qmmp-0.8.2.ebuild,v 1.1 2014/11/11 18:28:57 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/qmmp/qmmp-0.8.2.ebuild,v 1.2 2015/01/11 11:00:39 hwoarang Exp $ EAPI="5" @@ -26,6 +26,7 @@ projectm pulseaudio scrobbler sndfile stereo tray udisks +vorbis wavpack" RDEPEND="media-libs/taglib + dev-qt/qtgui alsa? ( media-libs/alsa-lib ) bs2b? ( media-libs/libbs2b ) cdda? ( dev-libs/libcdio-paranoia ) 1.7 media-sound/qmmp/qmmp-0.8.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmmp/qmmp-0.8.0.ebuild?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmmp/qmmp-0.8.0.ebuild?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmmp/qmmp-0.8.0.ebuild?r1=1.6&r2=1.7 Index: qmmp-0.8.0.ebuild === RCS file: /var/cvsroot/gentoo-x86/media-sound/qmmp/qmmp-0.8.0.ebuild,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- qmmp-0.8.0.ebuild 16 Sep 2014 09:09:22 - 1.6 +++ qmmp-0.8.0.ebuild 11 Jan 2015 11:00:39 - 1.7 @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qmmp/qmmp-0.8.0.ebuild,v 1.6 2014/09/16 09:09:22 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/qmmp/qmmp-0.8.0.ebuild,v 1.7 2015/01/11 11:00:39 hwoarang Exp $ EAPI="5" @@ -26,6 +26,7 @@ projectm pulseaudio scrobbler sndfile stereo tray udisks +vorbis wavpack" RDEPEND="media-libs/taglib + dev-qt/qtgui alsa? ( media-libs/alsa-lib ) bs2b? ( media-libs/libbs2b ) cdda? ( dev-libs/libcdio-paranoia ) 1.138media-sound/qmmp/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmmp/ChangeLog?rev=1.138&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmmp/ChangeLog?rev=1.138&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmmp/ChangeLog?r1=1.137&r2=1.138 Index: Cha
[gentoo-commits] gentoo-x86 commit in sys-apps/file: file-5.22.ebuild ChangeLog
jer 15/01/11 11:13:33 Modified: file-5.22.ebuild ChangeLog Log: Stable for HPPA (bug #532768). (Portage version: 2.2.15/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613) Revision ChangesPath 1.3 sys-apps/file/file-5.22.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.22.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.22.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.22.ebuild?r1=1.2&r2=1.3 Index: file-5.22.ebuild === RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.22.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- file-5.22.ebuild9 Jan 2015 16:43:39 - 1.2 +++ file-5.22.ebuild11 Jan 2015 11:13:33 - 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.22.ebuild,v 1.2 2015/01/09 16:43:39 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.22.ebuild,v 1.3 2015/01/11 11:13:33 jer Exp $ EAPI="4" PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy2_0 ) @@ -14,7 +14,7 @@ else SRC_URI="ftp://ftp.astron.com/pub/file/${P}.tar.gz ftp://ftp.gw.com/mirrors/pub/unix/file/${P}.tar.gz"; - KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" + KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" fi DESCRIPTION="identify a file's format by scanning binary data for patterns" 1.300sys-apps/file/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.300&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.300&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?r1=1.299&r2=1.300 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v retrieving revision 1.299 retrieving revision 1.300 diff -u -r1.299 -r1.300 --- ChangeLog 9 Jan 2015 16:43:39 - 1.299 +++ ChangeLog 11 Jan 2015 11:13:33 - 1.300 @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/file # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.299 2015/01/09 16:43:39 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.300 2015/01/11 11:13:33 jer Exp $ + + 11 Jan 2015; Jeroen Roovers file-5.22.ebuild: + Stable for HPPA (bug #532768). 09 Jan 2015; Mikle Kolyada file-5.22.ebuild: amd64 stable wrt bug #532768
[gentoo-commits] gentoo-x86 commit in dev-db/pg_top/files: pg_top-3.7.0.patch
jer 15/01/11 11:36:17 Modified: pg_top-3.7.0.patch Log: Fix building against sys-libs/ncurses[tinfo] (bug #536164 by Reuben Martin). (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.2 dev-db/pg_top/files/pg_top-3.7.0.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pg_top/files/pg_top-3.7.0.patch?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pg_top/files/pg_top-3.7.0.patch?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pg_top/files/pg_top-3.7.0.patch?r1=1.1&r2=1.2 Index: pg_top-3.7.0.patch === RCS file: /var/cvsroot/gentoo-x86/dev-db/pg_top/files/pg_top-3.7.0.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- pg_top-3.7.0.patch 15 Nov 2013 04:05:34 - 1.1 +++ pg_top-3.7.0.patch 11 Jan 2015 11:36:17 - 1.2 @@ -1,6 +1,15 @@ configure.ac.orig 2013-09-20 10:11:20.256444684 +0400 -+++ configure.ac 2013-09-20 10:16:30.262459612 +0400 -@@ -109,6 +109,8 @@ +--- a/configure.ac b/configure.ac +@@ -103,7 +103,7 @@ + AC_SEARCH_LIBS(elf32_getphdr, elf) + # -lmld -lmach + AC_SEARCH_LIBS(vm_statistics, mach) +-AC_SEARCH_LIBS(tgetent, termcap curses ncurses) ++AC_SEARCH_LIBS(tgetent, termcap tinfo curses ncurses) + AC_SEARCH_LIBS(exp, m) + + AC_SEARCH_LIBS(dlerror, dl) +@@ -111,6 +111,8 @@ AC_SEARCH_LIBS(inet_aton, resolv, AC_DEFINE(HAVE_INET_ATON, 1, [inet_aton is already defined])) @@ -9,7 +18,7 @@ # check for libraries required by extension extlibs="" if test -n "$with_ext" -a -f "${srcdir}/ext/$with_ext.libs"; then -@@ -216,8 +218,6 @@ +@@ -217,8 +219,6 @@ AC_SUBST(SRC) AC_SUBST(OBJ)
[gentoo-commits] gentoo-x86 commit in dev-db/pg_top: ChangeLog
jer 15/01/11 11:36:17 Modified: ChangeLog Log: Fix building against sys-libs/ncurses[tinfo] (bug #536164 by Reuben Martin). (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.12 dev-db/pg_top/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pg_top/ChangeLog?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pg_top/ChangeLog?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/pg_top/ChangeLog?r1=1.11&r2=1.12 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-db/pg_top/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ChangeLog 28 Dec 2014 15:07:21 - 1.11 +++ ChangeLog 11 Jan 2015 11:36:17 - 1.12 @@ -1,6 +1,9 @@ # ChangeLog for dev-db/pg_top -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/pg_top/ChangeLog,v 1.11 2014/12/28 15:07:21 titanofold Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/pg_top/ChangeLog,v 1.12 2015/01/11 11:36:17 jer Exp $ + + 11 Jan 2015; Jeroen Roovers files/pg_top-3.7.0.patch: + Fix building against sys-libs/ncurses[tinfo] (bug #536164 by Reuben Martin). 28 Dec 2014; Aaron W. Swenson pg_top-3.6.2-r1.ebuild, pg_top-3.7.0.ebuild:
[gentoo-commits] gentoo-x86 commit in dev-util/eggy: eggy-0.3.3-r1.ebuild ChangeLog eggy-0.3.3.ebuild
idella4 15/01/11 11:39:23 Modified: ChangeLog Added:eggy-0.3.3-r1.ebuild Removed: eggy-0.3.3.ebuild Log: revbump; conversion -> distutils-r1, rm old (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D) Revision ChangesPath 1.4 dev-util/eggy/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/eggy/ChangeLog?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/eggy/ChangeLog?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/eggy/ChangeLog?r1=1.3&r2=1.4 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-util/eggy/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeLog 30 May 2014 21:36:14 - 1.3 +++ ChangeLog 11 Jan 2015 11:39:23 - 1.4 @@ -1,6 +1,12 @@ # ChangeLog for dev-util/eggy -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/eggy/ChangeLog,v 1.3 2014/05/30 21:36:14 pesa Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/eggy/ChangeLog,v 1.4 2015/01/11 11:39:23 idella4 Exp $ + +*eggy-0.3.3-r1 (11 Jan 2015) + + 11 Jan 2015; Ian Delaney +eggy-0.3.3-r1.ebuild, + -eggy-0.3.3.ebuild: + revbump; conversion -> distutils-r1, rm old 30 May 2014; Davide Pesavento metadata.xml: Drop to maintainer-needed. 1.1 dev-util/eggy/eggy-0.3.3-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/eggy/eggy-0.3.3-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/eggy/eggy-0.3.3-r1.ebuild?rev=1.1&content-type=text/plain Index: eggy-0.3.3-r1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/eggy/eggy-0.3.3-r1.ebuild,v 1.1 2015/01/11 11:39:23 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 DESCRIPTION="An IDE/editor for several programming languages, including Python, Java, C, Perl and others" HOMEPAGE="http://eggy.yolky.org/eggy/default/about"; SRC_URI="http://eggy.googlecode.com/files/${P}.tar.bz2"; LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="dev-python/PyQt4[X,${PYTHON_USEDEP}] dev-python/qscintilla-python[${PYTHON_USEDEP}] dev-python/chardet[${PYTHON_USEDEP}]" RDEPEND="${DEPEND}" python_prepare_all() { # remove the bundled chardet library sed -i "s:'eggy\\.chardet', ::" setup.py || die rm -rf ${P}/${PN}/chardet || die distutils-r1_python_prepare_all }
[gentoo-commits] gentoo-x86 commit in net-analyzer/bwping: bwping-1.7-r1.ebuild ChangeLog
hwoarang15/01/11 11:42:41 Modified: bwping-1.7-r1.ebuild ChangeLog Log: Revert latest commit for bug #530420. We shouldn't care if we can't support the ipv6 case. We only need know whether we can build the support for it. So replace RUN with LINK. This may also fix bug #536184 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 09BF4F54C2BA7F3C!) Revision ChangesPath 1.5 net-analyzer/bwping/bwping-1.7-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/bwping-1.7-r1.ebuild?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/bwping-1.7-r1.ebuild?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/bwping-1.7-r1.ebuild?r1=1.4&r2=1.5 Index: bwping-1.7-r1.ebuild === RCS file: /var/cvsroot/gentoo-x86/net-analyzer/bwping/bwping-1.7-r1.ebuild,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- bwping-1.7-r1.ebuild20 Dec 2014 12:50:37 - 1.4 +++ bwping-1.7-r1.ebuild11 Jan 2015 11:42:41 - 1.5 @@ -1,11 +1,11 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bwping/bwping-1.7-r1.ebuild,v 1.4 2014/12/20 12:50:37 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bwping/bwping-1.7-r1.ebuild,v 1.5 2015/01/11 11:42:41 hwoarang Exp $ EAPI=5 AUTOTOOLS_AUTORECONF=1 -inherit autotools-utils linux-info +inherit autotools-utils DESCRIPTION="A tool to measure bandwidth and RTT between two hosts using ICMP" HOMEPAGE="http://bwping.sourceforge.net/"; @@ -16,17 +16,9 @@ KEYWORDS="amd64 ~sparc x86 ~x86-fbsd" IUSE="ipv6" -PATCHES=( -"${FILESDIR}/${P}-buildsystem-configurable-ipv6.patch" # bug 454256 -) - -CONFIG_CHECK="IPV6" - -pkg_setup() { - if use ipv6; then - linux-info_pkg_setup - fi -} +#PATCHES=( +# "${FILESDIR}/${P}-buildsystem-configurable-ipv6.patch" # bug 454256 +#) src_configure() { local myeconfargs=( 1.20 net-analyzer/bwping/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/ChangeLog?rev=1.20&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/ChangeLog?rev=1.20&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/ChangeLog?r1=1.19&r2=1.20 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-analyzer/bwping/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- ChangeLog 20 Dec 2014 12:51:26 - 1.19 +++ ChangeLog 11 Jan 2015 11:42:41 - 1.20 @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/bwping -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bwping/ChangeLog,v 1.19 2014/12/20 12:51:26 hwoarang Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bwping/ChangeLog,v 1.20 2015/01/11 11:42:41 hwoarang Exp $ + + 11 Jan 2015; Markos Chandras bwping-1.7-r1.ebuild, + files/bwping-1.7-buildsystem-configurable-ipv6.patch: + Revert latest commit for bug #530420. We shouldn't care if we can't support + the ipv6 case. We only need know whether we can build the support for it. So + replace RUN with LINK. This may also fix bug #536184 20 Dec 2014; Markos Chandras bwping-1.7-r1.ebuild: Make sure IPV6 is enabled in the kernel if the ipv6 useflag is set. Bug
[gentoo-commits] gentoo-x86 commit in net-analyzer/bwping/files: bwping-1.7-buildsystem-configurable-ipv6.patch
hwoarang15/01/11 11:42:41 Modified: bwping-1.7-buildsystem-configurable-ipv6.patch Log: Revert latest commit for bug #530420. We shouldn't care if we can't support the ipv6 case. We only need know whether we can build the support for it. So replace RUN with LINK. This may also fix bug #536184 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 09BF4F54C2BA7F3C!) Revision ChangesPath 1.3 net-analyzer/bwping/files/bwping-1.7-buildsystem-configurable-ipv6.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/files/bwping-1.7-buildsystem-configurable-ipv6.patch?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/files/bwping-1.7-buildsystem-configurable-ipv6.patch?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/files/bwping-1.7-buildsystem-configurable-ipv6.patch?r1=1.2&r2=1.3 Index: bwping-1.7-buildsystem-configurable-ipv6.patch === RCS file: /var/cvsroot/gentoo-x86/net-analyzer/bwping/files/bwping-1.7-buildsystem-configurable-ipv6.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- bwping-1.7-buildsystem-configurable-ipv6.patch 10 Jul 2014 19:53:23 - 1.2 +++ bwping-1.7-buildsystem-configurable-ipv6.patch 11 Jan 2015 11:42:41 - 1.3 @@ -1,11 +1,14 @@ a/configure.in -+++ b/configure.in -@@ -32,8 +32,29 @@ +Index: bwping-1.7/configure.in +=== +--- bwping-1.7.orig/configure.in bwping-1.7/configure.in +@@ -32,9 +32,30 @@ AC_CHECK_FUNC(getaddrinfo) if test $ac_cv_func_getaddrinfo = no; then AC_SEARCH_LIBS(getaddrinfo, [nsl socket], [], [ echo "getaddrinfo() is required for build"; exit -1 ]) fi -AC_MSG_CHECKING(for IPv6 support) -AC_CACHE_VAL(ac_cv_ipv6, +- AC_TRY_RUN([ + +AC_ARG_ENABLE(ipv6, + AC_HELP_STRING([--disable-ipv6],[disable IPv6 support]), @@ -29,10 +32,11 @@ +if test $ipv6 = yes; then + AC_MSG_CHECKING(for IPv6 support) + AC_CACHE_VAL(ac_cv_ipv6, - AC_TRY_RUN([ ++ AC_TRY_LINK([ #include #include -@@ -54,9 +75,12 @@ + #include +@@ -54,9 +75,12 @@ main() ac_cv_ipv6=yes, ac_cv_ipv6=no, ac_cv_ipv6=no))
[gentoo-commits] gentoo-x86 commit in media-gfx/simple-scan: simple-scan-3.14.0.ebuild ChangeLog
eva 15/01/11 11:47:36 Modified: ChangeLog Added:simple-scan-3.14.0.ebuild Log: Version bump. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.48 media-gfx/simple-scan/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/simple-scan/ChangeLog?rev=1.48&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/simple-scan/ChangeLog?rev=1.48&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/simple-scan/ChangeLog?r1=1.47&r2=1.48 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-gfx/simple-scan/ChangeLog,v retrieving revision 1.47 retrieving revision 1.48 diff -u -r1.47 -r1.48 --- ChangeLog 19 Dec 2014 13:39:44 - 1.47 +++ ChangeLog 11 Jan 2015 11:47:36 - 1.48 @@ -1,6 +1,12 @@ # ChangeLog for media-gfx/simple-scan -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/simple-scan/ChangeLog,v 1.47 2014/12/19 13:39:44 pacho Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/simple-scan/ChangeLog,v 1.48 2015/01/11 11:47:36 eva Exp $ + +*simple-scan-3.14.0 (11 Jan 2015) + + 11 Jan 2015; Gilles Dartiguelongue + +simple-scan-3.14.0.ebuild: + Version bump. 19 Dec 2014; Pacho Ramos simple-scan-3.12.2.ebuild: amd64 stable, bug 529964 1.1 media-gfx/simple-scan/simple-scan-3.14.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/simple-scan/simple-scan-3.14.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/simple-scan/simple-scan-3.14.0.ebuild?rev=1.1&content-type=text/plain Index: simple-scan-3.14.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-gfx/simple-scan/simple-scan-3.14.0.ebuild,v 1.1 2015/01/11 11:47:36 eva Exp $ EAPI="5" GCONF_DEBUG="no" inherit gnome2 versionator DESCRIPTION="Simple document scanning utility" HOMEPAGE="https://launchpad.net/simple-scan"; MY_PV=$(get_version_component_range 1-2) SRC_URI="http://launchpad.net/${PN}/${MY_PV}/${PV}/+download/${P}.tar.xz"; LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" IUSE="" COMMON_DEPEND=" >=dev-libs/glib-2.32:2 >=media-gfx/sane-backends-1.0.20:= >=sys-libs/zlib-1.2.3.1:= virtual/jpeg:0= virtual/libgudev:= x11-libs/cairo:= >=x11-libs/gtk+-3:3 || ( >=x11-misc/colord-0.1.24:=[udev] x11-misc/colord:=[scanner] ) " RDEPEND="${COMMON_DEPEND} x11-misc/xdg-utils x11-themes/gnome-icon-theme " DEPEND="${COMMON_DEPEND} app-text/yelp-tools >=dev-util/intltool-0.35.0 virtual/pkgconfig " src_configure() { DOCS="NEWS README.md" gnome2_src_configure \ VALAC=$(type -P true) \ ITSTOOL=$(type -P true) }
[gentoo-commits] gentoo-x86 commit in gnome-base/gnome-shell: ChangeLog gnome-shell-3.14.3.ebuild
eva 15/01/11 11:50:40 Modified: ChangeLog gnome-shell-3.14.3.ebuild Log: Raise dependency on gsettings-desktop-schemas per bug #536156. Drop unsupported python from PYTHON_COMPAT. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.85 gnome-base/gnome-shell/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/ChangeLog?rev=1.85&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/ChangeLog?rev=1.85&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/ChangeLog?r1=1.84&r2=1.85 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/gnome-base/gnome-shell/ChangeLog,v retrieving revision 1.84 retrieving revision 1.85 diff -u -r1.84 -r1.85 --- ChangeLog 23 Dec 2014 23:55:19 - 1.84 +++ ChangeLog 11 Jan 2015 11:50:40 - 1.85 @@ -1,6 +1,11 @@ # ChangeLog for gnome-base/gnome-shell -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-shell/ChangeLog,v 1.84 2014/12/23 23:55:19 eva Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-shell/ChangeLog,v 1.85 2015/01/11 11:50:40 eva Exp $ + + 11 Jan 2015; Gilles Dartiguelongue + gnome-shell-3.14.3.ebuild: + Raise dependency on gsettings-desktop-schemas per bug #536156. Drop + unsupported python from PYTHON_COMPAT. *gnome-shell-3.14.3 (23 Dec 2014) 1.2 gnome-base/gnome-shell/gnome-shell-3.14.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/gnome-shell-3.14.3.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/gnome-shell-3.14.3.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/gnome-shell-3.14.3.ebuild?r1=1.1&r2=1.2 Index: gnome-shell-3.14.3.ebuild === RCS file: /var/cvsroot/gentoo-x86/gnome-base/gnome-shell/gnome-shell-3.14.3.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- gnome-shell-3.14.3.ebuild 23 Dec 2014 23:55:19 - 1.1 +++ gnome-shell-3.14.3.ebuild 11 Jan 2015 11:50:40 - 1.2 @@ -1,11 +1,11 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-shell/gnome-shell-3.14.3.ebuild,v 1.1 2014/12/23 23:55:19 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-shell/gnome-shell-3.14.3.ebuild,v 1.2 2015/01/11 11:50:40 eva Exp $ EAPI="5" GCONF_DEBUG="no" GNOME2_LA_PUNT="yes" -PYTHON_COMPAT=( python2_{6,7} ) +PYTHON_COMPAT=( python2_7 ) inherit autotools eutils gnome2 multilib pax-utils python-r1 systemd @@ -33,7 +33,7 @@ >=dev-libs/json-glib-0.13.2 >=dev-libs/libcroco-0.6.8:0.6 >=gnome-base/gnome-desktop-3.7.90:3=[introspection] - >=gnome-base/gsettings-desktop-schemas-3.12 + >=gnome-base/gsettings-desktop-schemas-3.14 >=gnome-base/gnome-keyring-3.3.90 gnome-base/libgnome-keyring >=gnome-extra/evolution-data-server-3.5.3:=
[gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python/files: openbabel-python-2.3.0-system_openbabel.patch openbabel-python-2.3.0-wrap_OBInternalCoord.patch openbabel-python-2.3.1-syste
jer 15/01/11 11:54:19 Removed: openbabel-python-2.3.0-system_openbabel.patch openbabel-python-2.3.0-wrap_OBInternalCoord.patch openbabel-python-2.3.1-system_openbabel.patch openbabel-python-2.3.0-py3_iterator.patch openbabel-python-2.3.0-swig.patch Log: Old. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613)
[gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: ChangeLog
jer 15/01/11 11:54:19 Modified: ChangeLog Log: Old. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.19 sci-chemistry/openbabel-python/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.19&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.19&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.18&r2=1.19 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- ChangeLog 4 Jan 2015 13:44:02 - 1.18 +++ ChangeLog 11 Jan 2015 11:54:19 - 1.19 @@ -1,6 +1,14 @@ # ChangeLog for sci-chemistry/openbabel-python # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.18 2015/01/04 13:44:02 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.19 2015/01/11 11:54:19 jer Exp $ + + 11 Jan 2015; Jeroen Roovers + -files/openbabel-python-2.3.0-py3_iterator.patch, + -files/openbabel-python-2.3.0-swig.patch, + -files/openbabel-python-2.3.0-system_openbabel.patch, + -files/openbabel-python-2.3.0-wrap_OBInternalCoord.patch, + -files/openbabel-python-2.3.1-system_openbabel.patch: + Old. 04 Jan 2015; Justin Lecher -openbabel-python-2.3.0.ebuild, -openbabel-python-2.3.1.ebuild, openbabel-python-2.3.2.ebuild:
[gentoo-commits] gentoo-x86 commit in x11-misc/lightdm: lightdm-1.13.0.ebuild ChangeLog
hwoarang15/01/11 11:54:54 Modified: lightdm-1.13.0.ebuild ChangeLog Log: Amend fix from bug #524792 to lightdm-greeter as well (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 09BF4F54C2BA7F3C!) Revision ChangesPath 1.3 x11-misc/lightdm/lightdm-1.13.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lightdm/lightdm-1.13.0.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lightdm/lightdm-1.13.0.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lightdm/lightdm-1.13.0.ebuild?r1=1.2&r2=1.3 Index: lightdm-1.13.0.ebuild === RCS file: /var/cvsroot/gentoo-x86/x11-misc/lightdm/lightdm-1.13.0.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- lightdm-1.13.0.ebuild 22 Dec 2014 10:21:55 - 1.2 +++ lightdm-1.13.0.ebuild 11 Jan 2015 11:54:54 - 1.3 @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/lightdm/lightdm-1.13.0.ebuild,v 1.2 2014/12/22 10:21:55 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/lightdm/lightdm-1.13.0.ebuild,v 1.3 2015/01/11 11:54:54 hwoarang Exp $ EAPI=5 inherit autotools eutils pam readme.gentoo systemd versionator @@ -111,8 +111,9 @@ rm -rf "${ED}"/etc/init # Remove existing pam file. We will build a new one. Bug #524792 - rm -rf "${ED}/etc/pam.d/${PN}" + rm -rf "${ED}"/etc/pam.d/${PN}{,-greeter} pamd_mimic system-local-login ${PN} auth account password session #372229 + pamd_mimic system-local-login ${PN}-greeter auth account password session #372229 dopamd "${FILESDIR}"/${PN}-autologin #390863, #423163 readme.gentoo_create_doc 1.103x11-misc/lightdm/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lightdm/ChangeLog?rev=1.103&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lightdm/ChangeLog?rev=1.103&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/lightdm/ChangeLog?r1=1.102&r2=1.103 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/x11-misc/lightdm/ChangeLog,v retrieving revision 1.102 retrieving revision 1.103 diff -u -r1.102 -r1.103 --- ChangeLog 22 Dec 2014 10:21:55 - 1.102 +++ ChangeLog 11 Jan 2015 11:54:54 - 1.103 @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/lightdm -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/lightdm/ChangeLog,v 1.102 2014/12/22 10:21:55 hwoarang Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/lightdm/ChangeLog,v 1.103 2015/01/11 11:54:54 hwoarang Exp $ + + 11 Jan 2015; Markos Chandras lightdm-1.13.0.ebuild: + Amend fix from bug #524792 to lightdm-greeter as well 22 Dec 2014; Markos Chandras lightdm-1.13.0.ebuild: Completely inherit our system-local-login configuration. Bug #524792 by
[gentoo-commits] gentoo-x86 commit in x11-libs/motif: motif-2.3.4-r3.ebuild ChangeLog
ulm 15/01/11 12:01:30 Modified: motif-2.3.4-r3.ebuild ChangeLog Log: Fix failure in cleanup, /usr/share/Xm is only created with USE=examples. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!) Revision ChangesPath 1.2 x11-libs/motif/motif-2.3.4-r3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/motif/motif-2.3.4-r3.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/motif/motif-2.3.4-r3.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/motif/motif-2.3.4-r3.ebuild?r1=1.1&r2=1.2 Index: motif-2.3.4-r3.ebuild === RCS file: /var/cvsroot/gentoo-x86/x11-libs/motif/motif-2.3.4-r3.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- motif-2.3.4-r3.ebuild 10 Jan 2015 20:13:35 - 1.1 +++ motif-2.3.4-r3.ebuild 11 Jan 2015 12:01:30 - 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/motif/motif-2.3.4-r3.ebuild,v 1.1 2015/01/10 20:13:35 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/motif/motif-2.3.4-r3.ebuild,v 1.2 2015/01/11 12:01:30 ulm Exp $ EAPI=5 @@ -108,7 +108,7 @@ newins "${FILESDIR}"/Mwm.defaults Mwm # cleanup - rmdir "${ED}"/usr/share/Xm || die + rm -rf "${ED}"/usr/share/Xm prune_libtool_files dodoc BUGREPORT ChangeLog README RELEASE RELNOTES TODO 1.57 x11-libs/motif/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/motif/ChangeLog?rev=1.57&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/motif/ChangeLog?rev=1.57&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/motif/ChangeLog?r1=1.56&r2=1.57 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/x11-libs/motif/ChangeLog,v retrieving revision 1.56 retrieving revision 1.57 diff -u -r1.56 -r1.57 --- ChangeLog 10 Jan 2015 20:13:35 - 1.56 +++ ChangeLog 11 Jan 2015 12:01:30 - 1.57 @@ -1,6 +1,9 @@ # ChangeLog for x11-libs/motif # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/motif/ChangeLog,v 1.56 2015/01/10 20:13:35 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/motif/ChangeLog,v 1.57 2015/01/11 12:01:30 ulm Exp $ + + 11 Jan 2015; Ulrich Müller motif-2.3.4-r3.ebuild: + Fix failure in cleanup, /usr/share/Xm is only created with USE=examples. *motif-2.3.4-r3 (10 Jan 2015)
[gentoo-commits] gentoo-x86 commit in net-libs/glib-networking: glib-networking-2.42.1.ebuild ChangeLog
eva 15/01/11 12:11:08 Modified: glib-networking-2.42.1.ebuild ChangeLog Log: Raise dependency on gnutls to >=3, bug #535702. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.2 net-libs/glib-networking/glib-networking-2.42.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/glib-networking/glib-networking-2.42.1.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/glib-networking/glib-networking-2.42.1.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/glib-networking/glib-networking-2.42.1.ebuild?r1=1.1&r2=1.2 Index: glib-networking-2.42.1.ebuild === RCS file: /var/cvsroot/gentoo-x86/net-libs/glib-networking/glib-networking-2.42.1.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- glib-networking-2.42.1.ebuild 23 Dec 2014 22:57:32 - 1.1 +++ glib-networking-2.42.1.ebuild 11 Jan 2015 12:11:08 - 1.2 @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/glib-networking/glib-networking-2.42.1.ebuild,v 1.1 2014/12/23 22:57:32 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/glib-networking/glib-networking-2.42.1.ebuild,v 1.2 2015/01/11 12:11:08 eva Exp $ EAPI="5" GCONF_DEBUG="no" @@ -22,10 +22,10 @@ libproxy? ( >=net-libs/libproxy-0.4.11-r1:=[${MULTILIB_USEDEP}] ) smartcard? ( >=app-crypt/p11-kit-0.18.4[${MULTILIB_USEDEP}] - >=net-libs/gnutls-2.12.23-r6:=[pkcs11,${MULTILIB_USEDEP}] ) + >=net-libs/gnutls-3:=[pkcs11,${MULTILIB_USEDEP}] ) ssl? ( app-misc/ca-certificates - >=net-libs/gnutls-2.12.23-r6:=[${MULTILIB_USEDEP}] ) + >=net-libs/gnutls-3:=[${MULTILIB_USEDEP}] ) " DEPEND="${RDEPEND} >=dev-util/intltool-0.35.0 1.96 net-libs/glib-networking/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/glib-networking/ChangeLog?rev=1.96&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/glib-networking/ChangeLog?rev=1.96&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/glib-networking/ChangeLog?r1=1.95&r2=1.96 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-libs/glib-networking/ChangeLog,v retrieving revision 1.95 retrieving revision 1.96 diff -u -r1.95 -r1.96 --- ChangeLog 23 Dec 2014 22:57:32 - 1.95 +++ ChangeLog 11 Jan 2015 12:11:08 - 1.96 @@ -1,6 +1,10 @@ # ChangeLog for net-libs/glib-networking -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/glib-networking/ChangeLog,v 1.95 2014/12/23 22:57:32 eva Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/glib-networking/ChangeLog,v 1.96 2015/01/11 12:11:08 eva Exp $ + + 11 Jan 2015; Gilles Dartiguelongue + glib-networking-2.42.1.ebuild: + Raise dependency on gnutls to >=3, bug #535702. *glib-networking-2.42.1 (23 Dec 2014)
[gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-desktop/
commit: 9976d4f752409f82c12527bf94d58d436601592e Author: Johannes Huber gentoo org> AuthorDate: Sun Jan 11 12:15:05 2015 + Commit: Johannes Huber gentoo org> CommitDate: Sun Jan 11 12:15:05 2015 + URL:http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=9976d4f7 [kde-plasma/plasma-desktop] Drop unreeleased RDEPEND Package-Manager: portage-2.2.15 --- kde-plasma/plasma-desktop/plasma-desktop-5.1..ebuild | 3 +-- kde-plasma/plasma-desktop/plasma-desktop-.ebuild | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/kde-plasma/plasma-desktop/plasma-desktop-5.1..ebuild b/kde-plasma/plasma-desktop/plasma-desktop-5.1..ebuild index 77e89f1..88160ee 100644 --- a/kde-plasma/plasma-desktop/plasma-desktop-5.1..ebuild +++ b/kde-plasma/plasma-desktop/plasma-desktop-5.1..ebuild @@ -9,7 +9,7 @@ inherit kde5 DESCRIPTION="KDE Plasma desktop" KEYWORDS="" -IUSE="bluetooth +fontconfig networkmanager pulseaudio usb" +IUSE="+fontconfig networkmanager pulseaudio usb" COMMON_DEPEND=" $(add_kdeplasma_dep breeze) @@ -68,7 +68,6 @@ COMMON_DEPEND=" x11-libs/libXi x11-libs/libxkbfile x11-libs/libXtst - bluetooth? ( $(add_kdeplasma_dep bluedevil) ) fontconfig? ( media-libs/fontconfig media-libs/freetype diff --git a/kde-plasma/plasma-desktop/plasma-desktop-.ebuild b/kde-plasma/plasma-desktop/plasma-desktop-.ebuild index 77e89f1..88160ee 100644 --- a/kde-plasma/plasma-desktop/plasma-desktop-.ebuild +++ b/kde-plasma/plasma-desktop/plasma-desktop-.ebuild @@ -9,7 +9,7 @@ inherit kde5 DESCRIPTION="KDE Plasma desktop" KEYWORDS="" -IUSE="bluetooth +fontconfig networkmanager pulseaudio usb" +IUSE="+fontconfig networkmanager pulseaudio usb" COMMON_DEPEND=" $(add_kdeplasma_dep breeze) @@ -68,7 +68,6 @@ COMMON_DEPEND=" x11-libs/libXi x11-libs/libxkbfile x11-libs/libXtst - bluetooth? ( $(add_kdeplasma_dep bluedevil) ) fontconfig? ( media-libs/fontconfig media-libs/freetype
[gentoo-commits] gentoo-x86 commit in dev-util/meld: ChangeLog meld-3.12.3.ebuild
eva 15/01/11 12:24:45 Modified: ChangeLog Added:meld-3.12.3.ebuild Log: Version bump. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.192dev-util/meld/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/ChangeLog?rev=1.192&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/ChangeLog?rev=1.192&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/ChangeLog?r1=1.191&r2=1.192 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-util/meld/ChangeLog,v retrieving revision 1.191 retrieving revision 1.192 diff -u -r1.191 -r1.192 --- ChangeLog 19 Dec 2014 13:36:58 - 1.191 +++ ChangeLog 11 Jan 2015 12:24:45 - 1.192 @@ -1,6 +1,11 @@ # ChangeLog for dev-util/meld -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/meld/ChangeLog,v 1.191 2014/12/19 13:36:58 pacho Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/meld/ChangeLog,v 1.192 2015/01/11 12:24:45 eva Exp $ + +*meld-3.12.3 (11 Jan 2015) + + 11 Jan 2015; Gilles Dartiguelongue +meld-3.12.3.ebuild: + Version bump. 19 Dec 2014; Pacho Ramos meld-3.12.2.ebuild: amd64 stable, bug 529964 1.1 dev-util/meld/meld-3.12.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/meld-3.12.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/meld/meld-3.12.3.ebuild?rev=1.1&content-type=text/plain Index: meld-3.12.3.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/meld/meld-3.12.3.ebuild,v 1.1 2015/01/11 12:24:45 eva Exp $ EAPI="5" GCONF_DEBUG="no" PYTHON_REQ_USE="xml" PYTHON_COMPAT=( python2_7 ) DISTUTILS_SINGLE_IMPL=1 inherit gnome2 distutils-r1 DESCRIPTION="A graphical diff and merge tool" HOMEPAGE="http://meldmerge.org/"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="" RDEPEND=" ${PYTHON_DEPS} >=dev-libs/glib-2.34:2 dev-python/dbus-python[${PYTHON_USEDEP}] >=dev-python/pygobject-3.8:3[cairo,${PYTHON_USEDEP}] gnome-base/gsettings-desktop-schemas >=x11-libs/gtk+-3.6:3[introspection] >=x11-libs/gtksourceview-3.6:3.0[introspection] x11-themes/hicolor-icon-theme " DEPEND="${RDEPEND} dev-util/intltool dev-util/itstool sys-devel/gettext " python_compile_all() { mydistutilsargs=( --no-update-icon-cache --no-compile-schemas ) }
[gentoo-commits] gentoo-x86 commit in net-misc/youtube-dl: ChangeLog youtube-dl-2015.01.10.2.ebuild youtube-dl-2015.01.04-r1.ebuild
jer 15/01/11 12:39:13 Modified: ChangeLog Added:youtube-dl-2015.01.10.2.ebuild Removed: youtube-dl-2015.01.04-r1.ebuild Log: Version bump. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.443net-misc/youtube-dl/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?rev=1.443&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?rev=1.443&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/ChangeLog?r1=1.442&r2=1.443 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v retrieving revision 1.442 retrieving revision 1.443 diff -u -r1.442 -r1.443 --- ChangeLog 9 Jan 2015 17:12:28 - 1.442 +++ ChangeLog 11 Jan 2015 12:39:13 - 1.443 @@ -1,6 +1,12 @@ # ChangeLog for net-misc/youtube-dl # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.442 2015/01/09 17:12:28 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/ChangeLog,v 1.443 2015/01/11 12:39:13 jer Exp $ + +*youtube-dl-2015.01.10.2 (11 Jan 2015) + + 11 Jan 2015; Jeroen Roovers + -youtube-dl-2015.01.04-r1.ebuild, +youtube-dl-2015.01.10.2.ebuild: + Version bump. *youtube-dl-2015.01.08 (09 Jan 2015) 1.1 net-misc/youtube-dl/youtube-dl-2015.01.10.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/youtube-dl-2015.01.10.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/youtube-dl/youtube-dl-2015.01.10.2.ebuild?rev=1.1&content-type=text/plain Index: youtube-dl-2015.01.10.2.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/youtube-dl-2015.01.10.2.ebuild,v 1.1 2015/01/11 12:39:13 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=( alphaporno anysex behindkink drtuber empflix eporner eroprofile extremetube fourtube foxgay goshgay hellporno hentaistigma hornbunny mofosex motherless pornhd pornhub pornotube pornoxo redtube sexykarma sexu sunporno slutload spankwire thisav tnaflix trutube tube8 vporn xbef xhamster xnxx xtube xvideos xxxymovies 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] gentoo-x86 commit in media-video/subtitleeditor: subtitleeditor-0.41.1-r1.ebuild ChangeLog subtitleeditor-0.41.0-r1.ebuild
eva 15/01/11 12:44:58 Modified: ChangeLog Added:subtitleeditor-0.41.1-r1.ebuild Removed: subtitleeditor-0.41.0-r1.ebuild Log: Fix subtitle editing, bug #536246. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.32 media-video/subtitleeditor/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/ChangeLog?rev=1.32&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/ChangeLog?rev=1.32&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/ChangeLog?r1=1.31&r2=1.32 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/ChangeLog,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- ChangeLog 30 Nov 2014 23:06:18 - 1.31 +++ ChangeLog 11 Jan 2015 12:44:58 - 1.32 @@ -1,6 +1,14 @@ # ChangeLog for media-video/subtitleeditor -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/ChangeLog,v 1.31 2014/11/30 23:06:18 eva Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/ChangeLog,v 1.32 2015/01/11 12:44:58 eva Exp $ + +*subtitleeditor-0.41.1-r1 (11 Jan 2015) + + 11 Jan 2015; Gilles Dartiguelongue + -subtitleeditor-0.41.0-r1.ebuild, +subtitleeditor-0.41.1-r1.ebuild, + -files/subtitleeditor-0.40.0-glib-2.31.patch, + +files/subtitleeditor-0.41.0-subtitle-edition.patch: + Fix subtitle editing, bug #536246. 30 Nov 2014; Gilles Dartiguelongue subtitleeditor-0.41.0-r1.ebuild, subtitleeditor-0.41.1.ebuild: 1.1 media-video/subtitleeditor/subtitleeditor-0.41.1-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.41.1-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.41.1-r1.ebuild?rev=1.1&content-type=text/plain Index: subtitleeditor-0.41.1-r1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-video/subtitleeditor/subtitleeditor-0.41.1-r1.ebuild,v 1.1 2015/01/11 12:44:58 eva Exp $ EAPI=5 GCONF_DEBUG="no" GNOME2_LA_PUNT="yes" inherit gnome2 versionator flag-o-matic DESCRIPTION="GTK+2 subtitle editing tool" HOMEPAGE="http://home.gna.org/subtitleeditor/"; SRC_URI="http://download.gna.org/${PN}/$(get_version_component_range 1-2)/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="debug nls opengl" RDEPEND=" app-text/iso-codes >=dev-cpp/gtkmm-2.14:2.4 >=dev-cpp/glibmm-2.16.3:2 >=dev-cpp/libxmlpp-2.20:2.6 >=app-text/enchant-1.4 >=dev-cpp/gstreamermm-0.10.6:0.10 >=media-libs/gst-plugins-good-0.10:0.10 >=media-plugins/gst-plugins-meta-0.10-r2:0.10 >=media-plugins/gst-plugins-pango-0.10:0.10 >=media-plugins/gst-plugins-xvideo-0.10:0.10 opengl? ( >=dev-cpp/gtkglextmm-1.2 ) " # gst-plugins-pango needed for text overlay # gst-plugins-xvideo needed for video output DEPEND="${RDEPEND} >=dev-util/intltool-0.40 virtual/pkgconfig " src_prepare() { # Get textoverlay working with gstreamermm 0.10.11 epatch "${FILESDIR}"/${PN}-0.41.0-textoverlay.patch # Prevent crash when generating keyframes with gstreamermm 0.10.11 epatch "${FILESDIR}"/${PN}-0.41.0-keyframe-generation.patch # Fix typing/editing subtitle, bug #536246 epatch "${FILESDIR}"/${PN}-0.41.0-subtitle-edition.patch gnome2_src_prepare } src_configure() { export GST_REGISTRY="${T}/home/registry.cache.xml" # Avoid using --enable-debug as it mocks with CXXFLAGS and LDFLAGS use debug && append-flags -DDEBUG gnome2_src_configure \ --disable-debug \ $(use_enable nls) \ $(use_enable opengl gl) }
[gentoo-commits] gentoo-x86 commit in media-video/subtitleeditor/files: subtitleeditor-0.41.0-subtitle-edition.patch subtitleeditor-0.40.0-glib-2.31.patch
eva 15/01/11 12:44:58 Added:subtitleeditor-0.41.0-subtitle-edition.patch Removed: subtitleeditor-0.40.0-glib-2.31.patch Log: Fix subtitle editing, bug #536246. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.1 media-video/subtitleeditor/files/subtitleeditor-0.41.0-subtitle-edition.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/files/subtitleeditor-0.41.0-subtitle-edition.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/subtitleeditor/files/subtitleeditor-0.41.0-subtitle-edition.patch?rev=1.1&content-type=text/plain Index: subtitleeditor-0.41.0-subtitle-edition.patch === Author: Philip Rinn Description: With glib >= 2.42.0 you need to add interfaces before class_init --- a/src/gui/textviewcell.cc +++ b/src/gui/textviewcell.cc @@ -30,8 +30,8 @@ * Initialize the widget with the AutomaticSpellChecker. */ TextViewCell::TextViewCell() +: Gtk::CellEditable(), + Glib::ObjectBase(typeid(TextViewCell)), -: Glib::ObjectBase(typeid(TextViewCell)), - Gtk::CellEditable(), m_editing_canceled(false), m_used_ctrl_enter_to_confirm_change(false) { --- a/src/gui/textviewcell.h +++ b/src/gui/textviewcell.h @@ -29,7 +29,7 @@ /* * Cell text editable with multiline support. */ -class TextViewCell : public Gtk::TextView, public Gtk::CellEditable +class TextViewCell : public Gtk::CellEditable, public Gtk::TextView { public:
[gentoo-commits] gentoo-x86 commit in net-analyzer/cutter/files: cutter-1.03-debian.patch
jer 15/01/11 12:48:18 Modified: cutter-1.03-debian.patch Log: Version bump. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.2 net-analyzer/cutter/files/cutter-1.03-debian.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cutter/files/cutter-1.03-debian.patch?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cutter/files/cutter-1.03-debian.patch?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cutter/files/cutter-1.03-debian.patch?r1=1.1&r2=1.2 Index: cutter-1.03-debian.patch === RCS file: /var/cvsroot/gentoo-x86/net-analyzer/cutter/files/cutter-1.03-debian.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- cutter-1.03-debian.patch15 Feb 2007 22:37:02 - 1.1 +++ cutter-1.03-debian.patch11 Jan 2015 12:48:18 - 1.2 @@ -1,5 +1,5 @@ cutter-1.03.orig/Makefile -+++ cutter-1.03/Makefile +--- a/Makefile b/Makefile @@ -1,5 +1,5 @@ cutter: cutter.c - cc cutter.c -o cutter @@ -7,8 +7,8 @@ clean: rm -f cutter.o cutter cutter-1.03.orig/cutter.c -+++ cutter-1.03/cutter.c +--- a/cutter.c b/cutter.c @@ -57,6 +57,7 @@ #include #include @@ -53,149 +53,8 @@ in_addr_t src1n, src2n, dst1n, dst2n; char buff[1024], *p; int found = 0; cutter-1.03.orig/debian/compat -+++ cutter-1.03/debian/compat -@@ -0,0 +1 @@ -+4 cutter-1.03.orig/debian/dirs -+++ cutter-1.03/debian/dirs -@@ -0,0 +1 @@ -+usr/sbin cutter-1.03.orig/debian/rules -+++ cutter-1.03/debian/rules -@@ -0,0 +1,79 @@ -+#!/usr/bin/make -f -+# Sample debian/rules that uses debhelper. -+# GNU copyright 1997 to 1999 by Joey Hess. -+ -+# Uncomment this to turn on verbose mode. -+#export DH_VERBOSE=1 -+ -+CFLAGS = -Wall -g -+ -+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) -+ CFLAGS += -O0 -+else -+ CFLAGS += -O2 -+endif -+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) -+ INSTALL_PROGRAM += -s -+endif -+ -+configure: configure-stamp -+configure-stamp: -+ dh_testdir -+ # Add here commands to configure the package. -+ -+ touch configure-stamp -+ -+ -+build: build-stamp -+ -+build-stamp: configure-stamp -+ dh_testdir -+ -+ # Add here commands to compile the package. -+ $(MAKE) CFLAGS="$(CFLAGS)" -+ -+ touch build-stamp -+ -+clean: -+ dh_testdir -+ dh_testroot -+ rm -f build-stamp configure-stamp -+ -+ # Add here commands to clean up after the build process. -+ -$(MAKE) clean -+ -+ dh_clean -+ -+install: build -+ dh_testdir -+ dh_testroot -+ dh_clean -k -+ dh_installdirs -+ -+ dh_install cutter usr/sbin -+ -+ -+# Build architecture-independent files here. -+binary-indep: build install -+# We have nothing to do by default. -+ -+# Build architecture-dependent files here. -+binary-arch: build install -+ dh_testdir -+ dh_testroot -+ dh_installchangelogs -+ dh_installdocs -+ dh_installexamples -+ dh_installman debian/cutter.8 -+ dh_link -+ dh_strip -+ dh_compress -+ dh_fixperms -+ dh_installdeb -+ dh_shlibdeps -+ dh_gencontrol -+ dh_md5sums -+ dh_builddeb -+ -+binary: binary-indep binary-arch -+.PHONY: build clean binary-indep binary-arch binary install configure cutter-1.03.orig/debian/docs -+++ cutter-1.03/debian/docs -@@ -0,0 +1 @@ -+README cutter-1.03.orig/debian/control -+++ cutter-1.03/debian/control -@@ -0,0 +1,14 @@ -+Source: cutter -+Section: net -+Priority: optional -+Maintainer: Aurélien GÉRÔME -+Build-Depends: debhelper (>= 4.0.0) -+Standards-Version: 3.7.2 -+ -+Package: cutter -+Architecture: any -+Depends: ${shlibs:Depends} -+Description: disconnect routed IP connections -+ Cutter will send packets to both ends of a TCP/IP connection to close -+ the connection. It is designed to be used on a Linux router to disconnect -+ unwanted connections. cutter-1.03.orig/debian/copyright -+++ cutter-1.03/debian/copyright -@@ -0,0 +1,27 @@ -+This package was debianized by Blars Blarson on -+Sun, 26 Oct 2003 22:03:43 -0800. -+ -+It was downloaded from http://www.lowth.com/cutter/ -+ -+Copyright Holder: 2003-2005 Chris Lowth -+ -+License: -+ -+ GNU GENERAL PUBLIC LICENSE Version 2, June 1991 -+ -+ This package is free software; you can redistribute it and/or modify -+ it under the terms of the GNU General Public License as published by -+ the Free Software Foundation; version 2 dated June, 1991. -+ -+ This package is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ GNU General Public License for more
[gentoo-commits] gentoo-x86 commit in net-analyzer/cutter: metadata.xml ChangeLog cutter-1.04.ebuild
jer 15/01/11 12:48:18 Modified: metadata.xml ChangeLog Added:cutter-1.04.ebuild Log: Version bump. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision ChangesPath 1.2 net-analyzer/cutter/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cutter/metadata.xml?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cutter/metadata.xml?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cutter/metadata.xml?r1=1.1&r2=1.2 Index: metadata.xml === RCS file: /var/cvsroot/gentoo-x86/net-analyzer/cutter/metadata.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- metadata.xml9 Jul 2004 11:28:45 - 1.1 +++ metadata.xml11 Jan 2015 12:48:18 - 1.2 @@ -2,5 +2,4 @@ http://www.gentoo.org/dtd/metadata.dtd";> netmon -TCP/IP Connection cutting on Linux Firewalls and Routers 1.14 net-analyzer/cutter/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cutter/ChangeLog?rev=1.14&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cutter/ChangeLog?rev=1.14&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cutter/ChangeLog?r1=1.13&r2=1.14 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-analyzer/cutter/ChangeLog,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- ChangeLog 10 Jul 2014 22:21:46 - 1.13 +++ ChangeLog 11 Jan 2015 12:48:18 - 1.14 @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/cutter -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cutter/ChangeLog,v 1.13 2014/07/10 22:21:46 jer Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cutter/ChangeLog,v 1.14 2015/01/11 12:48:18 jer Exp $ + +*cutter-1.04 (11 Jan 2015) + + 11 Jan 2015; Jeroen Roovers +cutter-1.04.ebuild, + files/cutter-1.03-debian.patch, metadata.xml: + Version bump. 10 Jul 2014; Jeroen Roovers cutter-1.03-r1.ebuild: EAPI bump. Update HOMEPAGE/SRC_URI. 1.1 net-analyzer/cutter/cutter-1.04.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cutter/cutter-1.04.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/cutter/cutter-1.04.ebuild?rev=1.1&content-type=text/plain Index: cutter-1.04.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/cutter/cutter-1.04.ebuild,v 1.1 2015/01/11 12:48:18 jer Exp $ EAPI=5 inherit eutils toolchain-funcs DESCRIPTION="TCP/IP Connection cutting on Linux Firewalls and Routers" HOMEPAGE="http://www.digitage.co.uk/digitage/software/linux-security/cutter"; SRC_URI="http://www.digitage.co.uk/digitage/files/${PN}/${P}.tgz"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" src_prepare() { epatch "${FILESDIR}"/${PN}-1.03-debian.patch rm -f Makefile # implicit rules are better ;x } src_compile() { emake cutter CC="$(tc-getCC)" } src_install() { dosbin cutter dodoc README doman debian/cutter.8 }
[gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/
commit: c46072181666028d4c72fe307b5b8414cb716d92 Author: Vadim A. Misbakh-Soloviov mva name> AuthorDate: Sun Jan 11 12:57:40 2015 + Commit: Vadim A. Misbakh-Soloviov mva name> CommitDate: Sun Jan 11 12:57:40 2015 + URL: http://sources.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=c4607218 [games-util/steam-launcher] some improvements from bug531990#c25 Signed-off-by: Vadim A. Misbakh-Soloviov mva.name> --- .../steam-launcher-1.0.0.47-r1.ebuild | 114 - .../steam-launcher/steam-launcher-1.0.0.47.ebuild | 108 --- .../steam-launcher/steam-launcher-1.0.0.49.ebuild | 10 +- 3 files changed, 9 insertions(+), 223 deletions(-) diff --git a/games-util/steam-launcher/steam-launcher-1.0.0.47-r1.ebuild b/games-util/steam-launcher/steam-launcher-1.0.0.47-r1.ebuild deleted file mode 100644 index 809ea47..000 --- a/games-util/steam-launcher/steam-launcher-1.0.0.47-r1.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -# Please report bugs/suggestions on: https://github.com/anyc/steam-overlay -# or come to #gentoo-gamerlay in freenode IRC - -inherit eutils gnome2-utils fdo-mime games - -DESCRIPTION="Installer, launcher and supplementary files for Valve's Steam client" -HOMEPAGE="http://steampowered.com"; -SRC_URI="http://repo.steampowered.com/steam/archive/precise/steam_${PV}.tar.gz"; - -KEYWORDS="" -LICENSE="ValveSteamLicense" - -RESTRICT="bindist mirror" -SLOT="0" - -RDEPEND=" - app-arch/xz-utils - app-shells/bash - net-misc/curl - || ( - gnome-extra/zenity - x11-terms/xterm - ) - - amd64? ( - >=app-emulation/emul-linux-x86-baselibs-20121028 - || ( - >=app-emulation/emul-linux-x86-xlibs-20121028 - ( - x11-libs/libX11[abi_x86_32] - x11-libs/libXau[abi_x86_32] - x11-libs/libxcb[abi_x86_32] - x11-libs/libXdmcp[abi_x86_32] - ) - ) - >=sys-devel/gcc-4.6.0[multilib] - >=sys-libs/glibc-2.15[multilib] - ) - x86? ( - >=sys-devel/gcc-4.6.0 - >=sys-libs/glibc-2.15 - >=x11-libs/libX11-1.5 - x11-libs/libXau - x11-libs/libxcb - x11-libs/libXdmcp - )" - -S=${WORKDIR}/steam/ - -src_prepare() { - # we use our ebuild functions to install the files - rm Makefile - - sed -i \ - -e "s:/usr/bin/steam:${GAMES_BINDIR}/steam:" \ - ${S}/steam.desktop || die "sed failed" -} - -src_install() { - dogamesbin steam || die "dogamesbin failed" - - insinto /usr/lib/steam/ - doins bootstraplinux_ubuntu12_32.tar.xz - - dodoc debian/changelog steam_install_agreement.txt - doman steam.6 - - domenu steam.desktop - - cd icons/ - for s in * ; do - doicon -s ${s} ${s}/steam.png - done - - # tgz archive contains no separate pixmap, see #38 - insinto /usr/share/pixmaps/ - newins 48/steam.png steam_tray_mono.png - - prepgamesdirs -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - fdo-mime_desktop_database_update - gnome2_icon_cache_update - - elog "Execute ${GAMES_BINDIR}/steam to download and install the actual" - elog "client into your home folder. After installation, the script" - elog "also starts the client from your home folder." - elog "" - - if ! has_version "gnome-extra/zenity"; then - ewarn "Valve does not provide a xterm fallback for all calls of zenity." - ewarn "Please install gnome-extra/zenity for full support." - ewarn "" - fi - - ewarn "The steam client and the games are _not_ controlled by portage." - ewarn "Updates are handled by the client itself." -} - -pkg_postrm() { - fdo-mime_desktop_database_update - gnome2_icon_cache_update -} diff --git a/games-util/steam-launcher/steam-launcher-1.0.0.47.ebuild b/games-util/steam-launcher/steam-launcher-1.0.0.47.ebuild deleted file mode 100644 index 5e5487d..000 --- a/games-util/steam-launcher/steam-launcher-1.0.0.47.ebuild +++ /dev/null @@ -1,108 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -# Please report bugs/suggestions on: https://github.
[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog package.mask
chithanh15/01/11 13:29:28 Modified: ChangeLog package.mask Log: Unmask =xorg-server-1.14* and mask http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.9679&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.9679&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.9678&r2=1.9679 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v retrieving revision 1.9678 retrieving revision 1.9679 diff -u -r1.9678 -r1.9679 --- ChangeLog 10 Jan 2015 21:32:26 - 1.9678 +++ ChangeLog 11 Jan 2015 13:29:27 - 1.9679 @@ -1,11 +1,16 @@ # ChangeLog for profile directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9678 2015/01/10 21:32:26 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.9679 2015/01/11 13:29:27 chithanh Exp $ # # This ChangeLog should include records for all changes in profiles directory. # Only typo fixes which don't affect portage/repoman behaviour could be avoided # here. If in doubt put a record here! + 11 Jan 2015; Chí-Thanh Christopher Nguyễn + package.mask: + Unmask =xorg-server-1.14* and mask package.mask: Mask net-dialup/gtk-imonc for removal 1.16283 profiles/package.mask file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16283&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16283&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?r1=1.16282&r2=1.16283 Index: package.mask === RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v retrieving revision 1.16282 retrieving revision 1.16283 diff -u -r1.16282 -r1.16283 --- package.mask10 Jan 2015 21:32:26 - 1.16282 +++ package.mask11 Jan 2015 13:29:27 - 1.16283 @@ -1,5 +1,5 @@ -# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16282 2015/01/10 21:32:26 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16283 2015/01/11 13:29:27 chithanh Exp $ # # When you add an entry to the top of this file, add your name, the date, and # an explanation of why something is getting masked. Please be extremely @@ -43,11 +43,11 @@ =x11-base/xorg-server-1.10* =x11-base/xorg-server-1.11* =x11-base/xorg-server-1.13* -=x11-base/xorg-server-1.14* # Chí-Thanh Christopher Nguyễn (10 Jan 2015) # requires obsolete and vulnerable xorg-server, bug #532086 # removal in 30 days +
[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-input-synaptics: ChangeLog xf86-input-synaptics-1.4.0.ebuild
chithanh15/01/11 13:30:33 Modified: ChangeLog Removed: xf86-input-synaptics-1.4.0.ebuild Log: Remove old. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x2324E7B566DF2611!) Revision ChangesPath 1.108x11-drivers/xf86-input-synaptics/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog?rev=1.108&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog?rev=1.108&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog?r1=1.107&r2=1.108 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v retrieving revision 1.107 retrieving revision 1.108 diff -u -r1.107 -r1.108 --- ChangeLog 23 Oct 2014 13:44:10 - 1.107 +++ ChangeLog 11 Jan 2015 13:30:33 - 1.108 @@ -1,6 +1,10 @@ # ChangeLog for x11-drivers/xf86-input-synaptics -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v 1.107 2014/10/23 13:44:10 chithanh Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v 1.108 2015/01/11 13:30:33 chithanh Exp $ + + 11 Jan 2015; Chí-Thanh Christopher Nguyễn + -xf86-input-synaptics-1.4.0.ebuild: + Remove old. *xf86-input-synaptics-1.8.1 (23 Oct 2014)
[gentoo-commits] gentoo-x86 commit in dev-games/simgear: simgear-3.2.0.ebuild ChangeLog
reavertm15/01/11 13:52:20 Modified: ChangeLog Added:simgear-3.2.0.ebuild Log: Version bump. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B1E955DB) Revision ChangesPath 1.67 dev-games/simgear/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?rev=1.67&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?rev=1.67&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/ChangeLog?r1=1.66&r2=1.67 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v retrieving revision 1.66 retrieving revision 1.67 diff -u -r1.66 -r1.67 --- ChangeLog 12 Aug 2014 22:43:01 - 1.66 +++ ChangeLog 11 Jan 2015 13:52:20 - 1.67 @@ -1,6 +1,11 @@ # ChangeLog for dev-games/simgear -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.66 2014/08/12 22:43:01 reavertm Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/ChangeLog,v 1.67 2015/01/11 13:52:20 reavertm Exp $ + +*simgear-3.2.0 (11 Jan 2015) + + 11 Jan 2015; Maciej Mrozowski +simgear-3.2.0.ebuild: + Version bump. 12 Aug 2014; Maciej Mrozowski -simgear-2.10.0.ebuild, -simgear-2.12.1.ebuild, -simgear-2.8.0-r1.ebuild: 1.1 dev-games/simgear/simgear-3.2.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/simgear-3.2.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/simgear/simgear-3.2.0.ebuild?rev=1.1&content-type=text/plain Index: simgear-3.2.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-games/simgear/simgear-3.2.0.ebuild,v 1.1 2015/01/11 13:52:20 reavertm Exp $ EAPI=5 inherit eutils cmake-utils DESCRIPTION="Development library for simulation games" HOMEPAGE="http://www.simgear.org/"; SRC_URI="http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/${P}.tar.bz2"; LICENSE="GPL-2" KEYWORDS="~amd64 ~ppc ~x86" SLOT="0" IUSE="debug subversion test" COMMON_DEPEND=" dev-libs/expat >=dev-games/openscenegraph-3.2.0 media-libs/openal sys-libs/zlib virtual/opengl " DEPEND="${COMMON_DEPEND} >=dev-libs/boost-1.44 " RDEPEND="${COMMON_DEPEND} subversion? ( dev-vcs/subversion ) " DOCS=(AUTHORS ChangeLog NEWS README Thanks) src_configure() { local mycmakeargs=( -ENABLE_PKGUTIL=OFF -DENABLE_RTI=OFF -DENABLE_SOUND=ON -DSIMGEAR_HEADLESS=OFF -DSIMGEAR_SHARED=ON -DSYSTEM_EXPAT=ON $(cmake-utils_use_enable test TESTS) ) cmake-utils_src_configure }
[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear-data: flightgear-data-3.2.0.ebuild ChangeLog
reavertm15/01/11 13:53:05 Modified: ChangeLog Added:flightgear-data-3.2.0.ebuild Log: Version bump. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B1E955DB) Revision ChangesPath 1.10 games-simulation/flightgear-data/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/ChangeLog?r1=1.9&r2=1.10 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 12 Aug 2014 22:41:57 - 1.9 +++ ChangeLog 11 Jan 2015 13:53:05 - 1.10 @@ -1,6 +1,12 @@ # ChangeLog for games-simulation/flightgear-data -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.9 2014/08/12 22:41:57 reavertm Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear-data/ChangeLog,v 1.10 2015/01/11 13:53:05 reavertm Exp $ + +*flightgear-data-3.2.0 (11 Jan 2015) + + 11 Jan 2015; Maciej Mrozowski + +flightgear-data-3.2.0.ebuild: + Version bump. 12 Aug 2014; Maciej Mrozowski -flightgear-data-2.10.0.ebuild, -flightgear-data-2.12.1.ebuild: 1.1 games-simulation/flightgear-data/flightgear-data-3.2.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.2.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.2.0.ebuild?rev=1.1&content-type=text/plain Index: flightgear-data-3.2.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear-data/flightgear-data-3.2.0.ebuild,v 1.1 2015/01/11 13:53:05 reavertm Exp $ EAPI=5 inherit games DESCRIPTION="FlightGear data files" HOMEPAGE="http://www.flightgear.org/"; SRC_URI="mirror://flightgear/Shared/FlightGear-data-${PV}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="" # data files split to separate package since 2.10.0 RDEPEND=" !
[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear: flightgear-3.2.0.ebuild ChangeLog
reavertm15/01/11 13:53:40 Modified: ChangeLog Added:flightgear-3.2.0.ebuild Log: Version bump. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B1E955DB) Revision ChangesPath 1.73 games-simulation/flightgear/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.73&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.73&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?r1=1.72&r2=1.73 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v retrieving revision 1.72 retrieving revision 1.73 diff -u -r1.72 -r1.73 --- ChangeLog 11 Sep 2014 00:59:12 - 1.72 +++ ChangeLog 11 Jan 2015 13:53:40 - 1.73 @@ -1,6 +1,11 @@ # ChangeLog for games-simulation/flightgear -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 1.72 2014/09/11 00:59:12 reavertm Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 1.73 2015/01/11 13:53:40 reavertm Exp $ + +*flightgear-3.2.0 (11 Jan 2015) + + 11 Jan 2015; Maciej Mrozowski +flightgear-3.2.0.ebuild: + Version bump. *flightgear-3.0.0-r1 (11 Sep 2014) 1.1 games-simulation/flightgear/flightgear-3.2.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild?rev=1.1&content-type=text/plain Index: flightgear-3.2.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild,v 1.1 2015/01/11 13:53:40 reavertm Exp $ EAPI=5 inherit games cmake-utils bash-completion-r1 DESCRIPTION="Open Source Flight Simulator" HOMEPAGE="http://www.flightgear.org/"; SRC_URI="mirror://flightgear/Source/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="dbus debug examples +jsbsim oldfdm test +udev +utils vim-syntax +yasim" COMMON_DEPEND=" dev-db/sqlite:3 >=dev-games/openscenegraph-3.2.0[png] ~dev-games/simgear-${PV} media-libs/openal sys-libs/zlib x11-libs/libX11 dbus? ( >=sys-apps/dbus-1.6.18-r1 ) udev? ( virtual/udev ) utils? ( media-libs/freeglut media-libs/libpng virtual/opengl ) " DEPEND="${COMMON_DEPEND} >=dev-libs/boost-1.44 >=media-libs/plib-1.8.5 " RDEPEND="${COMMON_DEPEND} ~games-simulation/${PN}-data-${PV} " DOCS=(AUTHORS ChangeLog NEWS README Thanks) src_configure() { local mycmakeargs=( -DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX} -DENABLE_FLITE=OFF -DENABLE_PROFILE=OFF -DENABLE_RTI=OFF -DFG_DATA_DIR="${GAMES_DATADIR}"/${PN} -DSIMGEAR_SHARED=ON -DSP_FDMS=OFF -DSYSTEM_FLITE=ON -DSYSTEM_HTS_ENGINE=ON -DSYSTEM_SPEEX=ON -DSYSTEM_GSM=ON -DSYSTEM_SQLITE=ON $(cmake-utils_use_use dbus) $(cmake-utils_use_enable jsbsim) $(cmake-utils_use jsbsim JSBSIM_TERRAIN) $(cmake-utils_use_enable oldfdm LARCSIM) $(cmake-utils_use_enable oldfdm UIUC_MODEL) $(cmake-utils_use test LOGGING) $(cmake-utils_use_enable test TESTS) $(cmake-utils_use udev EVENT_INPUT) $(cmake-utils_use_enable utils FGCOM) $(cmake-utils_use_enable utils FGELEV) $(cmake-utils_use_enable utils FGJS) $(cmake-utils_use_with utils FGPANEL) $(cmake-utils_use_enable utils FGVIEWER) $(cmake-utils_use_enable utils GPSSMOOTH) $(cmake-utils_use_enable utils JS_DEMO) $(cmake-utils_use_enable utils METAR) $(cmake-utils_use_enable utils TERRASYNC) $(cmake-utils_use_enable yasim) ) cmake-utils_src_configure } src_install() { cmake-utils_src_install # Install icons and menu entry local s for s in 16 22 24 32 48 64 128; do doicon -s ${s} icons/${s}x${s}/apps/${PN}.png use utils && doicon -s ${s} icons/${s}x${s}/apps/fgcom.png
[gentoo-commits] gentoo-x86 commit in games-simulation/flightgear: flightgear-3.2.0.ebuild ChangeLog
reavertm15/01/11 13:57:39 Modified: flightgear-3.2.0.ebuild ChangeLog Log: Add missing speex/gsm dependencies. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B1E955DB) Revision ChangesPath 1.2 games-simulation/flightgear/flightgear-3.2.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild?r1=1.1&r2=1.2 Index: flightgear-3.2.0.ebuild === RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- flightgear-3.2.0.ebuild 11 Jan 2015 13:53:40 - 1.1 +++ flightgear-3.2.0.ebuild 11 Jan 2015 13:57:39 - 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild,v 1.1 2015/01/11 13:53:40 reavertm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/flightgear-3.2.0.ebuild,v 1.2 2015/01/11 13:57:39 reavertm Exp $ EAPI=5 @@ -20,6 +20,8 @@ >=dev-games/openscenegraph-3.2.0[png] ~dev-games/simgear-${PV} media-libs/openal + media-libs/speex + media-sound/gsm sys-libs/zlib x11-libs/libX11 dbus? ( >=sys-apps/dbus-1.6.18-r1 ) 1.74 games-simulation/flightgear/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.74&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?rev=1.74&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-simulation/flightgear/ChangeLog?r1=1.73&r2=1.74 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v retrieving revision 1.73 retrieving revision 1.74 diff -u -r1.73 -r1.74 --- ChangeLog 11 Jan 2015 13:53:40 - 1.73 +++ ChangeLog 11 Jan 2015 13:57:39 - 1.74 @@ -1,6 +1,9 @@ # ChangeLog for games-simulation/flightgear # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 1.73 2015/01/11 13:53:40 reavertm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/flightgear/ChangeLog,v 1.74 2015/01/11 13:57:39 reavertm Exp $ + + 11 Jan 2015; Maciej Mrozowski flightgear-3.2.0.ebuild: + Add missing speex/gsm dependencies. *flightgear-3.2.0 (11 Jan 2015)
[gentoo-commits] gentoo-x86 commit in net-proxy/shadowsocks-libev: ChangeLog shadowsocks-libev-2.0.4.ebuild
dlan15/01/11 14:02:48 Modified: ChangeLog Added:shadowsocks-libev-2.0.4.ebuild Log: version bump (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55) Revision ChangesPath 1.2 net-proxy/shadowsocks-libev/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/shadowsocks-libev/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/shadowsocks-libev/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/shadowsocks-libev/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-proxy/shadowsocks-libev/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 8 Jan 2015 09:34:06 - 1.1 +++ ChangeLog 11 Jan 2015 14:02:48 - 1.2 @@ -1,6 +1,11 @@ # ChangeLog for net-proxy/shadowsocks-libev # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/shadowsocks-libev/ChangeLog,v 1.1 2015/01/08 09:34:06 dlan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/shadowsocks-libev/ChangeLog,v 1.2 2015/01/11 14:02:48 dlan Exp $ + +*shadowsocks-libev-2.0.4 (11 Jan 2015) + + 11 Jan 2015; Yixun Lan +shadowsocks-libev-2.0.4.ebuild: + version bump *shadowsocks-libev-1.6.4 (08 Jan 2015) 1.1 net-proxy/shadowsocks-libev/shadowsocks-libev-2.0.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/shadowsocks-libev/shadowsocks-libev-2.0.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/shadowsocks-libev/shadowsocks-libev-2.0.4.ebuild?rev=1.1&content-type=text/plain Index: shadowsocks-libev-2.0.4.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-proxy/shadowsocks-libev/shadowsocks-libev-2.0.4.ebuild,v 1.1 2015/01/11 14:02:48 dlan Exp $ EAPI=5 inherit eutils DESCRIPTION="A lightweight secured scoks5 proxy for embedded devices and low end boxes" HOMEPAGE="https://github.com/shadowsocks/shadowsocks-libev"; MY_PV="v${PV}" SRC_URI="https://github.com/shadowsocks/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="debug +openssl polarssl" DEPEND="openssl? ( dev-libs/openssl ) polarssl? ( net-libs/polarssl ) " RDEPEND="${DEPEND}" REQUIRED_USE=" ^^ ( openssl polarssl )" src_configure() { econf \ $(use_enable debug assert) \ --with-crypto-library=$(usex openssl openssl polarssl) } src_install() { default prune_libtool_files --all insinto "/etc/" newins "${FILESDIR}/shadowsocks.json" shadowsocks.json newinitd "${FILESDIR}/shadowsocks.initd" shadowsocks dosym /etc/init.d/shadowsocks /etc/init.d/shadowsocks.server dosym /etc/init.d/shadowsocks /etc/init.d/shadowsocks.client } pkg_setup() { elog "You need to choose to run as server or client mode" elog " server: rc-update add shadowsocks.server default" elog " client: rc-update add shadowsocks.client default" }
[gentoo-commits] gentoo-x86 commit in www-apps/moodle: moodle-2.7.4.ebuild moodle-2.8.2.ebuild moodle-2.6.7.ebuild ChangeLog moodle-2.8.ebuild moodle-2.6.6.ebuild moodle-2.5.9.ebuild moodle-2.7.3.ebui
blueness15/01/11 14:05:43 Modified: ChangeLog Added:moodle-2.7.4.ebuild moodle-2.8.2.ebuild moodle-2.6.7.ebuild Removed: moodle-2.8.ebuild moodle-2.6.6.ebuild moodle-2.5.9.ebuild moodle-2.7.3.ebuild Log: Version bumps, remove older unsupported upstream (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA) Revision ChangesPath 1.65 www-apps/moodle/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/moodle/ChangeLog?rev=1.65&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/moodle/ChangeLog?rev=1.65&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/moodle/ChangeLog?r1=1.64&r2=1.65 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/www-apps/moodle/ChangeLog,v retrieving revision 1.64 retrieving revision 1.65 diff -u -r1.64 -r1.65 --- ChangeLog 10 Nov 2014 13:21:17 - 1.64 +++ ChangeLog 11 Jan 2015 14:05:43 - 1.65 @@ -1,6 +1,15 @@ # ChangeLog for www-apps/moodle -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/moodle/ChangeLog,v 1.64 2014/11/10 13:21:17 blueness Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/moodle/ChangeLog,v 1.65 2015/01/11 14:05:43 blueness Exp $ + +*moodle-2.8.2 (11 Jan 2015) +*moodle-2.7.4 (11 Jan 2015) +*moodle-2.6.7 (11 Jan 2015) + + 11 Jan 2015; Anthony G. Basile +moodle-2.6.7.ebuild, + +moodle-2.7.4.ebuild, +moodle-2.8.2.ebuild, -moodle-2.5.9.ebuild, + -moodle-2.6.6.ebuild, -moodle-2.7.3.ebuild, -moodle-2.8.ebuild: + Version bumps, remove older unsupported upstream *moodle-2.8 (10 Nov 2014) 1.1 www-apps/moodle/moodle-2.7.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/moodle/moodle-2.7.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/moodle/moodle-2.7.4.ebuild?rev=1.1&content-type=text/plain Index: moodle-2.7.4.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/www-apps/moodle/moodle-2.7.4.ebuild,v 1.1 2015/01/11 14:05:43 blueness Exp $ EAPI="5" inherit versionator webapp AVC=( $(get_version_components) ) MY_BRANCH="stable${AVC[0]}${AVC[1]}" DESCRIPTION="The Moodle Course Management System" HOMEPAGE="http://moodle.org"; SRC_URI="http://download.moodle.org/${MY_BRANCH}/${P}.tgz"; S="${WORKDIR}/${PN}" LICENSE="GPL-2" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" #SLOT empty due to webapp DB_FLAGS="mysqli?,postgres?" DB_TYPES=${DB_FLAGS//\?/} DB_TYPES=${DB_TYPES//,/ } AUTHENTICATION_FLAGS="imap?,ldap?,odbc?" AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/} AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ } PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip" PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc" PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}" IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts" REQUIRED_USE="|| ( ${DB_TYPES} )" # No forced dependency on # mysql? ( virtual/mysql ) # postgres? ( dev-db/postgresql-server-7* ) # which may live on another server DEPEND="" RDEPEND=" >=dev-lang/php-5.4.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}] virtual/httpd-php virtual/cron" pkg_setup() { webapp_pkg_setup # How many dbs were selected? If one and only one, which one is it? MYDB="" DB_COUNT=0 for db in ${DB_TYPES}; do if use ${db}; then MYDB=${db} DB_COUNT=$(($DB_COUNT+1)) fi done # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero #if [[ ${DB_COUNT} -eq 0 ]]; then # eerror # eerror "\033[1;31m**\033[00m" # eerror "No database selected in your USE flags," # eerror "You must select at least one." # eerror "\033[1;31m**\033[00m" # eerror # die #fi if [[ ${DB_COUNT} -gt 1 ]]; then MYDB="" ewarn ewarn "\033[1;33m**\033[00m" ewarn "Multiple databases selected in your USE flags," ewarn "You will have to choose your database manually." ewarn "\033[1;33m**\033[00m" ewarn fi }
[gentoo-commits] gentoo-x86 commit in x11-base/xorg-server: ChangeLog xorg-server-1.15.2-r1.ebuild xorg-server-1.12.4-r3.ebuild
nativemad15/01/11 14:05:48 Modified: ChangeLog xorg-server-1.15.2-r1.ebuild xorg-server-1.12.4-r3.ebuild Log: x86 stable, see bug 532086 (Portage version: 2.2.14/cvs/Linux i686, signed Manifest commit with key C1DE54B2) Revision ChangesPath 1.809x11-base/xorg-server/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-server/ChangeLog?rev=1.809&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-server/ChangeLog?rev=1.809&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-server/ChangeLog?r1=1.808&r2=1.809 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/x11-base/xorg-server/ChangeLog,v retrieving revision 1.808 retrieving revision 1.809 diff -u -r1.808 -r1.809 --- ChangeLog 10 Jan 2015 21:53:45 - 1.808 +++ ChangeLog 11 Jan 2015 14:05:48 - 1.809 @@ -1,6 +1,10 @@ # ChangeLog for x11-base/xorg-server # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-server/ChangeLog,v 1.808 2015/01/10 21:53:45 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-server/ChangeLog,v 1.809 2015/01/11 14:05:48 nativemad Exp $ + + 11 Jan 2015; Andreas Schuerch + xorg-server-1.12.4-r3.ebuild, xorg-server-1.15.2-r1.ebuild: + x86 stable, see bug 532086 10 Jan 2015; Mikle Kolyada xorg-server-1.12.4-r3.ebuild, xorg-server-1.15.2-r1.ebuild: 1.3 x11-base/xorg-server/xorg-server-1.15.2-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-server/xorg-server-1.15.2-r1.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-server/xorg-server-1.15.2-r1.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-server/xorg-server-1.15.2-r1.ebuild?r1=1.2&r2=1.3 Index: xorg-server-1.15.2-r1.ebuild === RCS file: /var/cvsroot/gentoo-x86/x11-base/xorg-server/xorg-server-1.15.2-r1.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- xorg-server-1.15.2-r1.ebuild10 Jan 2015 21:53:45 - 1.2 +++ xorg-server-1.15.2-r1.ebuild11 Jan 2015 14:05:48 - 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-server/xorg-server-1.15.2-r1.ebuild,v 1.2 2015/01/10 21:53:45 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-server/xorg-server-1.15.2-r1.ebuild,v 1.3 2015/01/11 14:05:48 nativemad Exp $ EAPI=5 @@ -11,7 +11,7 @@ DESCRIPTION="X.Org X servers" SLOT="0/${PV}" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" SRC_URI="${SRC_URI} mirror://gentoo/${PN}-1.16-cve-2014-8091..8103.patches.tar.xz" 1.3 x11-base/xorg-server/xorg-server-1.12.4-r3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-server/xorg-server-1.12.4-r3.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-server/xorg-server-1.12.4-r3.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-base/xorg-server/xorg-server-1.12.4-r3.ebuild?r1=1.2&r2=1.3 Index: xorg-server-1.12.4-r3.ebuild === RCS file: /var/cvsroot/gentoo-x86/x11-base/xorg-server/xorg-server-1.12.4-r3.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- xorg-server-1.12.4-r3.ebuild10 Jan 2015 21:53:45 - 1.2 +++ xorg-server-1.12.4-r3.ebuild11 Jan 2015 14:05:48 - 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-server/xorg-server-1.12.4-r3.ebuild,v 1.2 2015/01/10 21:53:45 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-server/xorg-server-1.12.4-r3.ebuild,v 1.3 2015/01/11 14:05:48 nativemad Exp $ EAPI=5 @@ -10,7 +10,7 @@ DESCRIPTION="X.Org X servers" SLOT="0/${PV}" -KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd" SRC_URI="${SRC_URI} mirror://gentoo/${PN}-1.12-cve-2014-8091..8103.patches.tar.xz"
[gentoo-commits] gentoo-x86 commit in dev-lang/tuprolog: ChangeLog tuprolog-2.9.0.ebuild
keri15/01/11 14:11:56 Modified: ChangeLog Added:tuprolog-2.9.0.ebuild Log: Version bump (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A138F5ED) Revision ChangesPath 1.55 dev-lang/tuprolog/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/ChangeLog?rev=1.55&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/ChangeLog?rev=1.55&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/ChangeLog?r1=1.54&r2=1.55 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-lang/tuprolog/ChangeLog,v retrieving revision 1.54 retrieving revision 1.55 diff -u -r1.54 -r1.55 --- ChangeLog 9 Nov 2014 17:38:09 - 1.54 +++ ChangeLog 11 Jan 2015 14:11:56 - 1.55 @@ -1,6 +1,12 @@ # ChangeLog for dev-lang/tuprolog -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tuprolog/ChangeLog,v 1.54 2014/11/09 17:38:09 keri Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tuprolog/ChangeLog,v 1.55 2015/01/11 14:11:56 keri Exp $ + +*tuprolog-2.9.0 (11 Jan 2015) + + 11 Jan 2015; +tuprolog-2.9.0.ebuild, + +files/tuprolog-2.9.0-no-ikvm.patch, files/build.xml: + Version bump 09 Nov 2014; tuprolog-2.7.2.ebuild, +files/tuprolog-2.7.2-no-ikvm.patch: 1.1 dev-lang/tuprolog/tuprolog-2.9.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/tuprolog-2.9.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/tuprolog-2.9.0.ebuild?rev=1.1&content-type=text/plain Index: tuprolog-2.9.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-lang/tuprolog/tuprolog-2.9.0.ebuild,v 1.1 2015/01/11 14:11:56 keri Exp $ EAPI=3 inherit eutils java-pkg-2 java-ant-2 DESCRIPTION="tuProlog is a light-weight Prolog for Internet applications and infrastructures" HOMEPAGE="http://tuprolog.unibo.it/"; SRC_URI="mirror://gentoo/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc test" RDEPEND=">=virtual/jdk-1.7 >=dev-java/javassist-3" DEPEND="${RDEPEND} dev-java/ant-core test? ( dev-java/ant-junit4 dev-java/hamcrest-core )" S="${WORKDIR}"/${P} EANT_GENTOO_CLASSPATH="javassist-3" src_prepare() { epatch "${FILESDIR}"/${P}-no-ikvm.patch cp "${FILESDIR}"/build.xml "${S}" || die sed -i -e "s|test/unit|test|" "${S}"/build.xml \ || die "sed build.xml failed" } src_compile() { eant jar $(use_doc) } src_test() { cd "${S}"/dist java-pkg_jar-from junit-4 java-pkg_jar-from hamcrest-core cd "${S}" ANT_TASKS="ant-junit4" eant -Djunit.jar=junit.jar test \ || die "eant test failed" } src_install() { java-pkg_dojar dist/${PN}.jar java-pkg_dojar dist/2p.jar if use doc ; then java-pkg_dohtml -r docs/* || die fi }
[gentoo-commits] gentoo-x86 commit in dev-lang/tuprolog/files: tuprolog-2.9.0-no-ikvm.patch build.xml
keri15/01/11 14:11:56 Modified: build.xml Added:tuprolog-2.9.0-no-ikvm.patch Log: Version bump (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A138F5ED) Revision ChangesPath 1.6 dev-lang/tuprolog/files/build.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/files/build.xml?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/files/build.xml?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/files/build.xml?r1=1.5&r2=1.6 Index: build.xml === RCS file: /var/cvsroot/gentoo-x86/dev-lang/tuprolog/files/build.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- build.xml 1 Jul 2012 11:37:18 - 1.5 +++ build.xml 11 Jan 2015 14:11:56 - 1.6 @@ -38,6 +38,11 @@ + + + + + 1.1 dev-lang/tuprolog/files/tuprolog-2.9.0-no-ikvm.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/files/tuprolog-2.9.0-no-ikvm.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tuprolog/files/tuprolog-2.9.0-no-ikvm.patch?rev=1.1&content-type=text/plain Index: tuprolog-2.9.0-no-ikvm.patch === diff -urN tuprolog-2.9.0.orig/src/alice/tuprolog/LibraryManager.java tuprolog-2.9.0/src/alice/tuprolog/LibraryManager.java --- tuprolog-2.9.0.orig/src/alice/tuprolog/LibraryManager.java 2014-09-29 18:14:21.0 +0200 +++ tuprolog-2.9.0/src/alice/tuprolog/LibraryManager.java 2015-01-11 14:48:57.0 +0100 @@ -9,11 +9,11 @@ import java.net.URL; import java.net.URLClassLoader; import java.util.*; -import cli.System.Reflection.Assembly; +//import cli.System.Reflection.Assembly; import alice.tuprolog.event.LibraryEvent; import alice.tuprolog.event.WarningEvent; -import alice.util.AssemblyCustomClassLoader; +//import alice.util.AssemblyCustomClassLoader; /** * @author Alex Benini @@ -179,31 +179,7 @@ } else // .NET { - Assembly asm = null; - boolean classFound = false; - className = "cli." - + className.substring(0, className.indexOf(",")) - .trim(); - for (int i = 0; i < paths.length; i++) - { - try - { - asm = Assembly.LoadFrom(paths[i]); - loader = new AssemblyCustomClassLoader(asm, urls); - lib = (Library) Class.forName(className, true, loader).newInstance(); - if (lib != null) - { - classFound = true; - break; - } - } catch (Exception e) - { - e.printStackTrace(); - continue; - } - } - if (!classFound) - throw new InvalidLibraryException(className, -1, -1); + throw new InvalidLibraryException(className, -1, -1); } } @@ -462,4 +438,4 @@ return optimizedDirectory; } -} \ No newline at end of file +} diff -urN tuprolog-2.9.0.orig/src/alice/tuprologx/ide/LibraryManager.java tuprolog-2.9.0/src/alice/tuprologx/ide/LibraryManager.java --- tuprolog-2.9.0.orig/src/alice/tuprologx/ide/LibraryManager.java 2014-09-29 18:14:21.0 +0200 +++ tuprolog-2.9.0/src/alice/tuprologx/ide/LibraryManager.java 2015-01-11 14:46:23.0 +0100 @@ -18,7 +18,7 @@ package alice.tuprologx.ide; import alice.tuprolog.*; -import alice.util.AssemblyCustomClassLoader; +//import al
[gentoo-commits] gentoo-x86 commit in net-proxy/polipo: ChangeLog polipo-1.1.1.ebuild
nativemad15/01/11 14:12:43 Modified: ChangeLog polipo-1.1.1.ebuild Log: x86 stable, see bug 385307 (Portage version: 2.2.14/cvs/Linux i686, signed Manifest commit with key C1DE54B2) Revision ChangesPath 1.44 net-proxy/polipo/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/polipo/ChangeLog?rev=1.44&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/polipo/ChangeLog?rev=1.44&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/polipo/ChangeLog?r1=1.43&r2=1.44 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-proxy/polipo/ChangeLog,v retrieving revision 1.43 retrieving revision 1.44 diff -u -r1.43 -r1.44 --- ChangeLog 9 Jan 2015 00:22:51 - 1.43 +++ ChangeLog 11 Jan 2015 14:12:43 - 1.44 @@ -1,6 +1,9 @@ # ChangeLog for net-proxy/polipo # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/polipo/ChangeLog,v 1.43 2015/01/09 00:22:51 bircoph Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/polipo/ChangeLog,v 1.44 2015/01/11 14:12:43 nativemad Exp $ + + 11 Jan 2015; Andreas Schuerch polipo-1.1.1.ebuild: + x86 stable, see bug 385307 09 Jan 2015; Andrew Savchenko -polipo-1.0.4.1-r2.ebuild, -files/polipo-1.0.4.1-dns-timeout-fix.patch: 1.2 net-proxy/polipo/polipo-1.1.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/polipo/polipo-1.1.1.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/polipo/polipo-1.1.1.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/polipo/polipo-1.1.1.ebuild?r1=1.1&r2=1.2 Index: polipo-1.1.1.ebuild === RCS file: /var/cvsroot/gentoo-x86/net-proxy/polipo/polipo-1.1.1.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- polipo-1.1.1.ebuild 9 Jan 2015 00:13:32 - 1.1 +++ polipo-1.1.1.ebuild 11 Jan 2015 14:12:43 - 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/polipo/polipo-1.1.1.ebuild,v 1.1 2015/01/09 00:13:32 bircoph Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/polipo/polipo-1.1.1.ebuild,v 1.2 2015/01/11 14:12:43 nativemad Exp $ EAPI="5" @@ -11,7 +11,7 @@ KEYWORDS="" else SRC_URI="http://www.pps.jussieu.fr/~jch/software/files/${PN}/${P}.tar.gz"; - KEYWORDS="~amd64 ~x86" + KEYWORDS="~amd64 x86" fi inherit ${_GIT} toolchain-funcs user
[gentoo-commits] gentoo-x86 commit in dev-lua/luaexpat: ChangeLog luaexpat-1.3.0-r1.ebuild
nativemad15/01/11 14:20:47 Modified: ChangeLog luaexpat-1.3.0-r1.ebuild Log: x86 stable, see bug 518372 (Portage version: 2.2.14/cvs/Linux i686, signed Manifest commit with key C1DE54B2) Revision ChangesPath 1.23 dev-lua/luaexpat/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaexpat/ChangeLog?rev=1.23&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaexpat/ChangeLog?rev=1.23&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaexpat/ChangeLog?r1=1.22&r2=1.23 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/ChangeLog,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- ChangeLog 14 Nov 2014 21:15:07 - 1.22 +++ ChangeLog 11 Jan 2015 14:20:47 - 1.23 @@ -1,6 +1,10 @@ # 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.22 2014/11/14 21:15:07 maekke Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/ChangeLog,v 1.23 2015/01/11 14:20:47 nativemad Exp $ + + 11 Jan 2015; Andreas Schuerch + luaexpat-1.3.0-r1.ebuild: + x86 stable, see bug 518372 14 Nov 2014; Markus Meier luaexpat-1.3.0-r1.ebuild: arm stable, bug #518372 1.7 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.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild?r1=1.6&r2=1.7 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.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- luaexpat-1.3.0-r1.ebuild14 Nov 2014 21:15:07 - 1.6 +++ luaexpat-1.3.0-r1.ebuild11 Jan 2015 14:20:47 - 1.7 @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild,v 1.6 2014/11/14 21:15:07 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/luaexpat-1.3.0-r1.ebuild,v 1.7 2015/01/11 14:20:47 nativemad 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}]
[gentoo-commits] gentoo-x86 commit in sys-kernel/dracut: dracut-040-r3.ebuild ChangeLog
aidecoe 15/01/11 14:20:14 Modified: ChangeLog Added:dracut-040-r3.ebuild Log: Fix lsinitrd failure to detect version and modules - bug #533112. Thanks to poncho and Jeroen Roovers for patch. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key F0134531E1DBFAB5) Revision ChangesPath 1.183sys-kernel/dracut/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?rev=1.183&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?rev=1.183&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?r1=1.182&r2=1.183 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v retrieving revision 1.182 retrieving revision 1.183 diff -u -r1.182 -r1.183 --- ChangeLog 19 Dec 2014 17:31:07 - 1.182 +++ ChangeLog 11 Jan 2015 14:20:14 - 1.183 @@ -1,6 +1,15 @@ # ChangeLog for sys-kernel/dracut -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.182 2014/12/19 17:31:07 pacho Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.183 2015/01/11 14:20:14 aidecoe Exp $ + +*dracut-040-r3 (11 Jan 2015) + + 11 Jan 2015; Amadeusz Żołnowski +dracut-040-r3.ebuild, + +files/040-0007-Take-into-account-lib64-dirs-when-dete.patch: + Fix lsinitrd failure to detect version and modules - bug #533112. + + Thanks to poncho and Jeroen Roovers for + patch. 19 Dec 2014; Pacho Ramos dracut-034-r4.ebuild, dracut-036-r4.ebuild, dracut-037-r3.ebuild, dracut-038-r2.ebuild, 1.1 sys-kernel/dracut/dracut-040-r3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/dracut-040-r3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/dracut-040-r3.ebuild?rev=1.1&content-type=text/plain Index: dracut-040-r3.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-040-r3.ebuild,v 1.1 2015/01/11 14:20:14 aidecoe Exp $ EAPI=4 inherit bash-completion-r1 eutils linux-info multilib systemd DESCRIPTION="Generic initramfs generation tool" HOMEPAGE="http://dracut.wiki.kernel.org"; SRC_URI="mirror://kernel/linux/utils/boot/${PN}/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="debug selinux systemd" RESTRICT="test" CDEPEND="virtual/udev systemd? ( >=sys-apps/systemd-199 ) " RDEPEND="${CDEPEND} app-arch/cpio >=app-shells/bash-4.0 >sys-apps/kmod-5[tools] || ( >=sys-apps/sysvinit-2.87-r3 sys-apps/systemd[sysv-utils] sys-apps/systemd-sysv-utils ) >=sys-apps/util-linux-2.21 debug? ( dev-util/strace ) selinux? ( sys-libs/libselinux sys-libs/libsepol sec-policy/selinux-dracut ) " DEPEND="${CDEPEND} app-text/asciidoc >=dev-libs/libxslt-1.1.26 app-text/docbook-xml-dtd:4.5 >=app-text/docbook-xsl-stylesheets-1.75.2 virtual/pkgconfig " DOCS=( AUTHORS HACKING NEWS README README.generic README.kernel README.modules README.testsuite TODO ) MY_LIBDIR=/usr/lib PATCHES=( "${FILESDIR}/${PV}-0001-dracut-functions.sh-support-for-altern.patch" "${FILESDIR}/${PV}-0002-gentoo.conf-let-udevdir-be-handled-by-.patch" "${FILESDIR}/${PV}-0003-Use-the-same-paths-in-dracut.sh-as-tho.patch" "${FILESDIR}/${PV}-0005-NEWS-add-040-entry.patch" "${FILESDIR}/${PV}-0006-Don-t-pass-rsyncable-option-to-gzip-Ge.patch" "${FILESDIR}/${PV}-0007-Take-into-account-lib64-dirs-when-dete.patch" ) QA_MULTILIB_PATHS=" usr/lib/dracut/dracut-install usr/lib/dracut/skipcpio " # # Helper functions # # Removes module from modules.d. # $1 = module name # Module name can be specified without number prefix. rm_module() { local force m [[ $1 = -f ]] && force=-f for m in $@; do if [[ $m =~ ^[0-9][0-9][^\ ]*$ ]]; then rm ${force} --interactive=never -r "${modules_dir}"/$m else rm ${force} --interactive=never -r "${modules_dir}"/[0-9][0-9]$m fi done } # Grabbed from net-misc/netctl ebuild. optfeature() { local desc=$1 shift while (( $# )); do if has_version "$1"; then elog " [I] $1 to ${desc}"
[gentoo-commits] gentoo-x86 commit in sys-kernel/dracut/files: 040-0007-Take-into-account-lib64-dirs-when-dete.patch
aidecoe 15/01/11 14:20:14 Added: 040-0007-Take-into-account-lib64-dirs-when-dete.patch Log: Fix lsinitrd failure to detect version and modules - bug #533112. Thanks to poncho and Jeroen Roovers for patch. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key F0134531E1DBFAB5) Revision ChangesPath 1.1 sys-kernel/dracut/files/040-0007-Take-into-account-lib64-dirs-when-dete.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/files/040-0007-Take-into-account-lib64-dirs-when-dete.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/files/040-0007-Take-into-account-lib64-dirs-when-dete.patch?rev=1.1&content-type=text/plain Index: 040-0007-Take-into-account-lib64-dirs-when-dete.patch === >From 25efd305dace3275c661e0a7dfbaef42b4cbc6d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amadeusz=20=C5=BBo=C5=82nowski?= Date: Sun, 11 Jan 2015 15:10:39 +0100 Subject: [PATCH 7/7] Take into account lib64 dirs when detecting version, modules and params --- lsinitrd.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lsinitrd.sh b/lsinitrd.sh index 4f12c2c..dc1f88f 100755 --- a/lsinitrd.sh +++ b/lsinitrd.sh @@ -124,7 +124,7 @@ extract_files() list_modules() { echo "dracut modules:" -$CAT "$image" | cpio --extract --verbose --quiet --to-stdout -- 'lib/dracut/modules.txt' 'usr/lib/dracut/modules.txt' 2>/dev/null +$CAT "$image" | cpio --extract --verbose --quiet --to-stdout -- 'lib64/dracut/modules.txt' 'lib/dracut/modules.txt' 'usr/lib/dracut/modules.txt' 2>/dev/null ((ret+=$?)) } @@ -217,7 +217,7 @@ ret=0 if (( ${#filenames[@]} > 0 )); then extract_files else -version=$($CAT "$image" | cpio --extract --verbose --quiet --to-stdout -- 'lib/dracut/dracut-*' 'usr/lib/dracut/dracut-*' 2>/dev/null) +version=$($CAT "$image" | cpio --extract --verbose --quiet --to-stdout -- 'lib64/dracut/dracut-*' 'lib/dracut/dracut-*' 'usr/lib/dracut/dracut-*' 2>/dev/null) ((ret+=$?)) echo "Version: $version" echo @@ -226,7 +226,7 @@ else echo "" else echo -n "Arguments: " -$CAT "$image" | cpio --extract --verbose --quiet --to-stdout -- 'lib/dracut/build-parameter.txt' 'usr/lib/dracut/build-parameter.txt' 2>/dev/null +$CAT "$image" | cpio --extract --verbose --quiet --to-stdout -- 'lib64/dracut/build-parameter.txt' 'lib/dracut/build-parameter.txt' 'usr/lib/dracut/build-parameter.txt' 2>/dev/null echo list_modules list_files -- 2.2.1
[gentoo-commits] gentoo-x86 commit in sys-kernel/dracut/files: 038-0008-dracut-functions.sh-fix-inst-functions.patch 037-0002-gentoo.conf-let-udevdir-be-handled-by-.patch 036-0007-Added-missing-quotes
aidecoe 15/01/11 14:28:33 Removed: 038-0008-dracut-functions.sh-fix-inst-functions.patch 037-0002-gentoo.conf-let-udevdir-be-handled-by-.patch 036-0007-Added-missing-quotes.patch 036-0006-dracut.sh-Fix-variable-name-typo.patch 037-0005-modsign-do-not-hardcode-path-to-keyctl.patch 038-0002-gentoo.conf-let-udevdir-be-handled-by-.patch 036-0004-Use-the-same-paths-in-dracut.sh-as-tho.patch 036-0008-Add-legacy-flag-l-to-lz4-and-update-ma.patch 037-0007-udev-rules-add-uaccess-rules.patch 037-0003-Use-the-same-paths-in-dracut.sh-as-tho.patch 036-0001-NEWS-update-for-version-036.patch 036-0002-dracut-functions.sh-support-for-altern.patch 038-0005-modsign-do-not-hardcode-path-to-keyctl.patch 038-0003-Use-the-same-paths-in-dracut.sh-as-tho.patch 036-0005-Install-dracut-install-into-libexec-di.patch 038-0004-Install-dracut-install-into-libexec-di.patch 038-0001-dracut-functions.sh-support-for-altern.patch 036-0003-gentoo.conf-let-udevdir-be-handled-by-.patch 037-0001-dracut-functions.sh-support-for-altern.patch 037-0006-98systemd-fixup-rootfs-generator-insta.patch 037-0004-Install-dracut-install-into-libexec-di.patch Log: Remove old versions. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key F0134531E1DBFAB5)
[gentoo-commits] gentoo-x86 commit in sys-kernel/dracut: ChangeLog dracut-038-r2.ebuild dracut-037-r3.ebuild dracut-036-r4.ebuild
aidecoe 15/01/11 14:28:33 Modified: ChangeLog Removed: dracut-038-r2.ebuild dracut-037-r3.ebuild dracut-036-r4.ebuild Log: Remove old versions. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key F0134531E1DBFAB5) Revision ChangesPath 1.184sys-kernel/dracut/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?rev=1.184&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?rev=1.184&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?r1=1.183&r2=1.184 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v retrieving revision 1.183 retrieving revision 1.184 diff -u -r1.183 -r1.184 --- ChangeLog 11 Jan 2015 14:20:14 - 1.183 +++ ChangeLog 11 Jan 2015 14:28:33 - 1.184 @@ -1,6 +1,31 @@ # ChangeLog for sys-kernel/dracut # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.183 2015/01/11 14:20:14 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.184 2015/01/11 14:28:33 aidecoe Exp $ + + 11 Jan 2015; Amadeusz Żołnowski -dracut-036-r4.ebuild, + -dracut-037-r3.ebuild, -dracut-038-r2.ebuild, + -files/036-0001-NEWS-update-for-version-036.patch, + -files/037-0001-dracut-functions.sh-support-for-altern.patch, + -files/038-0001-dracut-functions.sh-support-for-altern.patch, + -files/036-0002-dracut-functions.sh-support-for-altern.patch, + -files/037-0002-gentoo.conf-let-udevdir-be-handled-by-.patch, + -files/038-0002-gentoo.conf-let-udevdir-be-handled-by-.patch, + -files/037-0003-Use-the-same-paths-in-dracut.sh-as-tho.patch, + -files/038-0003-Use-the-same-paths-in-dracut.sh-as-tho.patch, + -files/036-0003-gentoo.conf-let-udevdir-be-handled-by-.patch, + -files/037-0004-Install-dracut-install-into-libexec-di.patch, + -files/038-0004-Install-dracut-install-into-libexec-di.patch, + -files/036-0004-Use-the-same-paths-in-dracut.sh-as-tho.patch, + -files/036-0005-Install-dracut-install-into-libexec-di.patch, + -files/037-0005-modsign-do-not-hardcode-path-to-keyctl.patch, + -files/038-0005-modsign-do-not-hardcode-path-to-keyctl.patch, + -files/037-0006-98systemd-fixup-rootfs-generator-insta.patch, + -files/036-0006-dracut.sh-Fix-variable-name-typo.patch, + -files/036-0007-Added-missing-quotes.patch, + -files/037-0007-udev-rules-add-uaccess-rules.patch, + -files/036-0008-Add-legacy-flag-l-to-lz4-and-update-ma.patch, + -files/038-0008-dracut-functions.sh-fix-inst-functions.patch: + Remove old versions. *dracut-040-r3 (11 Jan 2015)
[gentoo-commits] gentoo-x86 commit in sys-kernel/dracut: ChangeLog dracut-040.ebuild dracut-040-r1.ebuild
aidecoe 15/01/11 14:30:10 Modified: ChangeLog Removed: dracut-040.ebuild dracut-040-r1.ebuild Log: Remove old revisions of 040. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key F0134531E1DBFAB5) Revision ChangesPath 1.185sys-kernel/dracut/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?rev=1.185&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?rev=1.185&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/dracut/ChangeLog?r1=1.184&r2=1.185 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v retrieving revision 1.184 retrieving revision 1.185 diff -u -r1.184 -r1.185 --- ChangeLog 11 Jan 2015 14:28:33 - 1.184 +++ ChangeLog 11 Jan 2015 14:30:10 - 1.185 @@ -1,6 +1,10 @@ # ChangeLog for sys-kernel/dracut # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.184 2015/01/11 14:28:33 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/ChangeLog,v 1.185 2015/01/11 14:30:10 aidecoe Exp $ + + 11 Jan 2015; Amadeusz Żołnowski -dracut-040.ebuild, + -dracut-040-r1.ebuild: + Remove old revisions of 040. 11 Jan 2015; Amadeusz Żołnowski -dracut-036-r4.ebuild, -dracut-037-r3.ebuild, -dracut-038-r2.ebuild,
[gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
jlec15/01/11 14:36:40 Modified: openbabel-python-2.3.2.ebuild ChangeLog Log: sci-chemistry/openbabel-python: Fix for swig-3.0.3, #536180 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!) Revision ChangesPath 1.11 sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.11&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.11&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?r1=1.10&r2=1.11 Index: openbabel-python-2.3.2.ebuild === RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- openbabel-python-2.3.2.ebuild 4 Jan 2015 13:44:02 - 1.10 +++ openbabel-python-2.3.2.ebuild 11 Jan 2015 14:36:40 - 1.11 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.10 2015/01/04 13:44:02 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.11 2015/01/11 14:36:40 jlec Exp $ EAPI=5 @@ -31,6 +31,7 @@ PATCHES=( "${FILESDIR}"/${P}-testpybel.patch "${FILESDIR}"/${P}-bindings_only.patch + "${FILESDIR}"/${P}-swig-3.0.3.patch ) src_prepare() { 1.20 sci-chemistry/openbabel-python/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.20&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.20&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.19&r2=1.20 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- ChangeLog 11 Jan 2015 11:54:19 - 1.19 +++ ChangeLog 11 Jan 2015 14:36:40 - 1.20 @@ -1,6 +1,10 @@ # ChangeLog for sci-chemistry/openbabel-python # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.19 2015/01/11 11:54:19 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.20 2015/01/11 14:36:40 jlec Exp $ + + 11 Jan 2015; Justin Lecher openbabel-python-2.3.2.ebuild, + +files/openbabel-python-2.3.2-swig-3.0.3.patch: + Fix for swig-3.0.3, #536180 11 Jan 2015; Jeroen Roovers -files/openbabel-python-2.3.0-py3_iterator.patch,
[gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python/files: openbabel-python-2.3.2-swig-3.0.3.patch
jlec15/01/11 14:36:40 Added:openbabel-python-2.3.2-swig-3.0.3.patch Log: sci-chemistry/openbabel-python: Fix for swig-3.0.3, #536180 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!) Revision ChangesPath 1.1 sci-chemistry/openbabel-python/files/openbabel-python-2.3.2-swig-3.0.3.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/files/openbabel-python-2.3.2-swig-3.0.3.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/files/openbabel-python-2.3.2-swig-3.0.3.patch?rev=1.1&content-type=text/plain Index: openbabel-python-2.3.2-swig-3.0.3.patch === scripts/openbabel-python.i | 34 +- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/scripts/openbabel-python.i b/scripts/openbabel-python.i index 7cb8f24..d893129 100644 --- a/scripts/openbabel-python.i +++ b/scripts/openbabel-python.i @@ -227,7 +227,7 @@ CAST_GENERICDATA_TO(SquarePlanarStereo) %include %include -# CloneData should be used instead of the following method +// CloneData should be used instead of the following method %ignore OpenBabel::OBBase::SetData; %include @@ -289,7 +289,7 @@ OBMol.BeginResidues = OBMol.EndResidues = OBMol.BeginResidue = OBMol.EndResidue %ignore OpenBabel::OBDescriptor::LessThan; %include -# Ignore shadowed methods +// Ignore shadowed methods %ignore OpenBabel::OBForceField::VectorSubtract(const double *const, const double *const, double *); %ignore OpenBabel::OBForceField::VectorMultiply(const double *const, const double, double *); %include @@ -310,7 +310,7 @@ OBMol.BeginResidues = OBMol.EndResidues = OBMol.BeginResidue = OBMol.EndResidue %warnfilter(503) OpenBabel::OBBitVec; // Not wrapping any of the overloaded operators %include -# Ignore shadowed method +// Ignore shadowed method %ignore OpenBabel::OBRotor::GetRotAtoms() const; %include %ignore OpenBabel::Swab; @@ -321,13 +321,13 @@ OBMol.BeginResidues = OBMol.EndResidues = OBMol.BeginResidue = OBMol.EndResidue %include #endif -# The following %ignores avoid warning messages due to shadowed classes. -# This does not imply a loss of functionality as (in this case) -# the shadowed class is identical (from the point of view of SWIG) to -# the shadowing class. -# This is because C++ references (&) are transformed by SWIG back into -# pointers, so that OBAtomIter(OBMol &) would be treated the same as -# OBAtomIter(OBMol *). +// The following %ignores avoid warning messages due to shadowed classes. +// This does not imply a loss of functionality as (in this case) +// the shadowed class is identical (from the point of view of SWIG) to +// the shadowing class. +// This is because C++ references (&) are transformed by SWIG back into +// pointers, so that OBAtomIter(OBMol &) would be treated the same as +// OBAtomIter(OBMol *). %ignore OBAtomAtomIter(OBAtom &); %ignore OBAtomBondIter(OBAtom &); @@ -346,9 +346,9 @@ OBMol.BeginResidues = OBMol.EndResidues = OBMol.BeginResidue = OBMol.EndResidue %ignore OBResidueIter(OBMol &); %ignore OBResidueAtomIter(OBResidue &); -# These classes are renamed so that they can be replaced by Python -# classes of the same name which provide Pythonic iterators -# (see %pythoncode section below) +// These classes are renamed so that they can be replaced by Python +// classes of the same name which provide Pythonic iterators +// (see %pythoncode section below) %rename(_OBAtomAtomIter) OpenBabel::OBAtomAtomIter; %rename(_OBAtomBondIter) OpenBabel::OBAtomBondIter; @@ -367,8 +367,8 @@ OBMol.BeginResidues = OBMol.EndResidues = OBMol.BeginResidue = OBMol.EndResidue %include -# The following class, OBiter, is subclassed to provide Python iterators -# equivalent to the C++ iterators in obiter.h and the plugin iterators +// The following class, OBiter, is subclassed to provide Python iterators +// equivalent to the C++ iterators in obiter.h and the plugin iterators %pythoncode %{ class OBIter(object): @@ -459,7 +459,7 @@ def double_array(mylist): return c %} -# Copy some of the global variables in cvar into the openbabel namespace +// Copy some of the global variables in cvar into the openbabel namespace %pythoncode %{ obErrorLog = cvar.obErrorLog @@ -470,7 +470,7 @@ atomtyper = cvar.atomtyper aromtyper = cvar.aromtyper %} -# Functions to set the log file to std::cout and std::cerr +// Functions to set the log file to std::cout and std::cerr %ignore OBForceField::SetLogFile(std::ostream *pos); %extend OpenBabel::OBForceField {
[gentoo-commits] gentoo-x86 commit in dev-lua/luaevent: ChangeLog luaevent-0.4.3.ebuild
nativemad15/01/11 14:38:20 Modified: ChangeLog luaevent-0.4.3.ebuild Log: x86 stable, see bug 511532 (Portage version: 2.2.14/cvs/Linux i686, signed Manifest commit with key C1DE54B2) Revision ChangesPath 1.13 dev-lua/luaevent/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaevent/ChangeLog?rev=1.13&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaevent/ChangeLog?rev=1.13&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaevent/ChangeLog?r1=1.12&r2=1.13 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-lua/luaevent/ChangeLog,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- ChangeLog 13 Oct 2014 18:56:14 - 1.12 +++ ChangeLog 11 Jan 2015 14:38:20 - 1.13 @@ -1,6 +1,9 @@ # ChangeLog for dev-lua/luaevent -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaevent/ChangeLog,v 1.12 2014/10/13 18:56:14 klausman Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaevent/ChangeLog,v 1.13 2015/01/11 14:38:20 nativemad Exp $ + + 11 Jan 2015; Andreas Schuerch luaevent-0.4.3.ebuild: + x86 stable, see bug 511532 13 Oct 2014; Tobias Klausmann luaevent-0.4.3.ebuild: Stable on amd64, bug 511532 1.4 dev-lua/luaevent/luaevent-0.4.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaevent/luaevent-0.4.3.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaevent/luaevent-0.4.3.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaevent/luaevent-0.4.3.ebuild?r1=1.3&r2=1.4 Index: luaevent-0.4.3.ebuild === RCS file: /var/cvsroot/gentoo-x86/dev-lua/luaevent/luaevent-0.4.3.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- luaevent-0.4.3.ebuild 13 Oct 2014 18:56:14 - 1.3 +++ luaevent-0.4.3.ebuild 11 Jan 2015 14:38:20 - 1.4 @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaevent/luaevent-0.4.3.ebuild,v 1.3 2014/10/13 18:56:14 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaevent/luaevent-0.4.3.ebuild,v 1.4 2015/01/11 14:38:20 nativemad Exp $ EAPI="5" @@ -12,7 +12,7 @@ LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="" RDEPEND=">=dev-lang/lua-5.1
[gentoo-commits] gentoo-x86 commit in net-im/prosody: ChangeLog prosody-0.9.7.ebuild
nativemad15/01/11 14:41:39 Modified: ChangeLog prosody-0.9.7.ebuild Log: x86 stable, see bug 511532 (Portage version: 2.2.14/cvs/Linux i686, signed Manifest commit with key C1DE54B2) Revision ChangesPath 1.46 net-im/prosody/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/ChangeLog?rev=1.46&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/ChangeLog?rev=1.46&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/ChangeLog?r1=1.45&r2=1.46 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-im/prosody/ChangeLog,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- ChangeLog 11 Jan 2015 09:09:57 - 1.45 +++ ChangeLog 11 Jan 2015 14:41:39 - 1.46 @@ -1,6 +1,9 @@ # ChangeLog for net-im/prosody # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/ChangeLog,v 1.45 2015/01/11 09:09:57 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/ChangeLog,v 1.46 2015/01/11 14:41:39 nativemad Exp $ + + 11 Jan 2015; Andreas Schuerch prosody-0.9.7.ebuild: + x86 stable, see bug 511532 11 Jan 2015; Tobias Klausmann prosody-0.9.7.ebuild: Stable on amd64, bug 511532 1.3 net-im/prosody/prosody-0.9.7.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/prosody-0.9.7.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/prosody-0.9.7.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/prosody/prosody-0.9.7.ebuild?r1=1.2&r2=1.3 Index: prosody-0.9.7.ebuild === RCS file: /var/cvsroot/gentoo-x86/net-im/prosody/prosody-0.9.7.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- prosody-0.9.7.ebuild11 Jan 2015 09:09:57 - 1.2 +++ prosody-0.9.7.ebuild11 Jan 2015 14:41:39 - 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/prosody-0.9.7.ebuild,v 1.2 2015/01/11 09:09:57 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/prosody-0.9.7.ebuild,v 1.3 2015/01/11 14:41:39 nativemad 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 net-proxy/privoxy: ChangeLog privoxy-3.0.22.ebuild
nativemad15/01/11 14:59:33 Modified: ChangeLog privoxy-3.0.22.ebuild Log: x86 stable, see bug 531292 (Portage version: 2.2.14/cvs/Linux i686, signed Manifest commit with key C1DE54B2) Revision ChangesPath 1.101net-proxy/privoxy/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/privoxy/ChangeLog?rev=1.101&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/privoxy/ChangeLog?rev=1.101&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/privoxy/ChangeLog?r1=1.100&r2=1.101 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-proxy/privoxy/ChangeLog,v retrieving revision 1.100 retrieving revision 1.101 diff -u -r1.100 -r1.101 --- ChangeLog 9 Jan 2015 15:30:19 - 1.100 +++ ChangeLog 11 Jan 2015 14:59:33 - 1.101 @@ -1,6 +1,9 @@ # ChangeLog for net-proxy/privoxy # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/privoxy/ChangeLog,v 1.100 2015/01/09 15:30:19 bircoph Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/privoxy/ChangeLog,v 1.101 2015/01/11 14:59:33 nativemad Exp $ + + 11 Jan 2015; Andreas Schuerch privoxy-3.0.22.ebuild: + x86 stable, see bug 531292 09 Jan 2015; Andrew Savchenko privoxy-3.0.22.ebuild: Cosmetics: move REQUIRED_USE to an upper part. 1.3 net-proxy/privoxy/privoxy-3.0.22.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/privoxy/privoxy-3.0.22.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/privoxy/privoxy-3.0.22.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/privoxy/privoxy-3.0.22.ebuild?r1=1.2&r2=1.3 Index: privoxy-3.0.22.ebuild === RCS file: /var/cvsroot/gentoo-x86/net-proxy/privoxy/privoxy-3.0.22.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- privoxy-3.0.22.ebuild 9 Jan 2015 15:30:19 - 1.2 +++ privoxy-3.0.22.ebuild 11 Jan 2015 14:59:33 - 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/privoxy/privoxy-3.0.22.ebuild,v 1.2 2015/01/09 15:30:19 bircoph Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/privoxy/privoxy-3.0.22.ebuild,v 1.3 2015/01/11 14:59:33 nativemad Exp $ EAPI="5" @@ -18,7 +18,7 @@ +image-blocking ipv6 lfs png-images selinux +stats +threads toggle whitelists +zlib" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc x86 ~x86-fbsd" LICENSE="GPL-2" DEPEND="dev-libs/libpcre
[gentoo-commits] proj/gamerlay:master commit in: games-util/steam-launcher/
commit: 15add003b17500d89f0ef3094f1f23921909863e Author: Yuri Konotopov konotopov pro> AuthorDate: Sun Jan 11 15:19:17 2015 + Commit: Vadim A. Misbakh-Soloviov mva name> CommitDate: Sun Jan 11 15:19:17 2015 + URL: http://sources.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=15add003 [games-util/steam-launcher] some improvements (see bug531990#c25). Part 2 Signed-off-by: Vadim A. Misbakh-Soloviov mva.name> --- games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild b/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild index 0412e37..e5a783d 100644 --- a/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild +++ b/games-util/steam-launcher/steam-launcher-1.0.0.49.ebuild @@ -68,7 +68,7 @@ src_prepare() { } src_install() { - dobin steam + dogamesbin steam insinto /usr/lib/steam/ doins bootstraplinux_ubuntu12_32.tar.xz
[gentoo-commits] gentoo-x86 commit in sys-apps/file: ChangeLog file-5.22.ebuild
nativemad15/01/11 15:20:35 Modified: ChangeLog file-5.22.ebuild Log: x86 stable, see bug 532768 (Portage version: 2.2.14/cvs/Linux i686, signed Manifest commit with key C1DE54B2) Revision ChangesPath 1.301sys-apps/file/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.301&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.301&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?r1=1.300&r2=1.301 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v retrieving revision 1.300 retrieving revision 1.301 diff -u -r1.300 -r1.301 --- ChangeLog 11 Jan 2015 11:13:33 - 1.300 +++ ChangeLog 11 Jan 2015 15:20:35 - 1.301 @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/file # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.300 2015/01/11 11:13:33 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.301 2015/01/11 15:20:35 nativemad Exp $ + + 11 Jan 2015; Andreas Schuerch file-5.22.ebuild: + x86 stable, bug 532768 11 Jan 2015; Jeroen Roovers file-5.22.ebuild: Stable for HPPA (bug #532768). 1.4 sys-apps/file/file-5.22.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.22.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.22.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.22.ebuild?r1=1.3&r2=1.4 Index: file-5.22.ebuild === RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.22.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- file-5.22.ebuild11 Jan 2015 11:13:33 - 1.3 +++ file-5.22.ebuild11 Jan 2015 15:20:35 - 1.4 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.22.ebuild,v 1.3 2015/01/11 11:13:33 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.22.ebuild,v 1.4 2015/01/11 15:20:35 nativemad Exp $ EAPI="4" PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy2_0 ) @@ -14,7 +14,7 @@ else SRC_URI="ftp://ftp.astron.com/pub/file/${P}.tar.gz ftp://ftp.gw.com/mirrors/pub/unix/file/${P}.tar.gz"; - KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" + KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" fi DESCRIPTION="identify a file's format by scanning binary data for patterns"
[gentoo-commits] gentoo-x86 commit in dev-lua/luaevent: ChangeLog luaevent-0.4.1.ebuild luaevent-0.3.1.ebuild
mrueg 15/01/11 15:22:35 Modified: ChangeLog Removed: luaevent-0.4.1.ebuild luaevent-0.3.1.ebuild Log: Remove old. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key ) Revision ChangesPath 1.14 dev-lua/luaevent/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaevent/ChangeLog?rev=1.14&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaevent/ChangeLog?rev=1.14&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luaevent/ChangeLog?r1=1.13&r2=1.14 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-lua/luaevent/ChangeLog,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- ChangeLog 11 Jan 2015 14:38:20 - 1.13 +++ ChangeLog 11 Jan 2015 15:22:35 - 1.14 @@ -1,6 +1,10 @@ # ChangeLog for dev-lua/luaevent # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaevent/ChangeLog,v 1.13 2015/01/11 14:38:20 nativemad Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaevent/ChangeLog,v 1.14 2015/01/11 15:22:35 mrueg Exp $ + + 11 Jan 2015; Manuel Rüger -luaevent-0.3.1.ebuild, + -luaevent-0.4.1.ebuild: + Remove old. 11 Jan 2015; Andreas Schuerch luaevent-0.4.3.ebuild: x86 stable, see bug 511532
[gentoo-commits] gentoo-x86 commit in dev-lua/toluapp: ChangeLog toluapp-1.0.92.ebuild
mrueg 15/01/11 15:25:46 Modified: ChangeLog Removed: toluapp-1.0.92.ebuild Log: Remove old. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key ) Revision ChangesPath 1.4 dev-lua/toluapp/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/toluapp/ChangeLog?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/toluapp/ChangeLog?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/toluapp/ChangeLog?r1=1.3&r2=1.4 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-lua/toluapp/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeLog 10 Aug 2014 20:42:23 - 1.3 +++ ChangeLog 11 Jan 2015 15:25:46 - 1.4 @@ -1,6 +1,9 @@ # ChangeLog for dev-lua/toluapp -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/toluapp/ChangeLog,v 1.3 2014/08/10 20:42:23 slyfox Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lua/toluapp/ChangeLog,v 1.4 2015/01/11 15:25:46 mrueg Exp $ + + 11 Jan 2015; Manuel Rüger -toluapp-1.0.92.ebuild: + Remove old. 10 Aug 2014; Sergei Trofimovich toluapp-1.0.92.ebuild, toluapp-1.0.93.ebuild:
[gentoo-commits] gentoo-x86 commit in dev-perl/XML-DT: XML-DT-0.660.0.ebuild ChangeLog XML-DT-0.630.0-r1.ebuild
zlogene 15/01/11 15:49:46 Modified: ChangeLog Added:XML-DT-0.660.0.ebuild Removed: XML-DT-0.630.0-r1.ebuild Log: Security bump straight to stable and cleanup wrt bug #534694 (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 0xC42EB5D6) Revision ChangesPath 1.98 dev-perl/XML-DT/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-DT/ChangeLog?rev=1.98&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-DT/ChangeLog?rev=1.98&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-DT/ChangeLog?r1=1.97&r2=1.98 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-perl/XML-DT/ChangeLog,v retrieving revision 1.97 retrieving revision 1.98 diff -u -r1.97 -r1.98 --- ChangeLog 12 Oct 2014 07:34:23 - 1.97 +++ ChangeLog 11 Jan 2015 15:49:46 - 1.98 @@ -1,6 +1,12 @@ # ChangeLog for dev-perl/XML-DT -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-DT/ChangeLog,v 1.97 2014/10/12 07:34:23 zlogene Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-DT/ChangeLog,v 1.98 2015/01/11 15:49:46 zlogene Exp $ + +*XML-DT-0.660.0 (11 Jan 2015) + + 11 Jan 2015; Mikle Kolyada +XML-DT-0.660.0.ebuild, + -XML-DT-0.630.0-r1.ebuild: + Security bump straight to stable and cleanup wrt bug #534694 12 Oct 2014; Mikle Kolyada -XML-DT-0.560.0.ebuild, -XML-DT-0.620.0.ebuild: 1.1 dev-perl/XML-DT/XML-DT-0.660.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-DT/XML-DT-0.660.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/XML-DT/XML-DT-0.660.0.ebuild?rev=1.1&content-type=text/plain Index: XML-DT-0.660.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-DT/XML-DT-0.660.0.ebuild,v 1.1 2015/01/11 15:49:46 zlogene Exp $ EAPI=5 MODULE_AUTHOR=AMBS MODULE_SECTION=XML MODULE_VERSION=0.66 inherit perl-module DESCRIPTION="A perl XML down translate module" SLOT="0" KEYWORDS="alpha amd64 hppa ppc x86" IUSE="test" RDEPEND=" dev-perl/libwww-perl >=dev-perl/XML-LibXML-1.600.0 >=dev-perl/XML-DTDParser-2.0.0 " DEPEND="${RDEPEND} test? ( dev-perl/Test-Pod dev-perl/Test-Pod-Coverage ) " SRC_TEST="do"
[gentoo-commits] gentoo-x86 commit in gnome-extra/cjs/files: - New directory
eva 15/01/11 15:56:42 Log: Directory /var/cvsroot/gentoo-x86/gnome-extra/cjs/files added to the repository
[gentoo-commits] gentoo-x86 commit in gnome-extra/cjs/files: cjs-2.4.0-disable-unittest-3.patch cjs-2.4.0-disable-unittest-2.patch cjs-2.4.0-disable-unittest-1.patch
eva 15/01/11 15:58:34 Added:cjs-2.4.0-disable-unittest-3.patch cjs-2.4.0-disable-unittest-2.patch cjs-2.4.0-disable-unittest-1.patch Log: Version bump for Cinnamon 2.4. Drop old revision. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.1 gnome-extra/cjs/files/cjs-2.4.0-disable-unittest-3.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/files/cjs-2.4.0-disable-unittest-3.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/files/cjs-2.4.0-disable-unittest-3.patch?rev=1.1&content-type=text/plain Index: cjs-2.4.0-disable-unittest-3.patch === >From da18a2676477138693e893d3245316f987d74497 Mon Sep 17 00:00:00 2001 From: Gilles Dartiguelongue Date: Sun, 12 Oct 2014 21:57:45 +0200 Subject: [PATCH 2/2] Comment broken JS unittest --- installed-tests/js/testLocale.js | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/installed-tests/js/testLocale.js b/installed-tests/js/testLocale.js index b086a66..0c5abb1 100644 --- a/installed-tests/js/testLocale.js +++ b/installed-tests/js/testLocale.js @@ -1,14 +1,14 @@ // tests for JS_SetLocaleCallbacks(). const JSUnit = imports.jsUnit; -function testToLocaleDateString() { -let date = new Date(); +//function testToLocaleDateString() { +//let date = new Date(); // %A is the weekday name, this tests locale_to_unicode // we're basically just testing for a non-crash, since // we'd have to run in a specific locale to have any // idea about the result. -date.toLocaleDateString("%A"); -} +//date.toLocaleDateString("%A"); +//} function testToLocaleLowerCase() { JSUnit.assertEquals("aaa", "AAA".toLocaleLowerCase()); -- 2.1.2 1.1 gnome-extra/cjs/files/cjs-2.4.0-disable-unittest-2.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/files/cjs-2.4.0-disable-unittest-2.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/files/cjs-2.4.0-disable-unittest-2.patch?rev=1.1&content-type=text/plain Index: cjs-2.4.0-disable-unittest-2.patch === >From 4ea9fda3f323355d10e946d19d817fe8c4e6b533 Mon Sep 17 00:00:00 2001 From: Gilles Dartiguelongue Date: Sun, 12 Oct 2014 21:57:11 +0200 Subject: [PATCH 1/2] Comment broken unittests --- test/gjs-tests.cpp | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/gjs-tests.cpp b/test/gjs-tests.cpp index 6cade7b..4d6c61e 100644 --- a/test/gjs-tests.cpp +++ b/test/gjs-tests.cpp @@ -324,18 +324,18 @@ main(intargc, g_test_init(&argc, &argv, NULL); -g_test_add_func("/gjs/context/construct/destroy", gjstest_test_func_gjs_context_construct_destroy); +/* g_test_add_func("/gjs/context/construct/destroy", gjstest_test_func_gjs_context_construct_destroy); */ g_test_add_func("/gjs/context/construct/eval", gjstest_test_func_gjs_context_construct_eval); -g_test_add_func("/gjs/jsapi/util/array", gjstest_test_func_gjs_jsapi_util_array); -g_test_add_func("/gjs/jsapi/util/error/throw", gjstest_test_func_gjs_jsapi_util_error_throw); -g_test_add_func("/gjs/jsapi/util/string/js/string/utf8", gjstest_test_func_gjs_jsapi_util_string_js_string_utf8); +/* g_test_add_func("/gjs/jsapi/util/array", gjstest_test_func_gjs_jsapi_util_array); */ +/* g_test_add_func("/gjs/jsapi/util/error/throw", gjstest_test_func_gjs_jsapi_util_error_throw); */ +/* g_test_add_func("/gjs/jsapi/util/string/js/string/utf8", gjstest_test_func_gjs_jsapi_util_string_js_string_utf8); */ g_test_add_func("/gjs/jsutil/strip_shebang/no_shebang", gjstest_test_strip_shebang_no_advance_for_no_shebang); g_test_add_func("/gjs/jsutil/strip_shebang/have_shebang", gjstest_test_strip_shebang_advance_for_shebang); g_test_add_func("/gjs/jsutil/strip_shebang/only_shebang", gjstest_test_strip_shebang_return_null_for_just_shebang); g_test_add_func("/util/glib/strv/concat/null", gjstest_test_func_util_glib_strv_concat_null); g_test_add_func("/util/glib/strv/concat/pointers", gjstest_test_func_util_glib_strv_concat_pointers); -gjs_test_add_tests_for_coverage (); +/* gjs_test_add_tests_for_coverage (); */ g_test_run(); -- 2.1.2 1.1 gnome-extra/cjs/files/cjs-2.4.0-disable-unittest-1.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/files/cjs-2.4.0-disable-unittest-1.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/files/cjs-2.4.0-disable-unittest-1.patch?rev=1.1&content-type=text/plain Index: cjs-2.4.0-disable-unittest-1.patch =
[gentoo-commits] gentoo-x86 commit in gnome-extra/cjs: ChangeLog cjs-2.4.0.ebuild cjs-2.2.1.ebuild
eva 15/01/11 15:58:34 Modified: ChangeLog Added:cjs-2.4.0.ebuild Removed: cjs-2.2.1.ebuild Log: Version bump for Cinnamon 2.4. Drop old revision. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.8 gnome-extra/cjs/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/ChangeLog?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/ChangeLog?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/ChangeLog?r1=1.7&r2=1.8 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/gnome-extra/cjs/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ChangeLog 19 Dec 2014 13:38:08 - 1.7 +++ ChangeLog 11 Jan 2015 15:58:34 - 1.8 @@ -1,6 +1,14 @@ # ChangeLog for gnome-extra/cjs -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cjs/ChangeLog,v 1.7 2014/12/19 13:38:08 pacho Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cjs/ChangeLog,v 1.8 2015/01/11 15:58:34 eva Exp $ + +*cjs-2.4.0 (11 Jan 2015) + + 11 Jan 2015; Gilles Dartiguelongue -cjs-2.2.1.ebuild, + +cjs-2.4.0.ebuild, +files/cjs-2.4.0-disable-unittest-1.patch, + +files/cjs-2.4.0-disable-unittest-2.patch, + +files/cjs-2.4.0-disable-unittest-3.patch: + Version bump for Cinnamon 2.4. Drop old revision. 19 Dec 2014; Pacho Ramos cjs-2.2.2.ebuild: amd64 stable, bug 529964 1.1 gnome-extra/cjs/cjs-2.4.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/cjs-2.4.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/cjs-2.4.0.ebuild?rev=1.1&content-type=text/plain Index: cjs-2.4.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/cjs/cjs-2.4.0.ebuild,v 1.1 2015/01/11 15:58:34 eva Exp $ EAPI="5" GCONF_DEBUG="no" inherit autotools eutils gnome2 pax-utils virtualx DESCRIPTION="Linux Mint's fork of gjs for Cinnamon" HOMEPAGE="http://cinnamon.linuxmint.com/"; SRC_URI="https://github.com/linuxmint/cjs/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )" SLOT="0" IUSE="+cairo examples gtk test" KEYWORDS="~amd64 ~x86" RDEPEND=" dev-lang/spidermonkey:24 >=dev-libs/glib-2.36:2 >=dev-libs/gobject-introspection-1.39.3 sys-libs/readline:0 virtual/libffi cairo? ( x11-libs/cairo[X,glib] ) gtk? ( x11-libs/gtk+:3 ) " DEPEND="${RDEPEND} gnome-base/gnome-common sys-devel/gettext virtual/pkgconfig test? ( sys-apps/dbus ) " # Large amount of tests are broken even in master. #RESTRICT="test" src_prepare() { # Disable broken unittests epatch "${FILESDIR}"/${PN}-2.4.0-disable-unittest-*.patch epatch_user eautoreconf gnome2_src_prepare } src_configure() { # FIXME: add systemtap/dtrace support, like in glib:2 # FIXME: --enable-systemtap installs files in ${D}/${D} for some reason # XXX: Do NOT enable coverage, completely useless for portage installs gnome2_src_configure \ --disable-systemtap \ --disable-dtrace \ --disable-coverage \ $(use_with cairo) \ $(use_with gtk) } src_test() { Xemake check } src_install() { # installation sometimes fails in parallel gnome2_src_install -j1 if use examples; then insinto /usr/share/doc/"${PF}"/examples doins "${S}"/examples/* fi # Required for cjs-console to run correctly on PaX systems pax-mark mr "${ED}/usr/bin/cjs-console" }
[gentoo-commits] gentoo-x86 commit in dev-java/xml-security/files: - New directory
ercpe 15/01/11 16:00:57 Log: Directory /var/cvsroot/gentoo-x86/dev-java/xml-security/files added to the repository
[gentoo-commits] gentoo-x86 commit in dev-java/xml-security: - New directory
ercpe 15/01/11 16:00:57 Log: Directory /var/cvsroot/gentoo-x86/dev-java/xml-security added to the repository
[gentoo-commits] gentoo-x86 commit in gnome-extra/cjs: ChangeLog cjs-2.4.0.ebuild
eva 15/01/11 16:01:23 Modified: ChangeLog cjs-2.4.0.ebuild Log: Add missing cinnamon 2.2 blocker, bug #529812. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.9 gnome-extra/cjs/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/ChangeLog?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/ChangeLog?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/ChangeLog?r1=1.8&r2=1.9 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/gnome-extra/cjs/ChangeLog,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ChangeLog 11 Jan 2015 15:58:34 - 1.8 +++ ChangeLog 11 Jan 2015 16:01:23 - 1.9 @@ -1,6 +1,9 @@ # ChangeLog for gnome-extra/cjs # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cjs/ChangeLog,v 1.8 2015/01/11 15:58:34 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cjs/ChangeLog,v 1.9 2015/01/11 16:01:23 eva Exp $ + + 11 Jan 2015; Gilles Dartiguelongue cjs-2.4.0.ebuild: + Add missing cinnamon 2.2 blocker, bug #529812. *cjs-2.4.0 (11 Jan 2015) 1.2 gnome-extra/cjs/cjs-2.4.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/cjs-2.4.0.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/cjs-2.4.0.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/cjs-2.4.0.ebuild?r1=1.1&r2=1.2 Index: cjs-2.4.0.ebuild === RCS file: /var/cvsroot/gentoo-x86/gnome-extra/cjs/cjs-2.4.0.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- cjs-2.4.0.ebuild11 Jan 2015 15:58:34 - 1.1 +++ cjs-2.4.0.ebuild11 Jan 2015 16:01:23 - 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cjs/cjs-2.4.0.ebuild,v 1.1 2015/01/11 15:58:34 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cjs/cjs-2.4.0.ebuild,v 1.2 2015/01/11 16:01:23 eva Exp $ EAPI="5" GCONF_DEBUG="no" @@ -31,9 +31,10 @@ virtual/pkgconfig test? ( sys-apps/dbus ) " - -# Large amount of tests are broken even in master. -#RESTRICT="test" +# Cinnamon 2.2 does not work with this release. +RDEPEND="${RDEPEND} + !
[gentoo-commits] gentoo-x86 commit in dev-java/xml-security: metadata.xml xml-security-1.5.7.ebuild Manifest ChangeLog
ercpe 15/01/11 16:02:21 Added:metadata.xml xml-security-1.5.7.ebuild Manifest ChangeLog Log: New ebuild for dev-java/xml-security (bug #435256) (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 77C501ED) Revision ChangesPath 1.1 dev-java/xml-security/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xml-security/metadata.xml?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xml-security/metadata.xml?rev=1.1&content-type=text/plain Index: metadata.xml === http://www.gentoo.org/dtd/metadata.dtd";> java 1.1 dev-java/xml-security/xml-security-1.5.7.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xml-security/xml-security-1.5.7.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xml-security/xml-security-1.5.7.ebuild?rev=1.1&content-type=text/plain Index: xml-security-1.5.7.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-java/xml-security/xml-security-1.5.7.ebuild,v 1.1 2015/01/11 16:02:21 ercpe Exp $ EAPI="5" JAVA_PKG_IUSE="doc source test" inherit java-pkg-2 java-ant-2 MY_PV=${PV//./_} DESCRIPTION="An implementation of the primary security standards for XML" HOMEPAGE="http://santuario.apache.org/"; SRC_URI="mirror://apache/santuario/java-library/${MY_PV}/${PN}-bin-${MY_PV}.zip" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" CDEPEND=" dev-java/commons-logging:0 dev-java/xalan:0 " RDEPEND="${CDEPEND} >=virtual/jre-1.5" DEPEND="${CDEPEND} test? ( dev-java/junit:4 ) >=virtual/jdk-1.5" S="${WORKDIR}/${PN}-${MY_PV}" JAVA_ANT_REWRITE_CLASSPATH="yes" EANT_GENTOO_CLASSPATH="commons-logging,xalan" EANT_GENTOO_CLASSPATH_EXTRA="${S}"/build/xmlsec-${PV}.jar EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},junit-4" EANT_TEST_TARGET="build.test test" WANT_ANT_TASKS="ant-junit" src_prepare() { epatch "${FILESDIR}/${PV}-build.xml.patch" find "${S}" -name "*.jar" -delete || die rm "${S}"/src/test/java/org/apache/xml/security/test/utils/OldApiTest.java || die } src_install() { java-pkg_newjar "${S}"/build/xmlsec-${PV}.jar ${PN}.jar use source && java-pkg_dosrc "${S}"/src/main/java/* use doc && java-pkg_dojavadoc "${S}"/build/docs/html/javadoc } src_test() { java-pkg-2_src_test } 1.1 dev-java/xml-security/Manifest file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xml-security/Manifest?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xml-security/Manifest?rev=1.1&content-type=text/plain Index: Manifest === AUX 1.5.7-build.xml.patch 1124 SHA256 8bba6fdc933f53dfa32e862c4ac8cdfd1c14b78215a48400ca86d9513e1917c5 SHA512 9fd53bf8efde00c0602b007e5d54d00c923432357eb56c727f6f09845a43557b8b168704842e206ac5c78d6718bfd8f3629ee808b6e08e9f18e3097aa7f099e1 WHIRLPOOL 910d8ae3e232ff3cb4db93437550acc2cd50f471b16e4a8ac64164a1a2f51063413d432801990d21e6d0fec4a4be163abcc6a69eeeb44df03ab94fc21e8836db DIST xml-security-bin-1_5_7.zip 9164667 SHA256 37e31a3f80da74efddc5aabc9515366741aa68dfa3f71e903c0a870dec871011 SHA512 ae8e538fe7c90013a89d139358efc06d8921b1b0050a686dcacd123f5a8a8f100be163e88fef59998ea0ba27ebe9855f06d1f33b1ac92fa3f31acbce9934bd36 WHIRLPOOL faa1cd472b013a69ca38505806630aa423706a9a95f83a8bdd98813c8fc870875def6cf5c5157b1409280c362fb4070a8b9822c981bd8bc49b5a3688ccfd1b70 EBUILD xml-security-1.5.7.ebuild 1347 SHA256 3be28831416982d1e3e922806654a2a621dc9e12daeae68e40b6631b1f7740bc SHA512 1796106edf83d502f96549c6f806cbcae4fd2fae11e5c98beec94db608eb024f79767cd67b506626c74623c4b732d1732a8ef34984b7a60447b9f28d68233b87 WHIRLPOOL 2a2b8990d9cc620eca88f2057d7782fcb62be7679c1f0c2e4639cd151255c6ef83d0334760413d92f55645ba80061283049078279903266e23bb5cd2c68cf208 MISC metadata.xml 158 SHA256 ea882ceccfd160b16cf7e79de423bdcc12b3fa000f124491a6df36f5783894fb SHA512 54f88fc3270968439ba87295b04365a89101c55d33a8c209a56036dc60244e5c73f78ec09484b3e5af28de9dee2159b1dab670cbd5d80a9e0c4543145c0390a3 WHIRLPOOL fcffc4fb6751b5a6eec33aa833f9d7dea0168d3ab67f7e34565370f92fd917ed882bcc57585481bf4d31e601f83a592d99d1c3f50fc793f1c38cd174cc8b2f26 1.1 dev-java/xml-security/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xml-security/ChangeLog?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xml-security/ChangeLog?rev=1.1&content-type=text/plain Index: ChangeLog ===
[gentoo-commits] gentoo-x86 commit in dev-java/xml-security/files: 1.5.7-build.xml.patch
ercpe 15/01/11 16:02:21 Added:1.5.7-build.xml.patch Log: New ebuild for dev-java/xml-security (bug #435256) (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 77C501ED) Revision ChangesPath 1.1 dev-java/xml-security/files/1.5.7-build.xml.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xml-security/files/1.5.7-build.xml.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xml-security/files/1.5.7-build.xml.patch?rev=1.1&content-type=text/plain Index: 1.5.7-build.xml.patch === diff --git a/xml-security-1_5_5/build.xml b/xml-security-1_5_5/build.xml index d959d67..d91f98e 100644 --- a/xml-security-1_5_5/build.xml +++ b/xml-security-1_5_5/build.xml @@ -668,7 +668,7 @@ + depends="manifest,build.src"> - - - - - - - - - -
[gentoo-commits] gentoo-x86 commit in gnome-extra/cjs: ChangeLog cjs-2.4.1.ebuild cjs-2.4.0.ebuild
eva 15/01/11 16:06:39 Modified: ChangeLog Added:cjs-2.4.1.ebuild Removed: cjs-2.4.0.ebuild Log: Version bump. Clean up old revision. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.10 gnome-extra/cjs/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/ChangeLog?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/ChangeLog?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/ChangeLog?r1=1.9&r2=1.10 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/gnome-extra/cjs/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 11 Jan 2015 16:01:23 - 1.9 +++ ChangeLog 11 Jan 2015 16:06:39 - 1.10 @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/cjs # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cjs/ChangeLog,v 1.9 2015/01/11 16:01:23 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cjs/ChangeLog,v 1.10 2015/01/11 16:06:39 eva Exp $ + +*cjs-2.4.1 (11 Jan 2015) + + 11 Jan 2015; Gilles Dartiguelongue -cjs-2.4.0.ebuild, + +cjs-2.4.1.ebuild: + Version bump. Clean up old revision. 11 Jan 2015; Gilles Dartiguelongue cjs-2.4.0.ebuild: Add missing cinnamon 2.2 blocker, bug #529812. 1.1 gnome-extra/cjs/cjs-2.4.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/cjs-2.4.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cjs/cjs-2.4.1.ebuild?rev=1.1&content-type=text/plain Index: cjs-2.4.1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/cjs/cjs-2.4.1.ebuild,v 1.1 2015/01/11 16:06:39 eva Exp $ EAPI="5" GCONF_DEBUG="no" inherit autotools eutils gnome2 pax-utils virtualx DESCRIPTION="Linux Mint's fork of gjs for Cinnamon" HOMEPAGE="http://cinnamon.linuxmint.com/"; SRC_URI="https://github.com/linuxmint/cjs/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )" SLOT="0" IUSE="+cairo examples gtk test" KEYWORDS="~amd64 ~x86" RDEPEND=" dev-lang/spidermonkey:24 >=dev-libs/glib-2.36:2 >=dev-libs/gobject-introspection-1.38 sys-libs/readline:0 virtual/libffi cairo? ( x11-libs/cairo[X,glib] ) gtk? ( x11-libs/gtk+:3 ) " DEPEND="${RDEPEND} gnome-base/gnome-common sys-devel/gettext virtual/pkgconfig test? ( sys-apps/dbus ) " # Cinnamon 2.2 does not work with this release. RDEPEND="${RDEPEND} !
[gentoo-commits] gentoo-x86 commit in dev-java/itext/files: 2.0.8-site_xml.patch
ercpe 15/01/11 16:11:57 Removed: 2.0.8-site_xml.patch Log: Version bump of dev-java/itext (bug #475552). Dropped old, broken :5 version. Removed unused patch file. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 77C501ED)
[gentoo-commits] gentoo-x86 commit in dev-java/itext: itext-5.5.4.ebuild ChangeLog itext-5.2.0.ebuild
ercpe 15/01/11 16:11:57 Modified: ChangeLog Added:itext-5.5.4.ebuild Removed: itext-5.2.0.ebuild Log: Version bump of dev-java/itext (bug #475552). Dropped old, broken :5 version. Removed unused patch file. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 77C501ED) Revision ChangesPath 1.103dev-java/itext/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/itext/ChangeLog?rev=1.103&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/itext/ChangeLog?rev=1.103&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/itext/ChangeLog?r1=1.102&r2=1.103 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-java/itext/ChangeLog,v retrieving revision 1.102 retrieving revision 1.103 diff -u -r1.102 -r1.103 --- ChangeLog 10 Aug 2014 20:15:26 - 1.102 +++ ChangeLog 11 Jan 2015 16:11:57 - 1.103 @@ -1,6 +1,13 @@ # ChangeLog for dev-java/itext -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/itext/ChangeLog,v 1.102 2014/08/10 20:15:26 slyfox Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/itext/ChangeLog,v 1.103 2015/01/11 16:11:57 ercpe Exp $ + +*itext-5.5.4 (11 Jan 2015) + + 11 Jan 2015; Johann Schmitz +itext-5.5.4.ebuild, + -files/2.0.8-site_xml.patch, -itext-5.2.0.ebuild: + Version bump of dev-java/itext (bug #475552). Dropped old, broken :5 version. + Removed unused patch file. 10 Aug 2014; Sergei Trofimovich itext-2.1.5-r2.ebuild, itext-5.2.0.ebuild: 1.1 dev-java/itext/itext-5.5.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/itext/itext-5.5.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/itext/itext-5.5.4.ebuild?rev=1.1&content-type=text/plain Index: itext-5.5.4.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-java/itext/itext-5.5.4.ebuild,v 1.1 2015/01/11 16:11:57 ercpe Exp $ EAPI="5" JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-pkg-simple DESCRIPTION="Java library that generate documents in the Portable Document Format (PDF) and/or HTML." HOMEPAGE="http://itextpdf.com"; SRC_URI="mirror://sourceforge/${PN}/${P}.zip" LICENSE="AGPL-3" SLOT="5" KEYWORDS="~amd64 ~x86" COMMON_DEP=" dev-java/bcmail:0 >=dev-java/bcprov-1.49:0 dev-java/bcpkix:0 dev-java/xml-security:0 " RDEPEND="${COMMON_DEP} >=virtual/jre-1.5" DEPEND="${COMMON_DEP} >=virtual/jdk-1.5 app-arch/unzip" JAVA_GENTOO_CLASSPATH="bcmail,bcprov,bcpkix,xml-security" java_prepare() { mkdir source || die for x in *-sources.jar; do unzip -n ${x} -d source || die done rm -v *.jar || die }
[gentoo-commits] gentoo-x86 commit in games-engines/love: ChangeLog
tupone 15/01/11 16:22:41 Modified: ChangeLog Log: Fix UTF-8 for ChangeLog (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D) Revision ChangesPath 1.19 games-engines/love/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/love/ChangeLog?rev=1.19&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/love/ChangeLog?rev=1.19&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/love/ChangeLog?r1=1.18&r2=1.19 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/games-engines/love/ChangeLog,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- ChangeLog 7 Jan 2015 09:21:41 - 1.18 +++ ChangeLog 11 Jan 2015 16:22:41 - 1.19 @@ -1,12 +1,12 @@ # ChangeLog for games-engines/love # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/love/ChangeLog,v 1.18 2015/01/07 09:21:41 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/love/ChangeLog,v 1.19 2015/01/11 16:22:41 tupone Exp $ 07 Jan 2015; Tupone Alfredo love-0.8.0.ebuild, +files/love-0.8.0-freetype2.patch: Fix build with freetype2 - EAPI 5 - 06 Jul 2014; MichaÅ Górny love-0.7.2-r1.ebuild, + 06 Jul 2014; Michał Górny love-0.7.2-r1.ebuild, love-0.8.0.ebuild, love-.ebuild: Replace obsolete mirror://bitbucket with the real URI. @@ -19,11 +19,11 @@ 04 Jul 2013; Agostino Sarubbo love-0.7.2-r1.ebuild: Stable for amd64, wrt bug #475630 - 21 Mar 2013; ChÃ-Thanh Christopher Nguyá» n + 21 Mar 2013; Chí-Thanh Christopher Nguyễn love-.ebuild: Copy autotools files to build directory before eautoreconf, bug #462588. - 21 Mar 2013; ChÃ-Thanh Christopher Nguyá» n + 21 Mar 2013; Chí-Thanh Christopher Nguyễn love-0.7.2-r1.ebuild, love-0.8.0.ebuild: Add dependency on deprecated lua features, bug #462586. @@ -46,7 +46,7 @@ *love-0.7.2-r1 (21 May 2012) - 21 May 2012; ChÃ-Thanh Christopher Nguyá» n + 21 May 2012; Chí-Thanh Christopher Nguyễn +love-0.7.2-r1.ebuild, -love-0.7.2.ebuild, love-0.8.0.ebuild, love-.ebuild: Allow slotting as suggested by Tobias Leupold in bug #416703. Implementation @@ -54,26 +54,26 @@ *love-0.8.0 (20 Apr 2012) - 20 Apr 2012; ChÃ-Thanh Christopher Nguyá» n + 20 Apr 2012; Chí-Thanh Christopher Nguyễn +love-0.8.0.ebuild, love-.ebuild: Version bump, bug #412717. - 17 Apr 2012; MichaÅ Górny love-0.7.2.ebuild, + 17 Apr 2012; Michał Górny love-0.7.2.ebuild, love-.ebuild: Use mirror://bitbucket. - 08 Mar 2012; ChÃ-Thanh Christopher Nguyá» n + 08 Mar 2012; Chí-Thanh Christopher Nguyễn love-0.7.2.ebuild, love-.ebuild: Set correct dependencies, bug #407101. *love- (05 Mar 2012) - 05 Mar 2012; ChÃ-Thanh Christopher Nguyá» n + 05 Mar 2012; Chí-Thanh Christopher Nguyễn +love-.ebuild: Add live ebuild, bug #406861. *love-0.7.2 (05 Nov 2011) - 05 Nov 2011; ChÃ-Thanh Christopher Nguyá» n + 05 Nov 2011; Chí-Thanh Christopher Nguyễn +love-0.7.2.ebuild: Initial commit, taken from the gamerlay overlay.
[gentoo-commits] gentoo-x86 commit in gnome-extra/cinnamon-desktop: ChangeLog cinnamon-desktop-2.4.2.ebuild
eva 15/01/11 16:26:11 Modified: ChangeLog Added:cinnamon-desktop-2.4.2.ebuild Log: Version bump for Cinnamon 2.4, bug #529780. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.6 gnome-extra/cinnamon-desktop/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-desktop/ChangeLog?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-desktop/ChangeLog?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-desktop/ChangeLog?r1=1.5&r2=1.6 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-desktop/ChangeLog,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- ChangeLog 23 Jul 2014 15:17:39 - 1.5 +++ ChangeLog 11 Jan 2015 16:26:11 - 1.6 @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/cinnamon-desktop -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-desktop/ChangeLog,v 1.5 2014/07/23 15:17:39 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-desktop/ChangeLog,v 1.6 2015/01/11 16:26:11 eva Exp $ + +*cinnamon-desktop-2.4.2 (11 Jan 2015) + + 11 Jan 2015; Gilles Dartiguelongue + +cinnamon-desktop-2.4.2.ebuild: + Version bump for Cinnamon 2.4, bug #529780. 23 Jul 2014; Agostino Sarubbo cinnamon-desktop-2.2.3.ebuild: Stable for x86, wrt bug #512012 1.1 gnome-extra/cinnamon-desktop/cinnamon-desktop-2.4.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-desktop/cinnamon-desktop-2.4.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-desktop/cinnamon-desktop-2.4.2.ebuild?rev=1.1&content-type=text/plain Index: cinnamon-desktop-2.4.2.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-desktop/cinnamon-desktop-2.4.2.ebuild,v 1.1 2015/01/11 16:26:11 eva Exp $ EAPI="5" GCONF_DEBUG="no" PYTHON_COMPAT=( python2_7 ) inherit autotools eutils gnome2 python-any-r1 DESCRIPTION="A collection of libraries and utilites used by Cinnamon" HOMEPAGE="http://cinnamon.linuxmint.com/"; SRC_URI="https://github.com/linuxmint/cinnamon-desktop/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2+ FDL-1.1+ LGPL-2+" SLOT="0/4" # subslot = libcinnamon-desktop soname version KEYWORDS="~amd64 ~x86" IUSE="+introspection" RDEPEND=" >=dev-libs/glib-2.32:2 >=x11-libs/gdk-pixbuf-2.21.3:2[introspection?] >=x11-libs/gtk+-3.3.6:3[introspection?] >=x11-libs/libXext-1.1 >=x11-libs/libXrandr-1.3 x11-libs/cairo:=[X] x11-libs/libX11 x11-libs/libxkbfile x11-misc/xkeyboard-config >=gnome-base/gsettings-desktop-schemas-3.5.91 introspection? ( >=dev-libs/gobject-introspection-0.9.7 ) " DEPEND="${RDEPEND} >=dev-util/gtk-doc-am-1.4 >=dev-util/intltool-0.40.6 x11-proto/randrproto x11-proto/xproto virtual/pkgconfig " src_prepare() { epatch_user eautoreconf # Fix intltool unittest echo "schemas/org.cinnamon.desktop.keybindings.gschema.xml.in.in" >> po/POTFILES.in echo "schemas/org.cinnamon.desktop.keybindings.media-keys.gschema.xml.in.in" >> po/POTFILES.in echo "schemas/org.cinnamon.desktop.notifications.gschema.xml.in.in" >> po/POTFILES.in echo "schemas/org.cinnamon.desktop.privacy.gschema.xml.in.in" >> po/POTFILES.in python_fix_shebang files gnome2_src_prepare } src_configure() { DOCS="AUTHORS ChangeLog HACKING MAINTAINERS README" gnome2_src_configure \ --disable-static \ $(use_enable introspection) }
[gentoo-commits] gentoo-x86 commit in media-gfx/asymptote/files: asymptote-2.32-ghostscript-9.15.patch
grozin 15/01/11 16:27:22 Added:asymptote-2.32-ghostscript-9.15.patch Log: Fixing bug #528632 (Portage version: 2.2.15/cvs/Linux i686, signed Manifest commit with key 0x3AFFCE974D34BD8C!) Revision ChangesPath 1.1 media-gfx/asymptote/files/asymptote-2.32-ghostscript-9.15.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/files/asymptote-2.32-ghostscript-9.15.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/files/asymptote-2.32-ghostscript-9.15.patch?rev=1.1&content-type=text/plain Index: asymptote-2.32-ghostscript-9.15.patch === diff -r -U2 asymptote-2.32.orig/runlabel.in asymptote-2.32/runlabel.in --- asymptote-2.32.orig/runlabel.in 2014-05-22 23:11:47.0 +0700 +++ asymptote-2.32/runlabel.in 2015-01-11 21:41:30.268889133 +0600 @@ -112,5 +112,5 @@ const string null="/dev/null"; #endif - cmd.push_back("-sDEVICE=epswrite"); + cmd.push_back("-sDEVICE=eps2write"); cmd.push_back("-sOutputFile="+null); cmd.push_back(stripDir(psname)); @@ -310,5 +310,5 @@ cmd.push_back("-dBATCH"); if(safe) cmd.push_back("-dSAFER"); - cmd.push_back("-sDEVICE=epswrite"); + cmd.push_back("-sDEVICE=eps2write"); cmd.push_back("-sOutputFile=-"); cmd.push_back(pdfname); @@ -399,5 +399,5 @@ cmd2.push_back("-P"); if(safe) cmd2.push_back("-dSAFER"); - cmd2.push_back("-sDEVICE=epswrite"); + cmd2.push_back("-sDEVICE=eps2write"); cmd2.push_back("-sOutputFile=-"); cmd2.push_back("-");
[gentoo-commits] gentoo-x86 commit in media-gfx/asymptote: asymptote-2.32.ebuild ChangeLog
grozin 15/01/11 16:27:22 Modified: asymptote-2.32.ebuild ChangeLog Log: Fixing bug #528632 (Portage version: 2.2.15/cvs/Linux i686, signed Manifest commit with key 0x3AFFCE974D34BD8C!) Revision ChangesPath 1.3 media-gfx/asymptote/asymptote-2.32.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/asymptote-2.32.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/asymptote-2.32.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/asymptote-2.32.ebuild?r1=1.2&r2=1.3 Index: asymptote-2.32.ebuild === RCS file: /var/cvsroot/gentoo-x86/media-gfx/asymptote/asymptote-2.32.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- asymptote-2.32.ebuild 7 Jun 2014 07:46:21 - 1.2 +++ asymptote-2.32.ebuild 11 Jan 2015 16:27:22 - 1.3 @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/asymptote/asymptote-2.32.ebuild,v 1.2 2014/06/07 07:46:21 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/asymptote/asymptote-2.32.ebuild,v 1.3 2015/01/11 16:27:22 grozin Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) @@ -53,6 +53,9 @@ # Bug #322473 epatch "${FILESDIR}/${P}-info.patch" + # Bug #528632 - fix from https://www.archlinux.org/packages/extra/x86_64/asymptote/ + epatch "${FILESDIR}/${P}-ghostscript-9.15.patch" + eautoreconf } 1.111media-gfx/asymptote/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/ChangeLog?rev=1.111&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/ChangeLog?rev=1.111&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/ChangeLog?r1=1.110&r2=1.111 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-gfx/asymptote/ChangeLog,v retrieving revision 1.110 retrieving revision 1.111 diff -u -r1.110 -r1.111 --- ChangeLog 7 Jun 2014 07:46:21 - 1.110 +++ ChangeLog 11 Jan 2015 16:27:22 - 1.111 @@ -1,6 +1,10 @@ # ChangeLog for media-gfx/asymptote -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/asymptote/ChangeLog,v 1.110 2014/06/07 07:46:21 grozin Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/asymptote/ChangeLog,v 1.111 2015/01/11 16:27:22 grozin Exp $ + + 11 Jan 2015; Andrey Grozin asymptote-2.32.ebuild, + +files/asymptote-2.32-ghostscript-9.15.patch: + Fixing bug #528632 07 Jun 2014; Andrey Grozin asymptote-2.32.ebuild: Fixed #512590
[gentoo-commits] gentoo-x86 commit in x11-wm/muffin: ChangeLog muffin-2.4.2.ebuild
eva 15/01/11 16:29:11 Modified: ChangeLog Added:muffin-2.4.2.ebuild Log: Version bump. Clean up old revision, bug #529808. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.24 x11-wm/muffin/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/muffin/ChangeLog?rev=1.24&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/muffin/ChangeLog?rev=1.24&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/muffin/ChangeLog?r1=1.23&r2=1.24 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/x11-wm/muffin/ChangeLog,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- ChangeLog 30 Sep 2014 13:53:38 - 1.23 +++ ChangeLog 11 Jan 2015 16:29:11 - 1.24 @@ -1,6 +1,11 @@ # ChangeLog for x11-wm/muffin -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/muffin/ChangeLog,v 1.23 2014/09/30 13:53:38 tetromino Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/muffin/ChangeLog,v 1.24 2015/01/11 16:29:11 eva Exp $ + +*muffin-2.4.2 (11 Jan 2015) + + 11 Jan 2015; Gilles Dartiguelongue +muffin-2.4.2.ebuild: + Version bump. Clean up old revision, bug #529808. 30 Sep 2014; Alexandre Rostovtsev -muffin-1.8.2-r1.ebuild, -files/muffin-1.8.2-maximized-jump.patch: 1.1 x11-wm/muffin/muffin-2.4.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/muffin/muffin-2.4.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/muffin/muffin-2.4.2.ebuild?rev=1.1&content-type=text/plain Index: muffin-2.4.2.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-wm/muffin/muffin-2.4.2.ebuild,v 1.1 2015/01/11 16:29:11 eva Exp $ EAPI="5" GCONF_DEBUG="no" PYTHON_COMPAT=( python2_7 ) inherit autotools eutils gnome2 python-any-r1 DESCRIPTION="Compositing window manager forked from Mutter for use with Cinnamon" HOMEPAGE="http://cinnamon.linuxmint.com/"; SRC_URI="https://github.com/linuxmint/muffin/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" IUSE="+introspection test xinerama" KEYWORDS="~amd64 ~x86" COMMON_DEPEND=" >=x11-libs/pango-1.2[X,introspection?] >=x11-libs/cairo-1.10:=[X] x11-libs/gdk-pixbuf:2[introspection?] >=x11-libs/gtk+-3.3.7:3[X,introspection?] >=dev-libs/glib-2.25.10:2 >=gnome-extra/cinnamon-desktop-2.3:0=[introspection?] >=gnome-base/gsettings-desktop-schemas-3.3.0[introspection?] >=media-libs/clutter-1.9.10:1.0=[introspection?] >=media-libs/cogl-1.9.6:1.0=[introspection?] >=media-libs/libcanberra-0.26[gtk3] >=x11-libs/libXcomposite-0.2 >=x11-libs/startup-notification-0.7:= x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXrender virtual/opengl gnome-extra/zenity introspection? ( >=dev-libs/gobject-introspection-0.9.5 ) xinerama? ( x11-libs/libXinerama ) " DEPEND="${COMMON_DEPEND} ${PYTHON_DEPS} >=app-text/gnome-doc-utils-0.8 sys-devel/gettext >=dev-util/intltool-0.35 virtual/pkgconfig test? ( app-text/docbook-xml-dtd:4.5 ) xinerama? ( x11-proto/xineramaproto ) x11-proto/xextproto x11-proto/xproto " RDEPEND="${COMMON_DEPEND} !x11-misc/expocity " src_prepare() { epatch_user eautoreconf gnome2_src_prepare } src_configure() { DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README* *.txt doc/*.txt" gnome2_src_configure \ --disable-static \ --enable-shape \ --enable-sm \ --enable-startup-notification \ --enable-xsync \ --enable-verbose-mode \ --with-libcanberra \ $(use_enable introspection) \ $(use_enable xinerama) }
[gentoo-commits] gentoo-x86 commit in gnome-extra/cinnamon-screensaver: ChangeLog cinnamon-screensaver-2.4.0.ebuild
eva 15/01/11 16:41:32 Modified: ChangeLog Added:cinnamon-screensaver-2.4.0.ebuild Log: Version bump for Cinnamon 2.4, bug #529874. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.7 gnome-extra/cinnamon-screensaver/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-screensaver/ChangeLog?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-screensaver/ChangeLog?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-screensaver/ChangeLog?r1=1.6&r2=1.7 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-screensaver/ChangeLog,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ChangeLog 23 Jul 2014 15:17:43 - 1.6 +++ ChangeLog 11 Jan 2015 16:41:32 - 1.7 @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/cinnamon-screensaver -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-screensaver/ChangeLog,v 1.6 2014/07/23 15:17:43 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-screensaver/ChangeLog,v 1.7 2015/01/11 16:41:32 eva Exp $ + +*cinnamon-screensaver-2.4.0 (11 Jan 2015) + + 11 Jan 2015; Gilles Dartiguelongue + +cinnamon-screensaver-2.4.0.ebuild: + Version bump for Cinnamon 2.4, bug #529874. 23 Jul 2014; Agostino Sarubbo cinnamon-screensaver-2.2.4.ebuild: 1.1 gnome-extra/cinnamon-screensaver/cinnamon-screensaver-2.4.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-screensaver/cinnamon-screensaver-2.4.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-screensaver/cinnamon-screensaver-2.4.0.ebuild?rev=1.1&content-type=text/plain Index: cinnamon-screensaver-2.4.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-screensaver/cinnamon-screensaver-2.4.0.ebuild,v 1.1 2015/01/11 16:41:32 eva Exp $ EAPI="5" GCONF_DEBUG="yes" inherit autotools eutils gnome2 DESCRIPTION="Screensaver for Cinnamon" HOMEPAGE="http://cinnamon.linuxmint.com/"; SRC_URI="https://github.com/linuxmint/cinnamon-screensaver/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" IUSE="debug doc pam systemd" KEYWORDS="~amd64 ~x86" COMMON_DEPEND=" >=dev-libs/glib-2.25.6:2 >=x11-libs/gtk+-2.99.3:3 >=gnome-extra/cinnamon-desktop-1.0:0= >=gnome-base/gsettings-desktop-schemas-0.1.7 >=gnome-base/libgnomekbd-3.6 >=dev-libs/dbus-glib-0.71 sys-apps/dbus x11-libs/libxklavier x11-libs/libX11 x11-libs/libXext x11-libs/libXrandr x11-libs/libXScrnSaver x11-libs/libXxf86misc x11-libs/libXxf86vm x11-themes/gnome-icon-theme-symbolic pam? ( virtual/pam ) systemd? ( >=sys-apps/systemd-31:0= ) " # our cinnamon-1.8 ebuilds installed a cinnamon-screensaver.desktop hack RDEPEND=" !~gnome-extra/cinnamon-1.8.8.1 !systemd? ( sys-auth/consolekit ) " DEPEND="${COMMON_DEPEND} >=dev-util/intltool-0.35 gnome-base/gnome-common sys-devel/gettext virtual/pkgconfig x11-proto/xextproto x11-proto/randrproto x11-proto/scrnsaverproto x11-proto/xf86miscproto doc? ( app-text/xmlto app-text/docbook-xml-dtd:4.1.2 app-text/docbook-xml-dtd:4.4 ) " src_prepare() { epatch_user eautoreconf gnome2_src_prepare } src_configure() { DOCS="AUTHORS ChangeLog HACKING NEWS README" gnome2_src_configure \ $(use_enable doc docbook-docs) \ $(use_enable pam locking) \ $(use_with systemd) \ --with-mit-ext \ --with-pam-prefix=/etc \ --with-xf86gamma-ext \ --with-kbd-layout-indicator # Do not use --without-console-kit, it would provide no benefit: there is # no build-time or run-time check for consolekit, $PN merely listens to # consolekit's messages over dbus. }
[gentoo-commits] gentoo-x86 commit in net-misc/strongswan: ChangeLog strongswan-5.2.2.ebuild
nativemad15/01/11 16:47:49 Modified: ChangeLog strongswan-5.2.2.ebuild Log: x86 stable, see bug 536226 (Portage version: 2.2.14/cvs/Linux i686, signed Manifest commit with key C1DE54B2) Revision ChangesPath 1.149net-misc/strongswan/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/strongswan/ChangeLog?rev=1.149&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/strongswan/ChangeLog?rev=1.149&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/strongswan/ChangeLog?r1=1.148&r2=1.149 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-misc/strongswan/ChangeLog,v retrieving revision 1.148 retrieving revision 1.149 diff -u -r1.148 -r1.149 --- ChangeLog 11 Jan 2015 09:02:58 - 1.148 +++ ChangeLog 11 Jan 2015 16:47:49 - 1.149 @@ -1,6 +1,9 @@ # ChangeLog for net-misc/strongswan # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/strongswan/ChangeLog,v 1.148 2015/01/11 09:02:58 gurligebis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/strongswan/ChangeLog,v 1.149 2015/01/11 16:47:49 nativemad Exp $ + + 11 Jan 2015; Andreas Schuerch strongswan-5.2.2.ebuild: + x86 stable, see bug 536226 *strongswan-5.2.2 (11 Jan 2015) 1.2 net-misc/strongswan/strongswan-5.2.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/strongswan/strongswan-5.2.2.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/strongswan/strongswan-5.2.2.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/strongswan/strongswan-5.2.2.ebuild?r1=1.1&r2=1.2 Index: strongswan-5.2.2.ebuild === RCS file: /var/cvsroot/gentoo-x86/net-misc/strongswan/strongswan-5.2.2.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- strongswan-5.2.2.ebuild 11 Jan 2015 09:02:58 - 1.1 +++ strongswan-5.2.2.ebuild 11 Jan 2015 16:47:49 - 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/strongswan/strongswan-5.2.2.ebuild,v 1.1 2015/01/11 09:02:58 gurligebis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/strongswan/strongswan-5.2.2.ebuild,v 1.2 2015/01/11 16:47:49 nativemad Exp $ EAPI=5 inherit eutils linux-info systemd user @@ -11,7 +11,7 @@ LICENSE="GPL-2 RSA DES" SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 x86" IUSE="+caps curl +constraints debug dhcp eap farp gcrypt +gmp ldap mysql networkmanager +non-root +openssl sqlite pam pkcs11" STRONGSWAN_PLUGINS_STD="led lookip systime-fix unity vici"
[gentoo-commits] gentoo-x86 commit in gnome-extra/cinnamon-translations: ChangeLog cinnamon-translations-2.4.2.ebuild cinnamon-translations-2.2.3.ebuild
eva 15/01/11 16:58:35 Modified: ChangeLog Added:cinnamon-translations-2.4.2.ebuild Removed: cinnamon-translations-2.2.3.ebuild Log: Version bump for Cinnamon 2.4, bug #529876. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.8 gnome-extra/cinnamon-translations/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-translations/ChangeLog?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-translations/ChangeLog?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-translations/ChangeLog?r1=1.7&r2=1.8 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-translations/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ChangeLog 19 Dec 2014 13:37:56 - 1.7 +++ ChangeLog 11 Jan 2015 16:58:35 - 1.8 @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/cinnamon-translations -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-translations/ChangeLog,v 1.7 2014/12/19 13:37:56 pacho Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-translations/ChangeLog,v 1.8 2015/01/11 16:58:35 eva Exp $ + +*cinnamon-translations-2.4.2 (11 Jan 2015) + + 11 Jan 2015; Gilles Dartiguelongue + -cinnamon-translations-2.2.3.ebuild, +cinnamon-translations-2.4.2.ebuild: + Version bump for Cinnamon 2.4, bug #529876. 19 Dec 2014; Pacho Ramos cinnamon-translations-2.2.4.ebuild: 1.1 gnome-extra/cinnamon-translations/cinnamon-translations-2.4.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-translations/cinnamon-translations-2.4.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-translations/cinnamon-translations-2.4.2.ebuild?rev=1.1&content-type=text/plain Index: cinnamon-translations-2.4.2.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-translations/cinnamon-translations-2.4.2.ebuild,v 1.1 2015/01/11 16:58:35 eva Exp $ EAPI=5 PLOCALES="af am an ar as ast az be be@latin bg bn bn_IN br bs ca ca@valencia crh cs csb cy da de dz el en_AU en_CA en_GB en@shaw eo es es_AR et eu fa fi fil fo fr fr_CA ga gd gl gu he hi hr hu hy ia id is it ja jv ka kk km kn ko ksw ku ky la li lo lt lv mai mg mk ml mn mr ms my nb nds ne nl nn nso oc om or pa pl ps pt pt_BR ro ru rue rw shn si sk sl so sq sr sr@ijekavianlatin sr@latin sv ta te tg th tl tlh tpi tr ts ug uk ur uz uz@cyrillic vi wa xh yi zh_CN zh_HK zh_TW zu" inherit eutils l10n DESCRIPTION="Translation data for Cinnamon" HOMEPAGE="http://cinnamon.linuxmint.com/"; SRC_URI="https://github.com/linuxmint/cinnamon-translations/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="" RDEPEND="" RESTRICT="test" # tests are for upstream translators and need network access src_prepare() { epatch_user } src_configure() { :; } src_install() { # Cannot run before since locales are not in the expected place for this to work l10n_find_plocales_changes "${S}"/usr/share/locale "" "" install_locale() { dodir /usr/share/locale insinto /usr/share/locale doins -r usr/share/locale/${1} } l10n_for_each_locale_do install_locale }
[gentoo-commits] gentoo-x86 commit in gnome-extra/cinnamon-menus: ChangeLog cinnamon-menus-2.4.0.ebuild
eva 15/01/11 17:01:56 Modified: ChangeLog Added:cinnamon-menus-2.4.0.ebuild Log: Version bump for Cinnamon 2.4, bug #529878. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C6085806) Revision ChangesPath 1.4 gnome-extra/cinnamon-menus/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-menus/ChangeLog?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-menus/ChangeLog?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-menus/ChangeLog?r1=1.3&r2=1.4 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-menus/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeLog 23 Jul 2014 15:17:41 - 1.3 +++ ChangeLog 11 Jan 2015 17:01:56 - 1.4 @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/cinnamon-menus -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-menus/ChangeLog,v 1.3 2014/07/23 15:17:41 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-menus/ChangeLog,v 1.4 2015/01/11 17:01:56 eva Exp $ + +*cinnamon-menus-2.4.0 (11 Jan 2015) + + 11 Jan 2015; Gilles Dartiguelongue + +cinnamon-menus-2.4.0.ebuild: + Version bump for Cinnamon 2.4, bug #529878. 23 Jul 2014; Agostino Sarubbo cinnamon-menus-2.2.0.ebuild: Stable for x86, wrt bug #512012 1.1 gnome-extra/cinnamon-menus/cinnamon-menus-2.4.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-menus/cinnamon-menus-2.4.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/cinnamon-menus/cinnamon-menus-2.4.0.ebuild?rev=1.1&content-type=text/plain Index: cinnamon-menus-2.4.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/cinnamon-menus/cinnamon-menus-2.4.0.ebuild,v 1.1 2015/01/11 17:01:56 eva Exp $ EAPI="5" GCONF_DEBUG="no" inherit gnome2 DESCRIPTION="Cinnamon's library for the Desktop Menu fd.o specification" HOMEPAGE="http://cinnamon.linuxmint.com/"; SRC_URI="https://github.com/linuxmint/cinnamon-menus/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2+ LGPL-2+" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="debug +introspection" RDEPEND=" >=dev-libs/glib-2.29.15:2 introspection? ( >=dev-libs/gobject-introspection-0.9.5 ) " DEPEND="${RDEPEND} >=dev-util/intltool-0.40 sys-devel/gettext virtual/pkgconfig " src_configure() { DOCS="AUTHORS ChangeLog HACKING NEWS README" # Do NOT compile with --disable-debug/--enable-debug=no # It disables api usage checks gnome2_src_configure \ $(usex debug --enable-debug=yes --enable-debug=minimum) \ $(use_enable introspection) \ --disable-static }
[gentoo-commits] gentoo-x86 commit in net-proxy/torsocks/files: avoid-pie-static.patch
blueness15/01/11 17:08:50 Added:avoid-pie-static.patch Log: Avoid config test with -pie -static, bug #533862 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA) Revision ChangesPath 1.1 net-proxy/torsocks/files/avoid-pie-static.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/files/avoid-pie-static.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/files/avoid-pie-static.patch?rev=1.1&content-type=text/plain Index: avoid-pie-static.patch === We need to avoid tests which have -static and -pie together. See https://bugs.gentoo.org/show_bug.cgi?id=533862 diff -Naur torsocks-2.0.0.orig/configure.ac torsocks-2.0.0/configure.ac --- torsocks-2.0.0.orig/configure.ac2014-08-11 12:44:46.0 -0400 +++ torsocks-2.0.0/configure.ac 2015-01-11 12:00:21.174826622 -0500 @@ -144,24 +144,6 @@ # Version information for libtorsocks TORSOCKSLDFLAGS="$LDFLAGS -version-info 1:0:0" -# Check for the gcc hardening flags. -AX_CHECK_COMPILE_FLAG([-fPIE],[CFLAGS="$CFLAGS -fPIE"],[],[]) -AX_CHECK_COMPILE_FLAG([-fwrapv],[CFLAGS="$CFLAGS -fwrapv"],[],[]) -AX_CHECK_COMPILE_FLAG([--param ssp-buffer-size=1], - [CFLAGS="$CFLAGS --param ssp-buffer-size=1"],[],[]) -AX_CHECK_COMPILE_FLAG([-fstack-protector-all], - [CFLAGS="$CFLAGS -fstack-protector-all"],[],[] -) -AX_CHECK_COMPILE_FLAG([-fno-strict-overflow], - [CFLAGS="$CFLAGS -fno-strict-overflow"],[],[] -) - -dnl Add hardening linker flags -AX_CHECK_LINK_FLAG([-pie],[LDFLAGS="$LDFLAGS -pie"],[],[]) -AX_CHECK_LINK_FLAG([-z relro],[LDFLAGS="$LDFLAGS -z relro"],[],[]) -AX_CHECK_LINK_FLAG([-z now],[LDFLAGS="$LDFLAGS -z now"],[],[]) -LDFLAGS="$LDFLAGS -D_FORTIFY_SOURCE=2" - dnl Linker checks for Mac OSX, which uses DYLD_INSERT_LIBRARIES dnl instead of LD_PRELOAD case "$host_os" in @@ -255,6 +237,34 @@ DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir) -I\$(top_builddir)/src -I\$(top_builddir)/include -include config.h" AC_SUBST(DEFAULT_INCLUDES) +## +# 9. Test and add hardening flags +## + +# Check for the gcc hardening flags. +AX_CHECK_COMPILE_FLAG([-fPIE],[CFLAGS="$CFLAGS -fPIE"],[],[]) +AX_CHECK_COMPILE_FLAG([-fwrapv],[CFLAGS="$CFLAGS -fwrapv"],[],[]) +AX_CHECK_COMPILE_FLAG([--param ssp-buffer-size=1], + [CFLAGS="$CFLAGS --param ssp-buffer-size=1"],[],[]) +AX_CHECK_COMPILE_FLAG([-fstack-protector-all], + [CFLAGS="$CFLAGS -fstack-protector-all"],[],[] +) +AX_CHECK_COMPILE_FLAG([-fno-strict-overflow], + [CFLAGS="$CFLAGS -fno-strict-overflow"],[],[] +) + +dnl Add hardening linker flags +AX_CHECK_LINK_FLAG([-pie],[LDFLAGS="$LDFLAGS -pie"],[],[]) +AX_CHECK_LINK_FLAG([-z relro],[LDFLAGS="$LDFLAGS -z relro"],[],[]) +AX_CHECK_LINK_FLAG([-z now],[LDFLAGS="$LDFLAGS -z now"],[],[]) + +dnl Add glibc hardening +CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2" + +## +# 10. Finish up +## + AC_CONFIG_FILES([ Makefile extras/Makefile
[gentoo-commits] gentoo-x86 commit in net-proxy/torsocks: torsocks-2.0.0-r1.ebuild ChangeLog torsocks-2.0.0.ebuild
blueness15/01/11 17:08:50 Modified: ChangeLog Added:torsocks-2.0.0-r1.ebuild Removed: torsocks-2.0.0.ebuild Log: Avoid config test with -pie -static, bug #533862 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA) Revision ChangesPath 1.18 net-proxy/torsocks/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/ChangeLog?rev=1.18&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/ChangeLog?rev=1.18&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/ChangeLog?r1=1.17&r2=1.18 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-proxy/torsocks/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ChangeLog 4 Jan 2015 13:26:36 - 1.17 +++ ChangeLog 11 Jan 2015 17:08:50 - 1.18 @@ -1,6 +1,13 @@ # ChangeLog for net-proxy/torsocks # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/torsocks/ChangeLog,v 1.17 2015/01/04 13:26:36 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/torsocks/ChangeLog,v 1.18 2015/01/11 17:08:50 blueness Exp $ + +*torsocks-2.0.0-r1 (11 Jan 2015) + + 11 Jan 2015; Anthony G. Basile + +files/avoid-pie-static.patch, +torsocks-2.0.0-r1.ebuild, + -torsocks-2.0.0.ebuild: + Avoid config test with -pie -static, bug #533862 04 Jan 2015; Anthony G. Basile -torsocks-2.0.0_rc2.ebuild, -torsocks-2.0.0_rc3.ebuild, torsocks-2.0.0.ebuild: 1.1 net-proxy/torsocks/torsocks-2.0.0-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/torsocks-2.0.0-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/torsocks-2.0.0-r1.ebuild?rev=1.1&content-type=text/plain Index: torsocks-2.0.0-r1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-proxy/torsocks/torsocks-2.0.0-r1.ebuild,v 1.1 2015/01/11 17:08:50 blueness Exp $ EAPI=5 inherit autotools eutils multilib versionator MY_PV="$(replace_version_separator 3 -)" MY_PF="${PN}-${MY_PV}" S=${WORKDIR}/${MY_PF} DESCRIPTION="Use most socks-friendly applications with Tor" HOMEPAGE="http://github.com/dgoulet/torsocks"; SRC_URI="https://github.com/dgoulet/torsocks/archive/v${MY_PV}.tar.gz -> ${MY_PF}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" IUSE="static-libs" # We do not depend on tor which might be running on a different box DEPEND="" RDEPEND="${DEPEND}" src_prepare() { sed -i -e "/dist_doc_DATA/s/^/#/" Makefile.am doc/Makefile.am || die # Disable tests requiring network access. sed -i -e '/^\.\/test_dns$/d' tests/test_list || \ die "failed to disable network tests" # Bug #533862 epatch "${FILESDIR}"/avoid-pie-static.patch eautoreconf } src_configure() { econf $(use_enable static-libs static) } src_install() { default dodoc ChangeLog README.md TODO doc/notes/DEBUG doc/socks/{SOCKS5,socks-extensions.txt} #Remove libtool .la files cd "${D}"/usr/$(get_libdir)/torsocks rm -f *.la }
[gentoo-commits] gentoo-x86 commit in x11-wm/fluxbox: ChangeLog fluxbox-1.3.6.ebuild
titanofold15/01/11 17:18:40 Modified: ChangeLog Added:fluxbox-1.3.6.ebuild Log: Version bump fixes bug 535864. Thanks Daniel Campbell. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D1BBFDA0) Revision ChangesPath 1.316x11-wm/fluxbox/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/fluxbox/ChangeLog?rev=1.316&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/fluxbox/ChangeLog?rev=1.316&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/fluxbox/ChangeLog?r1=1.315&r2=1.316 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/ChangeLog,v retrieving revision 1.315 retrieving revision 1.316 diff -u -r1.315 -r1.316 --- ChangeLog 7 Jan 2015 07:34:24 - 1.315 +++ ChangeLog 11 Jan 2015 17:18:40 - 1.316 @@ -1,6 +1,11 @@ # ChangeLog for x11-wm/fluxbox # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/ChangeLog,v 1.315 2015/01/07 07:34:24 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/ChangeLog,v 1.316 2015/01/11 17:18:40 titanofold Exp $ + +*fluxbox-1.3.6 (11 Jan 2015) + + 11 Jan 2015; Aaron W. Swenson +fluxbox-1.3.6.ebuild: + Version bump fixes bug 535864. Thanks Daniel Campbell. 07 Jan 2015; Jeroen Roovers metadata.xml: Update e-mail address. 1.1 x11-wm/fluxbox/fluxbox-1.3.6.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/fluxbox/fluxbox-1.3.6.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/fluxbox/fluxbox-1.3.6.ebuild?rev=1.1&content-type=text/plain Index: fluxbox-1.3.6.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/fluxbox-1.3.6.ebuild,v 1.1 2015/01/11 17:18:40 titanofold Exp $ EAPI=5 inherit eutils flag-o-matic toolchain-funcs prefix IUSE="nls xinerama bidi +truetype +imlib +slit +toolbar vim-syntax" DESCRIPTION="Fluxbox is an X11 window manager featuring tabs and an iconbar" SRC_URI="mirror://sourceforge/fluxbox/${P}.tar.xz" HOMEPAGE="http://www.fluxbox.org"; SLOT="0" LICENSE="MIT" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux" RDEPEND=" !!<=x11-misc/fbdesk-1.2.1 !!<=x11-misc/fluxconf-0.9.9 !!=dev-libs/fribidi-0.19.2 ) imlib? ( >=media-libs/imlib2-1.2.0[X] ) truetype? ( media-libs/freetype ) vim-syntax? ( app-vim/fluxbox-syntax ) x11-libs/libXext x11-libs/libXft x11-libs/libXpm x11-libs/libXrandr x11-libs/libXrender xinerama? ( x11-libs/libXinerama ) || ( x11-misc/gxmessage x11-apps/xmessage ) " DEPEND=" ${RDEPEND} bidi? ( virtual/pkgconfig ) nls? ( sys-devel/gettext ) x11-proto/xextproto " src_prepare() { # We need to be able to include directories rather than just plain # files in menu [include] items. This patch will allow us to do clever # things with style ebuilds. epatch "${FILESDIR}/gentoo_style_location-1.1.x.patch" eprefixify util/fluxbox-generate_menu.in epatch "${FILESDIR}"/osx-has-otool.patch # Add in the Gentoo -r number to fluxbox -version output. if [[ "${PR}" == "r0" ]] ; then suffix="gentoo" else suffix="gentoo-${PR}" fi sed -i \ -e "s~\(__fluxbox_version .@VERSION@\)~\1-${suffix}~" \ version.h.in || die "version sed failed" } src_configure() { use bidi && append-cppflags "$($(tc-getPKG_CONFIG) --cflags fribidi)" econf ${myconf} \ $(use_enable bidi fribidi ) \ $(use_enable imlib imlib2) \ $(use_enable nls) \ $(use_enable slit ) \ $(use_enable toolbar ) \ $(use_enable truetype xft) \ $(use_enable xinerama) \ --sysconfdir="${EPREFIX}"/etc/X11/${PN} \ --with-style="${EPREFIX}"/usr/share/fluxbox/styles/Emerge } src_compile() { default ebegin "Creating a menu file (may take a while)" mkdir -p "${T}/home/.fluxbox" || die "mkdir home failed" # Call fluxbox-generate_menu through bash since it lacks +x # chmod 744 may be an equal fix MENUFILENAME="${S}/data/menu" MENUTITLE="Fluxbox ${PV}" \ CHECKINIT="no. go away." HOME="${T}/home" \ bash "${S}/util/fluxbox-generate_menu" -is -ds \ || die "menu generation failed" eend $? } src_inst