[gentoo-commits] gentoo-x86 commit in profiles: package.mask ChangeLog
polynomial-c15/08/08 09:19:40 Modified: package.mask ChangeLog Log: Removed =sys-libs/tdb-1.3.7 mask Revision ChangesPath 1.16706 profiles/package.mask file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16706&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16706&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?r1=1.16705&r2=1.16706 Index: package.mask === RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v retrieving revision 1.16705 retrieving revision 1.16706 diff -u -r1.16705 -r1.16706 --- package.mask8 Aug 2015 05:18:37 - 1.16705 +++ package.mask8 Aug 2015 09:19:40 - 1.16706 @@ -1,5 +1,5 @@ -# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16705 2015/08/08 05:18:37 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16706 2015/08/08 09:19:40 polynomial-c 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 @@ -30,12 +30,6 @@ #--- END OF EXAMPLES --- -# Lars Wendler (07 Aug 2015) -# Masked due to build system problems (bug #556920) -=sys-libs/tdb-1.3.7 -#depends on >=sys-libs/tdb-1.3.7 -=sys-libs/ldb-1.1.21 - # Matthew Thode (04 Aug 2015) # removing old and never working horizon Bug #556710 www-apps/horizon 1.10230 profiles/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10230&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10230&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10229&r2=1.10230 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v retrieving revision 1.10229 retrieving revision 1.10230 diff -u -r1.10229 -r1.10230 --- ChangeLog 7 Aug 2015 14:20:05 - 1.10229 +++ ChangeLog 8 Aug 2015 09:19:40 - 1.10230 @@ -1,11 +1,14 @@ # ChangeLog for profile directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10229 2015/08/07 14:20:05 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10230 2015/08/08 09:19:40 polynomial-c 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! + 08 Aug 2015; Lars Wendler package.mask: + Removed =sys-libs/tdb-1.3.7 mask. + 07 Aug 2015; Lars Wendler package.mask: Masked =sys-libs/tdb-1.3.7 due to build system problems (bug #556920).
[gentoo-commits] gentoo-x86 commit in sys-libs/tdb/files: tdb-1.3.7-fix.patch
polynomial-c15/08/08 09:18:14 Added:tdb-1.3.7-fix.patch Log: Fixed compilation with abi_x86_32 (bug #556920) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 sys-libs/tdb/files/tdb-1.3.7-fix.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/files/tdb-1.3.7-fix.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/files/tdb-1.3.7-fix.patch?rev=1.1&content-type=text/plain Index: tdb-1.3.7-fix.patch === >From patchwork Thu Jul 23 05:10:38 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: tdb: Fix broken build with --disable-python Date: Thu, 23 Jul 2015 04:10:38 - From: Martin Schwenke X-Patchwork-Id: 11098 Message-Id: <20150723151038.617e1...@martins.ozlabs.org> To: Samba Technical Please NACK if you don't want this pushed... :-) peace & happiness, martin >From c7609c35b6bdb488b74d63ebfd27838b9b8e7e2f Mon Sep 17 00:00:00 2001 From: Martin Schwenke Date: Thu, 23 Jul 2015 09:47:24 +1000 Subject: [PATCH] tdb: Fix broken build with --disable-python With --disable-python, we should not install any python files. Signed-off-by: Martin Schwenke Reviewed-by: Amitay Isaacs --- lib/tdb/wscript | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/tdb/wscript b/lib/tdb/wscript index 5845fa0..1822e74 100644 --- a/lib/tdb/wscript +++ b/lib/tdb/wscript @@ -187,12 +187,13 @@ def build(bld): realname='tdb.so', cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION) -for env in bld.gen_python_environments(['PKGCONFIGDIR']): -bld.SAMBA_SCRIPT('_tdb_text.py', - pattern='_tdb_text.py', - installdir='python') +if not bld.env.disable_python: +for env in bld.gen_python_environments(['PKGCONFIGDIR']): +bld.SAMBA_SCRIPT('_tdb_text.py', + pattern='_tdb_text.py', + installdir='python') -bld.INSTALL_FILES('${PYTHONARCHDIR}', '_tdb_text.py') +bld.INSTALL_FILES('${PYTHONARCHDIR}', '_tdb_text.py') def testonly(ctx): '''run tdb testsuite''' -- 2.1.4
[gentoo-commits] gentoo-x86 commit in sys-libs/tdb: tdb-1.3.7.ebuild ChangeLog
polynomial-c15/08/08 09:18:14 Modified: tdb-1.3.7.ebuild ChangeLog Log: Fixed compilation with abi_x86_32 (bug #556920) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.2 sys-libs/tdb/tdb-1.3.7.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/tdb-1.3.7.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/tdb-1.3.7.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/tdb-1.3.7.ebuild?r1=1.1&r2=1.2 Index: tdb-1.3.7.ebuild === RCS file: /var/cvsroot/gentoo-x86/sys-libs/tdb/tdb-1.3.7.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- tdb-1.3.7.ebuild7 Aug 2015 07:39:36 - 1.1 +++ tdb-1.3.7.ebuild8 Aug 2015 09:18:14 - 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/sys-libs/tdb/tdb-1.3.7.ebuild,v 1.1 2015/08/07 07:39:36 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/tdb-1.3.7.ebuild,v 1.2 2015/08/08 09:18:14 polynomial-c Exp $ EAPI=5 @@ -29,6 +29,7 @@ WAF_BINARY="${S}/buildtools/bin/waf" src_prepare() { + epatch "${FILESDIR}"/${PN}-1.3.7-fix.patch python_fix_shebang . multilib_copy_sources } 1.86 sys-libs/tdb/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/ChangeLog?rev=1.86&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/ChangeLog?rev=1.86&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/ChangeLog?r1=1.85&r2=1.86 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-libs/tdb/ChangeLog,v retrieving revision 1.85 retrieving revision 1.86 diff -u -r1.85 -r1.86 --- ChangeLog 7 Aug 2015 07:39:36 - 1.85 +++ ChangeLog 8 Aug 2015 09:18:14 - 1.86 @@ -1,6 +1,10 @@ # ChangeLog for sys-libs/tdb # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/ChangeLog,v 1.85 2015/08/07 07:39:36 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/ChangeLog,v 1.86 2015/08/08 09:18:14 polynomial-c Exp $ + + 08 Aug 2015; Lars Wendler tdb-1.3.7.ebuild, + +files/tdb-1.3.7-fix.patch: + Fixed compilation with abi_x86_32 (bug #556920). *tdb-1.3.7 (07 Aug 2015)
[gentoo-commits] gentoo-x86 commit in profiles: ChangeLog package.mask
polynomial-c15/08/07 14:20:05 Modified: ChangeLog package.mask Log: Masked =sys-libs/tdb-1.3.7 due to build system problems (bug #556920) Revision ChangesPath 1.10229 profiles/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10229&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?rev=1.10229&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/ChangeLog?r1=1.10228&r2=1.10229 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v retrieving revision 1.10228 retrieving revision 1.10229 diff -u -r1.10228 -r1.10229 --- ChangeLog 6 Aug 2015 12:04:26 - 1.10228 +++ ChangeLog 7 Aug 2015 14:20:05 - 1.10229 @@ -1,11 +1,14 @@ # ChangeLog for profile directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10228 2015/08/06 12:04:26 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/ChangeLog,v 1.10229 2015/08/07 14:20:05 polynomial-c 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! + 07 Aug 2015; Lars Wendler package.mask: + Masked =sys-libs/tdb-1.3.7 due to build system problems (bug #556920). + 06 Aug 2015; Michał Górny desc/linguas.desc: Add Paraguayan (Guarani) locale for LibreOffice. https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/191 by a17r. 1.16704 profiles/package.mask file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16704&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?rev=1.16704&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/package.mask?r1=1.16703&r2=1.16704 Index: package.mask === RCS file: /var/cvsroot/gentoo-x86/profiles/package.mask,v retrieving revision 1.16703 retrieving revision 1.16704 diff -u -r1.16703 -r1.16704 --- package.mask5 Aug 2015 02:46:43 - 1.16703 +++ package.mask7 Aug 2015 14:20:05 - 1.16704 @@ -1,5 +1,5 @@ -# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16703 2015/08/05 02:46:43 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16704 2015/08/07 14:20:05 polynomial-c 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 @@ -30,6 +30,12 @@ #--- END OF EXAMPLES --- +# Lars Wendler (07 Aug 2015) +# Masked due to build system problems (bug #556920) +=sys-libs/tdb-1.3.7 +#depends on >=sys-libs/tdb-1.3.7 +=sys-libs/ldb-1.1.21 + # Matthew Thode (04 Aug 2015) # removing old and never working horizon Bug #556710 www-apps/horizon
[gentoo-commits] gentoo-x86 commit in net-fs/samba/files: samba-4.2.3-heimdal_compilefix.patch
polynomial-c15/08/07 11:21:21 Added:samba-4.2.3-heimdal_compilefix.patch Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 net-fs/samba/files/samba-4.2.3-heimdal_compilefix.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/files/samba-4.2.3-heimdal_compilefix.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/files/samba-4.2.3-heimdal_compilefix.patch?rev=1.1&content-type=text/plain Index: samba-4.2.3-heimdal_compilefix.patch === https://bugs.gentoo.org/542638 From: Stephan Wolf Samba uses the build in implementation of heimdal from year 2011. The ebuild uses the portage version of heimdal. I got it fixed to patch samba kdc_init function. --- samba-4.2.3/source4/kdc/kdc.c +++ samba-4.2.3/source4/kdc/kdc.c @@ -967,9 +967,9 @@ * The old behavior in the _kdc_get_preferred_key() * function is use_strongest_server_key=TRUE. */ - kdc->config->as_use_strongest_session_key = false; + kdc->config->tgt_use_strongest_session_key = false; kdc->config->preauth_use_strongest_session_key = false; - kdc->config->tgs_use_strongest_session_key = false; + kdc->config->svc_use_strongest_session_key = false; kdc->config->use_strongest_server_key = true; /* Register hdb-samba4 hooks for use as a keytab */
[gentoo-commits] gentoo-x86 commit in net-fs/samba: samba-4.2.3.ebuild ChangeLog samba-4.2.0.ebuild
polynomial-c15/08/07 11:21:21 Modified: ChangeLog Added:samba-4.2.3.ebuild Removed: samba-4.2.0.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.719net-fs/samba/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?rev=1.719&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?rev=1.719&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/ChangeLog?r1=1.718&r2=1.719 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v retrieving revision 1.718 retrieving revision 1.719 diff -u -r1.718 -r1.719 --- ChangeLog 28 Jun 2015 03:34:52 - 1.718 +++ ChangeLog 7 Aug 2015 11:21:21 - 1.719 @@ -1,6 +1,12 @@ # ChangeLog for net-fs/samba # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v 1.718 2015/06/28 03:34:52 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v 1.719 2015/08/07 11:21:21 polynomial-c Exp $ + +*samba-4.2.3 (07 Aug 2015) + + 07 Aug 2015; Lars Wendler -samba-4.2.0.ebuild, + +samba-4.2.3.ebuild, +files/samba-4.2.3-heimdal_compilefix.patch: + Version bump. Removed old. 28 Jun 2015; Patrick Lauer samba-4.0.26.ebuild, samba-4.1.18.ebuild, samba-4.1.19.ebuild, samba-4.2.0.ebuild: 1.1 net-fs/samba/samba-4.2.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/samba-4.2.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/samba/samba-4.2.3.ebuild?rev=1.1&content-type=text/plain Index: samba-4.2.3.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-4.2.3.ebuild,v 1.1 2015/08/07 11:21:21 polynomial-c Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE='threads(+)' inherit python-single-r1 waf-utils multilib linux-info systemd eutils MY_PV="${PV/_rc/rc}" MY_P="${PN}-${MY_PV}" SRC_PATH="stable" [[ ${PV} = *_rc* ]] && SRC_PATH="rc" SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz" KEYWORDS="~amd64 ~hppa ~x86" [[ ${PV} = *_rc* ]] && KEYWORDS="" DESCRIPTION="Samba Suite Version 4" HOMEPAGE="http://www.samba.org/"; LICENSE="GPL-3" SLOT="0" IUSE="acl addns ads aio avahi client cluster cups dmapi fam gnutls iprint ldap quota selinux syslog systemd test winbind" # sys-apps/attr is an automagic dependency (see bug #489748) # sys-libs/pam is an automagic dependency (see bug #489770) CDEPEND="${PYTHON_DEPS} >=app-crypt/heimdal-1.5[-ssl] dev-libs/iniparser dev-libs/popt sys-libs/readline:= virtual/libiconv dev-python/subunit[${PYTHON_USEDEP}] >=net-libs/socket_wrapper-1.1.2 sys-apps/attr sys-libs/libcap >=sys-libs/ldb-1.1.20 >=sys-libs/nss_wrapper-1.0.2 >=sys-libs/ntdb-1.0[python,${PYTHON_USEDEP}] >=sys-libs/talloc-2.1.2[python,${PYTHON_USEDEP}] >=sys-libs/tdb-1.3.6[python,${PYTHON_USEDEP}] >=sys-libs/tevent-0.9.25 >=sys-libs/uid_wrapper-1.0.1 sys-libs/zlib virtual/pam acl? ( virtual/acl ) addns? ( net-dns/bind-tools[gssapi] ) aio? ( dev-libs/libaio ) cluster? ( >=dev-db/ctdb-1.0.114_p1 ) cups? ( net-print/cups ) dmapi? ( sys-apps/dmapi ) fam? ( virtual/fam ) gnutls? ( dev-libs/libgcrypt:0 >=net-libs/gnutls-1.4.0 ) ldap? ( net-nds/openldap ) systemd? ( sys-apps/systemd:0= )" DEPEND="${CDEPEND} virtual/pkgconfig" RDEPEND="${CDEPEND} client? ( net-fs/cifs-utils[ads?] ) selinux? ( sec-policy/selinux-samba ) " REQUIRED_USE="ads? ( acl gnutls ldap ) ${PYTHON_REQUIRED_USE}" RESTRICT="mirror" S="${WORKDIR}/${MY_P}" PATCHES=( "${FILESDIR}/${PN}-4.2.3-heimdal_compilefix.patch" ) CONFDIR="${FILESDIR}/$(get_version_component_range 1-2)" WAF_BINARY="${S}/buildtools/bin/waf" pkg_setup() { python-single-r1_pkg_setup if use aio; then if ! linux_config_exists || ! linux_chkconfig_present AIO; then ewarn "You must enable AIO support in your kernel config, " ewarn "to be able to support asynchronous I/O. " ewarn "You can find it at" ewarn ewarn "General Support" ewarn " Enable AIO support " ewarn
[gentoo-commits] gentoo-x86 commit in sys-libs/tdb: tdb-1.3.7.ebuild ChangeLog tdb-1.3.5.ebuild
polynomial-c15/08/07 07:39:36 Modified: ChangeLog Added:tdb-1.3.7.ebuild Removed: tdb-1.3.5.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.85 sys-libs/tdb/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/ChangeLog?rev=1.85&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/ChangeLog?rev=1.85&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/ChangeLog?r1=1.84&r2=1.85 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-libs/tdb/ChangeLog,v retrieving revision 1.84 retrieving revision 1.85 diff -u -r1.84 -r1.85 --- ChangeLog 16 Jun 2015 12:08:08 - 1.84 +++ ChangeLog 7 Aug 2015 07:39:36 - 1.85 @@ -1,6 +1,12 @@ # ChangeLog for sys-libs/tdb # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/ChangeLog,v 1.84 2015/06/16 12:08:08 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/ChangeLog,v 1.85 2015/08/07 07:39:36 polynomial-c Exp $ + +*tdb-1.3.7 (07 Aug 2015) + + 07 Aug 2015; Lars Wendler -tdb-1.3.5.ebuild, + +tdb-1.3.7.ebuild: + Version bump. Removed old. *tdb-1.3.6 (16 Jun 2015) 1.1 sys-libs/tdb/tdb-1.3.7.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/tdb-1.3.7.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tdb/tdb-1.3.7.ebuild?rev=1.1&content-type=text/plain Index: tdb-1.3.7.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-libs/tdb/tdb-1.3.7.ebuild,v 1.1 2015/08/07 07:39:36 polynomial-c Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE="threads" inherit waf-utils multilib-minimal python-single-r1 eutils DESCRIPTION="A simple database API" HOMEPAGE="http://tdb.samba.org/"; SRC_URI="http://samba.org/ftp/tdb/${P}.tar.gz"; LICENSE="GPL-3" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" IUSE="python" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND="python? ( ${PYTHON_DEPS} )" DEPEND=" ${RDEPEND} ${PYTHON_DEPS} app-text/docbook-xml-dtd:4.2" WAF_BINARY="${S}/buildtools/bin/waf" src_prepare() { python_fix_shebang . multilib_copy_sources } multilib_src_configure() { local extra_opts=() if ! multilib_is_native_abi || ! use python; then extra_opts+=( --disable-python ) fi waf-utils_src_configure \ "${extra_opts[@]}" } multilib_src_compile() { # need to avoid parallel building, this looks like the sanest way with waf-utils/multiprocessing eclasses unset MAKEOPTS waf-utils_src_compile } multilib_src_test() { # the default src_test runs 'make test' and 'make check', letting # the tests fail occasionally (reason: unknown) emake check } multilib_src_install() { waf-utils_src_install }
[gentoo-commits] gentoo-x86 commit in sys-libs/ldb: ChangeLog ldb-1.1.21.ebuild ldb-1.1.19.ebuild
polynomial-c15/08/07 07:38:09 Modified: ChangeLog Added:ldb-1.1.21.ebuild Removed: ldb-1.1.19.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.75 sys-libs/ldb/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ChangeLog?rev=1.75&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ChangeLog?rev=1.75&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ChangeLog?r1=1.74&r2=1.75 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v retrieving revision 1.74 retrieving revision 1.75 diff -u -r1.74 -r1.75 --- ChangeLog 8 Apr 2015 18:28:32 - 1.74 +++ ChangeLog 7 Aug 2015 07:38:08 - 1.75 @@ -1,6 +1,12 @@ # ChangeLog for sys-libs/ldb # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v 1.74 2015/04/08 18:28:32 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v 1.75 2015/08/07 07:38:08 polynomial-c Exp $ + +*ldb-1.1.21 (07 Aug 2015) + + 07 Aug 2015; Lars Wendler -ldb-1.1.19.ebuild, + +ldb-1.1.21.ebuild: + Version bump. Removed old. 08 Apr 2015; Michał Górny ldb-1.1.17-r1.ebuild, ldb-1.1.19.ebuild: 1.1 sys-libs/ldb/ldb-1.1.21.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ldb-1.1.21.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ldb/ldb-1.1.21.ebuild?rev=1.1&content-type=text/plain Index: ldb-1.1.21.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ldb-1.1.21.ebuild,v 1.1 2015/08/07 07:38:08 polynomial-c Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE="threads" inherit python-single-r1 waf-utils multilib DESCRIPTION="An LDAP-like embedded database" HOMEPAGE="http://ldb.samba.org"; SRC_URI="http://www.samba.org/ftp/pub/${PN}/${P}.tar.gz"; LICENSE="LGPL-3" SLOT="0/${PV}" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~amd64-fbsd ~x86-fbsd" IUSE="doc" RDEPEND="dev-libs/popt >=sys-libs/talloc-2.1.3[python] >=sys-libs/tevent-0.9.25[python(+)] >=sys-libs/tdb-1.3.7[python] net-nds/openldap !!=net-fs/samba-4.0.0[ldb] ${PYTHON_DEPS} " DEPEND="dev-libs/libxslt doc? ( app-doc/doxygen ) virtual/pkgconfig ${RDEPEND}" REQUIRED_USE="${PYTHON_REQUIRED_USE}" WAF_BINARY="${S}/buildtools/bin/waf" pkg_setup() { python-single-r1_pkg_setup } src_configure() { waf-utils_src_configure \ --disable-rpath \ --disable-rpath-install --bundled-libraries=NONE \ --with-modulesdir="${EPREFIX}"/usr/$(get_libdir)/samba \ --builtin-libraries=NONE } src_compile(){ waf-utils_src_compile use doc && doxygen Doxyfile } src_test() { WAF_MAKE=1 \ PATH=buildtools/bin:../../../buildtools/bin:$PATH:"${S}"/bin/shared/private/ \ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"${S}"/bin/shared/private/:"${S}"/bin/shared waf test || die } src_install() { waf-utils_src_install if use doc; then dohtml -r apidocs/html/* doman apidocs/man/man3/*.3 fi } pkg_postinst() { if has_version sys-auth/sssd; then ewarn "You have sssd installed. It is known to break after ldb upgrades," ewarn "so please try to rebuild it before reporting bugs." ewarn "See http://bugs.gentoo.org/404281"; fi }
[gentoo-commits] gentoo-x86 commit in sys-libs/talloc: ChangeLog talloc-2.1.3.ebuild talloc-2.1.1.ebuild
polynomial-c15/08/07 07:31:04 Modified: ChangeLog Added:talloc-2.1.3.ebuild Removed: talloc-2.1.1.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.81 sys-libs/talloc/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/talloc/ChangeLog?rev=1.81&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/talloc/ChangeLog?rev=1.81&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/talloc/ChangeLog?r1=1.80&r2=1.81 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-libs/talloc/ChangeLog,v retrieving revision 1.80 retrieving revision 1.81 diff -u -r1.80 -r1.81 --- ChangeLog 5 May 2015 05:39:43 - 1.80 +++ ChangeLog 7 Aug 2015 07:31:04 - 1.81 @@ -1,6 +1,12 @@ # ChangeLog for sys-libs/talloc # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/talloc/ChangeLog,v 1.80 2015/05/05 05:39:43 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/talloc/ChangeLog,v 1.81 2015/08/07 07:31:04 polynomial-c Exp $ + +*talloc-2.1.3 (07 Aug 2015) + + 07 Aug 2015; Lars Wendler -talloc-2.1.1.ebuild, + +talloc-2.1.3.ebuild: + Version bump. Removed old. 05 May 2015; Patrick Lauer talloc-2.1.0-r1.ebuild, talloc-2.1.1.ebuild, talloc-2.1.2.ebuild: 1.1 sys-libs/talloc/talloc-2.1.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/talloc/talloc-2.1.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/talloc/talloc-2.1.3.ebuild?rev=1.1&content-type=text/plain Index: talloc-2.1.3.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-libs/talloc/talloc-2.1.3.ebuild,v 1.1 2015/08/07 07:31:04 polynomial-c Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE="threads" inherit waf-utils python-single-r1 multilib multilib-minimal DESCRIPTION="Samba talloc library" HOMEPAGE="http://talloc.samba.org/"; SRC_URI="http://samba.org/ftp/${PN}/${P}.tar.gz"; LICENSE="GPL-3 LGPL-3+ LGPL-2 BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~sparc-solaris" IUSE="compat +python" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND="python? ( ${PYTHON_DEPS} ) !!
[gentoo-commits] gentoo-x86 commit in dev-vcs/subversion: ChangeLog
polynomial-c15/08/06 05:51:08 Modified: ChangeLog Log: Fixed bug ID of last ChangeLog entry (Portage version: 2.2.20/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.244dev-vcs/subversion/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/subversion/ChangeLog?rev=1.244&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/subversion/ChangeLog?rev=1.244&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/subversion/ChangeLog?r1=1.243&r2=1.244 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-vcs/subversion/ChangeLog,v retrieving revision 1.243 retrieving revision 1.244 diff -u -r1.243 -r1.244 --- ChangeLog 6 Aug 2015 05:37:12 - 1.243 +++ ChangeLog 6 Aug 2015 05:51:08 - 1.244 @@ -1,6 +1,6 @@ # ChangeLog for dev-vcs/subversion # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/subversion/ChangeLog,v 1.243 2015/08/06 05:37:12 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/subversion/ChangeLog,v 1.244 2015/08/06 05:51:08 polynomial-c Exp $ *subversion-1.9.0 (06 Aug 2015) *subversion-1.8.14-r1 (06 Aug 2015) @@ -9,7 +9,7 @@ 06 Aug 2015; Lars Wendler -subversion-1.8.13-r2.ebuild, +subversion-1.8.14.ebuild, +subversion-1.8.14-r1.ebuild, +subversion-1.9.0.ebuild: - Security bump (bug #55607). Removed old. + Security bump (bug #556076). Removed old. 03 Jul 2015; Thomas Sachau (Tommy[D]) -subversion-1.7.19.ebuild, -subversion-1.8.11.ebuild:
[gentoo-commits] gentoo-x86 commit in dev-vcs/subversion: subversion-1.9.0.ebuild subversion-1.8.14.ebuild ChangeLog subversion-1.8.14-r1.ebuild subversion-1.8.13-r2.ebuild
polynomial-c15/08/06 05:37:13 Modified: ChangeLog Added:subversion-1.9.0.ebuild subversion-1.8.14.ebuild subversion-1.8.14-r1.ebuild Removed: subversion-1.8.13-r2.ebuild Log: Security bump (bug #55607). Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.243dev-vcs/subversion/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/subversion/ChangeLog?rev=1.243&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/subversion/ChangeLog?rev=1.243&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/subversion/ChangeLog?r1=1.242&r2=1.243 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-vcs/subversion/ChangeLog,v retrieving revision 1.242 retrieving revision 1.243 diff -u -r1.242 -r1.243 --- ChangeLog 3 Jul 2015 16:00:03 - 1.242 +++ ChangeLog 6 Aug 2015 05:37:12 - 1.243 @@ -1,6 +1,15 @@ # ChangeLog for dev-vcs/subversion # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/subversion/ChangeLog,v 1.242 2015/07/03 16:00:03 tommy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/subversion/ChangeLog,v 1.243 2015/08/06 05:37:12 polynomial-c Exp $ + +*subversion-1.9.0 (06 Aug 2015) +*subversion-1.8.14-r1 (06 Aug 2015) +*subversion-1.8.14 (06 Aug 2015) + + 06 Aug 2015; Lars Wendler + -subversion-1.8.13-r2.ebuild, +subversion-1.8.14.ebuild, + +subversion-1.8.14-r1.ebuild, +subversion-1.9.0.ebuild: + Security bump (bug #55607). Removed old. 03 Jul 2015; Thomas Sachau (Tommy[D]) -subversion-1.7.19.ebuild, -subversion-1.8.11.ebuild: 1.1 dev-vcs/subversion/subversion-1.9.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/subversion/subversion-1.9.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/subversion/subversion-1.9.0.ebuild?rev=1.1&content-type=text/plain Index: subversion-1.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-vcs/subversion/subversion-1.9.0.ebuild,v 1.1 2015/08/06 05:37:12 polynomial-c Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) DISTUTILS_OPTIONAL=1 WANT_AUTOMAKE="none" GENTOO_DEPEND_ON_PERL="no" inherit autotools bash-completion-r1 db-use depend.apache distutils-r1 elisp-common flag-o-matic java-pkg-opt-2 libtool multilib perl-module eutils MY_P="${P/_/-}" DESCRIPTION="Advanced version control system" HOMEPAGE="http://subversion.apache.org/"; SRC_URI="mirror://apache/${PN}/${MY_P}.tar.bz2" S="${WORKDIR}/${MY_P}" LICENSE="Subversion GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="apache2 berkdb ctypes-python debug doc +dso extras gnome-keyring +http java kde nls perl python ruby sasl test vim-syntax" COMMON_DEPEND=">=dev-db/sqlite-3.7.12 >=dev-libs/apr-1.3:1 >=dev-libs/apr-util-1.3:1 dev-libs/expat sys-apps/file sys-libs/zlib app-arch/bzip2 berkdb? ( >=sys-libs/db-4.0.14:= ) ctypes-python? ( ${PYTHON_DEPS} ) gnome-keyring? ( dev-libs/glib:2 sys-apps/dbus gnome-base/libgnome-keyring ) kde? ( sys-apps/dbus dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 >=kde-base/kdelibs-4:4 ) perl? ( dev-lang/perl:= ) python? ( ${PYTHON_DEPS} ) ruby? ( >=dev-lang/ruby-2.1:2.1 dev-ruby/rubygems[ruby_targets_ruby21] ) sasl? ( dev-libs/cyrus-sasl ) http? ( >=net-libs/serf-1.2.1 )" RDEPEND="${COMMON_DEPEND} apache2? ( www-servers/apache[apache2_modules_dav] ) java? ( >=virtual/jre-1.5 ) kde? ( kde-apps/kwalletd:4 ) nls? ( virtual/libintl ) perl? ( dev-perl/URI )" # Note: ctypesgen doesn't need PYTHON_USEDEP, it's used once DEPEND="${COMMON_DEPEND} !!=virtual/jdk-1.5 ) kde? ( virtual/pkgconfig ) nls? ( sys-devel/gettext ) test? ( ${PYTHON_DEPS} )" REQUIRED_USE=" ctypes-python? ( ${PYTHON_REQUIRED_USE} ) python? ( ${PYTHON_REQUIRED_USE} ) test? ( ${PYTHON_REQUIRED_USE} !dso )" want_apache pkg_setup() { if use berkdb ; then local apu_bdb_version="$(${EPREFIX}/usr/bin/apu-1-config --includes \ | grep -Eoe '-I${EPREFIX}/usr/include/db[[:digit:]]\
[gentoo-commits] gentoo-x86 commit in sys-apps/cpuid: ChangeLog cpuid-20150606.ebuild
polynomial-c15/08/05 12:05:41 Modified: ChangeLog Added:cpuid-20150606.ebuild Log: Version bump. (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.11 sys-apps/cpuid/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/cpuid/ChangeLog?rev=1.11&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/cpuid/ChangeLog?rev=1.11&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/cpuid/ChangeLog?r1=1.10&r2=1.11 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-apps/cpuid/ChangeLog,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ChangeLog 9 Mar 2014 03:40:36 - 1.10 +++ ChangeLog 5 Aug 2015 12:05:41 - 1.11 @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/cpuid -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/cpuid/ChangeLog,v 1.10 2014/03/09 03:40:36 rhill Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/cpuid/ChangeLog,v 1.11 2015/08/05 12:05:41 polynomial-c Exp $ + +*cpuid-20150606 (05 Aug 2015) + + 05 Aug 2015; Lars Wendler +cpuid-20150606.ebuild, + +files/cpuid-20150606-Makefile.patch: + Version bump. 09 Mar 2014; Ryan Hill metadata.xml: Change my email. 1.1 sys-apps/cpuid/cpuid-20150606.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/cpuid/cpuid-20150606.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/cpuid/cpuid-20150606.ebuild?rev=1.1&content-type=text/plain Index: cpuid-20150606.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/cpuid/cpuid-20150606.ebuild,v 1.1 2015/08/05 12:05:41 polynomial-c Exp $ EAPI="5" inherit eutils toolchain-funcs DESCRIPTION="Utility to get detailed information about the CPU(s) using the CPUID instruction" HOMEPAGE="http://www.etallen.com/cpuid.html"; SRC_URI="http://www.etallen.com/${PN}/${P}.src.tar.gz"; KEYWORDS="~amd64 ~x86" SLOT="0" LICENSE="GPL-2" IUSE="" src_prepare() { epatch "${FILESDIR}"/${PN}-20150606-Makefile.patch epatch "${FILESDIR}"/${PN}-20110305-fPIC.patch #376245 } src_compile() { tc-export CC emake } src_install() { emake BUILDROOT="${D}" install }
[gentoo-commits] gentoo-x86 commit in sys-apps/cpuid/files: cpuid-20150606-Makefile.patch
polynomial-c15/08/05 12:05:41 Added:cpuid-20150606-Makefile.patch Log: Version bump. (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 sys-apps/cpuid/files/cpuid-20150606-Makefile.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/cpuid/files/cpuid-20150606-Makefile.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/cpuid/files/cpuid-20150606-Makefile.patch?rev=1.1&content-type=text/plain Index: cpuid-20150606-Makefile.patch === --- cpuid-20150606/Makefile +++ cpuid-20150606/Makefile @@ -1,9 +1,3 @@ -CFLAGS+=-g -CPPFLAGS?= -LDFLAGS?= -ifneq (,$(findstring arch=i386,$(CFLAGS))) -CISA=-m32 -endif CFL=$(CPPFLAGS) $(CFLAGS) $(CISA) -Wall -Wshadow -Wcast-align -Wredundant-decls -Wbad-function-cast -Wcast-qual -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -D_FILE_OFFSET_BITS=64 -DVERSION=$(VERSION) PACKAGE=cpuid @@ -44,7 +38,7 @@ gzip < $< > $@ install: $(PROG) $(PROG).man.gz - install -D -s -m 755 $(PROG)$(BUILDROOT)/usr/bin/$(PROG) + install -D-m 755 $(PROG)$(BUILDROOT)/usr/bin/$(PROG) install -D-m 444 $(PROG).man.gz $(BUILDROOT)/usr/share/man/man1/$(PROG).1.gz clean:
[gentoo-commits] gentoo-x86 commit in sys-apps/bleachbit: ChangeLog bleachbit-1.9.1.ebuild bleachbit-0.9.6.ebuild
polynomial-c15/08/05 10:36:07 Modified: ChangeLog Added:bleachbit-1.9.1.ebuild Removed: bleachbit-0.9.6.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.22 sys-apps/bleachbit/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/bleachbit/ChangeLog?rev=1.22&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/bleachbit/ChangeLog?rev=1.22&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/bleachbit/ChangeLog?r1=1.21&r2=1.22 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-apps/bleachbit/ChangeLog,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- ChangeLog 3 Nov 2014 09:36:19 - 1.21 +++ ChangeLog 5 Aug 2015 10:36:07 - 1.22 @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/bleachbit -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/bleachbit/ChangeLog,v 1.21 2014/11/03 09:36:19 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/bleachbit/ChangeLog,v 1.22 2015/08/05 10:36:07 polynomial-c Exp $ + +*bleachbit-1.9.1 (05 Aug 2015) + + 05 Aug 2015; Lars Wendler -bleachbit-0.9.6.ebuild, + +bleachbit-1.9.1.ebuild: + Version bump. Removed old. 03 Nov 2014; Agostino Sarubbo bleachbit-1.2.ebuild: Stable for x86, wrt bug #503682 1.1 sys-apps/bleachbit/bleachbit-1.9.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/bleachbit/bleachbit-1.9.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/bleachbit/bleachbit-1.9.1.ebuild?rev=1.1&content-type=text/plain Index: bleachbit-1.9.1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/bleachbit/bleachbit-1.9.1.ebuild,v 1.1 2015/08/05 10:36:07 polynomial-c Exp $ EAPI=5 PLOCALES="ar ast be bg bn bs ca cs da de el en_AU en_GB eo es et eu fa fi fo fr gl he hi hr hu hy ia id it ja ko ku ky lt lv ms my nb nds nl nn pl pt_BR pt ro ru se si sk sl sr sv ta te th tr ug uk uz vi zh_CN zh_TW" PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE="sqlite" inherit distutils-r1 eutils l10n DESCRIPTION="Clean junk to free disk space and to maintain privacy" HOMEPAGE="http://bleachbit.sourceforge.net/"; SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="+gtk nls" RDEPEND="gtk? ( dev-python/pygtk:2[$PYTHON_USEDEP] )" DEPEND="${RDEPEND} nls? ( sys-devel/gettext )" DOCS=( README.md ) python_prepare_all() { rem_locale() { rm "po/${1}.po" || die "removing of ${1}.po failed" } l10n_find_plocales_changes po "" ".po" l10n_for_each_disabled_locale_do rem_locale #addpredict /root/.gnome2 #401981 # warning: key "Encoding" in group "Desktop Entry" is deprecated sed -i -e '/Encoding/d' ${PN}.desktop || die # choose correct Python implementation, bug #465254 sed -i -e 's/python/$(PYTHON)/g' po/Makefile || die distutils-r1_python_prepare_all } python_compile_all() { use nls && emake -C po } python_install_all() { distutils-r1_python_install_all use nls && emake -C po DESTDIR="${D}" install # http://bugs.gentoo.org/388999 insinto /usr/share/${PN}/cleaners doins cleaners/*.xml newbin ${PN}.py ${PN} python_replicate_script "${D}/usr/bin/${PN}" doicon ${PN}.png domenu ${PN}.desktop }
[gentoo-commits] gentoo-x86 commit in virtual/podofo-build: ChangeLog podofo-build-0.9.3.ebuild
polynomial-c15/08/04 19:02:34 Modified: ChangeLog Added:podofo-build-0.9.3.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.2 virtual/podofo-build/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/podofo-build/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/podofo-build/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/podofo-build/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/virtual/podofo-build/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 16 Oct 2014 20:46:40 - 1.1 +++ ChangeLog 4 Aug 2015 19:02:34 - 1.2 @@ -1,6 +1,12 @@ # ChangeLog for virtual/podofo-build -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/virtual/podofo-build/ChangeLog,v 1.1 2014/10/16 20:46:40 zmedico Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/virtual/podofo-build/ChangeLog,v 1.2 2015/08/04 19:02:34 polynomial-c Exp $ + +*podofo-build-0.9.3 (04 Aug 2015) + + 04 Aug 2015; Lars Wendler + +podofo-build-0.9.3.ebuild: + Version bump. *podofo-build-0.9.2 (16 Oct 2014) 1.1 virtual/podofo-build/podofo-build-0.9.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/podofo-build/podofo-build-0.9.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/podofo-build/podofo-build-0.9.3.ebuild?rev=1.1&content-type=text/plain Index: podofo-build-0.9.3.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/virtual/podofo-build/podofo-build-0.9.3.ebuild,v 1.1 2015/08/04 19:02:34 polynomial-c Exp $ EAPI=5 DESCRIPTION="Virtual package for building against PoDoFo" HOMEPAGE="" SRC_URI="" LICENSE="" SLOT="0" KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86" IUSE="+boost idn debug test" # Pull in boost for build-against header dependency (see bug #503802). RDEPEND=" ~app-text/podofo-0.9.3[boost=,idn=,debug=,test=] boost? ( dev-libs/boost ) " DEPEND=""
[gentoo-commits] gentoo-x86 commit in app-text/podofo: ChangeLog podofo-0.9.3.ebuild
polynomial-c15/08/04 14:16:26 Modified: ChangeLog Added:podofo-0.9.3.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.47 app-text/podofo/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/podofo/ChangeLog?rev=1.47&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/podofo/ChangeLog?rev=1.47&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/podofo/ChangeLog?r1=1.46&r2=1.47 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-text/podofo/ChangeLog,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- ChangeLog 10 Aug 2014 18:29:11 - 1.46 +++ ChangeLog 4 Aug 2015 14:16:26 - 1.47 @@ -1,6 +1,11 @@ # ChangeLog for app-text/podofo -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/podofo/ChangeLog,v 1.46 2014/08/10 18:29:11 slyfox Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/podofo/ChangeLog,v 1.47 2015/08/04 14:16:26 polynomial-c Exp $ + +*podofo-0.9.3 (04 Aug 2015) + + 04 Aug 2015; Lars Wendler +podofo-0.9.3.ebuild: + Version bump. 10 Aug 2014; Sergei Trofimovich podofo-0.9.2.ebuild: QA: drop trailing '.' from DESCRIPTION 1.1 app-text/podofo/podofo-0.9.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/podofo/podofo-0.9.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/podofo/podofo-0.9.3.ebuild?rev=1.1&content-type=text/plain Index: podofo-0.9.3.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-text/podofo/podofo-0.9.3.ebuild,v 1.1 2015/08/04 14:16:26 polynomial-c Exp $ EAPI=5 inherit cmake-utils flag-o-matic multilib toolchain-funcs DESCRIPTION="PoDoFo is a C++ library to work with the PDF file format" HOMEPAGE="http://sourceforge.net/projects/podofo/"; SRC_URI="mirror://sourceforge/podofo/${P}.tar.gz" LICENSE="GPL-2 LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86" IUSE="+boost idn debug test" RDEPEND="dev-lang/lua:= idn? ( net-dns/libidn:= ) dev-libs/openssl:0= media-libs/fontconfig:= media-libs/freetype:2= virtual/jpeg:0= media-libs/libpng:0= media-libs/tiff:0= sys-libs/zlib:=" DEPEND="${RDEPEND} virtual/pkgconfig boost? ( dev-util/boost-build ) test? ( dev-util/cppunit )" DOCS="AUTHORS ChangeLog TODO" src_prepare() { local x sed_args sed -i \ -e "s:LIBDIRNAME \"lib\":LIBDIRNAME \"$(get_libdir)\":" \ -e "s:LIBIDN_FOUND:HAVE_LIBIDN:g" \ CMakeLists.txt || die # Use pkg-config to find headers for bug #459404. sed_args= for x in $($(tc-getPKG_CONFIG) --cflags freetype2) ; do [[ ${x} == -I* ]] || continue x=${x#-I} if [[ -f ${x}/ft2build.h ]] ; then sed_args+=" -e s:/usr/include/\\r\$:${x}:" elif [[ -f ${x}/freetype/config/ftheader.h ]] ; then sed_args+=" -e s:/usr/include/freetype2\\r\$:${x}:" fi done [[ -n ${sed_args} ]] && \ { sed -i ${sed_args} cmake/modules/FindFREETYPE.cmake || die; } # Bug #439784: Add missing unistd include for close() and unlink(). sed -i 's:^#include $:#include \n\0:' -i \ test/unit/TestUtils.cpp || die # TODO: fix these test cases # ColorTest.cpp:62:Assertion # Test name: ColorTest::testDefaultConstructor # expected exception not thrown # - Expected: PdfError sed -e 's:CPPUNIT_TEST( testDefaultConstructor ://\0:' \ -e 's:CPPUNIT_TEST( testGreyConstructor ://\0:' \ -e 's:CPPUNIT_TEST( testRGBConstructor ://\0:' \ -e 's:CPPUNIT_TEST( testCMYKConstructor ://\0:' \ -e 's:CPPUNIT_TEST( testColorSeparationAllConstructor ://\0:' \ -e 's:CPPUNIT_TEST( testColorSeparationNoneConstructor ://\0:' \ -e 's:CPPUNIT_TEST( testColorSeparationConstructor ://\0:' \ -e 's:CPPUNIT_TEST( testColorCieLabConstructor ://\0:' \ -i test/unit/ColorTest.h || die # ColorTest.cpp:42:Assertion # Test name: ColorTest::testHexNames # assertion failed # - Expression: static_cast(rgb.GetGreen() * 255.0) == 0x0A sed -e 's:CPPUNIT_TEST( testHexNames :/
[gentoo-commits] gentoo-x86 commit in app-shells/pdmenu: pdmenu-1.3.4.ebuild ChangeLog
polynomial-c15/08/04 13:30:02 Modified: ChangeLog Added:pdmenu-1.3.4.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.25 app-shells/pdmenu/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/pdmenu/ChangeLog?rev=1.25&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/pdmenu/ChangeLog?rev=1.25&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/pdmenu/ChangeLog?r1=1.24&r2=1.25 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-shells/pdmenu/ChangeLog,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- ChangeLog 7 Apr 2015 14:07:50 - 1.24 +++ ChangeLog 4 Aug 2015 13:30:02 - 1.25 @@ -1,6 +1,11 @@ # ChangeLog for app-shells/pdmenu -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/pdmenu/ChangeLog,v 1.24 2015/04/07 14:07:50 jlec Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/pdmenu/ChangeLog,v 1.25 2015/08/04 13:30:02 polynomial-c Exp $ + +*pdmenu-1.3.4 (04 Aug 2015) + + 04 Aug 2015; Lars Wendler +pdmenu-1.3.4.ebuild: + Version bump. *pdmenu-1.3.2-r1 (05 Dec 2012) 1.1 app-shells/pdmenu/pdmenu-1.3.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/pdmenu/pdmenu-1.3.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/pdmenu/pdmenu-1.3.4.ebuild?rev=1.1&content-type=text/plain Index: pdmenu-1.3.4.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-shells/pdmenu/pdmenu-1.3.4.ebuild,v 1.1 2015/08/04 13:30:02 polynomial-c Exp $ EAPI=5 inherit eutils DESCRIPTION="A simple console menu program" HOMEPAGE="http://joeyh.name/code/pdmenu/"; SRC_URI="mirror://debian/pool/main/p/pdmenu/pdmenu_${PV}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~mips ~x86" IUSE="nls gpm examples" DEPEND=" sys-libs/slang gpm? ( sys-libs/gpm ) nls? ( sys-devel/gettext )" S=${WORKDIR}/${PN} RESTRICT="test" src_prepare() { epatch "${FILESDIR}"/${PN}-impl-dec.patch sed \ -e 's:\(-o pdmenu\):$(LDFLAGS) \1:g' \ -i Makefile || die } src_configure() { econf \ $(use_with gpm) \ $(use_enable nls) } src_install() { dobin pdmenu dodoc doc/ANNOUNCE doc/BUGS doc/TODO use examples && dodoc -r examples mv doc/pdmenu.man doc/pdmenu.1 || die mv doc/pdmenurc.man doc/pdmenurc.5 || die doman doc/pdmenu.1 doc/pdmenurc.5 } pkg_postinst() { ewarn "Note this part from man page: Security warning! Any exec command" ewarn "that uses the 'edit' flag will be a security hole. The user need" ewarn "only to enter text with a ';' in it, and they can run an" ewarn "arbitrary command after the semicolon!" }
[gentoo-commits] gentoo-x86 commit in app-misc/srm: ChangeLog srm-1.2.15.ebuild
polynomial-c15/08/04 09:37:51 Modified: ChangeLog Added:srm-1.2.15.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.34 app-misc/srm/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/srm/ChangeLog?rev=1.34&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/srm/ChangeLog?rev=1.34&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/srm/ChangeLog?r1=1.33&r2=1.34 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-misc/srm/ChangeLog,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- ChangeLog 9 Jun 2015 11:51:33 - 1.33 +++ ChangeLog 4 Aug 2015 09:37:51 - 1.34 @@ -1,6 +1,12 @@ # ChangeLog for app-misc/srm # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/srm/ChangeLog,v 1.33 2015/06/09 11:51:33 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/srm/ChangeLog,v 1.34 2015/08/04 09:37:51 polynomial-c Exp $ + +*srm-1.2.15 (04 Aug 2015) + + 04 Aug 2015; Lars Wendler +srm-1.2.15.ebuild, + +files/srm-1.2.15-cflags.patch: + Version bump. 09 Jun 2015; Justin Lecher metadata.xml: Updating remote-id in metadata.xml 1.1 app-misc/srm/srm-1.2.15.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/srm/srm-1.2.15.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/srm/srm-1.2.15.ebuild?rev=1.1&content-type=text/plain Index: srm-1.2.15.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-misc/srm/srm-1.2.15.ebuild,v 1.1 2015/08/04 09:37:51 polynomial-c Exp $ EAPI=5 inherit autotools eutils DESCRIPTION="A command-line compatible rm which destroys file contents before unlinking" HOMEPAGE="http://sourceforge.net/projects/srm/"; SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="debug" DEPEND="!app-misc/secure-delete sys-kernel/linux-headers " DOCS=( AUTHORS ChangeLog NEWS README TODO ) src_prepare() { epatch "${FILESDIR}/${PN}-1.2.15-cflags.patch" eautoreconf } src_configure() { econf $(use_enable debug) } pkg_postinst() { ewarn "Please note that srm will not work as expected with any journaled file" ewarn "system (e.g., reiserfs, ext3)." ewarn "See: ${EROOT%/}/usr/share/doc/${PF}/README" }
[gentoo-commits] gentoo-x86 commit in app-misc/srm/files: srm-1.2.15-cflags.patch
polynomial-c15/08/04 09:37:51 Added:srm-1.2.15-cflags.patch Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 app-misc/srm/files/srm-1.2.15-cflags.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/srm/files/srm-1.2.15-cflags.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/srm/files/srm-1.2.15-cflags.patch?rev=1.1&content-type=text/plain Index: srm-1.2.15-cflags.patch === --- srm-1.2.15/configure.ac +++ srm-1.2.15/configure.ac @@ -42,7 +42,6 @@ AC_ARG_ENABLE(debug, [ --enable-debug=[no/yes] turn on debugging [default=$debug_default]],, enable_debug=$debug_default) if test "x$enable_debug" = "xyes"; then - CFLAGS="$CFLAGS -g" AC_MSG_RESULT(yes) else CFLAGS="$CFLAGS -DNDEBUG"
[gentoo-commits] gentoo-x86 commit in app-misc/remind: ChangeLog remind-03.01.15.ebuild
polynomial-c15/08/04 09:25:03 Modified: ChangeLog Added:remind-03.01.15.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.16 app-misc/remind/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/remind/ChangeLog?rev=1.16&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/remind/ChangeLog?rev=1.16&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/remind/ChangeLog?r1=1.15&r2=1.16 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-misc/remind/ChangeLog,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- ChangeLog 30 Apr 2015 16:12:21 - 1.15 +++ ChangeLog 4 Aug 2015 09:25:03 - 1.16 @@ -1,6 +1,11 @@ # ChangeLog for app-misc/remind # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/remind/ChangeLog,v 1.15 2015/04/30 16:12:21 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/remind/ChangeLog,v 1.16 2015/08/04 09:25:03 polynomial-c Exp $ + +*remind-03.01.15 (04 Aug 2015) + + 04 Aug 2015; Lars Wendler +remind-03.01.15.ebuild: + Version bump. *remind-03.01.14 (30 Apr 2015) 1.1 app-misc/remind/remind-03.01.15.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/remind/remind-03.01.15.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/remind/remind-03.01.15.ebuild?rev=1.1&content-type=text/plain Index: remind-03.01.15.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-misc/remind/remind-03.01.15.ebuild,v 1.1 2015/08/04 09:25:03 polynomial-c Exp $ EAPI=5 DESCRIPTION="Ridiculously functional reminder program" HOMEPAGE="http://www.roaringpenguin.com/products/remind"; SRC_URI="http://www.roaringpenguin.com/files/download/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" IUSE="tk" RDEPEND="tk? ( dev-lang/tk dev-tcltk/tcllib )" DOCS="docs/WHATSNEW examples/defs.rem www/README.*" src_prepare() { sed -i 's:$(MAKE) install:&-nostripped:' "${S}"/Makefile || die } src_test() { if [[ ${EUID} -eq 0 ]] ; then ewarn "Testing fails if run as root. Skipping tests." else emake test fi } src_install() { default dobin www/rem2html if ! use tk ; then rm "${D}"/usr/bin/tkremind "${D}"/usr/share/man/man1/tkremind* \ "${D}"/usr/bin/cm2rem* "${D}"/usr/share/man/man1/cm2rem* fi rm "${S}"/contrib/rem2ics-*/{Makefile,rem2ics.spec} || die insinto /usr/share/${PN} doins -r contrib/ }
[gentoo-commits] gentoo-x86 commit in app-misc/regionset: regionset-0.2.ebuild ChangeLog regionset-0.1.ebuild
polynomial-c15/08/04 09:16:40 Modified: ChangeLog Added:regionset-0.2.ebuild Removed: regionset-0.1.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.13 app-misc/regionset/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/regionset/ChangeLog?rev=1.13&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/regionset/ChangeLog?rev=1.13&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/regionset/ChangeLog?r1=1.12&r2=1.13 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-misc/regionset/ChangeLog,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- ChangeLog 16 Feb 2012 17:42:43 - 1.12 +++ ChangeLog 4 Aug 2015 09:16:40 - 1.13 @@ -1,6 +1,12 @@ # ChangeLog for app-misc/regionset -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/regionset/ChangeLog,v 1.12 2012/02/16 17:42:43 phajdan.jr Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/regionset/ChangeLog,v 1.13 2015/08/04 09:16:40 polynomial-c Exp $ + +*regionset-0.2 (04 Aug 2015) + + 04 Aug 2015; Lars Wendler -regionset-0.1.ebuild, + +regionset-0.2.ebuild: + Version bump. Removed old. 16 Feb 2012; Pawel Hajdan jr regionset-0.1-r1.ebuild: x86 stable wrt bug #396821 1.1 app-misc/regionset/regionset-0.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/regionset/regionset-0.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/regionset/regionset-0.2.ebuild?rev=1.1&content-type=text/plain Index: regionset-0.2.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-misc/regionset/regionset-0.2.ebuild,v 1.1 2015/08/04 09:16:40 polynomial-c Exp $ EAPI=5 inherit toolchain-funcs DESCRIPTION="Sets the region on DVD drives" HOMEPAGE="http://linvdr.org/projects/regionset/"; SRC_URI="http://linvdr.org/download/${PN}/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="" src_prepare() { sed "/^\.IR/s@${PN}@${PF}@" -i ${PN}.8 || die } src_compile() { $(tc-getCC) ${CFLAGS} ${LDFLAGS} -o ${PN} ${PN}.c dvd_udf.c || die } src_install() { dosbin ${PN} doman ${PN}.8 dodoc debian/changelog README } pkg_postinst() { ewarn "By default regionset uses /dev/dvd, specify a different device" ewarn "as a command line argument if you need to. You need write access" ewarn "to do this, preferably as root." ewarn ewarn "Most drives can only have their region changed 4 or 5 times." ewarn ewarn "When you use regionset, you MUST have a cd or dvd in the drive" ewarn "otherwise nasty things will happen to your drive's firmware." }
[gentoo-commits] gentoo-x86 commit in dev-vcs/git: ChangeLog git-2.4.8.ebuild
polynomial-c15/08/04 08:21:19 Modified: ChangeLog Added:git-2.4.8.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.354dev-vcs/git/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?rev=1.354&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?rev=1.354&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?r1=1.353&r2=1.354 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v retrieving revision 1.353 retrieving revision 1.354 diff -u -r1.353 -r1.354 --- ChangeLog 2 Aug 2015 18:50:16 - 1.353 +++ ChangeLog 4 Aug 2015 08:21:19 - 1.354 @@ -1,6 +1,11 @@ # ChangeLog for dev-vcs/git # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v 1.353 2015/08/02 18:50:16 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v 1.354 2015/08/04 08:21:19 polynomial-c Exp $ + +*git-2.4.8 (04 Aug 2015) + + 04 Aug 2015; Lars Wendler +git-2.4.8.ebuild: + Version bump. 02 Aug 2015; Agostino Sarubbo git-2.3.8.ebuild, git-2.4.6.ebuild: 1.1 dev-vcs/git/git-2.4.8.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/git-2.4.8.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/git-2.4.8.ebuild?rev=1.1&content-type=text/plain Index: git-2.4.8.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/git-2.4.8.ebuild,v 1.1 2015/08/04 08:21:19 polynomial-c Exp $ EAPI=5 GENTOO_DEPEND_ON_PERL=no # bug #329479: git-remote-testgit is not multiple-version aware PYTHON_COMPAT=( python2_7 ) [[ ${PV} == * ]] && SCM="git-2" EGIT_REPO_URI="git://git.kernel.org/pub/scm/git/git.git" EGIT_MASTER=pu inherit toolchain-funcs eutils elisp-common perl-module bash-completion-r1 python-single-r1 systemd ${SCM} MY_PV="${PV/_rc/.rc}" MY_P="${PN}-${MY_PV}" DOC_VER=${MY_PV} DESCRIPTION="GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team" HOMEPAGE="http://www.git-scm.com/"; if [[ ${PV} != * ]]; then SRC_URI_SUFFIX="xz" SRC_URI_GOOG="http://git-core.googlecode.com/files"; SRC_URI_KORG="mirror://kernel/software/scm/git" SRC_URI="${SRC_URI_GOOG}/${MY_P}.tar.${SRC_URI_SUFFIX} ${SRC_URI_KORG}/${MY_P}.tar.${SRC_URI_SUFFIX} ${SRC_URI_GOOG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} ${SRC_URI_KORG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} doc? ( ${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} ${SRC_URI_GOOG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} )" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi LICENSE="GPL-2" SLOT="0" IUSE="+blksha1 +curl cgi doc emacs gnome-keyring +gpg gtk highlight +iconv mediawiki +nls +pcre +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion test" # Common to both DEPEND and RDEPEND CDEPEND=" dev-libs/openssl:0= sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl:=[-build(-)] ) tk? ( dev-lang/tk:= ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) gnome-keyring? ( gnome-base/libgnome-keyring )" RDEPEND="${CDEPEND} gpg? ( app-crypt/gnupg ) mediawiki? ( dev-perl/HTML-Tree dev-perl/MediaWiki-API ) perl? ( dev-perl/Error dev-perl/Net-SMTP-SSL dev-perl/Authen-SASL cgi? ( dev-perl/CGI highlight? ( app-text/highlight ) ) cvs? ( >=dev-vcs/cvsps-2.1:0 dev-perl/DBI dev-perl/DBD-SQLite ) subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) ) python? ( gtk? ( >=dev-python/pygtk-2.8[${PYTHON_USEDEP}] >=dev-python/pygtksourceview-2.10.1-r1:2[${PYTHON_USEDEP}] ) ${PYTHO
[gentoo-commits] gentoo-x86 commit in media-sound/gmorgan/files: gmorgan-0.70-cxxflags.patch gmorgan-amd64.patch
polynomial-c15/08/04 07:58:55 Added:gmorgan-0.70-cxxflags.patch Removed: gmorgan-amd64.patch Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 media-sound/gmorgan/files/gmorgan-0.70-cxxflags.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmorgan/files/gmorgan-0.70-cxxflags.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmorgan/files/gmorgan-0.70-cxxflags.patch?rev=1.1&content-type=text/plain Index: gmorgan-0.70-cxxflags.patch === --- gmorgan-0.70/configure.in +++ gmorgan-0.70/configure.in @@ -15,7 +15,7 @@ AC_CHECK_FUNCS([bzero memset select strdup]) AM_GNU_GETTEXT([external]) LIBS="`fltk-config --use-images --ldflags` -lasound" -CXXFLAGS=" `fltk-config --use-images --cxxflags`" +CXXFLAGS="${CXXFLAGS} `fltk-config --use-images --cxxflags`" AC_CHECK_HEADERS([unistd.h]) AC_CHECK_HEADER(alsa/asoundlib.h, true, AC_MSG_ERROR([Alsa is required])) AC_PATH_PROG(FLTK_CONFIG, fltk-config, no)
[gentoo-commits] gentoo-x86 commit in media-sound/gmorgan: ChangeLog gmorgan-0.70.ebuild
polynomial-c15/08/04 07:58:55 Modified: ChangeLog Added:gmorgan-0.70.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.33 media-sound/gmorgan/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmorgan/ChangeLog?rev=1.33&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmorgan/ChangeLog?rev=1.33&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmorgan/ChangeLog?r1=1.32&r2=1.33 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-sound/gmorgan/ChangeLog,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- ChangeLog 2 Aug 2015 23:21:08 - 1.32 +++ ChangeLog 4 Aug 2015 07:58:55 - 1.33 @@ -1,6 +1,12 @@ # ChangeLog for media-sound/gmorgan # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gmorgan/ChangeLog,v 1.32 2015/08/02 23:21:08 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/gmorgan/ChangeLog,v 1.33 2015/08/04 07:58:55 polynomial-c Exp $ + +*gmorgan-0.70 (04 Aug 2015) + + 04 Aug 2015; Lars Wendler +gmorgan-0.70.ebuild, + +files/gmorgan-0.70-cxxflags.patch, -files/gmorgan-amd64.patch: + Version bump. Removed old. 02 Aug 2015; Manuel Rüger -gmorgan-0.25-r1.ebuild: Remove old. 1.1 media-sound/gmorgan/gmorgan-0.70.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmorgan/gmorgan-0.70.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmorgan/gmorgan-0.70.ebuild?rev=1.1&content-type=text/plain Index: gmorgan-0.70.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/gmorgan/gmorgan-0.70.ebuild,v 1.1 2015/08/04 07:58:55 polynomial-c Exp $ EAPI=5 AUTOTOOLS_AUTORECONF=1 AUTOTOOLS_IN_SOURCE_BUILD=1 inherit autotools-utils DESCRIPTION="Opensource software rhythm station" HOMEPAGE="http://gmorgan.sourceforge.net/"; SRC_URI="mirror://sourceforge/gmorgan/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="nls" RDEPEND="media-libs/alsa-lib x11-libs/fltk:1" DEPEND="${RDEPEND} nls? ( sys-devel/gettext )" DOCS=(AUTHORS ChangeLog NEWS README) PATCHES=( "${FILESDIR}/${P}-cxxflags.patch" ) src_configure() { econf \ $(use_enable nls) }
[gentoo-commits] gentoo-x86 commit in sys-fs/mdadm: mdadm-3.3.4.ebuild ChangeLog
polynomial-c15/08/04 07:44:26 Modified: ChangeLog Added:mdadm-3.3.4.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.196sys-fs/mdadm/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/ChangeLog?rev=1.196&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/ChangeLog?rev=1.196&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/ChangeLog?r1=1.195&r2=1.196 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v retrieving revision 1.195 retrieving revision 1.196 diff -u -r1.195 -r1.196 --- ChangeLog 25 Jul 2015 07:52:31 - 1.195 +++ ChangeLog 4 Aug 2015 07:44:26 - 1.196 @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/mdadm # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v 1.195 2015/07/25 07:52:31 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v 1.196 2015/08/04 07:44:26 polynomial-c Exp $ + +*mdadm-3.3.4 (04 Aug 2015) + + 04 Aug 2015; Lars Wendler +mdadm-3.3.4.ebuild: + Version bump. *mdadm-3.3.3 (25 Jul 2015) 1.1 sys-fs/mdadm/mdadm-3.3.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/mdadm-3.3.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/mdadm-3.3.4.ebuild?rev=1.1&content-type=text/plain Index: mdadm-3.3.4.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/mdadm-3.3.4.ebuild,v 1.1 2015/08/04 07:44:26 polynomial-c Exp $ EAPI=4 inherit eutils flag-o-matic multilib systemd toolchain-funcs udev DESCRIPTION="A useful tool for running RAID systems - it can be used as a replacement for the raidtools" HOMEPAGE="http://neil.brown.name/blog/mdadm"; DEB_PR=2 SRC_URI="mirror://kernel/linux/utils/raid/mdadm/${P}.tar.xz mirror://debian/pool/main/m/mdadm/${PN}_3.3-${DEB_PR}.debian.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="static" DEPEND="virtual/pkgconfig app-arch/xz-utils" RDEPEND=">=sys-apps/util-linux-2.16" # The tests edit values in /proc and run tests on software raid devices. # Thus, they shouldn't be run on systems with active software RAID devices. RESTRICT="test" mdadm_emake() { emake \ PKG_CONFIG="$(tc-getPKG_CONFIG)" \ CC="$(tc-getCC)" \ CWFLAGS="-Wall" \ CXFLAGS="${CFLAGS}" \ UDEVDIR="$(get_udevdir)" \ SYSTEMD_DIR="$(systemd_get_unitdir)" \ "$@" } src_compile() { use static && append-ldflags -static mdadm_emake all mdassemble } src_test() { mdadm_emake test sh ./test || die } src_install() { mdadm_emake DESTDIR="${D}" install install-systemd into / dosbin mdassemble dodoc ChangeLog INSTALL TODO README* ANNOUNCE-${PV} insinto /etc newins mdadm.conf-example mdadm.conf newinitd "${FILESDIR}"/mdadm.rc mdadm newconfd "${FILESDIR}"/mdadm.confd mdadm newinitd "${FILESDIR}"/mdraid.rc mdraid newconfd "${FILESDIR}"/mdraid.confd mdraid # From the Debian patchset into /usr dodoc "${WORKDIR}"/debian/README.checkarray dosbin "${WORKDIR}"/debian/checkarray insinto /etc/default newins "${FILESDIR}"/etc-default-mdadm mdadm insinto /etc/cron.weekly newins "${FILESDIR}"/mdadm.weekly mdadm } pkg_postinst() { if ! systemd_is_booted; then if [[ -z ${REPLACING_VERSIONS} ]] ; then # Only inform people the first time they install. elog "If you're not relying on kernel auto-detect of your RAID" elog "devices, you need to add 'mdraid' to your 'boot' runlevel:" elog " rc-update add mdraid boot" fi fi }
[gentoo-commits] gentoo-x86 commit in net-misc/whois: ChangeLog whois-5.2.10.ebuild whois-5.2.8.ebuild
polynomial-c15/08/04 07:40:33 Modified: ChangeLog Added:whois-5.2.10.ebuild Removed: whois-5.2.8.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.220net-misc/whois/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/whois/ChangeLog?rev=1.220&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/whois/ChangeLog?rev=1.220&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/whois/ChangeLog?r1=1.219&r2=1.220 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-misc/whois/ChangeLog,v retrieving revision 1.219 retrieving revision 1.220 diff -u -r1.219 -r1.220 --- ChangeLog 15 Jun 2015 13:07:08 - 1.219 +++ ChangeLog 4 Aug 2015 07:40:33 - 1.220 @@ -1,6 +1,12 @@ # ChangeLog for net-misc/whois # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/whois/ChangeLog,v 1.219 2015/06/15 13:07:08 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/whois/ChangeLog,v 1.220 2015/08/04 07:40:33 polynomial-c Exp $ + +*whois-5.2.10 (04 Aug 2015) + + 04 Aug 2015; Lars Wendler -whois-5.2.8.ebuild, + +whois-5.2.10.ebuild: + Version bump. Removed old. *whois-5.2.9 (15 Jun 2015) 1.1 net-misc/whois/whois-5.2.10.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/whois/whois-5.2.10.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/whois/whois-5.2.10.ebuild?rev=1.1&content-type=text/plain Index: whois-5.2.10.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/whois/whois-5.2.10.ebuild,v 1.1 2015/08/04 07:40:33 polynomial-c Exp $ EAPI=4 inherit eutils toolchain-funcs MY_P=${P/-/_} DESCRIPTION="improved Whois Client" HOMEPAGE="http://www.linux.it/~md/software/"; SRC_URI="mirror://debian/pool/main/w/whois/${MY_P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux" IUSE="iconv idn nls" RESTRICT="test" #59327 RDEPEND="iconv? ( virtual/libiconv ) idn? ( net-dns/libidn ) nls? ( virtual/libintl )" DEPEND="${RDEPEND} app-arch/xz-utils >=dev-lang/perl-5 nls? ( sys-devel/gettext )" src_prepare() { epatch "${FILESDIR}"/${PN}-4.7.2-config-file.patch if use nls ; then sed -i -e 's:#\(.*pos\):\1:' Makefile || die else sed -i -e '/ENABLE_NLS/s:define:undef:' config.h || die # don't generate po files when nls is disabled (bug #419889) sed -i -e '/^all:/s/ pos//' \ -e '/^install:/s/ install-pos//' Makefile || die fi } src_configure() { :;} # expected no-op src_compile() { unset HAVE_ICONV HAVE_LIBIDN use iconv && export HAVE_ICONV=1 use idn && export HAVE_LIBIDN=1 tc-export CC emake CFLAGS="${CFLAGS} ${CPPFLAGS}" } src_install() { emake BASEDIR="${ED}" prefix=/usr install insinto /etc doins whois.conf dodoc README debian/changelog if [[ ${USERLAND} != "GNU" ]]; then mv "${ED}"/usr/share/man/man1/{whois,mdwhois}.1 || die mv "${ED}"/usr/bin/{whois,mdwhois} || die fi }
[gentoo-commits] gentoo-x86 commit in app-misc/cdctl/files: cdctl-0.16-Makefile.in.patch
polynomial-c15/08/03 14:37:46 Modified: cdctl-0.16-Makefile.in.patch Log: Fixed small error in previously committed patch (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.2 app-misc/cdctl/files/cdctl-0.16-Makefile.in.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdctl/files/cdctl-0.16-Makefile.in.patch?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdctl/files/cdctl-0.16-Makefile.in.patch?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdctl/files/cdctl-0.16-Makefile.in.patch?r1=1.1&r2=1.2 Index: cdctl-0.16-Makefile.in.patch === RCS file: /var/cvsroot/gentoo-x86/app-misc/cdctl/files/cdctl-0.16-Makefile.in.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- cdctl-0.16-Makefile.in.patch3 Aug 2015 14:33:58 - 1.1 +++ cdctl-0.16-Makefile.in.patch3 Aug 2015 14:37:46 - 1.2 @@ -3,7 +3,7 @@ @@ -1,8 +1,8 @@ CC=gcc -CFLAGS=-Wall -g -+CFLAGS?=-Wall -g ++CFLAGS:=-Wall -g BINS=cdctl sndreset OBJS=cdctl.o version.o ioctls.o iso_header.o -DOCS=NEWS NUTSANDBOLTS LICENSE PUBLICKEY README SEGFAULTS @@ -11,18 +11,16 @@ # NOTE: all man pages are installed in $(mandir)/man1 -- see install-mans MANS=cdctl.1 MOS=cdctl.mo -@@ -22,6 +22,10 @@ +@@ -22,6 +22,8 @@ INSTALL_DIR = $(INSTALL) -d INSTALL_DATA = $(INSTALL) -m 644 +DESTDIR = + -+man1dir = $(mandir)/man1 -+ all: $(BINS) cdctl: $(OBJS) -@@ -35,25 +39,21 @@ +@@ -35,25 +37,21 @@ indent: indent -kr -cdb -sc *.c
[gentoo-commits] gentoo-x86 commit in app-misc/cdctl: ChangeLog
polynomial-c15/08/03 14:37:47 Modified: ChangeLog Log: Fixed small error in previously committed patch (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.15 app-misc/cdctl/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdctl/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdctl/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdctl/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-misc/cdctl/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 3 Aug 2015 14:33:58 - 1.14 +++ ChangeLog 3 Aug 2015 14:37:47 - 1.15 @@ -1,6 +1,10 @@ # ChangeLog for app-misc/cdctl # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/cdctl/ChangeLog,v 1.14 2015/08/03 14:33:58 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/cdctl/ChangeLog,v 1.15 2015/08/03 14:37:47 polynomial-c Exp $ + + 03 Aug 2015; Lars Wendler + files/cdctl-0.16-Makefile.in.patch: + Fixed small error in previously committed patch. *cdctl-0.16 (03 Aug 2015)
[gentoo-commits] gentoo-x86 commit in app-misc/cdctl: ChangeLog cdctl-0.16.ebuild
polynomial-c15/08/03 14:33:58 Modified: ChangeLog Added:cdctl-0.16.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.14 app-misc/cdctl/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdctl/ChangeLog?rev=1.14&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdctl/ChangeLog?rev=1.14&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdctl/ChangeLog?r1=1.13&r2=1.14 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-misc/cdctl/ChangeLog,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- ChangeLog 9 Jun 2015 11:37:58 - 1.13 +++ ChangeLog 3 Aug 2015 14:33:58 - 1.14 @@ -1,6 +1,12 @@ # ChangeLog for app-misc/cdctl # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/cdctl/ChangeLog,v 1.13 2015/06/09 11:37:58 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/cdctl/ChangeLog,v 1.14 2015/08/03 14:33:58 polynomial-c Exp $ + +*cdctl-0.16 (03 Aug 2015) + + 03 Aug 2015; Lars Wendler +cdctl-0.16.ebuild, + +files/cdctl-0.16-Makefile.in.patch: + Version bump. 09 Jun 2015; Justin Lecher metadata.xml: Updating remote-id in metadata.xml 1.1 app-misc/cdctl/cdctl-0.16.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdctl/cdctl-0.16.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdctl/cdctl-0.16.ebuild?rev=1.1&content-type=text/plain Index: cdctl-0.16.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-misc/cdctl/cdctl-0.16.ebuild,v 1.1 2015/08/03 14:33:58 polynomial-c Exp $ EAPI=5 inherit eutils autotools toolchain-funcs DESCRIPTION="Utility to control your cd/dvd drive" HOMEPAGE="http://cdctl.sourceforge.net/"; SRC_URI="mirror://sourceforge/cdctl/${P}.tar.gz" LICENSE="free-noncomm" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="" DEPEND="" S="${WORKDIR}/${PN}" src_prepare() { epatch "${FILESDIR}"/${PN}-0.16-Makefile.in.patch eautoreconf } src_compile() { emake CC="$(tc-getCC)" }
[gentoo-commits] gentoo-x86 commit in app-misc/cdctl/files: cdctl-0.16-Makefile.in.patch
polynomial-c15/08/03 14:33:58 Added:cdctl-0.16-Makefile.in.patch Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 app-misc/cdctl/files/cdctl-0.16-Makefile.in.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdctl/files/cdctl-0.16-Makefile.in.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdctl/files/cdctl-0.16-Makefile.in.patch?rev=1.1&content-type=text/plain Index: cdctl-0.16-Makefile.in.patch === --- cdctl/Makefile.in +++ cdctl/Makefile.in @@ -1,8 +1,8 @@ CC=gcc -CFLAGS=-Wall -g +CFLAGS?=-Wall -g BINS=cdctl sndreset OBJS=cdctl.o version.o ioctls.o iso_header.o -DOCS=NEWS NUTSANDBOLTS LICENSE PUBLICKEY README SEGFAULTS +DOCS=NEWS NUTSANDBOLTS LICENSE PUBLICKEY README # NOTE: all man pages are installed in $(mandir)/man1 -- see install-mans MANS=cdctl.1 MOS=cdctl.mo @@ -22,6 +22,10 @@ INSTALL_DIR = $(INSTALL) -d INSTALL_DATA = $(INSTALL) -m 644 +DESTDIR = + +man1dir = $(mandir)/man1 + all: $(BINS) cdctl: $(OBJS) @@ -35,25 +39,21 @@ indent: indent -kr -cdb -sc *.c -install: install-bins install-docs install-mans install-mos +install: install-bins install-mans install-mos install-bins: $(BINS) - $(INSTALL_DIR) $(bindir) - $(INSTALL) -s $(BINS) $(bindir) - -install-docs: $(DOCS) - $(INSTALL_DIR) $(docdir) - $(INSTALL_DATA) $(DOCS) $(docdir) + $(INSTALL_DIR) $(DESTDIR)$(bindir) + $(INSTALL) $(BINS) $(DESTDIR)$(bindir) install-mans: $(MANS) - $(INSTALL_DIR) $(mandir)/man1 - $(INSTALL_DATA) $(MANS) $(mandir)/man1 + $(INSTALL_DIR) $(DESTDIR)/$(mandir)/man1 + $(INSTALL_DATA) $(MANS) $(DESTDIR)$(mandir)/man1 # FIXME: need to deal with other languages besides German install-mos: cdctl.mo - $(INSTALL_DIR) $(localedir)/de/LC_MESSAGES - $(INSTALL_DATA) $(MOS) $(localedir)/de/LC_MESSAGES + $(INSTALL_DIR) $(DESTDIR)$(localedir)/de/LC_MESSAGES + $(INSTALL_DATA) $(MOS) $(DESTDIR)$(localedir)/de/LC_MESSAGES cdctl.mo: cdctl.po msgfmt cdctl.po -o cdctl.mo
[gentoo-commits] gentoo-x86 commit in app-editors/yudit: yudit-2.9.6.ebuild ChangeLog
polynomial-c15/08/03 13:47:59 Modified: ChangeLog Added:yudit-2.9.6.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.2 app-editors/yudit/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/yudit/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/yudit/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/yudit/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-editors/yudit/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 7 Oct 2012 12:54:22 - 1.1 +++ ChangeLog 3 Aug 2015 13:47:59 - 1.2 @@ -1,6 +1,11 @@ # ChangeLog for app-editors/yudit -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/yudit/ChangeLog,v 1.1 2012/10/07 12:54:22 ulm Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/yudit/ChangeLog,v 1.2 2015/08/03 13:47:59 polynomial-c Exp $ + +*yudit-2.9.6 (03 Aug 2015) + + 03 Aug 2015; Lars Wendler +yudit-2.9.6.ebuild: + Version bump. 03 Sep 2012; Michael Palimaka -yudit-2.8.1_beta7.ebuild: 1.1 app-editors/yudit/yudit-2.9.6.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/yudit/yudit-2.9.6.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/yudit/yudit-2.9.6.ebuild?rev=1.1&content-type=text/plain Index: yudit-2.9.6.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-editors/yudit/yudit-2.9.6.ebuild,v 1.1 2015/08/03 13:47:59 polynomial-c Exp $ EAPI=5 DESCRIPTION="Free (Y)unicode text editor for all unices" HOMEPAGE="http://www.yudit.org/"; SRC_URI="http://yudit.org/download/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND="x11-libs/libX11" DEPEND="${RDEPEND} >=sys-devel/gettext-0.10" src_prepare() { #Don't strip binaries, let portage do that. sed -i "/^INSTALL_PROGRAM/s: -s::" Makefile.conf.in || die "sed failed" } src_install() { emake DESTDIR="${D}" install dodoc {BUGS,CHANGELOG,NEWS,TODO,XBUGS}.TXT }
[gentoo-commits] gentoo-x86 commit in app-editors/ne: ChangeLog ne-3.0.1.ebuild
polynomial-c15/08/03 13:37:08 Modified: ChangeLog Added:ne-3.0.1.ebuild Log: Version bump (bug #550230) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.58 app-editors/ne/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/ne/ChangeLog?rev=1.58&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/ne/ChangeLog?rev=1.58&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/ne/ChangeLog?r1=1.57&r2=1.58 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-editors/ne/ChangeLog,v retrieving revision 1.57 retrieving revision 1.58 diff -u -r1.57 -r1.58 --- ChangeLog 5 Nov 2014 11:28:53 - 1.57 +++ ChangeLog 3 Aug 2015 13:37:08 - 1.58 @@ -1,6 +1,11 @@ # ChangeLog for app-editors/ne -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/ne/ChangeLog,v 1.57 2014/11/05 11:28:53 jer Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/ne/ChangeLog,v 1.58 2015/08/03 13:37:08 polynomial-c Exp $ + +*ne-3.0.1 (03 Aug 2015) + + 03 Aug 2015; Lars Wendler +ne-3.0.1.ebuild: + Version bump (bug #550230). 05 Nov 2014; Jeroen Roovers -ne-2.3.ebuild, -files/ne-2.1-asneeded.patch: 1.1 app-editors/ne/ne-3.0.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/ne/ne-3.0.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/ne/ne-3.0.1.ebuild?rev=1.1&content-type=text/plain Index: ne-3.0.1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-editors/ne/ne-3.0.1.ebuild,v 1.1 2015/08/03 13:37:08 polynomial-c Exp $ EAPI=5 inherit eutils flag-o-matic toolchain-funcs DESCRIPTION="the nice editor, easy to use for the beginner and powerful for the wizard" HOMEPAGE="http://ne.di.unimi.it/"; SRC_URI="${HOMEPAGE}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE=tinfo DEPEND=" >=sys-libs/ncurses-5.2[tinfo?] " RDEPEND=" ${DEPEND} dev-lang/perl " src_prepare() { sed -i -e 's/-O3//' src/makefile || die } src_configure() { if use tinfo; then sed -i -e 's|-lcurses|-ltinfo|g' src/makefile || die else sed -i -e 's|-lcurses|-lncurses|g' src/makefile || die fi } src_compile() { append-cflags -std=c11 emake -C src CC="$(tc-getCC)" \ NE_GLOBAL_DIR="/usr/share/ne" \ OPTS="${CFLAGS}" \ ne || die } src_install() { dobin src/ne insinto /usr/share/ne/syntax doins syntax/*.jsf doman doc/ne.1 dohtml -r doc/html/. dodoc CHANGES README.md NEWS doc/*.{txt,pdf,texinfo} doc/default.* }
[gentoo-commits] gentoo-x86 commit in app-editors/moe: ChangeLog moe-1.7.ebuild
polynomial-c15/08/03 13:25:44 Modified: ChangeLog Added:moe-1.7.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.10 app-editors/moe/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/moe/ChangeLog?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/moe/ChangeLog?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/moe/ChangeLog?r1=1.9&r2=1.10 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-editors/moe/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 6 Dec 2014 08:21:12 - 1.9 +++ ChangeLog 3 Aug 2015 13:25:44 - 1.10 @@ -1,6 +1,11 @@ # ChangeLog for app-editors/moe -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/moe/ChangeLog,v 1.9 2014/12/06 08:21:12 jer Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/moe/ChangeLog,v 1.10 2015/08/03 13:25:44 polynomial-c Exp $ + +*moe-1.7 (03 Aug 2015) + + 03 Aug 2015; Lars Wendler +moe-1.7.ebuild: + Version bump. 06 Dec 2014; Jeroen Roovers moe-1.6.ebuild, files/moe-1.6-tinfo.patch: 1.1 app-editors/moe/moe-1.7.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/moe/moe-1.7.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/moe/moe-1.7.ebuild?rev=1.1&content-type=text/plain Index: moe-1.7.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-editors/moe/moe-1.7.ebuild,v 1.1 2015/08/03 13:25:44 polynomial-c Exp $ EAPI=5 inherit eutils toolchain-funcs unpacker DESCRIPTION="A powerful and user-friendly console text editor" HOMEPAGE="http://www.gnu.org/software/moe/"; SRC_URI="mirror://gnu/${PN}/${P}.tar.lz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" RDEPEND=" sys-libs/ncurses " DEPEND=" $(unpacker_src_uri_depends) ${RDEPEND} virtual/pkgconfig " src_prepare() { tc-export CXX PKG_CONFIG sed -i \ -e "/^CXXFLAGS=/d" \ -e "/^LDFLAGS=/d" \ -e "/^CXX=/d" \ configure || die "sed on configure failed" epatch_user epatch "${FILESDIR}/${PN}-1.6-tinfo.patch" }
[gentoo-commits] gentoo-x86 commit in app-editors/joe: joe-4.0.ebuild ChangeLog
polynomial-c15/08/03 13:20:37 Modified: ChangeLog Added:joe-4.0.ebuild Log: Version bump (bug #544212) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.88 app-editors/joe/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/joe/ChangeLog?rev=1.88&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/joe/ChangeLog?rev=1.88&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/joe/ChangeLog?r1=1.87&r2=1.88 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-editors/joe/ChangeLog,v retrieving revision 1.87 retrieving revision 1.88 diff -u -r1.87 -r1.88 --- ChangeLog 9 Jun 2015 09:50:44 - 1.87 +++ ChangeLog 3 Aug 2015 13:20:37 - 1.88 @@ -1,6 +1,11 @@ # ChangeLog for app-editors/joe # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/joe/ChangeLog,v 1.87 2015/06/09 09:50:44 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/joe/ChangeLog,v 1.88 2015/08/03 13:20:37 polynomial-c Exp $ + +*joe-4.0 (03 Aug 2015) + + 03 Aug 2015; Lars Wendler +joe-4.0.ebuild: + Version bump (bug #544212). 09 Jun 2015; Justin Lecher metadata.xml: Updating remote-id in metadata.xml 1.1 app-editors/joe/joe-4.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/joe/joe-4.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/joe/joe-4.0.ebuild?rev=1.1&content-type=text/plain Index: joe-4.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-editors/joe/joe-4.0.ebuild,v 1.1 2015/08/03 13:20:37 polynomial-c Exp $ EAPI=5 inherit eutils DESCRIPTION="A free ASCII-Text Screen Editor for UNIX" HOMEPAGE="http://sourceforge.net/projects/joe-editor/"; SRC_URI="mirror://sourceforge/joe-editor/${P}.tar.gz" LICENSE="GPL-1" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris" IUSE="xterm" DEPEND=">=sys-libs/ncurses-5.2-r2" RDEPEND="xterm? ( >=x11-terms/xterm-239 )" DOCS=( README.md NEWS.md docs/hacking.md docs/man.md ) src_prepare() { # Enable xterm mouse support in the rc files if use xterm; then cd "${S}"/rc for i in *rc*.in; do sed -e 's/^ -\(mouse\|joexterm\)/-\1/' -i "${i}" || die "sed failed" done fi } src_configure() { econf \ --docdir="/usr/share/doc/${PF}" } pkg_postinst() { if use xterm; then elog "To enable full xterm clipboard you need to set the allowWindowOps" elog "resources to true. This is usually found in /etc/X11/app-defaults/XTerm" elog "This is false by default due to potential security problems on some" elog "architectures (see bug #91453)." fi }
[gentoo-commits] gentoo-x86 commit in media-gfx/pngcrush: ChangeLog pngcrush-1.7.86.ebuild pngcrush-1.7.82.ebuild pngcrush-1.7.83.ebuild
polynomial-c15/08/03 10:20:51 Modified: ChangeLog Added:pngcrush-1.7.86.ebuild Removed: pngcrush-1.7.82.ebuild pngcrush-1.7.83.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.137media-gfx/pngcrush/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pngcrush/ChangeLog?rev=1.137&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pngcrush/ChangeLog?rev=1.137&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pngcrush/ChangeLog?r1=1.136&r2=1.137 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v retrieving revision 1.136 retrieving revision 1.137 diff -u -r1.136 -r1.137 --- ChangeLog 10 Jul 2015 01:33:05 - 1.136 +++ ChangeLog 3 Aug 2015 10:20:51 - 1.137 @@ -1,6 +1,12 @@ # ChangeLog for media-gfx/pngcrush # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.136 2015/07/10 01:33:05 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/ChangeLog,v 1.137 2015/08/03 10:20:51 polynomial-c Exp $ + +*pngcrush-1.7.86 (03 Aug 2015) + + 03 Aug 2015; Lars Wendler -pngcrush-1.7.82.ebuild, + -pngcrush-1.7.83.ebuild, +pngcrush-1.7.86.ebuild: + Version bump. Removed old. *pngcrush-1.7.85 (10 Jul 2015) 1.1 media-gfx/pngcrush/pngcrush-1.7.86.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pngcrush/pngcrush-1.7.86.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/pngcrush/pngcrush-1.7.86.ebuild?rev=1.1&content-type=text/plain Index: pngcrush-1.7.86.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-gfx/pngcrush/pngcrush-1.7.86.ebuild,v 1.1 2015/08/03 10:20:51 polynomial-c Exp $ EAPI=5 inherit toolchain-funcs DESCRIPTION="Portable Network Graphics (PNG) optimizing utility" HOMEPAGE="http://pmt.sourceforge.net/pngcrush/"; SRC_URI="system-libs? ( mirror://sourceforge/pmt/${P}-nolib.tar.xz ) !system-libs? ( mirror://sourceforge/pmt/${P}.tar.xz )" LICENSE="pngcrush" SLOT="0" KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="+system-libs" RDEPEND=" system-libs? ( media-libs/libpng:0= sys-libs/zlib:= )" DEPEND="${RDEPEND} app-arch/xz-utils" pkg_setup() { use system-libs && S+="-nolib" } src_compile() { emake \ CC="$(tc-getCC)" \ LD="$(tc-getCC)" \ CFLAGS="${CFLAGS} ${CPPFLAGS} -Wall" \ LDFLAGS="${LDFLAGS}" } src_install() { dobin ${PN} dohtml ChangeLog.html }
[gentoo-commits] gentoo-x86 commit in media-libs/libpng: ChangeLog libpng-1.6.18.ebuild libpng-1.2.53.ebuild libpng-1.5.23.ebuild
polynomial-c15/08/03 09:03:40 Modified: ChangeLog Added:libpng-1.6.18.ebuild libpng-1.2.53.ebuild libpng-1.5.23.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.491media-libs/libpng/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpng/ChangeLog?rev=1.491&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpng/ChangeLog?rev=1.491&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpng/ChangeLog?r1=1.490&r2=1.491 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-libs/libpng/ChangeLog,v retrieving revision 1.490 retrieving revision 1.491 diff -u -r1.490 -r1.491 --- ChangeLog 15 Apr 2015 11:32:16 - 1.490 +++ ChangeLog 3 Aug 2015 09:03:40 - 1.491 @@ -1,6 +1,14 @@ # ChangeLog for media-libs/libpng # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/ChangeLog,v 1.490 2015/04/15 11:32:16 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/ChangeLog,v 1.491 2015/08/03 09:03:40 polynomial-c Exp $ + +*libpng-1.6.18 (03 Aug 2015) +*libpng-1.5.23 (03 Aug 2015) +*libpng-1.2.53 (03 Aug 2015) + + 03 Aug 2015; Lars Wendler +libpng-1.2.53.ebuild, + +libpng-1.5.23.ebuild, +libpng-1.6.18.ebuild: + Version bump. *libpng-1.6.17 (15 Apr 2015) 1.1 media-libs/libpng/libpng-1.6.18.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpng/libpng-1.6.18.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpng/libpng-1.6.18.ebuild?rev=1.1&content-type=text/plain Index: libpng-1.6.18.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.6.18.ebuild,v 1.1 2015/08/03 09:03:40 polynomial-c Exp $ EAPI=5 inherit eutils libtool multilib-minimal DESCRIPTION="Portable Network Graphics library" HOMEPAGE="http://www.libpng.org/"; SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz apng? ( mirror://sourceforge/apng/${P}-apng.patch.gz )" LICENSE="libpng" SLOT="0/16" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" IUSE="apng neon static-libs" RDEPEND=">=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}] abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r1 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )" DEPEND="${RDEPEND} app-arch/xz-utils" src_prepare() { if use apng; then epatch "${WORKDIR}"/${PN}-*-apng.patch # Don't execute symbols check with apng patch wrt #378111 sed -i -e '/^check/s:scripts/symbols.chk::' Makefile.in || die fi elibtoolize } multilib_src_configure() { ECONF_SOURCE="${S}" econf \ $(use_enable static-libs static) \ --enable-arm-neon=$(usex neon) } multilib_src_install_all() { dodoc ANNOUNCE CHANGES libpng-manual.txt README TODO prune_libtool_files --all } 1.1 media-libs/libpng/libpng-1.2.53.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpng/libpng-1.2.53.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libpng/libpng-1.2.53.ebuild?rev=1.1&content-type=text/plain Index: libpng-1.2.53.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.2.53.ebuild,v 1.1 2015/08/03 09:03:40 polynomial-c Exp $ EAPI=5 # this ebuild is only for the libpng12.so.0 SONAME for ABI compat inherit libtool multilib-minimal DESCRIPTION="Portable Network Graphics library" HOMEPAGE="http://www.libpng.org/"; SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" LICENSE="libpng" SLOT="1.2" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="" RDEPEND=">=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}] !=media-libs/libpng-1.2*:0 abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r3 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )
[gentoo-commits] gentoo-x86 commit in dev-vcs/git: git-2.4.7.ebuild ChangeLog
polynomial-c15/07/31 15:10:38 Modified: ChangeLog Added:git-2.4.7.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.352dev-vcs/git/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?rev=1.352&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?rev=1.352&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?r1=1.351&r2=1.352 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v retrieving revision 1.351 retrieving revision 1.352 diff -u -r1.351 -r1.352 --- ChangeLog 30 Jul 2015 19:00:13 - 1.351 +++ ChangeLog 31 Jul 2015 15:10:38 - 1.352 @@ -1,6 +1,11 @@ # ChangeLog for dev-vcs/git # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v 1.351 2015/07/30 19:00:13 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v 1.352 2015/07/31 15:10:38 polynomial-c Exp $ + +*git-2.4.7 (31 Jul 2015) + + 31 Jul 2015; Lars Wendler +git-2.4.7.ebuild: + Version bump. 30 Jul 2015; Mikle Kolyada git-2.3.8.ebuild, git-2.4.6.ebuild: 1.1 dev-vcs/git/git-2.4.7.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/git-2.4.7.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/git-2.4.7.ebuild?rev=1.1&content-type=text/plain Index: git-2.4.7.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/git-2.4.7.ebuild,v 1.1 2015/07/31 15:10:38 polynomial-c Exp $ EAPI=5 GENTOO_DEPEND_ON_PERL=no # bug #329479: git-remote-testgit is not multiple-version aware PYTHON_COMPAT=( python2_7 ) [[ ${PV} == * ]] && SCM="git-2" EGIT_REPO_URI="git://git.kernel.org/pub/scm/git/git.git" EGIT_MASTER=pu inherit toolchain-funcs eutils elisp-common perl-module bash-completion-r1 python-single-r1 systemd ${SCM} MY_PV="${PV/_rc/.rc}" MY_P="${PN}-${MY_PV}" DOC_VER=${MY_PV} DESCRIPTION="GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team" HOMEPAGE="http://www.git-scm.com/"; if [[ ${PV} != * ]]; then SRC_URI_SUFFIX="xz" SRC_URI_GOOG="http://git-core.googlecode.com/files"; SRC_URI_KORG="mirror://kernel/software/scm/git" SRC_URI="${SRC_URI_GOOG}/${MY_P}.tar.${SRC_URI_SUFFIX} ${SRC_URI_KORG}/${MY_P}.tar.${SRC_URI_SUFFIX} ${SRC_URI_GOOG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} ${SRC_URI_KORG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} doc? ( ${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} ${SRC_URI_GOOG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} )" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi LICENSE="GPL-2" SLOT="0" IUSE="+blksha1 +curl cgi doc emacs gnome-keyring +gpg gtk highlight +iconv mediawiki +nls +pcre +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion test" # Common to both DEPEND and RDEPEND CDEPEND=" dev-libs/openssl:0= sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl:=[-build(-)] ) tk? ( dev-lang/tk:= ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) gnome-keyring? ( gnome-base/libgnome-keyring )" RDEPEND="${CDEPEND} gpg? ( app-crypt/gnupg ) mediawiki? ( dev-perl/HTML-Tree dev-perl/MediaWiki-API ) perl? ( dev-perl/Error dev-perl/Net-SMTP-SSL dev-perl/Authen-SASL cgi? ( dev-perl/CGI highlight? ( app-text/highlight ) ) cvs? ( >=dev-vcs/cvsps-2.1:0 dev-perl/DBI dev-perl/DBD-SQLite ) subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) ) python? ( gtk? ( >=dev-python/pygtk-2.8[${PYTHON_USEDEP}] >=dev-python/pygtksourceview-2.10.1-r1:2[${PYTHON_USEDEP}] ) ${PYTH
[gentoo-commits] gentoo-x86 commit in sys-fs/xfsprogs: xfsprogs-3.2.4.ebuild ChangeLog xfsprogs-3.2.1.ebuild
polynomial-c15/07/30 15:51:11 Modified: ChangeLog Added:xfsprogs-3.2.4.ebuild Removed: xfsprogs-3.2.1.ebuild Log: Security bump (bug #556318). Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.189sys-fs/xfsprogs/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/xfsprogs/ChangeLog?rev=1.189&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/xfsprogs/ChangeLog?rev=1.189&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/xfsprogs/ChangeLog?r1=1.188&r2=1.189 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-fs/xfsprogs/ChangeLog,v retrieving revision 1.188 retrieving revision 1.189 diff -u -r1.188 -r1.189 --- ChangeLog 30 Jul 2015 12:27:43 - 1.188 +++ ChangeLog 30 Jul 2015 15:51:11 - 1.189 @@ -1,6 +1,10 @@ # ChangeLog for sys-fs/xfsprogs # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsprogs/ChangeLog,v 1.188 2015/07/30 12:27:43 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsprogs/ChangeLog,v 1.189 2015/07/30 15:51:11 polynomial-c Exp $ + + 30 Jul 2015; Lars Wendler -xfsprogs-3.2.1.ebuild, + +xfsprogs-3.2.4.ebuild: + Security bump (bug #556318). Removed old. 30 Jul 2015; Agostino Sarubbo xfsprogs-3.2.2.ebuild: Stable for sparc, wrt bug #551802 1.1 sys-fs/xfsprogs/xfsprogs-3.2.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/xfsprogs/xfsprogs-3.2.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/xfsprogs/xfsprogs-3.2.4.ebuild?rev=1.1&content-type=text/plain Index: xfsprogs-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/sys-fs/xfsprogs/xfsprogs-3.2.4.ebuild,v 1.1 2015/07/30 15:51:11 polynomial-c Exp $ EAPI="4" inherit eutils toolchain-funcs multilib DESCRIPTION="xfs filesystem utilities" HOMEPAGE="http://oss.sgi.com/projects/xfs/"; SRC_URI="ftp://oss.sgi.com/projects/xfs/cmd_tars/${P}.tar.gz ftp://oss.sgi.com/projects/xfs/previous/cmd_tars/${P}.tar.gz"; LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="libedit nls readline static static-libs" REQUIRED_USE="static? ( static-libs )" LIB_DEPEND=">=sys-apps/util-linux-2.17.2[static-libs(+)] readline? ( sys-libs/readline[static-libs(+)] ) !readline? ( libedit? ( dev-libs/libedit[static-libs(+)] ) )" RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} ) !=xfsprogs-3.2.0 emake -j1 DIST_ROOT="${ED}" install-{dev,qa} # handle is for xfsdump, the rest for xfsprogs gen_usr_ldscript -a xfs xlog # removing unnecessary .la files if not needed use static-libs || find "${ED}" -name '*.la' -delete }
[gentoo-commits] gentoo-x86 commit in media-libs/mutagen: ChangeLog mutagen-1.29.ebuild mutagen-1.24.ebuild
polynomial-c15/07/29 07:50:48 Modified: ChangeLog Added:mutagen-1.29.ebuild Removed: mutagen-1.24.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.114media-libs/mutagen/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mutagen/ChangeLog?rev=1.114&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mutagen/ChangeLog?rev=1.114&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mutagen/ChangeLog?r1=1.113&r2=1.114 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-libs/mutagen/ChangeLog,v retrieving revision 1.113 retrieving revision 1.114 diff -u -r1.113 -r1.114 --- ChangeLog 23 Jul 2015 20:35:12 - 1.113 +++ ChangeLog 29 Jul 2015 07:50:48 - 1.114 @@ -1,6 +1,12 @@ # ChangeLog for media-libs/mutagen # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/mutagen/ChangeLog,v 1.113 2015/07/23 20:35:12 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/mutagen/ChangeLog,v 1.114 2015/07/29 07:50:48 polynomial-c Exp $ + +*mutagen-1.29 (29 Jul 2015) + + 29 Jul 2015; Lars Wendler -mutagen-1.24.ebuild, + +mutagen-1.29.ebuild: + Version bump. Removed old. 23 Jul 2015; Pacho Ramos mutagen-1.27.ebuild: ppc stable wrt bug #535470 1.1 media-libs/mutagen/mutagen-1.29.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mutagen/mutagen-1.29.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mutagen/mutagen-1.29.ebuild?rev=1.1&content-type=text/plain Index: mutagen-1.29.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/mutagen/mutagen-1.29.ebuild,v 1.1 2015/07/29 07:50:48 polynomial-c Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} ) inherit distutils-r1 DESCRIPTION="Mutagen is an audio metadata tag reader and writer implemented in pure Python" HOMEPAGE="http://code.google.com/p/mutagen http://pypi.python.org/pypi/mutagen"; SRC_URI="https://bitbucket.org/lazka/${PN}/downloads/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux" IUSE="doc test" # TODO: Missing support for >=dev-python/eyeD3-0.7 API # test? ( >=dev-python/eyeD3-0.7 ) DEPEND=" doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) " python_compile_all() { use doc && emake -C docs } src_test() { # tests/test_flac.py uses temp files with a constant path. # If we had multiple python implementations, we would hit a race. DISTUTILS_NO_PARALLEL_BUILD=1 distutils-r1_src_test } python_test() { esetup.py test } python_install_all() { local DOCS=( NEWS README.rst ) use doc && local HTML_DOCS=( docs/_build/. ) distutils-r1_python_install_all }
[gentoo-commits] gentoo-x86 commit in sys-block/mbuffer: ChangeLog mbuffer-20121111.ebuild mbuffer-20120505.ebuild
polynomial-c15/07/28 18:01:16 Modified: ChangeLog Removed: mbuffer-2012.ebuild mbuffer-20120505.ebuild Log: Removed vulnerable versions (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.34 sys-block/mbuffer/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/mbuffer/ChangeLog?rev=1.34&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/mbuffer/ChangeLog?rev=1.34&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/mbuffer/ChangeLog?r1=1.33&r2=1.34 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-block/mbuffer/ChangeLog,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- ChangeLog 19 May 2015 12:55:25 - 1.33 +++ ChangeLog 28 Jul 2015 18:01:16 - 1.34 @@ -1,6 +1,11 @@ # ChangeLog for sys-block/mbuffer # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/mbuffer/ChangeLog,v 1.33 2015/05/19 12:55:25 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/mbuffer/ChangeLog,v 1.34 2015/07/28 18:01:16 polynomial-c Exp $ + + 28 Jul 2015; Lars Wendler -mbuffer-20120505.ebuild, + -mbuffer-2012.ebuild: + Removed vulnerable versions (see https://bugs.gentoo.org/556146#c0 for the + reason). *mbuffer-20150412 (19 May 2015)
[gentoo-commits] gentoo-x86 commit in media-sound/linuxsampler: ChangeLog linuxsampler-2.0.0.ebuild
polynomial-c15/07/28 16:13:32 Modified: ChangeLog Added:linuxsampler-2.0.0.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.19 media-sound/linuxsampler/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/linuxsampler/ChangeLog?rev=1.19&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/linuxsampler/ChangeLog?rev=1.19&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/linuxsampler/ChangeLog?r1=1.18&r2=1.19 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-sound/linuxsampler/ChangeLog,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- ChangeLog 22 Mar 2015 15:17:44 - 1.18 +++ ChangeLog 28 Jul 2015 16:13:32 - 1.19 @@ -1,6 +1,12 @@ # ChangeLog for media-sound/linuxsampler # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/linuxsampler/ChangeLog,v 1.18 2015/03/22 15:17:44 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/linuxsampler/ChangeLog,v 1.19 2015/07/28 16:13:32 polynomial-c Exp $ + +*linuxsampler-2.0.0 (28 Jul 2015) + + 28 Jul 2015; Lars Wendler + +linuxsampler-2.0.0.ebuild: + Version bump. 22 Mar 2015; Manuel Rüger -linuxsampler-1.0.0.ebuild: Remove old revision. 1.1 media-sound/linuxsampler/linuxsampler-2.0.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/linuxsampler/linuxsampler-2.0.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/linuxsampler/linuxsampler-2.0.0.ebuild?rev=1.1&content-type=text/plain Index: linuxsampler-2.0.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/linuxsampler/linuxsampler-2.0.0.ebuild,v 1.1 2015/07/28 16:13:32 polynomial-c Exp $ EAPI=5 inherit eutils DESCRIPTION="LinuxSampler is a software audio sampler engine with professional grade features" HOMEPAGE="http://www.linuxsampler.org/"; SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc jack sqlite static-libs" RDEPEND="sqlite? ( >=dev-db/sqlite-3.3 ) >=media-libs/libgig-4.0.0 media-libs/alsa-lib jack? ( media-sound/jack-audio-connection-kit )" DEPEND="${RDEPEND} virtual/pkgconfig doc? ( app-doc/doxygen )" src_configure() { econf --enable-alsa-driver \ --disable-arts-driver \ $(use_enable jack jack-driver) \ $(use_enable sqlite instruments-db) \ $(use_enable static-libs static) } src_compile() { emake if use doc; then emake docs fi } src_install() { emake DESTDIR="${D}" install dodoc AUTHORS ChangeLog NEWS README if use doc; then dohtml -r doc/html/* fi prune_libtool_files }
[gentoo-commits] gentoo-x86 commit in media-libs/libgig: ChangeLog libgig-4.0.0.ebuild
polynomial-c15/07/28 16:11:33 Modified: ChangeLog Added:libgig-4.0.0.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.15 media-libs/libgig/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libgig/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libgig/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libgig/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-libs/libgig/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 23 Apr 2015 23:27:23 - 1.14 +++ ChangeLog 28 Jul 2015 16:11:33 - 1.15 @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libgig # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libgig/ChangeLog,v 1.14 2015/04/23 23:27:23 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libgig/ChangeLog,v 1.15 2015/07/28 16:11:33 polynomial-c Exp $ + +*libgig-4.0.0 (28 Jul 2015) + + 28 Jul 2015; Lars Wendler +libgig-4.0.0.ebuild: + Version bump. 23 Apr 2015; Manuel Rüger -files/libgig-gcc-4.3.patch, -libgig-3.2.1.ebuild: 1.1 media-libs/libgig/libgig-4.0.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libgig/libgig-4.0.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libgig/libgig-4.0.0.ebuild?rev=1.1&content-type=text/plain Index: libgig-4.0.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/libgig/libgig-4.0.0.ebuild,v 1.1 2015/07/28 16:11:33 polynomial-c Exp $ EAPI=5 inherit eutils DESCRIPTION="a C++ library for loading Gigasampler files and DLS (Downloadable Sounds) Level 1/2 files" HOMEPAGE="http://www.linuxsampler.org/libgig/"; SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="doc" RDEPEND=">=media-libs/libsndfile-1.0.2 >=media-libs/audiofile-0.2.3" DEPEND="${RDEPEND} virtual/pkgconfig doc? ( app-doc/doxygen )" src_compile() { emake if use doc ; then emake docs fi } src_install() { emake DESTDIR="${D}" install dodoc AUTHORS ChangeLog NEWS README TODO if use doc ; then dohtml -r doc/html/* fi }
[gentoo-commits] gentoo-x86 commit in sys-libs/db/files: db-6.0.35-sqlite-configure-path.patch
polynomial-c15/07/28 14:46:45 Added:db-6.0.35-sqlite-configure-path.patch Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 sys-libs/db/files/db-6.0.35-sqlite-configure-path.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/db/files/db-6.0.35-sqlite-configure-path.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/db/files/db-6.0.35-sqlite-configure-path.patch?rev=1.1&content-type=text/plain Index: db-6.0.35-sqlite-configure-path.patch === --- db-6.0.35/dist/aclocal/sql.m4 +++ db-6.0.35/dist/aclocal/sql.m4 @@ -96,7 +96,7 @@ if test "$db_cv_build_cryptography" = "yes"; then CPPFLAGS="$CPPFLAGS -DSQLITE_HAS_CODEC=1" fi -(cd sql && eval "\$SHELL ../$sqlite_dir/configure --disable-option-checking $ac_sub_configure_args CPPFLAGS=\"-I.. $CPPFLAGS\" --enable-amalgamation=$db_cv_sql_amalgamation --enable-readline=$with_readline " && cat build_config.h >> config.h) || exit 1 +(cd sql && eval "\$SHELL $sqlite_dir/configure --disable-option-checking $ac_sub_configure_args CPPFLAGS=\"-I.. $CPPFLAGS\" --enable-amalgamation=$db_cv_sql_amalgamation --enable-readline=$with_readline " && cat build_config.h >> config.h) || exit 1 # Configure JDBC if --enable-jdbc if test "$db_cv_jdbc" != "no"; then
[gentoo-commits] gentoo-x86 commit in sys-libs/db: db-6.0.35.ebuild ChangeLog db-5.1.29.ebuild db-6.1.23.ebuild db-4.8.30.ebuild db-6.0.30.ebuild db-5.3.28-r1.ebuild
polynomial-c15/07/28 14:46:45 Modified: ChangeLog Added:db-6.0.35.ebuild Removed: db-5.1.29.ebuild db-6.1.23.ebuild db-4.8.30.ebuild db-6.0.30.ebuild db-5.3.28-r1.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.378sys-libs/db/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/db/ChangeLog?rev=1.378&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/db/ChangeLog?rev=1.378&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/db/ChangeLog?r1=1.377&r2=1.378 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-libs/db/ChangeLog,v retrieving revision 1.377 retrieving revision 1.378 diff -u -r1.377 -r1.378 --- ChangeLog 26 Jun 2015 13:40:34 - 1.377 +++ ChangeLog 28 Jul 2015 14:46:45 - 1.378 @@ -1,6 +1,14 @@ # ChangeLog for sys-libs/db # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/ChangeLog,v 1.377 2015/06/26 13:40:34 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/ChangeLog,v 1.378 2015/07/28 14:46:45 polynomial-c Exp $ + +*db-6.0.35 (28 Jul 2015) + + 28 Jul 2015; Lars Wendler -db-4.8.30.ebuild, + -db-5.1.29.ebuild, -db-5.3.28-r1.ebuild, -db-6.0.30.ebuild, + +db-6.0.35.ebuild, -db-6.1.23.ebuild, + +files/db-6.0.35-sqlite-configure-path.patch: + Version bump. Removed old. *db-6.1.26 (26 Jun 2015) 1.1 sys-libs/db/db-6.0.35.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/db/db-6.0.35.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/db/db-6.0.35.ebuild?rev=1.1&content-type=text/plain Index: db-6.0.35.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-6.0.35.ebuild,v 1.1 2015/07/28 14:46:45 polynomial-c Exp $ EAPI=5 inherit eutils db flag-o-matic java-pkg-opt-2 autotools multilib multilib-minimal versionator toolchain-funcs #Number of official patches #PATCHNO=`echo ${PV}|sed -e "s,\(.*_p\)\([0-9]*\),\2,"` PATCHNO=${PV/*.*.*_p} if [[ ${PATCHNO} == "${PV}" ]] ; then MY_PV=${PV} MY_P=${P} PATCHNO=0 else MY_PV=${PV/_p${PATCHNO}} MY_P=${PN}-${MY_PV} fi S_BASE="${WORKDIR}/${MY_P}" S="${S_BASE}/build_unix" DESCRIPTION="Oracle Berkeley DB" HOMEPAGE="http://www.oracle.com/technology/software/products/berkeley-db/index.html"; SRC_URI="http://download.oracle.com/berkeley-db/${MY_P}.tar.gz"; for (( i=1 ; i<=${PATCHNO} ; i++ )) ; do export SRC_URI="${SRC_URI} http://www.oracle.com/technology/products/berkeley-db/db/update/${MY_PV}/patch.${MY_PV}.${i}"; done LICENSE="AGPL-3" SLOT="$(get_version_component_range 1-2)" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" IUSE="doc java cxx tcl test" REQUIRED_USE="test? ( tcl )" # the entire testsuite needs the TCL functionality DEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) test? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) java? ( >=virtual/jdk-1.5 ) >=sys-devel/binutils-2.16.1" RDEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] ) java? ( >=virtual/jre-1.5 )" MULTILIB_WRAPPED_HEADERS=( /usr/include/db$(get_version_component_range 1-2)/db.h ) src_prepare() { cd "${WORKDIR}"/"${MY_P}" for (( i=1 ; i<=${PATCHNO} ; i++ )) do epatch "${DISTDIR}"/patch."${MY_PV}"."${i}" done # bug #510506 epatch "${FILESDIR}"/${PN}-4.8.24-java-manifest-location.patch # use the includes from the prefix epatch "${FILESDIR}"/${PN}-4.6-jni-check-prefix-first.patch epatch "${FILESDIR}"/${PN}-4.3-listen-to-java-options.patch # sqlite configure call has an extra leading .. # upstreamed:5.2.36, missing in 5.3.x/6.x # still needs to be patched in 6.0.20 epatch "${FILESDIR}"/${PN}-6.0.35-sqlite-configure-path.patch # The upstream testsuite copies .lib and the binaries for each parallel test # core, ~300MB each. This patch uses links instead, saves a lot of space. epatch "${FILESDIR}"/${PN}-6.0.20-test-link.patch # Upstream release script grabs the dates when the script was run, so lets # end-run them to keep the date the same. export REAL_DB_RELEASE_DATE="$(awk \ '/^DB_VERSION_STRING=/{ gsub(".*\\(|\\).*","",$0); print $0; }' \ "${S_BASE}"/dist/configure)" sed -r
[gentoo-commits] gentoo-x86 commit in dev-vcs/git: ChangeLog git-2.5.0.ebuild git-2.4.5.ebuild
polynomial-c15/07/28 13:39:06 Modified: ChangeLog Added:git-2.5.0.ebuild Removed: git-2.4.5.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.344dev-vcs/git/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?rev=1.344&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?rev=1.344&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?r1=1.343&r2=1.344 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v retrieving revision 1.343 retrieving revision 1.344 diff -u -r1.343 -r1.344 --- ChangeLog 17 Jul 2015 07:21:00 - 1.343 +++ ChangeLog 28 Jul 2015 13:39:06 - 1.344 @@ -1,6 +1,12 @@ # ChangeLog for dev-vcs/git # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v 1.343 2015/07/17 07:21:00 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v 1.344 2015/07/28 13:39:06 polynomial-c Exp $ + +*git-2.5.0 (28 Jul 2015) + + 28 Jul 2015; Lars Wendler -git-2.4.5.ebuild, + +git-2.5.0.ebuild: + Version bump. Removed old. 17 Jul 2015; Lars Wendler files/git-daemon.confd: Fixed typo in comment. 1.1 dev-vcs/git/git-2.5.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/git-2.5.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/git-2.5.0.ebuild?rev=1.1&content-type=text/plain Index: git-2.5.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/git-2.5.0.ebuild,v 1.1 2015/07/28 13:39:06 polynomial-c Exp $ EAPI=5 GENTOO_DEPEND_ON_PERL=no # bug #329479: git-remote-testgit is not multiple-version aware PYTHON_COMPAT=( python2_7 ) [[ ${PV} == * ]] && SCM="git-2" EGIT_REPO_URI="git://git.kernel.org/pub/scm/git/git.git" EGIT_MASTER=pu inherit toolchain-funcs eutils elisp-common perl-module bash-completion-r1 python-single-r1 systemd ${SCM} MY_PV="${PV/_rc/.rc}" MY_P="${PN}-${MY_PV}" DOC_VER=${MY_PV} DESCRIPTION="GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team" HOMEPAGE="http://www.git-scm.com/"; if [[ ${PV} != * ]]; then SRC_URI_SUFFIX="xz" SRC_URI_GOOG="http://git-core.googlecode.com/files"; SRC_URI_KORG="mirror://kernel/software/scm/git" SRC_URI="${SRC_URI_GOOG}/${MY_P}.tar.${SRC_URI_SUFFIX} ${SRC_URI_KORG}/${MY_P}.tar.${SRC_URI_SUFFIX} ${SRC_URI_GOOG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} ${SRC_URI_KORG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} doc? ( ${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} ${SRC_URI_GOOG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} )" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi LICENSE="GPL-2" SLOT="0" IUSE="+blksha1 +curl cgi doc emacs gnome-keyring +gpg gtk highlight +iconv mediawiki +nls +pcre +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion test" # Common to both DEPEND and RDEPEND CDEPEND=" dev-libs/openssl:0= sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl:=[-build(-)] ) tk? ( dev-lang/tk:= ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) gnome-keyring? ( gnome-base/libgnome-keyring )" RDEPEND="${CDEPEND} gpg? ( app-crypt/gnupg ) mediawiki? ( dev-perl/HTML-Tree dev-perl/MediaWiki-API ) perl? ( dev-perl/Error dev-perl/Net-SMTP-SSL dev-perl/Authen-SASL cgi? ( dev-perl/CGI highlight? ( app-text/highlight ) ) cvs? ( >=dev-vcs/cvsps-2.1:0 dev-perl/DBI dev-perl/DBD-SQLite ) subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) ) python? ( gtk? ( >=dev-python/pygtk-2.8[${PYTHON_USEDEP}]
[gentoo-commits] gentoo-x86 commit in net-ftp/pure-ftpd: ChangeLog pure-ftpd-1.0.42.ebuild pure-ftpd-1.0.36.ebuild
polynomial-c15/07/28 13:23:15 Modified: ChangeLog Added:pure-ftpd-1.0.42.ebuild Removed: pure-ftpd-1.0.36.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.169net-ftp/pure-ftpd/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?rev=1.169&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?rev=1.169&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?r1=1.168&r2=1.169 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v retrieving revision 1.168 retrieving revision 1.169 diff -u -r1.168 -r1.169 --- ChangeLog 22 Jul 2015 16:32:18 - 1.168 +++ ChangeLog 28 Jul 2015 13:23:15 - 1.169 @@ -1,6 +1,12 @@ # ChangeLog for net-ftp/pure-ftpd # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.168 2015/07/22 16:32:18 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.169 2015/07/28 13:23:15 polynomial-c Exp $ + +*pure-ftpd-1.0.42 (28 Jul 2015) + + 28 Jul 2015; Lars Wendler -pure-ftpd-1.0.36.ebuild, + +pure-ftpd-1.0.42.ebuild: + Version bump. Removed old. 22 Jul 2015; Mikle Kolyada pure-ftpd-1.0.40.ebuild: ia64 stable wrt bug #552254 1.1 net-ftp/pure-ftpd/pure-ftpd-1.0.42.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.42.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.42.ebuild?rev=1.1&content-type=text/plain Index: pure-ftpd-1.0.42.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.42.ebuild,v 1.1 2015/07/28 13:23:15 polynomial-c Exp $ EAPI=5 inherit eutils confutils flag-o-matic KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" DESCRIPTION="Fast, production-quality, standard-conformant FTP server" HOMEPAGE="http://www.pureftpd.org/"; SRC_URI="ftp://ftp.pureftpd.org/pub/${PN}/releases/${P}.tar.bz2 http://download.pureftpd.org/pub/${PN}/releases/${P}.tar.bz2"; LICENSE="BSD" SLOT="0" IUSE="anondel anonperm anonren anonres caps charconv implicittls ldap mysql noiplog pam paranoidmsg postgres resolveids selinux ssl sysquota vchroot xinetd" REQUIRED_USE="implicittls? ( ssl )" DEPEND="caps? ( sys-libs/libcap ) charconv? ( virtual/libiconv ) ldap? ( >=net-nds/openldap-2.0.25 ) mysql? ( virtual/mysql ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql:= ) ssl? ( >=dev-libs/openssl-0.9.6g:0=[-bindist] ) sysquota? ( sys-fs/quota[-rpc] ) xinetd? ( virtual/inetd )" RDEPEND="${DEPEND} dev-libs/libsodium net-ftp/ftpbase selinux? ( sec-policy/selinux-ftp )" src_prepare() { epatch "${FILESDIR}"/${PN}-1.0.28-pam.patch } src_configure() { # adjust max user length to something more appropriate # for virtual hosts. See bug #62472 for details. sed -e "s:# define MAX_USER_LENGTH 32U:# define MAX_USER_LENGTH 127U:" \ -i "${S}/src/ftpd.h" || die "sed failed" local my_conf="" # Let's configure the USE-enabled stuff enable_extension_without"capabilities" "caps" enable_extension_with "rfc2640" "charconv" 0 enable_extension_with "ldap" "ldap" 0 enable_extension_with "mysql" "mysql" 0 enable_extension_with "pam" "pam" 0 enable_extension_with "paranoidmsg" "paranoidmsg" 0 enable_extension_with "pgsql" "postgres" 0 enable_extension_with "tls" "ssl" 0 enable_extension_with "implicittls" "implicittls" 0 enable_extension_with "virtualchroot" "vchroot" 0 enable_extension_with "sysquotas" "sysquota" 0 enable_extension_without"inetd" "xinetd" # noiplog is a negative flag, we don't want that enabled by default, # so we handle it manually, as confutils can't do that use noiplog && my_conf="${my_conf} --without-iplogging" # Tho
[gentoo-commits] gentoo-x86 commit in media-sound/kid3: kid3-3.2.1.ebuild ChangeLog
polynomial-c15/07/27 22:41:35 Modified: ChangeLog Added:kid3-3.2.1.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.92 media-sound/kid3/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/kid3/ChangeLog?rev=1.92&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/kid3/ChangeLog?rev=1.92&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/kid3/ChangeLog?r1=1.91&r2=1.92 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-sound/kid3/ChangeLog,v retrieving revision 1.91 retrieving revision 1.92 diff -u -r1.91 -r1.92 --- ChangeLog 3 Feb 2015 17:54:09 - 1.91 +++ ChangeLog 27 Jul 2015 22:41:35 - 1.92 @@ -1,6 +1,11 @@ # ChangeLog for media-sound/kid3 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/kid3/ChangeLog,v 1.91 2015/02/03 17:54:09 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/kid3/ChangeLog,v 1.92 2015/07/27 22:41:35 polynomial-c Exp $ + +*kid3-3.2.1 (27 Jul 2015) + + 27 Jul 2015; Lars Wendler +kid3-3.2.1.ebuild: + Version bump. 03 Feb 2015; Michael Palimaka kid3-3.1.2.ebuild: Raise media-sound/kid3 dependency wrt bug #538538. 1.1 media-sound/kid3/kid3-3.2.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/kid3/kid3-3.2.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/kid3/kid3-3.2.1.ebuild?rev=1.1&content-type=text/plain Index: kid3-3.2.1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/kid3/kid3-3.2.1.ebuild,v 1.1 2015/07/27 22:41:35 polynomial-c Exp $ EAPI=5 KDE_LINGUAS="cs de es et fi fr it nl pl ru sr sr@ijekavian sr@ijekavianlatin sr@Latn tr zh_CN zh_TW" KDE_REQUIRED="optional" KDE_HANDBOOK="optional" inherit kde4-base DESCRIPTION="A simple tag editor for KDE" HOMEPAGE="http://kid3.sourceforge.net/"; SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2+" SLOT="4" KEYWORDS="~amd64 ~x86" IUSE="acoustid flac kde mp3 mp4 +phonon +taglib vorbis" REQUIRED_USE="flac? ( vorbis )" RDEPEND=" dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 sys-libs/readline:0 acoustid? ( media-libs/chromaprint virtual/ffmpeg ) flac? ( media-libs/flac[cxx] media-libs/libvorbis ) mp3? ( media-libs/id3lib ) mp4? ( media-libs/libmp4v2:0 ) phonon? ( || ( media-libs/phonon[qt4] dev-qt/qtphonon:4 ) ) taglib? ( >=media-libs/taglib-1.9.1 ) vorbis? ( media-libs/libogg media-libs/libvorbis ) " DEPEND="${RDEPEND}" src_configure() { local mycmakeargs=( $(cmake-utils_use_with acoustid CHROMAPRINT) $(cmake-utils_use_with flac) $(cmake-utils_use_with mp3 ID3LIB) $(cmake-utils_use_with mp4 MP4V2) $(cmake-utils_use_with phonon) $(cmake-utils_use_with taglib) $(cmake-utils_use_with vorbis) "-DWITH_QT5=OFF" ) if use kde; then mycmakeargs+=("-DWITH_APPS=KDE;CLI") else mycmakeargs+=("-DWITH_APPS=Qt;CLI") fi kde4-base_src_configure }
[gentoo-commits] gentoo-x86 commit in media-sound/jaaa: ChangeLog jaaa-0.8.4.ebuild
polynomial-c15/07/27 21:54:27 Modified: ChangeLog Added:jaaa-0.8.4.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.17 media-sound/jaaa/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/jaaa/ChangeLog?rev=1.17&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/jaaa/ChangeLog?rev=1.17&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/jaaa/ChangeLog?r1=1.16&r2=1.17 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-sound/jaaa/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- ChangeLog 25 Jan 2014 19:21:32 - 1.16 +++ ChangeLog 27 Jul 2015 21:54:27 - 1.17 @@ -1,6 +1,12 @@ # ChangeLog for media-sound/jaaa -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/jaaa/ChangeLog,v 1.16 2014/01/25 19:21:32 radhermit Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/jaaa/ChangeLog,v 1.17 2015/07/27 21:54:27 polynomial-c Exp $ + +*jaaa-0.8.4 (27 Jul 2015) + + 27 Jul 2015; Lars Wendler +jaaa-0.8.4.ebuild, + +files/jaaa-0.8.4-makefile.patch: + Version bump. 25 Jan 2014; Tim Harder jaaa-0.6.0.ebuild: Update HOMEPAGE, SRC_URI, and bump to EAPI 5. 1.1 media-sound/jaaa/jaaa-0.8.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/jaaa/jaaa-0.8.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/jaaa/jaaa-0.8.4.ebuild?rev=1.1&content-type=text/plain Index: jaaa-0.8.4.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/jaaa/jaaa-0.8.4.ebuild,v 1.1 2015/07/27 21:54:27 polynomial-c Exp $ EAPI=5 inherit eutils toolchain-funcs DESCRIPTION="The JACK and ALSA Audio Analyser is an audio signal generator and spectrum analyser" HOMEPAGE="http://kokkinizita.linuxaudio.org/linuxaudio/"; SRC_URI="http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" IUSE="" RDEPEND="media-libs/zita-alsa-pcmi media-sound/jack-audio-connection-kit >=media-libs/libclalsadrv-2.0.0 >=media-libs/libclthreads-2.2.1 >=media-libs/libclxclient-3.3.2 >=sci-libs/fftw-3.0.0 x11-libs/gtk+:2" DEPEND="${RDEPEND}" src_prepare() { epatch "${FILESDIR}"/${PN}-0.8.4-makefile.patch } src_compile() { cd source || die tc-export CC CXX emake PREFIX=/usr } src_install() { pushd source &>/dev/null || die emake DESTDIR="${D}" PREFIX=/usr install popd &>/dev/null || die dodoc AUTHORS README }
[gentoo-commits] gentoo-x86 commit in media-sound/jaaa/files: jaaa-0.8.4-makefile.patch
polynomial-c15/07/27 21:54:27 Added:jaaa-0.8.4-makefile.patch Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 media-sound/jaaa/files/jaaa-0.8.4-makefile.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/jaaa/files/jaaa-0.8.4-makefile.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/jaaa/files/jaaa-0.8.4-makefile.patch?rev=1.1&content-type=text/plain Index: jaaa-0.8.4-makefile.patch === --- jaaa-0.8.4/source/Makefile +++ jaaa-0.8.4/source/Makefile @@ -24,15 +24,14 @@ LIBDIR = lib$(SUFFIX) VERSION = 0.8.4 CPPFLAGS += -DVERSION=\"$(VERSION)\" -DPREFIX=\"$(PREFIX)\" -I/usr/include/freetype2 -CXXFLAGS += -O2 -Wall -MMD -MP -CXXFLAGS += -march=native +CXXFLAGS += -Wall -MMD -MP LDFLAGS += -L/usr/X11R6/$(LIBDIR) LDLIBS += -lzita-alsa-pcmi -lclthreads -lclxclient -lpthread -lfftw3f -ljack -lasound -lpthread -lXft -lX11 -lrt JAAA_O = jaaa.o styles.o spectwin.o audio.o rngen.o jaaa: $(JAAA_O) - g++ $(LDFLAGS) -o $@ $(JAAA_O) $(LDLIBS) + $(CXX) $(LDFLAGS) -o $@ $(JAAA_O) $(LDLIBS) $(JAAA_O): -include $(JAAA_O:%.o=%.d)
[gentoo-commits] gentoo-x86 commit in media-sound/gmusicbrowser: gmusicbrowser-1.1.14.ebuild ChangeLog gmusicbrowser-1.1.13.ebuild gmusicbrowser-9999.ebuild gmusicbrowser-1.1.12.ebuild gmusicbrowser-1
polynomial-c15/07/27 21:13:41 Modified: ChangeLog gmusicbrowser-1.1.13.ebuild gmusicbrowser-.ebuild Added:gmusicbrowser-1.1.14.ebuild Removed: gmusicbrowser-1.1.12.ebuild gmusicbrowser-1.1.11.ebuild Log: Version bump. Removed old. Removed dependency on mplayer2 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.34 media-sound/gmusicbrowser/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmusicbrowser/ChangeLog?rev=1.34&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmusicbrowser/ChangeLog?rev=1.34&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmusicbrowser/ChangeLog?r1=1.33&r2=1.34 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-sound/gmusicbrowser/ChangeLog,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- ChangeLog 26 Jun 2015 08:51:00 - 1.33 +++ ChangeLog 27 Jul 2015 21:13:41 - 1.34 @@ -1,6 +1,14 @@ # ChangeLog for media-sound/gmusicbrowser # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gmusicbrowser/ChangeLog,v 1.33 2015/06/26 08:51:00 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/gmusicbrowser/ChangeLog,v 1.34 2015/07/27 21:13:41 polynomial-c Exp $ + +*gmusicbrowser-1.1.14 (27 Jul 2015) + + 27 Jul 2015; Lars Wendler + -gmusicbrowser-1.1.11.ebuild, -gmusicbrowser-1.1.12.ebuild, + gmusicbrowser-1.1.13.ebuild, +gmusicbrowser-1.1.14.ebuild, + gmusicbrowser-.ebuild: + Version bump. Removed old. Removed dependency on mplayer2. 26 Jun 2015; Agostino Sarubbo gmusicbrowser-1.1.13.ebuild: Stable for x86, wrt bug #535494 1.4 media-sound/gmusicbrowser/gmusicbrowser-1.1.13.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmusicbrowser/gmusicbrowser-1.1.13.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmusicbrowser/gmusicbrowser-1.1.13.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmusicbrowser/gmusicbrowser-1.1.13.ebuild?r1=1.3&r2=1.4 Index: gmusicbrowser-1.1.13.ebuild === RCS file: /var/cvsroot/gentoo-x86/media-sound/gmusicbrowser/gmusicbrowser-1.1.13.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- gmusicbrowser-1.1.13.ebuild 26 Jun 2015 08:51:00 - 1.3 +++ gmusicbrowser-1.1.13.ebuild 27 Jul 2015 21:13:41 - 1.4 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gmusicbrowser/gmusicbrowser-1.1.13.ebuild,v 1.3 2015/06/26 08:51:00 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/gmusicbrowser/gmusicbrowser-1.1.13.ebuild,v 1.4 2015/07/27 21:13:41 polynomial-c Exp $ EAPI=5 @@ -19,8 +19,7 @@ dev-perl/GStreamer dev-perl/GStreamer-Interfaces media-plugins/gst-plugins-meta:0.10" -MPLAYER_DEPEND=" - || ( media-video/mplayer media-video/mplayer2 )" +MPLAYER_DEPEND="media-video/mplayer" OTHER_DEPEND=" media-sound/alsa-utils media-sound/flac123 1.9 media-sound/gmusicbrowser/gmusicbrowser-.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmusicbrowser/gmusicbrowser-.ebuild?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmusicbrowser/gmusicbrowser-.ebuild?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmusicbrowser/gmusicbrowser-.ebuild?r1=1.8&r2=1.9 Index: gmusicbrowser-.ebuild === RCS file: /var/cvsroot/gentoo-x86/media-sound/gmusicbrowser/gmusicbrowser-.ebuild,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- gmusicbrowser-.ebuild 3 Apr 2013 15:06:47 - 1.8 +++ gmusicbrowser-.ebuild 27 Jul 2015 21:13:41 - 1.9 @@ -1,6 +1,6 @@ -# 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/media-sound/gmusicbrowser/gmusicbrowser-.ebuild,v 1.8 2013/04/03 15:06:47 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/gmusicbrowser/gmusicbrowser-.ebuild,v 1.9 2015/07/27 21:13:41 polynomial-c Exp $ EAPI=5 @@ -19,8 +19,7 @@ dev-perl/GStreamer dev-perl/GStreamer-Interfaces media-plugins/gst-plugins-meta:0.1
[gentoo-commits] gentoo-x86 commit in media-sound/gmtp: ChangeLog gmtp-1.3.9.ebuild gmtp-1.3.1-r300.ebuild gmtp-1.3.3.ebuild gmtp-1.3.4.ebuild
polynomial-c15/07/27 20:55:08 Modified: ChangeLog Added:gmtp-1.3.9.ebuild Removed: gmtp-1.3.1-r300.ebuild gmtp-1.3.3.ebuild gmtp-1.3.4.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.15 media-sound/gmtp/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmtp/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmtp/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmtp/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-sound/gmtp/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 25 Jan 2014 09:34:57 - 1.14 +++ ChangeLog 27 Jul 2015 20:55:08 - 1.15 @@ -1,6 +1,13 @@ # ChangeLog for media-sound/gmtp -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gmtp/ChangeLog,v 1.14 2014/01/25 09:34:57 vapier Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gmtp/ChangeLog,v 1.15 2015/07/27 20:55:08 polynomial-c Exp $ + +*gmtp-1.3.9 (27 Jul 2015) + + 27 Jul 2015; Lars Wendler -gmtp-1.3.1-r300.ebuild, + -gmtp-1.3.3.ebuild, -gmtp-1.3.4.ebuild, +gmtp-1.3.9.ebuild, + -files/gmtp-1.3.1-pkg-config.patch: + Version bump. Removed old. *gmtp-1.3.5 (25 Jan 2014) 1.1 media-sound/gmtp/gmtp-1.3.9.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmtp/gmtp-1.3.9.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmtp/gmtp-1.3.9.ebuild?rev=1.1&content-type=text/plain Index: gmtp-1.3.9.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/gmtp/gmtp-1.3.9.ebuild,v 1.1 2015/07/27 20:55:08 polynomial-c Exp $ EAPI=5 inherit gnome2-utils DESCRIPTION="A simple MTP client for MP3 players" HOMEPAGE="http://gmtp.sourceforge.net/"; SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="dev-libs/glib:2 media-libs/flac media-libs/libid3tag media-libs/libmtp media-libs/libvorbis x11-libs/gtk+:3" DEPEND="${RDEPEND} sys-devel/gettext virtual/pkgconfig" src_configure() { econf --with-gtk3 } pkg_preinst() { gnome2_icon_savelist gnome2_schemas_savelist } pkg_postinst() { gnome2_icon_cache_update gnome2_schemas_update } pkg_postrm() { gnome2_icon_cache_update gnome2_schemas_update }
[gentoo-commits] gentoo-x86 commit in media-sound/gmtp/files: gmtp-1.3.1-pkg-config.patch
polynomial-c15/07/27 20:55:08 Removed: gmtp-1.3.1-pkg-config.patch Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC)
[gentoo-commits] gentoo-x86 commit in media-sound/ezstream: ezstream-0.6.0.ebuild ChangeLog
polynomial-c15/07/27 20:13:40 Modified: ChangeLog Added:ezstream-0.6.0.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.13 media-sound/ezstream/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ezstream/ChangeLog?rev=1.13&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ezstream/ChangeLog?rev=1.13&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ezstream/ChangeLog?r1=1.12&r2=1.13 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-sound/ezstream/ChangeLog,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- ChangeLog 29 Mar 2015 22:05:32 - 1.12 +++ ChangeLog 27 Jul 2015 20:13:40 - 1.13 @@ -1,6 +1,11 @@ # ChangeLog for media-sound/ezstream # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ezstream/ChangeLog,v 1.12 2015/03/29 22:05:32 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ezstream/ChangeLog,v 1.13 2015/07/27 20:13:40 polynomial-c Exp $ + +*ezstream-0.6.0 (27 Jul 2015) + + 27 Jul 2015; Lars Wendler +ezstream-0.6.0.ebuild: + Version bump. 29 Mar 2015; Manuel Rüger -ezstream-0.5.3.ebuild: Remove old. 1.1 media-sound/ezstream/ezstream-0.6.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ezstream/ezstream-0.6.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ezstream/ezstream-0.6.0.ebuild?rev=1.1&content-type=text/plain Index: ezstream-0.6.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/ezstream/ezstream-0.6.0.ebuild,v 1.1 2015/07/27 20:13:40 polynomial-c Exp $ EAPI=5 DESCRIPTION="A command line source client for Icecast media streaming servers" HOMEPAGE="http://www.icecast.org/ezstream.php"; SRC_URI="http://downloads.xiph.org/releases/${PN}/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="taglib" COMMON_DEPEND="dev-libs/libxml2 >=media-libs/libshout-2.2 media-libs/libvorbis taglib? ( media-libs/taglib )" RDEPEND="${COMMON_DEPEND} net-misc/icecast" DEPEND="${COMMON_DEPEND} virtual/pkgconfig" src_configure() { local docdir=/usr/share/doc/${PF} econf \ --docdir=${docdir} \ --enable-examplesdir=${docdir}/examples \ $(use_with taglib) } src_install() { default newinitd "${FILESDIR}"/${PN}.initd ${PN} newconfd "${FILESDIR}"/${PN}.confd ${PN} rm -f "${D}"/usr/share/doc/${PF}/COPYING }
[gentoo-commits] gentoo-x86 commit in media-sound/exaile: ChangeLog exaile-3.4.5.ebuild
polynomial-c15/07/27 19:53:59 Modified: ChangeLog Added:exaile-3.4.5.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.79 media-sound/exaile/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/exaile/ChangeLog?rev=1.79&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/exaile/ChangeLog?rev=1.79&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/exaile/ChangeLog?r1=1.78&r2=1.79 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-sound/exaile/ChangeLog,v retrieving revision 1.78 retrieving revision 1.79 diff -u -r1.78 -r1.79 --- ChangeLog 20 Oct 2011 02:52:13 - 1.78 +++ ChangeLog 27 Jul 2015 19:53:59 - 1.79 @@ -1,6 +1,11 @@ # ChangeLog for media-sound/exaile -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/exaile/ChangeLog,v 1.78 2011/10/20 02:52:13 radhermit Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/exaile/ChangeLog,v 1.79 2015/07/27 19:53:59 polynomial-c Exp $ + +*exaile-3.4.5 (27 Jul 2015) + + 27 Jul 2015; Lars Wendler +exaile-3.4.5.ebuild: + Version bump. 20 Oct 2011; Tim Harder exaile-0.3.2.0.ebuild, exaile-0.3.2.1.ebuild: 1.1 media-sound/exaile/exaile-3.4.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/exaile/exaile-3.4.5.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/exaile/exaile-3.4.5.ebuild?rev=1.1&content-type=text/plain Index: exaile-3.4.5.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/exaile/exaile-3.4.5.ebuild,v 1.1 2015/07/27 19:53:59 polynomial-c Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE="sqlite" inherit fdo-mime multilib python-r1 DESCRIPTION="a media player aiming to be similar to AmaroK, but for GTK+" HOMEPAGE="http://www.exaile.org/"; SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2 GPL-3" SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86" IUSE="cddb libnotify nls" RDEPEND="dev-python/dbus-python dev-python/gst-python:0.10 >=dev-python/pygtk-2.17 >=dev-python/pygobject-2.18:2 media-libs/gst-plugins-good:0.10 >=media-libs/mutagen-1.10 media-plugins/gst-plugins-meta:0.10 cddb? ( dev-python/cddb-py ) libnotify? ( dev-python/notify-python )" DEPEND="nls? ( dev-util/intltool sys-devel/gettext )" RESTRICT="test" #315589 src_compile() { if use nls; then emake locale fi } src_install() { emake \ PREFIX=/usr \ LIBINSTALLDIR=/$(get_libdir) \ DESTDIR="${D}" \ install$(use nls || echo _no_locale) dodoc FUTURE } pkg_postinst() { fdo-mime_desktop_database_update fdo-mime_mime_database_update } pkg_postrm() { fdo-mime_desktop_database_update fdo-mime_mime_database_update }
[gentoo-commits] gentoo-x86 commit in media-sound/chuck: ChangeLog chuck-1.3.5.1.ebuild
polynomial-c15/07/27 16:41:24 Modified: ChangeLog Added:chuck-1.3.5.1.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.23 media-sound/chuck/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/chuck/ChangeLog?rev=1.23&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/chuck/ChangeLog?rev=1.23&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/chuck/ChangeLog?r1=1.22&r2=1.23 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-sound/chuck/ChangeLog,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- ChangeLog 31 Mar 2015 19:35:47 - 1.22 +++ ChangeLog 27 Jul 2015 16:41:24 - 1.23 @@ -1,6 +1,12 @@ # ChangeLog for media-sound/chuck # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/chuck/ChangeLog,v 1.22 2015/03/31 19:35:47 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/chuck/ChangeLog,v 1.23 2015/07/27 16:41:24 polynomial-c Exp $ + +*chuck-1.3.5.1 (27 Jul 2015) + + 27 Jul 2015; Lars Wendler +chuck-1.3.5.1.ebuild, + +files/chuck-1.3.5.1-makefile.patch: + Version bump. 31 Mar 2015; Ulrich Müller chuck-1.3.1.3.ebuild: Update dependency after package move of eselect modules to app-eselect. 1.1 media-sound/chuck/chuck-1.3.5.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/chuck/chuck-1.3.5.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/chuck/chuck-1.3.5.1.ebuild?rev=1.1&content-type=text/plain Index: chuck-1.3.5.1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/chuck/chuck-1.3.5.1.ebuild,v 1.1 2015/07/27 16:41:24 polynomial-c Exp $ EAPI=5 inherit toolchain-funcs flag-o-matic eutils DESCRIPTION="Strongly-timed, Concurrent, and On-the-fly Audio Programming Language" HOMEPAGE="http://chuck.cs.princeton.edu/release/"; SRC_URI="http://chuck.cs.princeton.edu/release/files/${P}.tgz"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="+alsa jack examples" RDEPEND="jack? ( media-sound/jack-audio-connection-kit ) alsa? ( media-libs/alsa-lib ) media-libs/libsndfile app-eselect/eselect-chuck" DEPEND="${RDEPEND} sys-devel/bison sys-devel/flex" REQUIRED_USE="|| ( alsa jack )" src_prepare() { epatch "${FILESDIR}"/${PN}-1.2.1.1-hid-smc.patch \ "${FILESDIR}"/${PN}-1.3.5.1-makefile.patch } compile_backend() { backend=$1 pushd "${S}/src" &>/dev/null || die einfo "Compiling against ${backend}" emake CC=$(tc-getCC) CXX=$(tc-getCXX) linux-${backend} mv chuck{,-${backend}} emake clean popd &>/dev/null || die } src_compile() { # when compile with athlon or athlon-xp flags # chuck crashes on removing a shred with a double free or corruption # it happens in Chuck_VM_Stack::shutdown() on the line # SAFE_DELETE_ARRAY( stack ); replace-cpu-flags athlon athlon-xp i686 use jack && compile_backend jack use alsa && compile_backend alsa } src_install() { use jack && dobin src/chuck-jack use alsa && dobin src/chuck-alsa dodoc AUTHORS DEVELOPER PROGRAMMER QUICKSTART README THANKS TODO VERSIONS docinto doc dodoc doc/* if use examples; then insinto /usr/share/doc/${PF}/examples doins $(find examples -type f) for dir in $(find examples/* -type d); do insinto /usr/share/doc/${PF}/"${dir}" doins "${dir}"/* done fi } pkg_postinst() { elog "Chuck now can use many audio engines, so you can specify audio engine" elog "with chuck-{jack,alsa}" elog "Or you can use 'eselect chuck' to set the audio engine" einfo "Calling eselect chuck update..." eselect chuck update --if-unset }
[gentoo-commits] gentoo-x86 commit in media-sound/chuck/files: chuck-1.3.5.1-makefile.patch
polynomial-c15/07/27 16:41:24 Added:chuck-1.3.5.1-makefile.patch Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 media-sound/chuck/files/chuck-1.3.5.1-makefile.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/chuck/files/chuck-1.3.5.1-makefile.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/chuck/files/chuck-1.3.5.1-makefile.patch?rev=1.1&content-type=text/plain Index: chuck-1.3.5.1-makefile.patch === --- chuck-1.3.5.1/src/makefile +++ chuck-1.3.5.1/src/makefile @@ -40,8 +40,6 @@ ifneq ($(CHUCK_DEBUG),) CFLAGS+= -g -else -CFLAGS+= -O3 endif ifneq ($(USE_64_BIT_SAMPLE),) --- chuck-1.3.5.1/src/makefile.alsa +++ chuck-1.3.5.1/src/makefile.alsa @@ -1,4 +1,4 @@ -CFLAGS+= -D__LINUX_ALSA__ -D__PLATFORM_LINUX__ -O3 -fno-strict-aliasing -D__CK_SNDFILE_NATIVE__ +CFLAGS+= -D__LINUX_ALSA__ -D__PLATFORM_LINUX__ -fno-strict-aliasing -D__CK_SNDFILE_NATIVE__ LDFLAGS+= -lasound -lstdc++ -ldl -lm -lsndfile -lpthread --- chuck-1.3.5.1/src/makefile.jack +++ chuck-1.3.5.1/src/makefile.jack @@ -1,4 +1,4 @@ -CFLAGS+= -D__UNIX_JACK__ -D__PLATFORM_LINUX__ -O3 -fno-strict-aliasing -D__CK_SNDFILE_NATIVE__ +CFLAGS+= -D__UNIX_JACK__ -D__PLATFORM_LINUX__ -fno-strict-aliasing -D__CK_SNDFILE_NATIVE__ LDFLAGS+= -lasound -ljack -lstdc++ -ldl -lm -lsndfile -lpthread
[gentoo-commits] gentoo-x86 commit in media-sound/asunder: ChangeLog asunder-2.7.ebuild asunder-2.4.ebuild
polynomial-c15/07/27 15:03:05 Modified: ChangeLog Added:asunder-2.7.ebuild Removed: asunder-2.4.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.48 media-sound/asunder/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/asunder/ChangeLog?rev=1.48&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/asunder/ChangeLog?rev=1.48&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/asunder/ChangeLog?r1=1.47&r2=1.48 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-sound/asunder/ChangeLog,v retrieving revision 1.47 retrieving revision 1.48 diff -u -r1.47 -r1.48 --- ChangeLog 30 Aug 2014 16:12:08 - 1.47 +++ ChangeLog 27 Jul 2015 15:03:05 - 1.48 @@ -1,6 +1,12 @@ # ChangeLog for media-sound/asunder -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/asunder/ChangeLog,v 1.47 2014/08/30 16:12:08 fauli Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/asunder/ChangeLog,v 1.48 2015/07/27 15:03:05 polynomial-c Exp $ + +*asunder-2.7 (27 Jul 2015) + + 27 Jul 2015; Lars Wendler -asunder-2.4.ebuild, + +asunder-2.7.ebuild: + Version bump. Removed old. *asunder-2.5 (30 Aug 2014) 1.1 media-sound/asunder/asunder-2.7.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/asunder/asunder-2.7.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/asunder/asunder-2.7.ebuild?rev=1.1&content-type=text/plain Index: asunder-2.7.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/asunder/asunder-2.7.ebuild,v 1.1 2015/07/27 15:03:05 polynomial-c Exp $ EAPI=5 DESCRIPTION="A graphical Audio CD ripper and encoder with support for WAV, MP3, OggVorbis, FLAC and Opus" HOMEPAGE="http://littlesvr.ca/asunder/"; SRC_URI="http://littlesvr.ca/${PN}/releases/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="aac flac mac mp3 musepack opus vorbis wavpack" COMMON_DEPEND=">=media-libs/libcddb-0.9.5 media-sound/cdparanoia x11-libs/gtk+:2" DEPEND="${COMMON_DEPEND} dev-util/intltool virtual/pkgconfig sys-devel/gettext" RDEPEND="${COMMON_DEPEND} aac? ( media-sound/neroaac ) flac? ( media-libs/flac ) mac? ( media-sound/mac ) mp3? ( media-sound/lame ) musepack? ( media-sound/musepack-tools ) opus? ( media-sound/opus-tools ) vorbis? ( media-sound/vorbis-tools ) wavpack? ( media-sound/wavpack )" DOCS="AUTHORS ChangeLog README TODO" # NEWS is dummy src_prepare() { sed -i -e 's:cd syslogng && $(MAKE) install:true:' "${S}"/Makefile.in }
[gentoo-commits] gentoo-x86 commit in media-sound/amsynth: amsynth-1.5.1.ebuild ChangeLog amsynth-1.2.3-r1.ebuild
polynomial-c15/07/27 14:46:51 Modified: ChangeLog Added:amsynth-1.5.1.ebuild Removed: amsynth-1.2.3-r1.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.49 media-sound/amsynth/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amsynth/ChangeLog?rev=1.49&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amsynth/ChangeLog?rev=1.49&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amsynth/ChangeLog?r1=1.48&r2=1.49 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-sound/amsynth/ChangeLog,v retrieving revision 1.48 retrieving revision 1.49 diff -u -r1.48 -r1.49 --- ChangeLog 10 Aug 2014 21:03:44 - 1.48 +++ ChangeLog 27 Jul 2015 14:46:51 - 1.49 @@ -1,6 +1,12 @@ # ChangeLog for media-sound/amsynth -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/ChangeLog,v 1.48 2014/08/10 21:03:44 slyfox Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/ChangeLog,v 1.49 2015/07/27 14:46:51 polynomial-c Exp $ + +*amsynth-1.5.1 (27 Jul 2015) + + 27 Jul 2015; Lars Wendler -amsynth-1.2.3-r1.ebuild, + +amsynth-1.5.1.ebuild: + Version bump. Removed old. 10 Aug 2014; Sergei Trofimovich amsynth-1.2.3-r1.ebuild, amsynth-1.3.2.ebuild: 1.1 media-sound/amsynth/amsynth-1.5.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amsynth/amsynth-1.5.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amsynth/amsynth-1.5.1.ebuild?rev=1.1&content-type=text/plain Index: amsynth-1.5.1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/amsynth-1.5.1.ebuild,v 1.1 2015/07/27 14:46:51 polynomial-c Exp $ EAPI=5 inherit autotools DESCRIPTION="Virtual analogue synthesizer" HOMEPAGE="https://github.com/nixxcode/amsynth/"; SRC_URI="https://github.com/nixxcode/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="alsa dssi jack lash oss sndfile" RDEPEND="dev-cpp/gtkmm:2.4 sndfile? ( >=media-libs/libsndfile-1:= ) alsa? ( media-libs/alsa-lib:= media-sound/alsa-utils ) dssi? ( media-libs/dssi:= media-libs/liblo:= >=x11-libs/gtk+-2.20:2 ) jack? ( media-sound/jack-audio-connection-kit ) lash? ( media-sound/lash )" DEPEND="${RDEPEND} virtual/pkgconfig oss? ( virtual/os-headers )" DOCS="AUTHORS README" S="${WORKDIR}/${PN}-release-${PV}" src_prepare() { eautoreconf } src_configure() { econf \ CFLAGS="" \ CXXFLAGS="${CXXFLAGS}" \ $(use_with oss) \ $(use_with alsa) \ $(use_with jack) \ $(use_with lash) \ $(use_with sndfile) \ $(use_with dssi) }
[gentoo-commits] gentoo-x86 commit in media-sound/ams/files: ams-2.1.1-dl.patch
polynomial-c15/07/27 11:37:28 Added:ams-2.1.1-dl.patch Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 media-sound/ams/files/ams-2.1.1-dl.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ams/files/ams-2.1.1-dl.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ams/files/ams-2.1.1-dl.patch?rev=1.1&content-type=text/plain Index: ams-2.1.1-dl.patch === Missing -ldl for dlsym, dlerror, and dlopen, see http://bugs.gentoo.org/379251 --- ams-2.1.1/src/Makefile.am +++ ams-2.1.1/src/Makefile.am @@ -252,6 +252,8 @@ textedit.h \ notelist.h +ams_LDADD = -ldl + translationsdir = $(pkgdatadir)/translations translations = \ translations/ams_de.ts \
[gentoo-commits] gentoo-x86 commit in media-sound/ams: ChangeLog ams-2.1.1.ebuild
polynomial-c15/07/27 11:37:28 Modified: ChangeLog Added:ams-2.1.1.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.31 media-sound/ams/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ams/ChangeLog?rev=1.31&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ams/ChangeLog?rev=1.31&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ams/ChangeLog?r1=1.30&r2=1.31 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-sound/ams/ChangeLog,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- ChangeLog 2 Mar 2013 21:53:05 - 1.30 +++ ChangeLog 27 Jul 2015 11:37:28 - 1.31 @@ -1,6 +1,12 @@ # ChangeLog for media-sound/ams -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ams/ChangeLog,v 1.30 2013/03/02 21:53:05 hwoarang Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ams/ChangeLog,v 1.31 2015/07/27 11:37:28 polynomial-c Exp $ + +*ams-2.1.1 (27 Jul 2015) + + 27 Jul 2015; Lars Wendler +ams-2.1.1.ebuild, + +files/ams-2.1.1-dl.patch: + Version bump. 02 Mar 2013; Markos Chandras ams-2.0.1.ebuild: Move Qt dependencies to the new category 1.1 media-sound/ams/ams-2.1.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ams/ams-2.1.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ams/ams-2.1.1.ebuild?rev=1.1&content-type=text/plain Index: ams-2.1.1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/ams/ams-2.1.1.ebuild,v 1.1 2015/07/27 11:37:28 polynomial-c Exp $ EAPI=4 inherit autotools eutils flag-o-matic multilib DESCRIPTION="Alsa Modular Software Synthesizer" HOMEPAGE="http://alsamodular.sourceforge.net"; SRC_URI="mirror://sourceforge/alsamodular/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="" RDEPEND="media-libs/alsa-lib media-sound/jack-audio-connection-kit dev-qt/qtgui:4 dev-qt/qtopengl:4 media-libs/ladspa-sdk media-libs/libclalsadrv !dev-ruby/amrita" DEPEND="${RDEPEND} virtual/pkgconfig" DOCS="AUTHORS ChangeLog NEWS README THANKS" src_prepare() { epatch "${FILESDIR}"/${P}-dl.patch eautoreconf } src_configure() { append-ldflags -L/usr/$(get_libdir)/qt4 econf }
[gentoo-commits] gentoo-x86 commit in media-sound/abcm2ps: abcm2ps-8.8.3.ebuild ChangeLog abcm2ps-8.3.4.ebuild
polynomial-c15/07/26 19:01:00 Modified: ChangeLog Added:abcm2ps-8.8.3.ebuild Removed: abcm2ps-8.3.4.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.99 media-sound/abcm2ps/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/abcm2ps/ChangeLog?rev=1.99&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/abcm2ps/ChangeLog?rev=1.99&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/abcm2ps/ChangeLog?r1=1.98&r2=1.99 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v retrieving revision 1.98 retrieving revision 1.99 diff -u -r1.98 -r1.99 --- ChangeLog 24 Feb 2015 02:29:51 - 1.98 +++ ChangeLog 26 Jul 2015 19:00:59 - 1.99 @@ -1,6 +1,12 @@ # ChangeLog for media-sound/abcm2ps # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.98 2015/02/24 02:29:51 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/ChangeLog,v 1.99 2015/07/26 19:00:59 polynomial-c Exp $ + +*abcm2ps-8.8.3 (26 Jul 2015) + + 26 Jul 2015; Lars Wendler -abcm2ps-8.3.4.ebuild, + +abcm2ps-8.8.3.ebuild: + Version bump. Removed old. 24 Feb 2015; Tim Harder -abcm2ps-7.7.1.ebuild, -abcm2ps-7.7.2.ebuild, -abcm2ps-7.8.0.ebuild, -abcm2ps-7.8.1.ebuild, 1.1 media-sound/abcm2ps/abcm2ps-8.8.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/abcm2ps/abcm2ps-8.8.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/abcm2ps/abcm2ps-8.8.3.ebuild?rev=1.1&content-type=text/plain Index: abcm2ps-8.8.3.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/abcm2ps/abcm2ps-8.8.3.ebuild,v 1.1 2015/07/26 19:00:59 polynomial-c Exp $ EAPI=5 inherit toolchain-funcs DESCRIPTION="A program to convert abc files to Postscript files" HOMEPAGE="http://moinejf.free.fr/"; SRC_URI="http://moinejf.free.fr/${P}.tar.gz http://moinejf.free.fr/transpose_abc.pl"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="examples pango" RDEPEND="pango? ( x11-libs/pango media-libs/freetype:2 )" DEPEND="${RDEPEND} virtual/pkgconfig" src_configure() { econf \ --enable-a4 \ --enable-deco-is-roll \ $(use_enable pango) } src_compile() { emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" } src_install() { dobin abcm2ps insinto /usr/share/${PN} doins *.fmt dodoc Changes README *.txt if use examples ; then docinto examples dodoc *.{abc,eps} docompress -x /usr/share/doc/${PF}/examples fi docinto contrib dodoc "${DISTDIR}"/transpose_abc.pl }
[gentoo-commits] gentoo-x86 commit in sys-power/iasl: ChangeLog iasl-20150717.ebuild iasl-20140627.ebuild iasl-20090123.ebuild
polynomial-c15/07/26 12:43:10 Modified: ChangeLog Added:iasl-20150717.ebuild Removed: iasl-20140627.ebuild iasl-20090123.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.50 sys-power/iasl/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/ChangeLog?rev=1.50&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/ChangeLog?rev=1.50&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/ChangeLog?r1=1.49&r2=1.50 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-power/iasl/ChangeLog,v retrieving revision 1.49 retrieving revision 1.50 diff -u -r1.49 -r1.50 --- ChangeLog 27 Sep 2014 14:20:13 - 1.49 +++ ChangeLog 26 Jul 2015 12:43:10 - 1.50 @@ -1,6 +1,12 @@ # ChangeLog for sys-power/iasl -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/ChangeLog,v 1.49 2014/09/27 14:20:13 polynomial-c Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/ChangeLog,v 1.50 2015/07/26 12:43:10 polynomial-c Exp $ + +*iasl-20150717 (26 Jul 2015) + + 26 Jul 2015; Lars Wendler -iasl-20090123.ebuild, + -iasl-20140627.ebuild, +iasl-20150717.ebuild: + Version bump. Removed old. *iasl-20140828 (27 Sep 2014) 1.1 sys-power/iasl/iasl-20150717.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/iasl-20150717.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/iasl/iasl-20150717.ebuild?rev=1.1&content-type=text/plain Index: iasl-20150717.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/iasl-20150717.ebuild,v 1.1 2015/07/26 12:43:10 polynomial-c Exp $ EAPI=5 inherit toolchain-funcs flag-o-matic eutils MY_PN=acpica-unix MY_P=${MY_PN}-${PV} MY_TESTS_P=${MY_PN/ca/tests}-${PV} DESCRIPTION="Intel ACPI Source Language (ASL) compiler" HOMEPAGE="https://www.acpica.org/downloads/"; SRC_URI="http://www.acpica.org/sites/acpica/files/${MY_P}.tar.gz test? ( http://www.acpica.org/sites/acpica/files/${MY_TESTS_P}.tar.gz )" LICENSE="iASL" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86 ~amd64-fbsd ~x86-fbsd" IUSE="test" DEPEND="sys-devel/bison sys-devel/flex" RDEPEND="" S=${WORKDIR}/${MY_P} pkg_setup() { if use test && has test ${FEATURES}; then ewarn 'You have selected USE="test". This will install the test results' ewarn "into /usr/share/${PF}/, compressed as a tarball." ewarn 'The tests themselves will only rarely die, but the test results' ewarn 'are interesting for arch testing. The tests may take quite some' ewarn 'time to complete.' fi } src_prepare() { epatch "${FILESDIR}/${PN}-20140828-locale.patch" \ "${FILESDIR}/${PN}-20140214-nostrip.patch" find "${S}" -type f -name 'Makefile*' -print0 | \ xargs -0 -I '{}' \ sed -r -e 's:-\::g' -i '{}' \ || die # BITS is tied to ARCH - please set appropriately if you add new keywords if [[ $ARCH == @(amd64|amd64-fbsd) ]] ; then export BITS=64 else export BITS=32 fi } src_configure() { : } src_compile() { cd acpica/generate/unix emake BITS=${BITS} } src_test() { aslts_test #aapits_test #The aapits test currently fails, missing include probably. } src_install() { cd acpica/generate/unix emake install DESTDIR="${D}" BITS=${BITS} default_src_install #local bin #for bin in $(<"${T}"/binlist) ; do # dobin "${T}"/${bin} #done dodoc "${S}"/changes.txt newdoc "${S}"/source/compiler/readme.txt compiler-readme.txt newdoc "${S}"/generate/unix/readme.txt unix-readme.txt newdoc "${S}"/generate/lint/readme.txt lint-readme.txt newdoc "${S}"/source/compiler/new_table.txt compiler-new_table.txt if use test && has test ${FEATURES}; then tb="${T}"/testresults.tar.bz2 export ASLTSDIR="$(<"${T}"/asltdir)" ebegin "Creating Test Tarball" tar -cjf "${tb}" -C "${ASLTSDIR}"/tmp/RESULTS . || die "tar failed" eend $? dodir /usr/share/${PF} insinto /usr/share/${PF} doins ${tb} fi } aslts_test() {
[gentoo-commits] gentoo-x86 commit in media-libs/lcms: ChangeLog lcms-2.7.ebuild
polynomial-c15/07/26 12:34:53 Modified: ChangeLog Added:lcms-2.7.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.194media-libs/lcms/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lcms/ChangeLog?rev=1.194&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lcms/ChangeLog?rev=1.194&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lcms/ChangeLog?r1=1.193&r2=1.194 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/media-libs/lcms/ChangeLog,v retrieving revision 1.193 retrieving revision 1.194 diff -u -r1.193 -r1.194 --- ChangeLog 28 May 2015 18:07:08 - 1.193 +++ ChangeLog 26 Jul 2015 12:34:53 - 1.194 @@ -1,6 +1,11 @@ # ChangeLog for media-libs/lcms # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lcms/ChangeLog,v 1.193 2015/05/28 18:07:08 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/lcms/ChangeLog,v 1.194 2015/07/26 12:34:53 polynomial-c Exp $ + +*lcms-2.7 (26 Jul 2015) + + 26 Jul 2015; Lars Wendler +lcms-2.7.ebuild: + Version bump. 28 May 2015; Andreas K. Hüttel -files/lcms-1.19-cve-2013-4276.patch, 1.1 media-libs/lcms/lcms-2.7.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lcms/lcms-2.7.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lcms/lcms-2.7.ebuild?rev=1.1&content-type=text/plain Index: lcms-2.7.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/lcms/lcms-2.7.ebuild,v 1.1 2015/07/26 12:34:53 polynomial-c Exp $ EAPI=5 AUTOTOOLS_PRUNE_LIBTOOL_FILES="modules" inherit autotools-multilib DESCRIPTION="A lightweight, speed optimized color management engine" HOMEPAGE="http://www.littlecms.com/"; SRC_URI="mirror://sourceforge/${PN}/lcms2-${PV}.tar.gz" LICENSE="MIT" SLOT="2" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="doc jpeg static-libs +threads test tiff zlib" RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] ) tiff? ( >=media-libs/tiff-4.0.3-r6:0=[${MULTILIB_USEDEP}] ) zlib? ( >=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r10 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )" DEPEND="${RDEPEND}" S=${WORKDIR}/lcms2-${PV} src_configure() { local myeconfargs=( $(use_with jpeg) $(use_with tiff) $(use_with zlib) $(use_with threads) ) autotools-multilib_src_configure } src_install() { autotools-multilib_src_install if use doc; then docinto pdf dodoc doc/*.pdf fi }
[gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-3.3.0.ebuild
polynomial-c15/07/26 12:11:36 Modified: ChangeLog Added:cmake-3.3.0.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.318dev-util/cmake/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.318&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.318&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.317&r2=1.318 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v retrieving revision 1.317 retrieving revision 1.318 diff -u -r1.317 -r1.318 --- ChangeLog 23 Jul 2015 20:05:09 - 1.317 +++ ChangeLog 26 Jul 2015 12:11:36 - 1.318 @@ -1,6 +1,11 @@ # ChangeLog for dev-util/cmake # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.317 2015/07/23 20:05:09 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.318 2015/07/26 12:11:36 polynomial-c Exp $ + +*cmake-3.3.0 (26 Jul 2015) + + 26 Jul 2015; Lars Wendler +cmake-3.3.0.ebuild: + Version bump. 23 Jul 2015; Pacho Ramos cmake-3.2.2.ebuild: ppc stable wrt bug #545870 1.1 dev-util/cmake/cmake-3.3.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-3.3.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-3.3.0.ebuild?rev=1.1&content-type=text/plain Index: cmake-3.3.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-3.3.0.ebuild,v 1.1 2015/07/26 12:11:36 polynomial-c Exp $ EAPI=5 CMAKE_REMOVE_MODULES="no" inherit bash-completion-r1 elisp-common toolchain-funcs eutils versionator cmake-utils virtualx MY_P="${P/_/-}" DESCRIPTION="Cross platform Make" HOMEPAGE="http://www.cmake.org/"; SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 1-2)/${MY_P}.tar.gz" LICENSE="CMake" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc64 ~s390 ~sh ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="doc emacs system-jsoncpp ncurses qt4 qt5" RDEPEND=" >=app-arch/libarchive-2.8.0:= >=dev-libs/expat-2.0.1 >=net-misc/curl-7.20.0-r1[ssl] sys-libs/zlib virtual/pkgconfig emacs? ( virtual/emacs ) ncurses? ( sys-libs/ncurses ) qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) system-jsoncpp? ( >=dev-libs/jsoncpp-0.6.0_rc2:0= ) " DEPEND="${RDEPEND} doc? ( dev-python/sphinx ) " S="${WORKDIR}/${MY_P}" SITEFILE="50${PN}-gentoo.el" CMAKE_BINARY="${S}/Bootstrap.cmk/cmake" PATCHES=( # prefix "${FILESDIR}"/${PN}-2.8.10-darwin-bundle.patch "${FILESDIR}"/${PN}-3.0.0-prefix-dirs.patch "${FILESDIR}"/${PN}-3.1.0-darwin-isysroot.patch # handle gentoo packaging in find modules "${FILESDIR}"/${PN}-2.8.12.1-FindImageMagick.patch "${FILESDIR}"/${PN}-3.0.0-FindBLAS.patch "${FILESDIR}"/${PN}-3.0.0-FindBoost-python.patch "${FILESDIR}"/${PN}-3.0.2-FindLAPACK.patch # respect python eclasses "${FILESDIR}"/${PN}-2.8.10.2-FindPythonLibs.patch "${FILESDIR}"/${PN}-3.1.0-FindPythonInterp.patch ) cmake_src_bootstrap() { # Cleanup args to extract only JOBS. # Because bootstrap does not know anything else. echo ${MAKEOPTS} | egrep -o '(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' > /dev/null if [ $? -eq 0 ]; then par_arg=$(echo ${MAKEOPTS} | egrep -o '(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' | tail -n1 | egrep -o '[[:digit:]]+') par_arg="--parallel=${par_arg}" else par_arg="--parallel=1" fi # execinfo.h on Solaris isn't quite what it is on Darwin if [[ ${CHOST} == *-solaris* ]] ; then sed -i -e 's/execinfo\.h/blablabla.h/' Source/kwsys/CMakeLists.txt || die fi tc-export CC CXX LD # bootstrap script isn't exactly /bin/sh compatible ${CONFIG_SHELL:-sh} ./bootstrap \ --prefix="${T}/cmakestrap/" \ ${par_arg} \ || die "Bootstrap failed" } cmake_src_test() { # fix OutDir and SelectLibraryC
[gentoo-commits] gentoo-x86 commit in app-misc/colordiff: ChangeLog colordiff-1.0.15-r1.ebuild colordiff-1.0.15.ebuild
polynomial-c15/07/25 22:58:33 Modified: ChangeLog Added:colordiff-1.0.15-r1.ebuild Removed: colordiff-1.0.15.ebuild Log: Revbump to install new config file as well (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.114app-misc/colordiff/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/colordiff/ChangeLog?rev=1.114&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/colordiff/ChangeLog?rev=1.114&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/colordiff/ChangeLog?r1=1.113&r2=1.114 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-misc/colordiff/ChangeLog,v retrieving revision 1.113 retrieving revision 1.114 diff -u -r1.113 -r1.114 --- ChangeLog 25 Jul 2015 22:32:39 - 1.113 +++ ChangeLog 25 Jul 2015 22:58:33 - 1.114 @@ -1,6 +1,12 @@ # ChangeLog for app-misc/colordiff # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/colordiff/ChangeLog,v 1.113 2015/07/25 22:32:39 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/colordiff/ChangeLog,v 1.114 2015/07/25 22:58:33 polynomial-c Exp $ + +*colordiff-1.0.15-r1 (25 Jul 2015) + + 25 Jul 2015; Lars Wendler -colordiff-1.0.15.ebuild, + +colordiff-1.0.15-r1.ebuild: + Revbump to install new config file as well. *colordiff-1.0.15 (25 Jul 2015) 1.1 app-misc/colordiff/colordiff-1.0.15-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/colordiff/colordiff-1.0.15-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/colordiff/colordiff-1.0.15-r1.ebuild?rev=1.1&content-type=text/plain Index: colordiff-1.0.15-r1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-misc/colordiff/colordiff-1.0.15-r1.ebuild,v 1.1 2015/07/25 22:58:33 polynomial-c Exp $ EAPI=5 inherit prefix DESCRIPTION="Colorizes output of diff" HOMEPAGE="http://www.colordiff.org/"; SRC_URI="http://www.colordiff.org/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="" RDEPEND=" dev-lang/perl sys-apps/diffutils" src_prepare() { # set proper etcdir for Gentoo Prefix sed \ -e "s:'/etc:'@GENTOO_PORTAGE_EPREFIX@/etc:" \ -i "${S}/colordiff.pl" || die "sed etcdir failed" eprefixify "${S}"/colordiff.pl } # This package has a makefile, but we don't want to run it src_compile() { :; } src_install() { newbin ${PN}{.pl,} dobin cdiff.sh insinto /etc doins colordiffrc{,-lightbg,-gitdiff} dodoc BUGS CHANGES README doman {cdiff,colordiff}.1 }
[gentoo-commits] gentoo-x86 commit in app-misc/colordiff: ChangeLog colordiff-1.0.15.ebuild
polynomial-c15/07/25 22:32:39 Modified: ChangeLog Added:colordiff-1.0.15.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.113app-misc/colordiff/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/colordiff/ChangeLog?rev=1.113&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/colordiff/ChangeLog?rev=1.113&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/colordiff/ChangeLog?r1=1.112&r2=1.113 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-misc/colordiff/ChangeLog,v retrieving revision 1.112 retrieving revision 1.113 diff -u -r1.112 -r1.113 --- ChangeLog 12 Feb 2015 14:40:32 - 1.112 +++ ChangeLog 25 Jul 2015 22:32:39 - 1.113 @@ -1,6 +1,11 @@ # ChangeLog for app-misc/colordiff # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/colordiff/ChangeLog,v 1.112 2015/02/12 14:40:32 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/colordiff/ChangeLog,v 1.113 2015/07/25 22:32:39 polynomial-c Exp $ + +*colordiff-1.0.15 (25 Jul 2015) + + 25 Jul 2015; Lars Wendler +colordiff-1.0.15.ebuild: + Version bump. 12 Feb 2015; Justin Lecher -colordiff-1.0.13.ebuild: Drop old 1.1 app-misc/colordiff/colordiff-1.0.15.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/colordiff/colordiff-1.0.15.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/colordiff/colordiff-1.0.15.ebuild?rev=1.1&content-type=text/plain Index: colordiff-1.0.15.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-misc/colordiff/colordiff-1.0.15.ebuild,v 1.1 2015/07/25 22:32:39 polynomial-c Exp $ EAPI=5 inherit prefix DESCRIPTION="Colorizes output of diff" HOMEPAGE="http://www.colordiff.org/"; SRC_URI="http://www.colordiff.org/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="" RDEPEND=" dev-lang/perl sys-apps/diffutils" src_prepare() { # set proper etcdir for Gentoo Prefix sed \ -e "s:'/etc:'@GENTOO_PORTAGE_EPREFIX@/etc:" \ -i "${S}/colordiff.pl" || die "sed etcdir failed" eprefixify "${S}"/colordiff.pl } # This package has a makefile, but we don't want to run it src_compile() { :; } src_install() { newbin ${PN}{.pl,} dobin cdiff.sh insinto /etc doins colordiffrc colordiffrc-lightbg dodoc BUGS CHANGES README doman {cdiff,colordiff}.1 }
[gentoo-commits] gentoo-x86 commit in sys-apps/dbus: ChangeLog dbus-1.8.20.ebuild
polynomial-c15/07/25 21:54:06 Modified: ChangeLog Added:dbus-1.8.20.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.478sys-apps/dbus/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/ChangeLog?rev=1.478&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/ChangeLog?rev=1.478&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/ChangeLog?r1=1.477&r2=1.478 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v retrieving revision 1.477 retrieving revision 1.478 diff -u -r1.477 -r1.478 --- ChangeLog 4 Jul 2015 16:20:14 - 1.477 +++ ChangeLog 25 Jul 2015 21:54:06 - 1.478 @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/dbus # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.477 2015/07/04 16:20:14 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.478 2015/07/25 21:54:06 polynomial-c Exp $ + +*dbus-1.8.20 (25 Jul 2015) + + 25 Jul 2015; Lars Wendler +dbus-1.8.20.ebuild: + Version bump. *dbus-1.8.18 (04 Jul 2015) 1.1 sys-apps/dbus/dbus-1.8.20.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.20.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dbus/dbus-1.8.20.ebuild?rev=1.1&content-type=text/plain Index: dbus-1.8.20.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.8.20.ebuild,v 1.1 2015/07/25 21:54:06 polynomial-c Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit autotools eutils linux-info flag-o-matic python-any-r1 readme.gentoo systemd virtualx user multilib-minimal DESCRIPTION="A message bus system, a simple way for applications to talk to each other" HOMEPAGE="http://dbus.freedesktop.org/"; SRC_URI="http://dbus.freedesktop.org/releases/dbus/${P}.tar.gz"; LICENSE="|| ( AFL-2.1 GPL-2 )" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="debug doc selinux static-libs systemd test X" CDEPEND=" >=dev-libs/expat-2 selinux? ( sys-libs/libselinux ) systemd? ( sys-apps/systemd:0= ) X? ( x11-libs/libX11 x11-libs/libXt ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20131008-r4 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) " DEPEND="${CDEPEND} app-text/xmlto app-text/docbook-xml-dtd:4.4 virtual/pkgconfig doc? ( app-doc/doxygen ) test? ( >=dev-libs/glib-2.24:2 ${PYTHON_DEPS} ) " RDEPEND="${CDEPEND} selinux? ( sec-policy/selinux-dbus ) " DOC_CONTENTS=" Some applications require a session bus in addition to the system bus. Please see \`man dbus-launch\` for more information. " # out of sources build dir for make check TBD=${WORKDIR}/${P}-tests-build pkg_setup() { enewgroup messagebus enewuser messagebus -1 -1 -1 messagebus use test && python-any-r1_pkg_setup if use kernel_linux; then CONFIG_CHECK="~EPOLL" linux-info_pkg_setup fi } src_prepare() { # Tests were restricted because of this sed -i \ -e 's/.*bus_dispatch_test.*/printf ("Disabled due to excess noise\\n");/' \ -e '/"dispatch"/d' \ bus/test-main.c || die epatch_user # required for asneeded patch but also for bug 263909, cross-compile so # don't remove eautoreconf eautoreconf } multilib_src_configure() { local docconf myconf # so we can get backtraces from apps case ${CHOST} in *-mingw*) # error: unrecognized command line option '-rdynamic' wrt #488036 ;; *) append-flags -rdynamic ;; esac # libaudit is *only* used in DBus wrt SELinux support, so disable it, if # not on an SELinux profile. myconf=( --localstatedir="${EPREFIX}/var" --docdir="${EPREFIX}/usr/share/doc/${PF}" --htmldir="${EPREFIX}/usr/share/doc/$
[gentoo-commits] gentoo-x86 commit in net-misc/htpdate: htpdate-1.1.1.ebuild ChangeLog htpdate-1.0.5.ebuild htpdate-1.0.4.ebuild
polynomial-c15/07/25 21:14:29 Modified: ChangeLog Added:htpdate-1.1.1.ebuild Removed: htpdate-1.0.5.ebuild htpdate-1.0.4.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.57 net-misc/htpdate/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/htpdate/ChangeLog?rev=1.57&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/htpdate/ChangeLog?rev=1.57&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/htpdate/ChangeLog?r1=1.56&r2=1.57 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-misc/htpdate/ChangeLog,v retrieving revision 1.56 retrieving revision 1.57 diff -u -r1.56 -r1.57 --- ChangeLog 18 Jan 2014 10:38:58 - 1.56 +++ ChangeLog 25 Jul 2015 21:14:29 - 1.57 @@ -1,6 +1,12 @@ # ChangeLog for net-misc/htpdate -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/htpdate/ChangeLog,v 1.56 2014/01/18 10:38:58 vapier Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/htpdate/ChangeLog,v 1.57 2015/07/25 21:14:29 polynomial-c Exp $ + +*htpdate-1.1.1 (25 Jul 2015) + + 25 Jul 2015; Lars Wendler -htpdate-1.0.4.ebuild, + -htpdate-1.0.5.ebuild, +htpdate-1.1.1.ebuild, -files/htpdate.init: + Version bump. Removed old. 18 Jan 2014; Mike Frysinger htpdate-1.0.7.ebuild: Add arm64 love. 1.1 net-misc/htpdate/htpdate-1.1.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/htpdate/htpdate-1.1.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/htpdate/htpdate-1.1.1.ebuild?rev=1.1&content-type=text/plain Index: htpdate-1.1.1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/htpdate/htpdate-1.1.1.ebuild,v 1.1 2015/07/25 21:14:29 polynomial-c Exp $ EAPI=5 inherit readme.gentoo toolchain-funcs unpacker DESCRIPTION="Synchronize local workstation with time offered by remote webservers" HOMEPAGE="http://www.vervest.org/fiki/bin/view/HTP/DownloadC"; SRC_URI="http://www.vervest.org/htp/archive/c/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~amd64-linux ~x86-linux" DEPEND="" RDEPEND="" DOC_CONTENTS="If you would like to run htpdate as a daemon, set appropriate http servers in /etc/conf.d/htpdate!" src_prepare() { # Use more standard adjtimex() to fix uClibc builds. sed -i 's:ntp_adjtime:adjtimex:g' htpdate.[8c] || die } src_compile() { emake CFLAGS="-Wall ${CFLAGS} ${LDFLAGS}" CC="$(tc-getCC)" } src_install() { dosbin htpdate doman htpdate.8 dodoc README Changelog newconfd "${FILESDIR}"/htpdate.conf htpdate newinitd "${FILESDIR}"/htpdate.init-r1 htpdate readme.gentoo_create_doc }
[gentoo-commits] gentoo-x86 commit in net-misc/htpdate/files: htpdate.init
polynomial-c15/07/25 21:14:29 Removed: htpdate.init Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC)
[gentoo-commits] gentoo-x86 commit in sys-fs/mdadm: ChangeLog mdadm-3.3.3.ebuild mdadm-3.3.2.ebuild
polynomial-c15/07/25 07:52:31 Modified: ChangeLog Added:mdadm-3.3.3.ebuild Removed: mdadm-3.3.2.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.195sys-fs/mdadm/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/ChangeLog?rev=1.195&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/ChangeLog?rev=1.195&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/ChangeLog?r1=1.194&r2=1.195 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v retrieving revision 1.194 retrieving revision 1.195 diff -u -r1.194 -r1.195 --- ChangeLog 11 Apr 2015 20:51:01 - 1.194 +++ ChangeLog 25 Jul 2015 07:52:31 - 1.195 @@ -1,6 +1,12 @@ # ChangeLog for sys-fs/mdadm # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v 1.194 2015/04/11 20:51:01 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v 1.195 2015/07/25 07:52:31 polynomial-c Exp $ + +*mdadm-3.3.3 (25 Jul 2015) + + 25 Jul 2015; Lars Wendler -mdadm-3.3.2.ebuild, + +mdadm-3.3.3.ebuild: + Version bump. Removed old. *mdadm-3.3.2-r1 (11 Apr 2015) 1.1 sys-fs/mdadm/mdadm-3.3.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/mdadm-3.3.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/mdadm-3.3.3.ebuild?rev=1.1&content-type=text/plain Index: mdadm-3.3.3.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/mdadm-3.3.3.ebuild,v 1.1 2015/07/25 07:52:31 polynomial-c Exp $ EAPI=4 inherit eutils flag-o-matic multilib systemd toolchain-funcs udev DESCRIPTION="A useful tool for running RAID systems - it can be used as a replacement for the raidtools" HOMEPAGE="http://neil.brown.name/blog/mdadm"; DEB_PR=2 SRC_URI="mirror://kernel/linux/utils/raid/mdadm/${P}.tar.xz mirror://debian/pool/main/m/mdadm/${PN}_3.3-${DEB_PR}.debian.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="static" DEPEND="virtual/pkgconfig app-arch/xz-utils" RDEPEND=">=sys-apps/util-linux-2.16" # The tests edit values in /proc and run tests on software raid devices. # Thus, they shouldn't be run on systems with active software RAID devices. RESTRICT="test" mdadm_emake() { emake \ PKG_CONFIG="$(tc-getPKG_CONFIG)" \ CC="$(tc-getCC)" \ CWFLAGS="-Wall" \ CXFLAGS="${CFLAGS}" \ UDEVDIR="$(get_udevdir)" \ SYSTEMD_DIR="$(systemd_get_unitdir)" \ "$@" } src_compile() { use static && append-ldflags -static mdadm_emake all mdassemble } src_test() { mdadm_emake test sh ./test || die } src_install() { mdadm_emake DESTDIR="${D}" install install-systemd into / dosbin mdassemble dodoc ChangeLog INSTALL TODO README* ANNOUNCE-${PV} insinto /etc newins mdadm.conf-example mdadm.conf newinitd "${FILESDIR}"/mdadm.rc mdadm newconfd "${FILESDIR}"/mdadm.confd mdadm newinitd "${FILESDIR}"/mdraid.rc mdraid newconfd "${FILESDIR}"/mdraid.confd mdraid # From the Debian patchset into /usr dodoc "${WORKDIR}"/debian/README.checkarray dosbin "${WORKDIR}"/debian/checkarray insinto /etc/default newins "${FILESDIR}"/etc-default-mdadm mdadm insinto /etc/cron.weekly newins "${FILESDIR}"/mdadm.weekly mdadm } pkg_postinst() { if ! systemd_is_booted; then if [[ -z ${REPLACING_VERSIONS} ]] ; then # Only inform people the first time they install. elog "If you're not relying on kernel auto-detect of your RAID" elog "devices, you need to add 'mdraid' to your 'boot' runlevel:" elog " rc-update add mdraid boot" fi fi }
[gentoo-commits] gentoo-x86 commit in app-arch/plzip: ChangeLog plzip-1.4.ebuild
polynomial-c15/07/24 20:32:51 Modified: ChangeLog Added:plzip-1.4.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.4 app-arch/plzip/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/plzip/ChangeLog?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/plzip/ChangeLog?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/plzip/ChangeLog?r1=1.3&r2=1.4 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-arch/plzip/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeLog 10 Mar 2015 19:11:59 - 1.3 +++ ChangeLog 24 Jul 2015 20:32:51 - 1.4 @@ -1,6 +1,11 @@ # ChangeLog for app-arch/plzip # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/plzip/ChangeLog,v 1.3 2015/03/10 19:11:59 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/plzip/ChangeLog,v 1.4 2015/07/24 20:32:51 polynomial-c Exp $ + +*plzip-1.4 (24 Jul 2015) + + 24 Jul 2015; Lars Wendler +plzip-1.4.ebuild: + Version bump. 10 Mar 2015; Michał Górny -plzip-1.1.ebuild, plzip-1.3.ebuild: 1.1 app-arch/plzip/plzip-1.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/plzip/plzip-1.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/plzip/plzip-1.4.ebuild?rev=1.1&content-type=text/plain Index: plzip-1.4.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-arch/plzip/plzip-1.4.ebuild,v 1.1 2015/07/24 20:32:51 polynomial-c Exp $ EAPI=5 inherit toolchain-funcs DESCRIPTION="Parallel lzip compressor" HOMEPAGE="http://www.nongnu.org/lzip/plzip.html"; SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/${PN}/${P}.tar.gz"; LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="app-arch/lzlib:0=" DEPEND=${RDEPEND} src_configure() { # not autotools-based ./configure \ --prefix="${EPREFIX}"/usr \ CXX="$(tc-getCXX)" \ CPPFLAGS="${CPPFLAGS}" \ CXXFLAGS="${CXXFLAGS}" \ LDFLAGS="${LDFLAGS}" || die }
[gentoo-commits] gentoo-x86 commit in app-arch/lzlib: ChangeLog lzlib-1.7.ebuild lzlib-1.5.ebuild
polynomial-c15/07/24 20:31:55 Modified: ChangeLog Added:lzlib-1.7.ebuild Removed: lzlib-1.5.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.3 app-arch/lzlib/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lzlib/ChangeLog?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lzlib/ChangeLog?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lzlib/ChangeLog?r1=1.2&r2=1.3 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-arch/lzlib/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChangeLog 27 Jan 2015 15:29:15 - 1.2 +++ ChangeLog 24 Jul 2015 20:31:55 - 1.3 @@ -1,6 +1,12 @@ # ChangeLog for app-arch/lzlib # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/lzlib/ChangeLog,v 1.2 2015/01/27 15:29:15 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/lzlib/ChangeLog,v 1.3 2015/07/24 20:31:55 polynomial-c Exp $ + +*lzlib-1.7 (24 Jul 2015) + + 24 Jul 2015; Lars Wendler -lzlib-1.5.ebuild, + +lzlib-1.7.ebuild: + Version bump. Removed old. *lzlib-1.6 (27 Jan 2015) 1.1 app-arch/lzlib/lzlib-1.7.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lzlib/lzlib-1.7.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lzlib/lzlib-1.7.ebuild?rev=1.1&content-type=text/plain Index: lzlib-1.7.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-arch/lzlib/lzlib-1.7.ebuild,v 1.1 2015/07/24 20:31:55 polynomial-c Exp $ EAPI=5 inherit eutils multilib toolchain-funcs DESCRIPTION="Library for lzip compression" HOMEPAGE="http://www.nongnu.org/lzip/lzlib.html"; SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/${PN}/${P}.tar.gz"; LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="static-libs" src_configure() { # not autotools-based ./configure \ --enable-shared \ --prefix="${EPREFIX}"/usr \ --libdir="${EPREFIX}"/usr/$(get_libdir) \ CC="$(tc-getCC)" \ CPPFLAGS="${CPPFLAGS}" \ CFLAGS="${CXXFLAGS}" \ LDFLAGS="${LDFLAGS}" || die } src_install() { emake DESTDIR="${D}" LDCONFIG=: install einstalldocs # this sucking thing does not support disabling static libs if ! use static-libs; then rm "${ED%/}"/usr/$(get_libdir)/*.a || die fi }
[gentoo-commits] gentoo-x86 commit in app-arch/lzip: ChangeLog lzip-1.17.ebuild lzip-1.17_rc2.ebuild
polynomial-c15/07/24 16:24:30 Modified: ChangeLog Added:lzip-1.17.ebuild Removed: lzip-1.17_rc2.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.64 app-arch/lzip/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lzip/ChangeLog?rev=1.64&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lzip/ChangeLog?rev=1.64&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lzip/ChangeLog?r1=1.63&r2=1.64 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-arch/lzip/ChangeLog,v retrieving revision 1.63 retrieving revision 1.64 diff -u -r1.63 -r1.64 --- ChangeLog 7 Jul 2015 15:10:11 - 1.63 +++ ChangeLog 24 Jul 2015 16:24:30 - 1.64 @@ -1,6 +1,12 @@ # ChangeLog for app-arch/lzip # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/lzip/ChangeLog,v 1.63 2015/07/07 15:10:11 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/lzip/ChangeLog,v 1.64 2015/07/24 16:24:30 polynomial-c Exp $ + +*lzip-1.17 (24 Jul 2015) + + 24 Jul 2015; Lars Wendler -lzip-1.17_rc2.ebuild, + +lzip-1.17.ebuild: + Version bump. Removed old. 07 Jul 2015; Lars Wendler lzip-1.16.ebuild, lzip-1.17_rc2.ebuild: 1.1 app-arch/lzip/lzip-1.17.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lzip/lzip-1.17.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lzip/lzip-1.17.ebuild?rev=1.1&content-type=text/plain Index: lzip-1.17.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-arch/lzip/lzip-1.17.ebuild,v 1.1 2015/07/24 16:24:30 polynomial-c Exp $ EAPI="4" inherit toolchain-funcs DESCRIPTION="lossless data compressor based on the LZMA algorithm" HOMEPAGE="http://www.nongnu.org/lzip/lzip.html"; SRC_URI="http://download.savannah.gnu.org/releases-noredirect/${PN}/${P/_/-}.tar.gz"; LICENSE="GPL-2+" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" S="${WORKDIR}/${P/_/-}" src_configure() { # not autotools-based ./configure \ --prefix="${EPREFIX}"/usr \ CXX="$(tc-getCXX)" \ CPPFLAGS="${CPPFLAGS}" \ CXXFLAGS="${CXXFLAGS}" \ LDFLAGS="${LDFLAGS}" || die }
[gentoo-commits] gentoo-x86 commit in sys-libs/slang: ChangeLog slang-2.3.0.ebuild
polynomial-c15/07/24 14:41:33 Modified: ChangeLog Added:slang-2.3.0.ebuild Log: Version bump (bug #524744) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.147sys-libs/slang/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/slang/ChangeLog?rev=1.147&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/slang/ChangeLog?rev=1.147&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/slang/ChangeLog?r1=1.146&r2=1.147 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-libs/slang/ChangeLog,v retrieving revision 1.146 retrieving revision 1.147 diff -u -r1.146 -r1.147 --- ChangeLog 3 Mar 2015 10:08:14 - 1.146 +++ ChangeLog 24 Jul 2015 14:41:33 - 1.147 @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/slang # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/slang/ChangeLog,v 1.146 2015/03/03 10:08:14 dlan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/slang/ChangeLog,v 1.147 2015/07/24 14:41:33 polynomial-c Exp $ + +*slang-2.3.0 (24 Jul 2015) + + 24 Jul 2015; Lars Wendler +slang-2.3.0.ebuild: + Version bump (bug #524744). 03 Mar 2015; Yixun Lan slang-2.2.4-r1.ebuild: add arm64 support, tested on A53 board 1.1 sys-libs/slang/slang-2.3.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/slang/slang-2.3.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/slang/slang-2.3.0.ebuild?rev=1.1&content-type=text/plain Index: slang-2.3.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-libs/slang/slang-2.3.0.ebuild,v 1.1 2015/07/24 14:41:33 polynomial-c Exp $ EAPI=5 inherit eutils multilib-minimal DESCRIPTION="A multi-platform programmer's library designed to allow a developer to create robust software" HOMEPAGE="http://www.jedsoft.org/slang/"; SRC_URI="http://www.jedsoft.org/releases/${PN}/${P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" IUSE="cjk pcre png readline static-libs zlib" # ncurses for ncurses5-config to get terminfo directory RDEPEND="sys-libs/ncurses pcre? ( >=dev-libs/libpcre-8.33-r1[${MULTILIB_USEDEP}] ) png? ( >=media-libs/libpng-1.6.10:0[${MULTILIB_USEDEP}] ) cjk? ( >=dev-libs/oniguruma-5.9.5[${MULTILIB_USEDEP}] ) readline? ( >=sys-libs/readline-6.2_p5-r1:0[${MULTILIB_USEDEP}] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) abi_x86_32? ( !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] !<=app-emulation/emul-linux-x86-baselibs-20140406-r1 )" DEPEND="${RDEPEND}" MAKEOPTS="${MAKEOPTS} -j1" src_prepare() { epatch "${FILESDIR}"/${PN}-2.2.3-slsh-libs.patch epatch "${FILESDIR}"/${PN}-2.2.4-memset.patch # avoid linking to -ltermcap race with some systems sed -i -e '/^TERMCAP=/s:=.*:=:' configure || die # we use the GNU linker also on Solaris sed -i -e 's/-G -fPIC/-shared -fPIC/g' \ -e 's/-Wl,-h,/-Wl,-soname,/g' configure || die # slang does not support configuration from another dir multilib_copy_sources } multilib_src_configure() { local myconf=slang use readline && myconf=gnu econf \ --with-readline=${myconf} \ $(use_with pcre) \ $(use_with cjk onig) \ $(use_with png) \ $(use_with zlib z) } multilib_src_compile() { emake elf $(use static-libs && echo static) pushd slsh >/dev/null emake slsh popd } multilib_src_install() { emake DESTDIR="${D}" install $(use static-libs && echo install-static) } multilib_src_install_all() { rm -rf "${ED}"/usr/share/doc/{slang,slsh} dodoc NEWS README *.txt doc/{,internal,text}/*.txt dohtml doc/slangdoc.html slsh/doc/html/*.html }
[gentoo-commits] gentoo-x86 commit in sys-devel/gettext: ChangeLog gettext-0.19.5.1.ebuild gettext-0.19.3.ebuild gettext-0.18.3.2.ebuild
polynomial-c15/07/24 12:31:31 Modified: ChangeLog Added:gettext-0.19.5.1.ebuild Removed: gettext-0.19.3.ebuild gettext-0.18.3.2.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.274sys-devel/gettext/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gettext/ChangeLog?rev=1.274&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gettext/ChangeLog?rev=1.274&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gettext/ChangeLog?r1=1.273&r2=1.274 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-devel/gettext/ChangeLog,v retrieving revision 1.273 retrieving revision 1.274 diff -u -r1.273 -r1.274 --- ChangeLog 10 Jul 2015 08:25:11 - 1.273 +++ ChangeLog 24 Jul 2015 12:31:31 - 1.274 @@ -1,6 +1,12 @@ # ChangeLog for sys-devel/gettext # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/ChangeLog,v 1.273 2015/07/10 08:25:11 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/ChangeLog,v 1.274 2015/07/24 12:31:31 polynomial-c Exp $ + +*gettext-0.19.5.1 (24 Jul 2015) + + 24 Jul 2015; Lars Wendler -gettext-0.18.3.2.ebuild, + -gettext-0.19.3.ebuild, +gettext-0.19.5.1.ebuild: + Version bump. Removed old. *gettext-0.19.5 (10 Jul 2015) 1.1 sys-devel/gettext/gettext-0.19.5.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gettext/gettext-0.19.5.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gettext/gettext-0.19.5.1.ebuild?rev=1.1&content-type=text/plain Index: gettext-0.19.5.1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.19.5.1.ebuild,v 1.1 2015/07/24 12:31:31 polynomial-c Exp $ EAPI="4" inherit flag-o-matic eutils multilib toolchain-funcs mono-env libtool java-pkg-opt-2 multilib-minimal DESCRIPTION="GNU locale utilities" HOMEPAGE="http://www.gnu.org/software/gettext/"; SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" LICENSE="GPL-3 LGPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" IUSE="acl -cvs doc emacs git java nls +cxx ncurses openmp static-libs elibc_glibc elibc_musl" # only runtime goes multilib DEPEND=">=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] dev-libs/libxml2 dev-libs/expat acl? ( virtual/acl ) ncurses? ( sys-libs/ncurses ) java? ( >=virtual/jdk-1.4 )" RDEPEND="${DEPEND} !git? ( cvs? ( dev-vcs/cvs ) ) git? ( dev-vcs/git ) java? ( >=virtual/jre-1.4 ) abi_x86_32? ( !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] !<=app-emulation/emul-linux-x86-baselibs-20131008-r11 )" PDEPEND="emacs? ( app-emacs/po-mode )" MULTILIB_WRAPPED_HEADERS=( # only installed for native ABI /usr/include/gettext-po.h ) src_prepare() { java-pkg-opt-2_src_prepare epunt_cxx elibtoolize } multilib_src_configure() { local myconf=( # switches common to runtime and top-level --cache-file="${BUILD_DIR}"/config.cache --docdir="/usr/share/doc/${PF}" $(use_enable cxx libasprintf) $(use_enable java) $(use_enable static-libs static) ) # Build with --without-included-gettext (on glibc systems) if use elibc_glibc || use elibc_musl ; then myconf+=( --without-included-gettext $(use_enable nls) ) else myconf+=( --with-included-gettext --enable-nls ) fi use cxx || export CXX=$(tc-getCC) # Should be able to drop this hack in next release. #333887 tc-is-cross-compiler && export gl_cv_func_working_acl_get_file=yes local ECONF_SOURCE=${S} if ! multilib_is_native_abi ; then # for non-native ABIs, we build runtime only ECONF_SOURCE+=/gettext-runtime else # remaining switches myconf+=( # Emacs support is now in a separate package --without-emacs --without-lispdir # glib depends on us so avoid circular deps --with-included-glib
[gentoo-commits] gentoo-x86 commit in app-admin/sudo: ChangeLog sudo-1.8.14_p3.ebuild sudo-1.8.14_p1.ebuild
polynomial-c15/07/23 20:01:22 Modified: ChangeLog Added:sudo-1.8.14_p3.ebuild Removed: sudo-1.8.14_p1.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.392app-admin/sudo/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/ChangeLog?rev=1.392&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/ChangeLog?rev=1.392&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/ChangeLog?r1=1.391&r2=1.392 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-admin/sudo/ChangeLog,v retrieving revision 1.391 retrieving revision 1.392 diff -u -r1.391 -r1.392 --- ChangeLog 20 Jul 2015 10:57:20 - 1.391 +++ ChangeLog 23 Jul 2015 20:01:21 - 1.392 @@ -1,6 +1,12 @@ # ChangeLog for app-admin/sudo # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/ChangeLog,v 1.391 2015/07/20 10:57:20 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/ChangeLog,v 1.392 2015/07/23 20:01:21 polynomial-c Exp $ + +*sudo-1.8.14_p3 (23 Jul 2015) + + 23 Jul 2015; Lars Wendler -sudo-1.8.14_p1.ebuild, + +sudo-1.8.14_p3.ebuild: + Version bump. Removed old. *sudo-1.8.14_p1 (20 Jul 2015) 1.1 app-admin/sudo/sudo-1.8.14_p3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/sudo-1.8.14_p3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/sudo-1.8.14_p3.ebuild?rev=1.1&content-type=text/plain Index: sudo-1.8.14_p3.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/sudo-1.8.14_p3.ebuild,v 1.1 2015/07/23 20:01:21 polynomial-c Exp $ EAPI=5 inherit eutils pam multilib libtool MY_P=${P/_/} MY_P=${MY_P/beta/b} uri_prefix= case ${P} in *_beta*|*_rc*) uri_prefix=beta/ ;; esac DESCRIPTION="Allows users or groups to run commands as other users" HOMEPAGE="http://www.sudo.ws/"; SRC_URI="http://www.sudo.ws/sudo/dist/${uri_prefix}${MY_P}.tar.gz ftp://ftp.sudo.ws/pub/sudo/${uri_prefix}${MY_P}.tar.gz"; # Basic license is ISC-style as-is, some files are released under # 3-clause BSD license LICENSE="ISC BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris" IUSE="ldap nls pam offensive selinux skey +sendmail" DEPEND="pam? ( virtual/pam ) skey? ( >=sys-auth/skey-1.1.5-r1 ) ldap? ( >=net-nds/openldap-2.1.30-r1 dev-libs/cyrus-sasl ) sys-libs/zlib" RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-sudo ) ldap? ( dev-lang/perl ) pam? ( sys-auth/pambase ) >=app-misc/editor-wrapper-3 virtual/editor sendmail? ( virtual/mta )" DEPEND="${DEPEND} sys-devel/bison" S=${WORKDIR}/${MY_P} REQUIRED_USE="pam? ( !skey ) skey? ( !pam )" MAKEOPTS+=" SAMPLES=" src_prepare() { elibtoolize } set_rootpath() { # FIXME: secure_path is a compile time setting. using ROOTPATH # is not perfect, env-update may invalidate this, but until it # is available as a sudoers setting this will have to do. einfo "Setting secure_path ..." # first extract the default ROOTPATH from build env ROOTPATH=$(unset ROOTPATH; . "${EPREFIX}"/etc/profile.env; echo "${ROOTPATH}") if [[ -z ${ROOTPATH} ]] ; then ewarn " Failed to find ROOTPATH, please report this" fi # then remove duplicate path entries cleanpath() { local newpath thisp IFS=: for thisp in $1 ; do if [[ :${newpath}: != *:${thisp}:* ]] ; then newpath+=:$thisp else einfo " Duplicate entry ${thisp} removed..." fi done ROOTPATH=${newpath#:} } cleanpath /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/opt/bin${ROOTPATH:+:${ROOTPATH}} # finally, strip gcc paths #136027 rmpath() { local e newpath thisp IFS=: for thisp in ${ROOTPATH} ; do for e ; do [[ $thisp == $e ]] && continue 2 ; done newpath+=:$thisp done ROOTPATH=${newpath#:} } rmpath '*/gcc-bin/*' '*/gnat-gcc-bin/*' '*/gnat-gcc/*' einfo "... done"
[gentoo-commits] gentoo-x86 commit in www-servers/apache: ChangeLog apache-2.2.31.ebuild
polynomial-c15/07/23 14:19:04 Modified: ChangeLog Added:apache-2.2.31.ebuild Log: Version bump (bug #555658) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.307www-servers/apache/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/ChangeLog?rev=1.307&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/ChangeLog?rev=1.307&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/ChangeLog?r1=1.306&r2=1.307 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v retrieving revision 1.306 retrieving revision 1.307 diff -u -r1.306 -r1.307 --- ChangeLog 16 Jul 2015 12:52:29 - 1.306 +++ ChangeLog 23 Jul 2015 14:19:04 - 1.307 @@ -1,6 +1,11 @@ # ChangeLog for www-servers/apache # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.306 2015/07/16 12:52:29 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.307 2015/07/23 14:19:04 polynomial-c Exp $ + +*apache-2.2.31 (23 Jul 2015) + + 23 Jul 2015; Lars Wendler +apache-2.2.31.ebuild: + Version bump (bug #555658). 16 Jul 2015; Lars Wendler apache-2.4.12-r1.ebuild, apache-2.4.16.ebuild: 1.1 www-servers/apache/apache-2.2.31.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/apache-2.2.31.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/apache-2.2.31.ebuild?rev=1.1&content-type=text/plain Index: apache-2.2.31.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.2.31.ebuild,v 1.1 2015/07/23 14:19:04 polynomial-c Exp $ EAPI=5 # latest gentoo apache files GENTOO_PATCHSTAMP="20140922" GENTOO_DEVELOPER="polynomial-c" GENTOO_PATCHNAME="gentoo-apache-2.2.29" # IUSE/USE_EXPAND magic IUSE_MPMS_FORK="itk peruser prefork" IUSE_MPMS_THREAD="event worker" IUSE_MODULES="actions alias asis auth_basic auth_digest authn_alias authn_anon authn_dbd authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cern_meta charset_lite cgi cgid dav dav_fs dav_lock dbd deflate dir disk_cache dumpio env expires ext_filter file_cache filter headers ident imagemap include info log_config log_forensic logio mem_cache mime mime_magic negotiation proxy proxy_ajp proxy_balancer proxy_connect proxy_ftp proxy_http proxy_scgi rewrite reqtimeout setenvif speling status substitute unique_id userdir usertrack version vhost_alias" # The following are also in the source as of this version, but are not available # for user selection: # bucketeer case_filter case_filter_in echo http isapi optional_fn_export # optional_fn_import optional_hook_export optional_hook_import # inter-module dependencies # TODO: this may still be incomplete MODULE_DEPENDS=" dav_fs:dav dav_lock:dav deflate:filter disk_cache:cache ext_filter:filter file_cache:cache log_forensic:log_config logio:log_config mem_cache:cache mime_magic:mime proxy_ajp:proxy proxy_balancer:proxy proxy_connect:proxy proxy_ftp:proxy proxy_http:proxy proxy_scgi:proxy substitute:filter " # module<->define mappings MODULE_DEFINES=" auth_digest:AUTH_DIGEST authnz_ldap:AUTHNZ_LDAP cache:CACHE dav:DAV dav_fs:DAV dav_lock:DAV disk_cache:CACHE file_cache:CACHE info:INFO ldap:LDAP mem_cache:CACHE proxy:PROXY proxy_ajp:PROXY proxy_balancer:PROXY proxy_connect:PROXY proxy_ftp:PROXY proxy_http:PROXY ssl:SSL status:STATUS suexec:SUEXEC userdir:USERDIR " # critical modules for the default config MODULE_CRITICAL=" authz_host dir mime " inherit apache-2 systemd toolchain-funcs DESCRIPTION="The Apache Web Server" HOMEPAGE="http://httpd.apache.org/"; # some helper scripts are Apache-1.1, thus both are here LICENSE="Apache-2.0 Apache-1.1" SLOT="2" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" IUSE="" src_configure() { # Brain dead check. tc-is-cross-compiler && export ap_cv_void_ptr_lt_long="no" apache-2_src_configure } src_install() { apache-2_src_install # install apxs in /usr/bin (bug #50
[gentoo-commits] gentoo-x86 commit in app-admin/apache-tools: ChangeLog apache-tools-2.2.31.ebuild
polynomial-c15/07/23 14:17:49 Modified: ChangeLog Added:apache-tools-2.2.31.ebuild Log: Version bump (bug #555658) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.207app-admin/apache-tools/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/ChangeLog?rev=1.207&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/ChangeLog?rev=1.207&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/ChangeLog?r1=1.206&r2=1.207 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-admin/apache-tools/ChangeLog,v retrieving revision 1.206 retrieving revision 1.207 diff -u -r1.206 -r1.207 --- ChangeLog 16 Jul 2015 06:08:19 - 1.206 +++ ChangeLog 23 Jul 2015 14:17:49 - 1.207 @@ -1,6 +1,12 @@ # ChangeLog for app-admin/apache-tools # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/ChangeLog,v 1.206 2015/07/16 06:08:19 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/ChangeLog,v 1.207 2015/07/23 14:17:49 polynomial-c Exp $ + +*apache-tools-2.2.31 (23 Jul 2015) + + 23 Jul 2015; Lars Wendler + +apache-tools-2.2.31.ebuild: + Version bump (bug #555658). *apache-tools-2.4.16 (16 Jul 2015) 1.1 app-admin/apache-tools/apache-tools-2.2.31.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/apache-tools-2.2.31.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/apache-tools-2.2.31.ebuild?rev=1.1&content-type=text/plain Index: apache-tools-2.2.31.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/apache-tools-2.2.31.ebuild,v 1.1 2015/07/23 14:17:49 polynomial-c Exp $ EAPI="4" inherit flag-o-matic eutils DESCRIPTION="Useful Apache tools - htdigest, htpasswd, ab, htdbm" HOMEPAGE="http://httpd.apache.org/"; SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" IUSE="ssl" RESTRICT="test" RDEPEND="=dev-libs/apr-1* =dev-libs/apr-util-1* dev-libs/expat dev-libs/libpcre kernel_linux? ( sys-apps/util-linux ) ssl? ( dev-libs/openssl ) !/dev/null || die for i in *; do dosym /usr/sbin/${i} /usr/sbin/${i}2 done popd >/dev/null || die # Provide a symlink for ab-ssl if use ssl; then dosym /usr/sbin/ab /usr/sbin/ab-ssl dosym /usr/sbin/ab /usr/sbin/ab2-ssl fi # make htpasswd accessible for non-root users dosym /usr/sbin/htpasswd /usr/bin/htpasswd dosym /usr/sbin/htdigest /usr/bin/htdigest dodoc "${S}"/CHANGES }
[gentoo-commits] gentoo-x86 commit in sys-apps/lm_sensors: metadata.xml ChangeLog
polynomial-c15/07/20 21:11:14 Modified: metadata.xml ChangeLog Log: Took over maintenance (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.8 sys-apps/lm_sensors/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lm_sensors/metadata.xml?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lm_sensors/metadata.xml?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lm_sensors/metadata.xml?r1=1.7&r2=1.8 Index: metadata.xml === RCS file: /var/cvsroot/gentoo-x86/sys-apps/lm_sensors/metadata.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- metadata.xml25 Jul 2013 17:51:52 - 1.7 +++ metadata.xml20 Jul 2015 21:11:14 - 1.8 @@ -2,8 +2,8 @@ http://www.gentoo.org/dtd/metadata.dtd";> -jdh...@gentoo.org -Jeff Horelick +polynomia...@gentoo.org +Lars Wendler Enable sensord - a daemon that can be used to 1.154sys-apps/lm_sensors/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lm_sensors/ChangeLog?rev=1.154&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lm_sensors/ChangeLog?rev=1.154&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lm_sensors/ChangeLog?r1=1.153&r2=1.154 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-apps/lm_sensors/ChangeLog,v retrieving revision 1.153 retrieving revision 1.154 diff -u -r1.153 -r1.154 --- ChangeLog 20 Jul 2015 21:05:49 - 1.153 +++ ChangeLog 20 Jul 2015 21:11:14 - 1.154 @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/lm_sensors # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lm_sensors/ChangeLog,v 1.153 2015/07/20 21:05:49 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lm_sensors/ChangeLog,v 1.154 2015/07/20 21:11:14 polynomial-c Exp $ + + 20 Jul 2015; Lars Wendler metadata.xml: + Took over maintenance. *lm_sensors-3.4.0 (20 Jul 2015)
[gentoo-commits] gentoo-x86 commit in sys-apps/lm_sensors: ChangeLog lm_sensors-3.4.0.ebuild lm_sensors-3.3.3-r3.ebuild
polynomial-c15/07/20 21:05:50 Modified: ChangeLog Added:lm_sensors-3.4.0.ebuild Removed: lm_sensors-3.3.3-r3.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.153sys-apps/lm_sensors/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lm_sensors/ChangeLog?rev=1.153&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lm_sensors/ChangeLog?rev=1.153&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lm_sensors/ChangeLog?r1=1.152&r2=1.153 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/sys-apps/lm_sensors/ChangeLog,v retrieving revision 1.152 retrieving revision 1.153 diff -u -r1.152 -r1.153 --- ChangeLog 3 May 2015 12:15:38 - 1.152 +++ ChangeLog 20 Jul 2015 21:05:49 - 1.153 @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/lm_sensors # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lm_sensors/ChangeLog,v 1.152 2015/05/03 12:15:38 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lm_sensors/ChangeLog,v 1.153 2015/07/20 21:05:49 polynomial-c Exp $ + +*lm_sensors-3.4.0 (20 Jul 2015) + + 20 Jul 2015; Lars Wendler + -lm_sensors-3.3.3-r3.ebuild, +lm_sensors-3.4.0.ebuild: + Version bump. Removed old. 03 May 2015; Jeroen Roovers lm_sensors-3.3.5.ebuild: Mark ~ppc64 too. 1.1 sys-apps/lm_sensors/lm_sensors-3.4.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lm_sensors/lm_sensors-3.4.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lm_sensors/lm_sensors-3.4.0.ebuild?rev=1.1&content-type=text/plain Index: lm_sensors-3.4.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/lm_sensors/lm_sensors-3.4.0.ebuild,v 1.1 2015/07/20 21:05:49 polynomial-c Exp $ EAPI=5 inherit eutils linux-info multilib systemd toolchain-funcs DESCRIPTION="Hardware Monitoring user-space utilities" HOMEPAGE="http://www.lm-sensors.org/"; SRC_URI="http://dl.lm-sensors.org/lm-sensors/releases/${P}.tar.bz2"; LICENSE="GPL-2 LGPL-2.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux" IUSE="sensord static-libs" RDEPEND=" dev-lang/perl sensord? ( net-analyzer/rrdtool virtual/logger )" DEPEND="${RDEPEND} sys-devel/bison sys-devel/flex" CONFIG_CHECK="~HWMON ~I2C_CHARDEV ~I2C" WARNING_HWMON="${PN} requires CONFIG_HWMON to be enabled for use." WARNING_I2C_CHARDEV="sensors-detect requires CONFIG_I2C_CHARDEV to be enabled." WARNING_I2C="${PN} requires CONFIG_I2C to be enabled for most sensors." src_prepare() { epatch "${FILESDIR}"/${PN}-3.3.5-sensors-detect-gentoo.patch use sensord && { sed -i -e 's:^#\(PROG_EXTRA.*\):\1:' Makefile || die; } # Respect LDFLAGS sed -i -e 's/\$(LIBDIR)$/\$(LIBDIR) \$(LDFLAGS)/g' Makefile || die # Fix shipped unit file paths sed -i -e 's:\(^EnvironmentFile=\).*:\1/etc/conf.d/lm_sensors:' \ prog/init/lm_sensors.service || die use static-libs || { sed -i -e '/^BUILD_STATIC_LIB/d' Makefile || die; } } src_compile() { einfo einfo "You may safely ignore any errors from compilation" einfo "that contain \"No such file or directory\" references." einfo emake CC="$(tc-getCC)" } src_install() { emake \ DESTDIR="${D}" \ PREFIX="${EPREFIX}/usr" \ MANDIR="${EPREFIX}/usr/share/man" \ ETCDIR="${EPREFIX}/etc" \ LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ install newinitd "${FILESDIR}"/${PN}-3-init.d ${PN} systemd_dounit prog/init/lm_sensors.service newinitd "${FILESDIR}"/fancontrol-init.d-2 fancontrol systemd_dounit "${FILESDIR}"/fancontrol.service if use sensord; then newconfd "${FILESDIR}"/sensord-conf.d sensord newinitd "${FILESDIR}"/sensord-4-init.d sensord systemd_dounit "${FILESDIR}"/sensord.service fi dodoc CHANGES CONTRIBUTORS INSTALL README \ doc/{donations,fancontrol.txt,fan-divisors,libsensors-API.txt,progs,temperature-sensors,vid} docinto developers dodoc doc/developers/applications } pkg_postinst() { echo elog "Please run \`/usr/sbin/sensors-detect' in order to setup" elog "/etc/conf.d/${PN}." echo elog "/e
[gentoo-commits] gentoo-x86 commit in app-admin/sudo: ChangeLog sudo-1.8.14_p1.ebuild
polynomial-c15/07/20 10:57:21 Modified: ChangeLog Added:sudo-1.8.14_p1.ebuild Log: Version bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.391app-admin/sudo/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/ChangeLog?rev=1.391&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/ChangeLog?rev=1.391&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/ChangeLog?r1=1.390&r2=1.391 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-admin/sudo/ChangeLog,v retrieving revision 1.390 retrieving revision 1.391 diff -u -r1.390 -r1.391 --- ChangeLog 6 Jun 2015 16:59:32 - 1.390 +++ ChangeLog 20 Jul 2015 10:57:20 - 1.391 @@ -1,6 +1,11 @@ # ChangeLog for app-admin/sudo # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/ChangeLog,v 1.390 2015/06/06 16:59:32 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/ChangeLog,v 1.391 2015/07/20 10:57:20 polynomial-c Exp $ + +*sudo-1.8.14_p1 (20 Jul 2015) + + 20 Jul 2015; Lars Wendler +sudo-1.8.14_p1.ebuild: + Version bump. 06 Jun 2015; Lars Wendler -sudo-1.8.11_p1.ebuild, -sudo-1.8.11_p2.ebuild: 1.1 app-admin/sudo/sudo-1.8.14_p1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/sudo-1.8.14_p1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sudo/sudo-1.8.14_p1.ebuild?rev=1.1&content-type=text/plain Index: sudo-1.8.14_p1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/sudo-1.8.14_p1.ebuild,v 1.1 2015/07/20 10:57:20 polynomial-c Exp $ EAPI=5 inherit eutils pam multilib libtool MY_P=${P/_/} MY_P=${MY_P/beta/b} uri_prefix= case ${P} in *_beta*|*_rc*) uri_prefix=beta/ ;; esac DESCRIPTION="Allows users or groups to run commands as other users" HOMEPAGE="http://www.sudo.ws/"; SRC_URI="http://www.sudo.ws/sudo/dist/${uri_prefix}${MY_P}.tar.gz ftp://ftp.sudo.ws/pub/sudo/${uri_prefix}${MY_P}.tar.gz"; # Basic license is ISC-style as-is, some files are released under # 3-clause BSD license LICENSE="ISC BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris" IUSE="ldap nls pam offensive selinux skey +sendmail" DEPEND="pam? ( virtual/pam ) skey? ( >=sys-auth/skey-1.1.5-r1 ) ldap? ( >=net-nds/openldap-2.1.30-r1 dev-libs/cyrus-sasl ) sys-libs/zlib" RDEPEND="${DEPEND} selinux? ( sec-policy/selinux-sudo ) ldap? ( dev-lang/perl ) pam? ( sys-auth/pambase ) >=app-misc/editor-wrapper-3 virtual/editor sendmail? ( virtual/mta )" DEPEND="${DEPEND} sys-devel/bison" S=${WORKDIR}/${MY_P} REQUIRED_USE="pam? ( !skey ) skey? ( !pam )" MAKEOPTS+=" SAMPLES=" src_prepare() { elibtoolize } set_rootpath() { # FIXME: secure_path is a compile time setting. using ROOTPATH # is not perfect, env-update may invalidate this, but until it # is available as a sudoers setting this will have to do. einfo "Setting secure_path ..." # first extract the default ROOTPATH from build env ROOTPATH=$(unset ROOTPATH; . "${EPREFIX}"/etc/profile.env; echo "${ROOTPATH}") if [[ -z ${ROOTPATH} ]] ; then ewarn " Failed to find ROOTPATH, please report this" fi # then remove duplicate path entries cleanpath() { local newpath thisp IFS=: for thisp in $1 ; do if [[ :${newpath}: != *:${thisp}:* ]] ; then newpath+=:$thisp else einfo " Duplicate entry ${thisp} removed..." fi done ROOTPATH=${newpath#:} } cleanpath /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/opt/bin${ROOTPATH:+:${ROOTPATH}} # finally, strip gcc paths #136027 rmpath() { local e newpath thisp IFS=: for thisp in ${ROOTPATH} ; do for e ; do [[ $thisp == $e ]] && continue 2 ; done newpath+=:$thisp done ROOTPATH=${newpath#:} } rmpath '*/gcc-bin/*' '*/gnat-gcc-bin/*' '*/gnat-gcc/*' einfo "... done" } src_configure() { local ROOTPATH
[gentoo-commits] gentoo-x86 commit in net-libs/libssh: ChangeLog libssh-0.7.1.ebuild libssh-0.7.0.ebuild
polynomial-c15/07/17 12:25:12 Modified: ChangeLog Added:libssh-0.7.1.ebuild Removed: libssh-0.7.0.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.140net-libs/libssh/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh/ChangeLog?rev=1.140&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh/ChangeLog?rev=1.140&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh/ChangeLog?r1=1.139&r2=1.140 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-libs/libssh/ChangeLog,v retrieving revision 1.139 retrieving revision 1.140 diff -u -r1.139 -r1.140 --- ChangeLog 4 Jul 2015 13:52:52 - 1.139 +++ ChangeLog 17 Jul 2015 12:25:12 - 1.140 @@ -1,6 +1,12 @@ # ChangeLog for net-libs/libssh # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/ChangeLog,v 1.139 2015/07/04 13:52:52 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/ChangeLog,v 1.140 2015/07/17 12:25:12 polynomial-c Exp $ + +*libssh-0.7.1 (17 Jul 2015) + + 17 Jul 2015; Lars Wendler -libssh-0.7.0.ebuild, + +libssh-0.7.1.ebuild: + Version bump. Removed old. 04 Jul 2015; Tobias Klausmann libssh-0.7.0-r1.ebuild: Stable on alpha, bug 538798 1.1 net-libs/libssh/libssh-0.7.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh/libssh-0.7.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libssh/libssh-0.7.1.ebuild?rev=1.1&content-type=text/plain Index: libssh-0.7.1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-libs/libssh/libssh-0.7.1.ebuild,v 1.1 2015/07/17 12:25:12 polynomial-c Exp $ EAPI=5 MY_P=${PN}-${PV/_rc/rc} inherit eutils cmake-multilib multilib DESCRIPTION="Access a working SSH implementation by means of a library" HOMEPAGE="http://www.libssh.org/"; SRC_URI="https://red.libssh.org/attachments/download/154/${MY_P}.tar.xz -> ${P}.tar.xz" LICENSE="LGPL-2.1" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" SLOT="0/4" # subslot = soname major version IUSE="debug doc examples gcrypt gssapi pcap +sftp ssh1 server static-libs test zlib" # Maintainer: check IUSE-defaults at DefineOptions.cmake RDEPEND=" zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) !gcrypt? ( >=dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] ) gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}] ) gssapi? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] ) " DEPEND="${RDEPEND} doc? ( app-doc/doxygen ) test? ( >=dev-util/cmocka-0.3.1[${MULTILIB_USEDEP}] ) " DOCS=( AUTHORS README ChangeLog ) S=${WORKDIR}/${MY_P} PATCHES=( "${FILESDIR}"/${PN}-0.5.0-tests.patch ) src_prepare() { # just install the examples do not compile them sed -i \ -e '/add_subdirectory(examples)/s/^/#DONOTWANT/' \ CMakeLists.txt || die cmake-utils_src_prepare } multilib_src_configure() { local mycmakeargs=( $(cmake-utils_use_with debug DEBUG_CALLTRACE) $(cmake-utils_use_with debug DEBUG_CRYPTO) $(cmake-utils_use_with gcrypt) $(cmake-utils_use_with gssapi) $(cmake-utils_use_with pcap) $(cmake-utils_use_with server) $(cmake-utils_use_with sftp) $(cmake-utils_use_with ssh1) $(cmake-utils_use_with static-libs STATIC_LIB) $(cmake-utils_use_with test STATIC_LIB) $(cmake-utils_use_with test TESTING) $(cmake-utils_use_with zlib) ) cmake-utils_src_configure } multilib_src_compile() { cmake-utils_src_compile multilib_is_native_abi && use doc && cmake-utils_src_compile doc } multilib_src_install() { cmake-utils_src_install multilib_is_native_abi && use doc && dohtml -r doc/html/. use static-libs || rm -f "${D}"/usr/$(get_libdir)/libssh{,_threads}.a } multilib_src_install_all() { einstalldocs if use examples; then docinto examples dodoc examples/*.{c,h,cpp} fi }
[gentoo-commits] gentoo-x86 commit in dev-vcs/git: ChangeLog
polynomial-c15/07/17 07:21:00 Modified: ChangeLog Log: Fixed typo in comment (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.343dev-vcs/git/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?rev=1.343&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?rev=1.343&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?r1=1.342&r2=1.343 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v retrieving revision 1.342 retrieving revision 1.343 diff -u -r1.342 -r1.343 --- ChangeLog 17 Jul 2015 07:15:00 - 1.342 +++ ChangeLog 17 Jul 2015 07:21:00 - 1.343 @@ -1,6 +1,9 @@ # ChangeLog for dev-vcs/git # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v 1.342 2015/07/17 07:15:00 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v 1.343 2015/07/17 07:21:00 polynomial-c Exp $ + + 17 Jul 2015; Lars Wendler files/git-daemon.confd: + Fixed typo in comment. *git-2.4.6 (17 Jul 2015)
[gentoo-commits] gentoo-x86 commit in dev-vcs/git/files: git-daemon.confd
polynomial-c15/07/17 07:21:00 Modified: git-daemon.confd Log: Fixed typo in comment (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.3 dev-vcs/git/files/git-daemon.confd file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/files/git-daemon.confd?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/files/git-daemon.confd?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/files/git-daemon.confd?r1=1.2&r2=1.3 Index: git-daemon.confd === RCS file: /var/cvsroot/gentoo-x86/dev-vcs/git/files/git-daemon.confd,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- git-daemon.confd23 Aug 2012 05:38:18 - 1.2 +++ git-daemon.confd17 Jul 2015 07:21:00 - 1.3 @@ -13,7 +13,7 @@ GITDAEMON_OPTS="--syslog --base-path=/var/git" # To run an anonymous git safely, the following user should be able to only -# read your Git repositories. It should not able able to write to anywhere on +# read your Git repositories. It should not be able to write to anywhere on # your system, esp. not the repositories. GIT_USER="nobody" GIT_GROUP="nobody"
[gentoo-commits] gentoo-x86 commit in dev-vcs/git: ChangeLog git-2.4.6.ebuild git-2.4.4.ebuild
polynomial-c15/07/17 07:15:00 Modified: ChangeLog Added:git-2.4.6.ebuild Removed: git-2.4.4.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.342dev-vcs/git/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?rev=1.342&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?rev=1.342&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/ChangeLog?r1=1.341&r2=1.342 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v retrieving revision 1.341 retrieving revision 1.342 diff -u -r1.341 -r1.342 --- ChangeLog 1 Jul 2015 14:59:19 - 1.341 +++ ChangeLog 17 Jul 2015 07:15:00 - 1.342 @@ -1,6 +1,12 @@ # ChangeLog for dev-vcs/git # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v 1.341 2015/07/01 14:59:19 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/ChangeLog,v 1.342 2015/07/17 07:15:00 polynomial-c Exp $ + +*git-2.4.6 (17 Jul 2015) + + 17 Jul 2015; Lars Wendler -git-2.4.4.ebuild, + +git-2.4.6.ebuild: + Version bump. Removed old. 01 Jul 2015; Lars Wendler git-2.4.5.ebuild: Fixed compilation with cgi USE flag (bug #553438). 1.1 dev-vcs/git/git-2.4.6.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/git-2.4.6.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git/git-2.4.6.ebuild?rev=1.1&content-type=text/plain Index: git-2.4.6.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/git/git-2.4.6.ebuild,v 1.1 2015/07/17 07:15:00 polynomial-c Exp $ EAPI=5 GENTOO_DEPEND_ON_PERL=no # bug #329479: git-remote-testgit is not multiple-version aware PYTHON_COMPAT=( python2_7 ) [[ ${PV} == * ]] && SCM="git-2" EGIT_REPO_URI="git://git.kernel.org/pub/scm/git/git.git" EGIT_MASTER=pu inherit toolchain-funcs eutils elisp-common perl-module bash-completion-r1 python-single-r1 systemd ${SCM} MY_PV="${PV/_rc/.rc}" MY_P="${PN}-${MY_PV}" DOC_VER=${MY_PV} DESCRIPTION="GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team" HOMEPAGE="http://www.git-scm.com/"; if [[ ${PV} != * ]]; then SRC_URI_SUFFIX="xz" SRC_URI_GOOG="http://git-core.googlecode.com/files"; SRC_URI_KORG="mirror://kernel/software/scm/git" SRC_URI="${SRC_URI_GOOG}/${MY_P}.tar.${SRC_URI_SUFFIX} ${SRC_URI_KORG}/${MY_P}.tar.${SRC_URI_SUFFIX} ${SRC_URI_GOOG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} ${SRC_URI_KORG}/${PN}-manpages-${DOC_VER}.tar.${SRC_URI_SUFFIX} doc? ( ${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} ${SRC_URI_GOOG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} )" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi LICENSE="GPL-2" SLOT="0" IUSE="+blksha1 +curl cgi doc emacs gnome-keyring +gpg gtk highlight +iconv mediawiki +nls +pcre +perl +python ppcsha1 tk +threads +webdav xinetd cvs subversion test" # Common to both DEPEND and RDEPEND CDEPEND=" dev-libs/openssl:0= sys-libs/zlib pcre? ( dev-libs/libpcre ) perl? ( dev-lang/perl:=[-build(-)] ) tk? ( dev-lang/tk:= ) curl? ( net-misc/curl webdav? ( dev-libs/expat ) ) emacs? ( virtual/emacs ) gnome-keyring? ( gnome-base/libgnome-keyring )" RDEPEND="${CDEPEND} gpg? ( app-crypt/gnupg ) mediawiki? ( dev-perl/HTML-Tree dev-perl/MediaWiki-API ) perl? ( dev-perl/Error dev-perl/Net-SMTP-SSL dev-perl/Authen-SASL cgi? ( dev-perl/CGI highlight? ( app-text/highlight ) ) cvs? ( >=dev-vcs/cvsps-2.1:0 dev-perl/DBI dev-perl/DBD-SQLite ) subversion? ( dev-vcs/subversion[-dso,perl] dev-perl/libwww-perl dev-perl/TermReadKey ) ) python? ( gtk? ( >=dev-python/pygtk-2.8
[gentoo-commits] gentoo-x86 commit in dev-vcs/tortoisehg: ChangeLog tortoisehg-3.4.2.ebuild tortoisehg-3.4.ebuild
polynomial-c15/07/17 06:15:53 Modified: ChangeLog Added:tortoisehg-3.4.2.ebuild Removed: tortoisehg-3.4.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.79 dev-vcs/tortoisehg/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tortoisehg/ChangeLog?rev=1.79&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tortoisehg/ChangeLog?rev=1.79&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tortoisehg/ChangeLog?r1=1.78&r2=1.79 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/dev-vcs/tortoisehg/ChangeLog,v retrieving revision 1.78 retrieving revision 1.79 diff -u -r1.78 -r1.79 --- ChangeLog 9 Jun 2015 07:03:39 - 1.78 +++ ChangeLog 17 Jul 2015 06:15:53 - 1.79 @@ -1,6 +1,12 @@ # ChangeLog for dev-vcs/tortoisehg # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tortoisehg/ChangeLog,v 1.78 2015/06/09 07:03:39 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tortoisehg/ChangeLog,v 1.79 2015/07/17 06:15:53 polynomial-c Exp $ + +*tortoisehg-3.4.2 (17 Jul 2015) + + 17 Jul 2015; Lars Wendler -tortoisehg-3.4.ebuild, + +tortoisehg-3.4.2.ebuild: + Version bump. Removed old. *tortoisehg-3.4.1 (09 Jun 2015) 1.1 dev-vcs/tortoisehg/tortoisehg-3.4.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tortoisehg/tortoisehg-3.4.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tortoisehg/tortoisehg-3.4.2.ebuild?rev=1.1&content-type=text/plain Index: tortoisehg-3.4.2.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/tortoisehg/tortoisehg-3.4.2.ebuild,v 1.1 2015/07/17 06:15:53 polynomial-c Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 eutils if [[ ${PV} != ** ]]; then KEYWORDS="~amd64 ~x86" SRC_URI="https://www.bitbucket.org/${PN}/targz/downloads/${P}.tar.gz"; HG_DEPEND=">=dev-vcs/mercurial-3.3 https://bitbucket.org/tortoisehg/thg"; EHG_REVISION="stable" KEYWORDS="" SRC_URI="" HG_DEPEND="dev-vcs/mercurial" fi DESCRIPTION="Set of graphical tools for Mercurial" HOMEPAGE="http://tortoisehg.bitbucket.org"; LICENSE="GPL-2" SLOT="0" IUSE="doc" RDEPEND="${HG_DEPEND} dev-python/iniparse[${PYTHON_USEDEP}] dev-python/pygments[${PYTHON_USEDEP}] dev-python/PyQt4[svg,${PYTHON_USEDEP}] dev-python/qscintilla-python[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} doc? ( >=dev-python/sphinx-1.0.3 )" # Workaround race condition in build_qt DISTUTILS_IN_SOURCE_BUILD=1 python_prepare_all() { if [[ ${LINGUAS+set} ]]; then cd i18n/tortoisehg || die local x y keep for x in *.po; do keep=false for y in ${LINGUAS}; do if [[ ${y} == ${x%.po}* ]]; then keep=true break fi done ${keep} || rm "${x}" || die done cd "${S}" || die fi distutils-r1_python_prepare_all } python_compile_all() { use doc && emake -C doc html } python_install_all() { distutils-r1_python_install_all dodoc doc/ReadMe*.txt doc/TODO contrib/mergetools.rc if use doc ; then dohtml -r doc/build/html/ fi newicon -s scalable icons/scalable/apps/thg-logo.svg thg_logo.svg domenu contrib/thg.desktop } pkg_postinst() { elog "When startup of ${PN} fails with an API version mismatch error" elog "between dev-python/sip and dev-python/PyQt4 please rebuild" elog "dev-python/qscintilla-python." }
[gentoo-commits] gentoo-x86 commit in www-servers/apache: apache-2.4.12-r1.ebuild ChangeLog apache-2.4.16.ebuild
polynomial-c15/07/16 12:52:29 Modified: apache-2.4.12-r1.ebuild ChangeLog apache-2.4.16.ebuild Log: Fixed openssl dependency for alpn patch (bug #555070) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.3 www-servers/apache/apache-2.4.12-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/apache-2.4.12-r1.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/apache-2.4.12-r1.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/apache-2.4.12-r1.ebuild?r1=1.2&r2=1.3 Index: apache-2.4.12-r1.ebuild === RCS file: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.4.12-r1.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- apache-2.4.12-r1.ebuild 7 Jun 2015 19:25:58 - 1.2 +++ apache-2.4.12-r1.ebuild 16 Jul 2015 12:52:29 - 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/www-servers/apache/apache-2.4.12-r1.ebuild,v 1.2 2015/06/07 19:25:58 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.4.12-r1.ebuild,v 1.3 2015/07/16 12:52:29 polynomial-c Exp $ EAPI=5 @@ -126,6 +126,9 @@ IUSE="alpn" REQUIRED_USE="alpn? ( ssl )" +DEPEND+="alpn? ( >=dev-libs/openssl-1.0.2:0= )" +RDEPEND+="alpn? ( >=dev-libs/openssl-1.0.2:0= )" + pkg_setup() { # dependend critical modules which are not allowed in global scope due # to USE flag conditionals (bug #499260) 1.306www-servers/apache/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/ChangeLog?rev=1.306&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/ChangeLog?rev=1.306&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/ChangeLog?r1=1.305&r2=1.306 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v retrieving revision 1.305 retrieving revision 1.306 diff -u -r1.305 -r1.306 --- ChangeLog 16 Jul 2015 06:08:57 - 1.305 +++ ChangeLog 16 Jul 2015 12:52:29 - 1.306 @@ -1,6 +1,10 @@ # ChangeLog for www-servers/apache # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.305 2015/07/16 06:08:57 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.306 2015/07/16 12:52:29 polynomial-c Exp $ + + 16 Jul 2015; Lars Wendler apache-2.4.12-r1.ebuild, + apache-2.4.16.ebuild: + Fixed openssl dependency for alpn patch (bug #555070). *apache-2.4.16 (16 Jul 2015) 1.2 www-servers/apache/apache-2.4.16.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/apache-2.4.16.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/apache-2.4.16.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/apache-2.4.16.ebuild?r1=1.1&r2=1.2 Index: apache-2.4.16.ebuild === RCS file: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.4.16.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- apache-2.4.16.ebuild16 Jul 2015 06:08:57 - 1.1 +++ apache-2.4.16.ebuild16 Jul 2015 12:52:29 - 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/www-servers/apache/apache-2.4.16.ebuild,v 1.1 2015/07/16 06:08:57 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.4.16.ebuild,v 1.2 2015/07/16 12:52:29 polynomial-c Exp $ EAPI=5 @@ -126,6 +126,9 @@ IUSE="alpn" REQUIRED_USE="alpn? ( ssl )" +DEPEND+="alpn? ( >=dev-libs/openssl-1.0.2:0= )" +RDEPEND+="alpn? ( >=dev-libs/openssl-1.0.2:0= )" + pkg_setup() { # dependend critical modules which are not allowed in global scope due # to USE flag conditionals (bug #499260)
[gentoo-commits] gentoo-x86 commit in app-mobilephone/heimdall: ChangeLog heimdall-9999.ebuild
polynomial-c15/07/16 08:59:06 Modified: ChangeLog heimdall-.ebuild Log: Fixed live ebuild (bug #545596) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.12 app-mobilephone/heimdall/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/heimdall/ChangeLog?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/heimdall/ChangeLog?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/heimdall/ChangeLog?r1=1.11&r2=1.12 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-mobilephone/heimdall/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ChangeLog 7 Jun 2015 08:08:11 - 1.11 +++ ChangeLog 16 Jul 2015 08:59:06 - 1.12 @@ -1,6 +1,9 @@ # ChangeLog for app-mobilephone/heimdall # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/heimdall/ChangeLog,v 1.11 2015/06/07 08:08:11 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/heimdall/ChangeLog,v 1.12 2015/07/16 08:59:06 polynomial-c Exp $ + + 16 Jul 2015; Lars Wendler heimdall-.ebuild: + Fixed live ebuild (bug #545596). 07 Jun 2015; Justin Lecher metadata.xml: Add github to remote-id in metadata.xml 1.8 app-mobilephone/heimdall/heimdall-.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/heimdall/heimdall-.ebuild?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/heimdall/heimdall-.ebuild?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/heimdall/heimdall-.ebuild?r1=1.7&r2=1.8 Index: heimdall-.ebuild === RCS file: /var/cvsroot/gentoo-x86/app-mobilephone/heimdall/heimdall-.ebuild,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- heimdall-.ebuild17 Dec 2014 09:07:29 - 1.7 +++ heimdall-.ebuild16 Jul 2015 08:59:06 - 1.8 @@ -1,10 +1,12 @@ -# 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/app-mobilephone/heimdall/heimdall-.ebuild,v 1.7 2014/12/17 09:07:29 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/heimdall/heimdall-.ebuild,v 1.8 2015/07/16 08:59:06 polynomial-c Exp $ EAPI=5 -inherit autotools eutils qt4-r2 udev +CMAKE_IN_SOURCE_BUILD="true" + +inherit autotools eutils cmake-utils udev if [[ ${PV} != ]]; then SRC_URI="https://github.com/Benjamin-Dobell/Heimdall/archive/v${PV}.tar.gz -> ${P}.tar.gz" @@ -21,43 +23,36 @@ LICENSE="MIT" SLOT="0" -IUSE="qt4" +IUSE="qt5 static-libs" # virtual/libusb is not precise enough -RDEPEND=">=dev-libs/libusb-1.0.18:1= - qt4? ( dev-qt/qtcore:4= dev-qt/qtgui:4= )" +RDEPEND=">=dev-libs/libusb-1.0.18:1=[static-libs=] + qt5? ( dev-qt/qtwidgets:5= )" DEPEND="${RDEPEND} virtual/pkgconfig" src_prepare() { - rm -r libusb-1.0 || die - cd "${S}/heimdall" || die - edos2unix configure.ac Makefile.am || die - sed -i -e /sudo/d Makefile.am || die - eautoreconf + if ! use qt5 ; then + sed '/heimdall-frontend/d' \ + -i CMakeLists.txt || die + fi } src_configure() { - cd "${S}/libpit" || die - econf - - cd "${S}/heimdall" || die - econf - - if use qt4; then - cd "${S}/heimdall-frontend" || die - eqmake4 heimdall-frontend.pro OUTPUTDIR=/usr/bin || die - fi + cmake-utils_src_configure \ + $(cmake-utils_use_use static-libs STATIC_LIBS) } src_compile() { - emake -C libpit - emake -C heimdall - use qt4 && emake -C heimdall-frontend + cmake-utils_src_compile } src_install() { - emake -C heimdall DESTDIR="${D}" udevrulesdir="$(get_udevdir)/rules.d" install + # cmake-utils_src_install doesn't work + dobin "${S}"/bin/${PN} + use qt5 && dobin "${S}"/bin/${PN}-frontend + + insinto $(get_udevdir)/rules.d + doins "${S}"/${PN}/60-${PN}.rules dodoc Linux/README - use qt4 && emake -C heimdall-frontend INSTALL_ROOT="${D}" install }
[gentoo-commits] gentoo-x86 commit in x11-themes/qtcurve: qtcurve-1.8.18-r1.ebuild ChangeLog
polynomial-c15/07/16 07:31:24 Modified: ChangeLog Added:qtcurve-1.8.18-r1.ebuild Log: Revbump to fix a segfault in the gtk2 theme (bug #549292) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.93 x11-themes/qtcurve/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve/ChangeLog?rev=1.93&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve/ChangeLog?rev=1.93&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve/ChangeLog?r1=1.92&r2=1.93 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/x11-themes/qtcurve/ChangeLog,v retrieving revision 1.92 retrieving revision 1.93 diff -u -r1.92 -r1.93 --- ChangeLog 25 Aug 2014 20:52:02 - 1.92 +++ ChangeLog 16 Jul 2015 07:31:24 - 1.93 @@ -1,6 +1,12 @@ # ChangeLog for x11-themes/qtcurve -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve/ChangeLog,v 1.92 2014/08/25 20:52:02 polynomial-c Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve/ChangeLog,v 1.93 2015/07/16 07:31:24 polynomial-c Exp $ + +*qtcurve-1.8.18-r1 (16 Jul 2015) + + 16 Jul 2015; Lars Wendler + +qtcurve-1.8.18-r1.ebuild, +files/qtcurve-1.8.18-gtk2_segfault.patch: + Revbump to fix a segfault in the gtk2 theme (bug #549292). 25 Aug 2014; Lars Wendler qtcurve-1.8.18.ebuild, +files/qtcurve-1.8.18-remove_qt_filedialog_api.patch: 1.1 x11-themes/qtcurve/qtcurve-1.8.18-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve/qtcurve-1.8.18-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve/qtcurve-1.8.18-r1.ebuild?rev=1.1&content-type=text/plain Index: qtcurve-1.8.18-r1.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve/qtcurve-1.8.18-r1.ebuild,v 1.1 2015/07/16 07:31:24 polynomial-c Exp $ EAPI=5 KDE_REQUIRED="optional" inherit kde4-base DESCRIPTION="A set of widget styles for Qt and GTK2" HOMEPAGE="https://github.com/QtCurve/qtcurve"; if [[ ${PV} == ** ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/QtCurve/qtcurve.git"; KEYWORDS="" else SRC_URI="https://github.com/QtCurve/${PN}/archive/${PV/_/}.tar.gz -> ${P}.tar.gz https://github.com/QtCurve/qtcurve/commit/020b70404f6202490d5ca131f0ec084355cb98e3.patch -> ${PN}-1.8.18-dont_use_c++11.patch" KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" fi LICENSE="LGPL-2+" SLOT="0" IUSE="+X gtk kde nls +qt4 qt5 windeco" REQUIRED_USE="gtk? ( X ) windeco? ( kde X ) || ( gtk qt4 qt5 )" RDEPEND="X? ( x11-libs/libxcb x11-libs/libX11 ) gtk? ( x11-libs/gtk+:2 ) qt4? ( dev-qt/qtdbus:4 dev-qt/qtgui:4 dev-qt/qtsvg:4 ) qt5? ( dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 X? ( dev-qt/qtdbus:5 dev-qt/qtx11extras:5 ) ) kde? ( $(add_kdebase_dep systemsettings) windeco? ( $(add_kdebase_dep kwin) ) ) !x11-themes/gtk-engines-qtcurve" DEPEND="${RDEPEND} virtual/pkgconfig nls? ( sys-devel/gettext )" S="${WORKDIR}/${P/_/}" DOCS=( AUTHORS ChangeLog.md README.md TODO.md ) PATCHES=( "${DISTDIR}/${P}-dont_use_c++11.patch" "${FILESDIR}/${P}-remove_qt_filedialog_api.patch" "${FILESDIR}/${P}-gtk2_segfault.patch" ) pkg_setup() { # bug #498776 if ! version_is_at_least 4.7 $(gcc-version) ; then append-cxxflags -Doverride= fi use kde && kde4-base_pkg_setup } src_configure() { local mycmakeargs mycmakeargs=( $(cmake-utils_use_enable gtk GTK2) $(cmake-utils_use_enable qt4 QT4) $(cmake-utils_use_enable qt5 QT5) $(cmake-utils_use X QTC_ENABLE_X11 ) $(cmake-utils_use kde QTC_QT4_ENABLE_KDE ) $(cmake-utils_use windeco QTC_QT4_ENABLE_KWIN ) $(cmake-utils_use nls QTC_INSTALL_PO ) ) cmake-utils_src_configure }
[gentoo-commits] gentoo-x86 commit in x11-themes/qtcurve/files: qtcurve-1.8.18-gtk2_segfault.patch
polynomial-c15/07/16 07:31:24 Added:qtcurve-1.8.18-gtk2_segfault.patch Log: Revbump to fix a segfault in the gtk2 theme (bug #549292) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 x11-themes/qtcurve/files/qtcurve-1.8.18-gtk2_segfault.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve/files/qtcurve-1.8.18-gtk2_segfault.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/qtcurve/files/qtcurve-1.8.18-gtk2_segfault.patch?rev=1.1&content-type=text/plain Index: qtcurve-1.8.18-gtk2_segfault.patch === https://github.com/QtCurve/qtcurve-gtk2/issues/3 https://gist.github.com/anonymous/8e6e4ea32dabf03cf630 --- qtcurve-1.8.18/gtk2/style/qtcurve.c +++ qtcurve-1.8.18/gtk2/style/qtcurve.c @@ -372,7 +372,7 @@ } else if (!(qtSettings.app == GTK_APP_JAVA && widget && GTK_IS_LABEL(widget))) { if (state != GTK_STATE_PRELIGHT || opts.crHighlight || -strcmp(detail, "checkbutton") != 0) { +( detail != NULL && strcmp(detail, "checkbutton") != 0 )) { parent_class->draw_flat_box(style, window, state, shadow, area, widget, detail, x, y, width, height); }
[gentoo-commits] gentoo-x86 commit in x11-wm/icewm: icewm-1.3.8.ebuild icewm-1.3.10.ebuild ChangeLog icewm-1.3.9.ebuild
polynomial-c15/07/16 06:33:57 Modified: icewm-1.3.8.ebuild icewm-1.3.10.ebuild ChangeLog icewm-1.3.9.ebuild Log: Fixed dependency on x11-libs/gdk-pixbuf (bug #554900) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.8 x11-wm/icewm/icewm-1.3.8.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/icewm/icewm-1.3.8.ebuild?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/icewm/icewm-1.3.8.ebuild?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/icewm/icewm-1.3.8.ebuild?r1=1.7&r2=1.8 Index: icewm-1.3.8.ebuild === RCS file: /var/cvsroot/gentoo-x86/x11-wm/icewm/icewm-1.3.8.ebuild,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- icewm-1.3.8.ebuild 8 Apr 2015 17:29:20 - 1.7 +++ icewm-1.3.8.ebuild 16 Jul 2015 06:33:57 - 1.8 @@ -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-wm/icewm/icewm-1.3.8.ebuild,v 1.7 2015/04/08 17:29:20 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/icewm/icewm-1.3.8.ebuild,v 1.8 2015/07/16 06:33:57 polynomial-c Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) @@ -24,7 +24,7 @@ S=${WORKDIR}/${P/_} RDEPEND=" - x11-libs/gdk-pixbuf:2 + x11-libs/gdk-pixbuf:2[X] x11-libs/libX11 x11-libs/libXrandr x11-libs/libXext 1.2 x11-wm/icewm/icewm-1.3.10.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/icewm/icewm-1.3.10.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/icewm/icewm-1.3.10.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/icewm/icewm-1.3.10.ebuild?r1=1.1&r2=1.2 Index: icewm-1.3.10.ebuild === RCS file: /var/cvsroot/gentoo-x86/x11-wm/icewm/icewm-1.3.10.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- icewm-1.3.10.ebuild 7 Jul 2015 09:55:50 - 1.1 +++ icewm-1.3.10.ebuild 16 Jul 2015 06:33:57 - 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-wm/icewm/icewm-1.3.10.ebuild,v 1.1 2015/07/07 09:55:50 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/icewm/icewm-1.3.10.ebuild,v 1.2 2015/07/16 06:33:57 polynomial-c Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) @@ -25,7 +25,7 @@ RDEPEND=" media-libs/fontconfig - x11-libs/gdk-pixbuf:2 + x11-libs/gdk-pixbuf:2[X] x11-libs/libX11 x11-libs/libXrandr x11-libs/libXext 1.173x11-wm/icewm/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/icewm/ChangeLog?rev=1.173&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/icewm/ChangeLog?rev=1.173&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/icewm/ChangeLog?r1=1.172&r2=1.173 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/x11-wm/icewm/ChangeLog,v retrieving revision 1.172 retrieving revision 1.173 diff -u -r1.172 -r1.173 --- ChangeLog 7 Jul 2015 09:55:50 - 1.172 +++ ChangeLog 16 Jul 2015 06:33:57 - 1.173 @@ -1,6 +1,10 @@ # ChangeLog for x11-wm/icewm # Copyright 1999- Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/icewm/ChangeLog,v 1.172 2015/07/07 09:55:50 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/icewm/ChangeLog,v 1.173 2015/07/16 06:33:57 polynomial-c Exp $ + + 16 Jul 2015; Lars Wendler icewm-1.3.8.ebuild, + icewm-1.3.9.ebuild, icewm-1.3.10.ebuild: + Fixed dependency on x11-libs/gdk-pixbuf (bug #554900). *icewm-1.3.10 (07 Jul 2015) 1.4 x11-wm/icewm/icewm-1.3.9.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/icewm/icewm-1.3.9.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/icewm/icewm-1.3.9.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/icewm/icewm-1.3.9.ebuild?r1=1.3&r2=1.4 Index: icewm-1.3.9.ebuild === RCS file: /var/cvsroot/gentoo-x86/x11-wm/icewm/icewm-1.3.9.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- icewm-1.3.9.ebuild 8 Apr 2015 17:29:20 - 1.3 +++ icewm-1.3.9.ebuild 16 Jul 2015 06:33:57 - 1.4 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed unde
[gentoo-commits] gentoo-x86 commit in www-servers/apache: ChangeLog apache-2.4.16.ebuild
polynomial-c15/07/16 06:08:57 Modified: ChangeLog Added:apache-2.4.16.ebuild Log: Version bump (bug #554948) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.305www-servers/apache/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/ChangeLog?rev=1.305&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/ChangeLog?rev=1.305&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/ChangeLog?r1=1.304&r2=1.305 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v retrieving revision 1.304 retrieving revision 1.305 diff -u -r1.304 -r1.305 --- ChangeLog 7 Jun 2015 19:25:58 - 1.304 +++ ChangeLog 16 Jul 2015 06:08:57 - 1.305 @@ -1,6 +1,11 @@ # ChangeLog for www-servers/apache # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.304 2015/06/07 19:25:58 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.305 2015/07/16 06:08:57 polynomial-c Exp $ + +*apache-2.4.16 (16 Jul 2015) + + 16 Jul 2015; Lars Wendler +apache-2.4.16.ebuild: + Version bump (bug #554948). 07 Jun 2015; Pacho Ramos -apache-2.4.12.ebuild, apache-2.4.12-r1.ebuild, metadata.xml: 1.1 www-servers/apache/apache-2.4.16.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/apache-2.4.16.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/apache/apache-2.4.16.ebuild?rev=1.1&content-type=text/plain Index: apache-2.4.16.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.4.16.ebuild,v 1.1 2015/07/16 06:08:57 polynomial-c Exp $ EAPI=5 # latest gentoo apache files GENTOO_PATCHSTAMP="20140731" GENTOO_DEVELOPER="polynomial-c" GENTOO_PATCHNAME="gentoo-apache-2.4.10-r1" # IUSE/USE_EXPAND magic IUSE_MPMS_FORK="peruser prefork" IUSE_MPMS_THREAD="event worker" # << obsolete modules: # authn_default authz_default mem_cache # mem_cache is replaced by cache_disk # ?? buggy modules # proxy_scgi: startup error: undefined symbol "ap_proxy_release_connection", no fix found # >> added modules for reason: # compat: compatibility with 2.2 access control # authz_host: new module for access control # authn_core: functionality provided by authn_alias in previous versions # authz_core: new module, provides core authorization capabilities # cache_disk: replacement for mem_cache # lbmethod_byrequests: Split off from mod_proxy_balancer in 2.3 # lbmethod_bytraffic: Split off from mod_proxy_balancer in 2.3 # lbmethod_bybusyness: Split off from mod_proxy_balancer in 2.3 # lbmethod_heartbeat: Split off from mod_proxy_balancer in 2.3 # slotmem_shm: Slot-based shared memory provider (for lbmethod_byrequests). # socache_shmcb: shared object cache provider. Default config with ssl needs it # unixd: fixes startup error: Invalid command 'User' IUSE_MODULES="access_compat actions alias asis auth_basic auth_digest authn_alias authn_anon authn_core authn_dbd authn_dbm authn_file authz_core authz_dbd authz_dbm authz_groupfile authz_host authz_owner authz_user autoindex cache cache_disk cern_meta charset_lite cgi cgid dav dav_fs dav_lock dbd deflate dir dumpio env expires ext_filter file_cache filter headers ident imagemap include info lbmethod_byrequests lbmethod_bytraffic lbmethod_bybusyness lbmethod_heartbeat log_config log_forensic logio macro mime mime_magic negotiation proxy proxy_ajp proxy_balancer proxy_connect proxy_ftp proxy_http proxy_scgi proxy_fcgi proxy_wstunnel rewrite ratelimit remoteip reqtimeout setenvif slotmem_shm speling socache_shmcb status substitute unique_id userdir usertrack unixd version vhost_alias" # The following are also in the source as of this version, but are not available # for user selection: # bucketeer case_filter case_filter_in echo http isapi optional_fn_export # optional_fn_import optional_hook_export optional_hook_import # inter-module dependencies # TODO: this may still be incomplete MODULE_DEPENDS=" dav_fs:dav dav_lock:dav deflate:filter cache_disk:cache ext_filter:filter file_cache:cache lbmethod_byrequests:proxy_balancer lbmethod_byrequests:slotmem_shm lbmethod_bytraffic:proxy_balancer lbmethod_bybusyness:proxy_balancer lbmethod_heartbeat:proxy_balancer log_forensic:log_config logio:log_config cache_disk:cache mime_magic:mime proxy_ajp:proxy proxy_bal
[gentoo-commits] gentoo-x86 commit in app-admin/apache-tools: ChangeLog apache-tools-2.4.16.ebuild apache-tools-2.4.12.ebuild
polynomial-c15/07/16 06:08:19 Modified: ChangeLog apache-tools-2.4.12.ebuild Added:apache-tools-2.4.16.ebuild Log: Version bump (bug #554948). Slightly tweaked openssl dependency (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.206app-admin/apache-tools/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/ChangeLog?rev=1.206&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/ChangeLog?rev=1.206&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/ChangeLog?r1=1.205&r2=1.206 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-admin/apache-tools/ChangeLog,v retrieving revision 1.205 retrieving revision 1.206 diff -u -r1.205 -r1.206 --- ChangeLog 16 Mar 2015 21:58:00 - 1.205 +++ ChangeLog 16 Jul 2015 06:08:19 - 1.206 @@ -1,6 +1,12 @@ # ChangeLog for app-admin/apache-tools # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/ChangeLog,v 1.205 2015/03/16 21:58:00 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/ChangeLog,v 1.206 2015/07/16 06:08:19 polynomial-c Exp $ + +*apache-tools-2.4.16 (16 Jul 2015) + + 16 Jul 2015; Lars Wendler + apache-tools-2.4.12.ebuild, +apache-tools-2.4.16.ebuild: + Version bump (bug #554948). Slightly tweaked openssl dependency. 16 Mar 2015; Lars Wendler apache-tools-2.2.29.ebuild, apache-tools-2.4.12.ebuild: 1.3 app-admin/apache-tools/apache-tools-2.4.12.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/apache-tools-2.4.12.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/apache-tools-2.4.12.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/apache-tools-2.4.12.ebuild?r1=1.2&r2=1.3 Index: apache-tools-2.4.12.ebuild === RCS file: /var/cvsroot/gentoo-x86/app-admin/apache-tools/apache-tools-2.4.12.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- apache-tools-2.4.12.ebuild 16 Mar 2015 21:58:00 - 1.2 +++ apache-tools-2.4.12.ebuild 16 Jul 2015 06:08:19 - 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/app-admin/apache-tools/apache-tools-2.4.12.ebuild,v 1.2 2015/03/16 21:58:00 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/apache-tools-2.4.12.ebuild,v 1.3 2015/07/16 06:08:19 polynomial-c Exp $ EAPI=5 inherit flag-o-matic eutils multilib toolchain-funcs @@ -20,7 +20,7 @@ dev-libs/expat dev-libs/libpcre kernel_linux? ( sys-apps/util-linux ) - ssl? ( dev-libs/openssl )" + ssl? ( dev-libs/openssl:0= )" DEPEND="${RDEPEND} sys-devel/libtool" 1.1 app-admin/apache-tools/apache-tools-2.4.16.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/apache-tools-2.4.16.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/apache-tools/apache-tools-2.4.16.ebuild?rev=1.1&content-type=text/plain Index: apache-tools-2.4.16.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-admin/apache-tools/apache-tools-2.4.16.ebuild,v 1.1 2015/07/16 06:08:19 polynomial-c Exp $ EAPI=5 inherit flag-o-matic eutils multilib toolchain-funcs DESCRIPTION="Useful Apache tools - htdigest, htpasswd, ab, htdbm" HOMEPAGE="http://httpd.apache.org/"; SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris" IUSE="ssl" RESTRICT="test" RDEPEND=">=dev-libs/apr-1.5.0:1 dev-libs/apr-util:1 dev-libs/expat dev-libs/libpcre kernel_linux? ( sys-apps/util-linux ) ssl? ( dev-libs/openssl:0= )" DEPEND="${RDEPEND} sys-devel/libtool" S="${WORKDIR}/httpd-${PV}" src_prepare() { epatch "${FILESDIR}"/${PN}-2.4.7-Makefile.patch #459446 # This package really should upgrade to using pcre's .pc file. cat <<-\EOF >"${T}"/pcre-config #!/bin/sh [ "${flag}" = "--version" ] && set -- --modversion
[gentoo-commits] gentoo-x86 commit in eclass: apache-2.eclass ChangeLog
polynomial-c15/07/16 06:06:59 Modified: apache-2.eclass ChangeLog Log: Added slot dependency for openssl. Raised minimum required EAPI version to 5. Revision ChangesPath 1.42 eclass/apache-2.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/apache-2.eclass?rev=1.42&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/apache-2.eclass?rev=1.42&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/apache-2.eclass?r1=1.41&r2=1.42 Index: apache-2.eclass === RCS file: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- apache-2.eclass 7 Jun 2015 19:22:36 - 1.41 +++ apache-2.eclass 16 Jul 2015 06:06:59 - 1.42 @@ -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/eclass/apache-2.eclass,v 1.41 2015/06/07 19:22:36 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.42 2015/07/16 06:06:59 polynomial-c Exp $ # @ECLASS: apache-2.eclass # @MAINTAINER: @@ -16,8 +16,8 @@ && die "Do not use this eclass with anything else than www-servers/apache ebuilds!" case ${EAPI:-0} in - 0|1|2|3) - die "This eclass requires >=EAPI-4" + 0|1|2|3|4) + die "This eclass requires >=EAPI-5" ;; esac @@ -106,7 +106,7 @@ apache2_modules_deflate? ( sys-libs/zlib ) apache2_modules_mime? ( app-misc/mime-types ) ldap? ( =net-nds/openldap-2* ) - ssl? ( >=dev-libs/openssl-0.9.8m ) + ssl? ( >=dev-libs/openssl-0.9.8m:0= ) !=www-servers/apache-1*" RDEPEND+=" ${DEPEND} selinux? ( sec-policy/selinux-apache )" 1.1711 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1711&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1711&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1710&r2=1.1711 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.1710 retrieving revision 1.1711 diff -u -r1.1710 -r1.1711 --- ChangeLog 15 Jul 2015 09:03:11 - 1.1710 +++ ChangeLog 16 Jul 2015 06:06:59 - 1.1711 @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1710 2015/07/15 09:03:11 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1711 2015/07/16 06:06:59 polynomial-c Exp $ + + 16 Jul 2015; Lars Wendler apache-2.eclass: + Added slot dependency for openssl. Raised minimum required EAPI version to 5. 15 Jul 2015; Andreas K. Huettel kde4-meta.eclass: Fix unpacking of noakonadi branch
[gentoo-commits] gentoo-x86 commit in net-ftp/pure-ftpd: pure-ftpd-1.0.40.ebuild ChangeLog pure-ftpd-1.0.41.ebuild
polynomial-c15/07/16 05:47:30 Modified: pure-ftpd-1.0.40.ebuild ChangeLog pure-ftpd-1.0.41.ebuild Log: We need openssl with bindist USE flag being disabled (bug #554568). Restored ~alpha and ~sparc KEYWORDS for pure-ftpd-1.0.41 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.9 net-ftp/pure-ftpd/pure-ftpd-1.0.40.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.40.ebuild?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.40.ebuild?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.40.ebuild?r1=1.8&r2=1.9 Index: pure-ftpd-1.0.40.ebuild === RCS file: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.40.ebuild,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- pure-ftpd-1.0.40.ebuild 3 Jul 2015 08:28:51 - 1.8 +++ pure-ftpd-1.0.40.ebuild 16 Jul 2015 05:47:30 - 1.9 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.40.ebuild,v 1.8 2015/07/03 08:28:51 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.40.ebuild,v 1.9 2015/07/16 05:47:30 polynomial-c Exp $ EAPI=5 inherit eutils confutils flag-o-matic @@ -25,7 +25,7 @@ mysql? ( virtual/mysql ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql:= ) - ssl? ( >=dev-libs/openssl-0.9.6g:0= ) + ssl? ( >=dev-libs/openssl-0.9.6g:0=[-bindist] ) sysquota? ( sys-fs/quota[-rpc] ) xinetd? ( virtual/inetd )" 1.167net-ftp/pure-ftpd/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?rev=1.167&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?rev=1.167&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/ChangeLog?r1=1.166&r2=1.167 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v retrieving revision 1.166 retrieving revision 1.167 diff -u -r1.166 -r1.167 --- ChangeLog 3 Jul 2015 08:28:51 - 1.166 +++ ChangeLog 16 Jul 2015 05:47:30 - 1.167 @@ -1,6 +1,11 @@ # ChangeLog for net-ftp/pure-ftpd # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.166 2015/07/03 08:28:51 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.167 2015/07/16 05:47:30 polynomial-c Exp $ + + 16 Jul 2015; Lars Wendler pure-ftpd-1.0.40.ebuild, + pure-ftpd-1.0.41.ebuild: + We need openssl with bindist USE flag being disabled (bug #554568). Restored + ~alpha and ~sparc KEYWORDS for pure-ftpd-1.0.41. 03 Jul 2015; Agostino Sarubbo pure-ftpd-1.0.40.ebuild: Stable for sparc, wrt bug #552254 1.2 net-ftp/pure-ftpd/pure-ftpd-1.0.41.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.41.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.41.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.41.ebuild?r1=1.1&r2=1.2 Index: pure-ftpd-1.0.41.ebuild === RCS file: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.41.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- pure-ftpd-1.0.41.ebuild 30 Jun 2015 07:39:02 - 1.1 +++ pure-ftpd-1.0.41.ebuild 16 Jul 2015 05:47:30 - 1.2 @@ -1,11 +1,11 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.41.ebuild,v 1.1 2015/06/30 07:39:02 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.41.ebuild,v 1.2 2015/07/16 05:47:30 polynomial-c Exp $ EAPI=5 inherit eutils confutils flag-o-matic -KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" DESCRIPTION="Fast, production-quality, standard-conformant FTP server" HOMEPAGE="http://www.pureftpd.org/"; @@ -25,7 +25,7 @@ mysql? ( virtual/mysql ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql:= ) - ssl? ( >=dev-libs/openssl-0.9.6g:0= ) + ssl? ( >=dev-libs/openssl-0.9.6g:0=[-bindist] ) sysquota? ( sys-fs/
[gentoo-commits] gentoo-x86 commit in app-emulation/virtualbox-guest-additions/files: virtualbox-guest-additions-5-localconfig
polynomial-c15/07/14 14:33:13 Added:virtualbox-guest-additions-5-localconfig Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 app-emulation/virtualbox-guest-additions/files/virtualbox-guest-additions-5-localconfig file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox-guest-additions/files/virtualbox-guest-additions-5-localconfig?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox-guest-additions/files/virtualbox-guest-additions-5-localconfig?rev=1.1&content-type=text/plain Index: virtualbox-guest-additions-5-localconfig === # -*- Makefile -*- # # Overwrite some default kBuild settings # # # Copyright (C) 2006-2008 Sun Microsystems, Inc. # # This file is part of VirtualBox Open Source Edition (OSE), as # available from http://www.virtualbox.org. This file 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, # in version 2 as it comes in the "COPYING" file of the VirtualBox OSE # distribution. VirtualBox OSE is distributed in the hope that it will # be useful, but WITHOUT ANY WARRANTY of any kind. # # don't build testcases to save time, they are not needed for the package VBOX_WITH_TESTCASES := VBOX_WITH_VALIDATIONKIT := KBUILD_MSG_STYLE:= brief ## paths, origin, hardening VBOX_WITH_HARDENING:= 2 VBOX_WITH_ORIGIN := VBOX_ONLY_ADDITIONS:= 1 ## don't build with -Werror VBOX_WITH_WARNINGS_AS_ERRORS :=
[gentoo-commits] gentoo-x86 commit in app-emulation/virtualbox-guest-additions: ChangeLog virtualbox-guest-additions-5.0.0.ebuild virtualbox-guest-additions-4.3.30.ebuild virtualbox-guest-additions-4.
polynomial-c15/07/14 14:33:14 Modified: ChangeLog Added:virtualbox-guest-additions-5.0.0.ebuild virtualbox-guest-additions-4.3.30.ebuild Removed: virtualbox-guest-additions-4.3.26.ebuild virtualbox-guest-additions-4.3.18.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.164app-emulation/virtualbox-guest-additions/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox-guest-additions/ChangeLog?rev=1.164&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox-guest-additions/ChangeLog?rev=1.164&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox-guest-additions/ChangeLog?r1=1.163&r2=1.164 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-emulation/virtualbox-guest-additions/ChangeLog,v retrieving revision 1.163 retrieving revision 1.164 diff -u -r1.163 -r1.164 --- ChangeLog 14 Jun 2015 11:53:19 - 1.163 +++ ChangeLog 14 Jul 2015 14:33:13 - 1.164 @@ -1,6 +1,17 @@ # ChangeLog for app-emulation/virtualbox-guest-additions # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox-guest-additions/ChangeLog,v 1.163 2015/06/14 11:53:19 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox-guest-additions/ChangeLog,v 1.164 2015/07/14 14:33:13 polynomial-c Exp $ + +*virtualbox-guest-additions-5.0.0 (14 Jul 2015) +*virtualbox-guest-additions-4.3.30 (14 Jul 2015) + + 14 Jul 2015; Lars Wendler + -virtualbox-guest-additions-4.3.18.ebuild, + -virtualbox-guest-additions-4.3.26.ebuild, + +virtualbox-guest-additions-4.3.30.ebuild, + +virtualbox-guest-additions-5.0.0.ebuild, + +files/virtualbox-guest-additions-5-localconfig: + Version bump. Removed old. 14 Jun 2015; Mikle Kolyada virtualbox-guest-additions-4.3.28.ebuild: 1.1 app-emulation/virtualbox-guest-additions/virtualbox-guest-additions-5.0.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox-guest-additions/virtualbox-guest-additions-5.0.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox-guest-additions/virtualbox-guest-additions-5.0.0.ebuild?rev=1.1&content-type=text/plain Index: virtualbox-guest-additions-5.0.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox-guest-additions/virtualbox-guest-additions-5.0.0.ebuild,v 1.1 2015/07/14 14:33:13 polynomial-c Exp $ EAPI=5 inherit eutils linux-mod systemd user toolchain-funcs MY_PV="${PV/beta/BETA}" MY_PV="${MY_PV/rc/RC}" MY_P=VirtualBox-${MY_PV} DESCRIPTION="VirtualBox kernel modules and user-space tools for Gentoo guests" HOMEPAGE="http://www.virtualbox.org/"; SRC_URI="http://download.virtualbox.org/virtualbox/${MY_PV}/${MY_P}.tar.bz2"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="X" RDEPEND="X? ( ~x11-drivers/xf86-video-virtualbox-${PV} x11-apps/xrandr x11-apps/xrefresh x11-libs/libXmu x11-libs/libX11 x11-libs/libXt x11-libs/libXext x11-libs/libXau x11-libs/libXdmcp x11-libs/libSM x11-libs/libICE x11-proto/glproto ) sys-apps/dbus !!x11-drivers/xf86-input-virtualbox" DEPEND="${RDEPEND} >=dev-util/kbuild-0.1.9998_pre20131130 >=dev-lang/yasm-0.6.2 sys-devel/bin86 sys-libs/pam sys-power/iasl X? ( x11-proto/renderproto ) !X? ( x11-proto/xproto )" BUILD_TARGETS="all" BUILD_TARGET_ARCH="${ARCH}" MODULE_NAMES="vboxguest(misc:${WORKDIR}/vboxguest:${WORKDIR}/vboxguest) vboxsf(misc:${WORKDIR}/vboxsf:${WORKDIR}/vboxsf)" S="${WORKDIR}/${MY_P}" pkg_setup() { linux-mod_pkg_setup BUILD_PARAMS="KERN_DIR=${KV_OUT_DIR} KERNOUT=${KV_OUT_DIR}" enewgroup vboxguest enewuser vboxguest -1 /bin/sh /dev/null vboxguest # automount Error: VBoxServiceAutoMountWorker: Group "vboxsf" does not exist enewgroup vboxsf } src_unpack() { unpack ${A} # Create and unpack a tarball with the sources of the Linux guest # kernel modules, to include all the needed files "${S}"/src/VBox/Additions/linux/export_modules "${WORKDIR}/vbox-kmod.tar.gz" unpack ./vbox-kmod.tar.gz # Remove shipped binaries (kBuild,yasm), see bug #232775
[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-virtualbox/files: xf86-video-virtualbox-5.0.0_beta3-configure_checks.patch xf86-video-virtualbox-5-localconfig
polynomial-c15/07/14 14:32:42 Added: xf86-video-virtualbox-5.0.0_beta3-configure_checks.patch xf86-video-virtualbox-5-localconfig Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 x11-drivers/xf86-video-virtualbox/files/xf86-video-virtualbox-5.0.0_beta3-configure_checks.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-virtualbox/files/xf86-video-virtualbox-5.0.0_beta3-configure_checks.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-virtualbox/files/xf86-video-virtualbox-5.0.0_beta3-configure_checks.patch?rev=1.1&content-type=text/plain Index: xf86-video-virtualbox-5.0.0_beta3-configure_checks.patch === --- VirtualBox-5.0.0_BETA3/configure +++ VirtualBox-5.0.0_BETA3/configure @@ -1258,10 +1258,7 @@ XCloseDisplay(dpy); } EOF - [ -n "$INCX11" ] && I_INCX11=`prefix_I "$INCX11"` - if test_compile "$LIBX11 $I_INCX11" Xlibs Xlibs; then -log_success "found" - fi + test_compile "$LIBX11 $I_INCX11" Xlibs Xlibs } @@ -1415,21 +1412,6 @@ #include extern "C" int main(void) { - Display *dpy; - int major, minor; - - dpy = XOpenDisplay(NULL); - if (dpy) - { -Bool glx_version = glXQueryVersion(dpy, &major, &minor); -XCloseDisplay(dpy); -if (glx_version) -{ - printf("found version %u.%u, OK.\n", major, minor); - return 0; -} - } - printf("found (inactive), OK.\n"); return 0; } EOF @@ -2706,7 +2688,6 @@ # don't check for yasm for the time beeing as 0.40 and 0.50 both have known bugs # [ "$OS" != "darwin" ] && check_yasm [ "$OS" != "darwin" ] && check_xsltproc - [ "$OS" != "darwin" ] && check_mkisofs fi # the libraries @@ -2774,7 +2755,6 @@ check_compiler_h [ $ONLY_ADDITIONS -eq 0 -a "$BUILD_MACHINE" = "amd64" -a $WITH_VMMRAW -eq 1 ] && check_32bit # tools/common/makeself* - [ $OSE -ge 1 ] && check_makeself fi [ -n "$SETUP_WINE" ] && setup_wine 1.1 x11-drivers/xf86-video-virtualbox/files/xf86-video-virtualbox-5-localconfig file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-virtualbox/files/xf86-video-virtualbox-5-localconfig?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-virtualbox/files/xf86-video-virtualbox-5-localconfig?rev=1.1&content-type=text/plain Index: xf86-video-virtualbox-5-localconfig === # -*- Makefile -*- # # Overwrite some default kBuild settings # # # Copyright (C) 2006-2008 Sun Microsystems, Inc. # # This file is part of VirtualBox Open Source Edition (OSE), as # available from http://www.virtualbox.org. This file 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, # in version 2 as it comes in the "COPYING" file of the VirtualBox OSE # distribution. VirtualBox OSE is distributed in the hope that it will # be useful, but WITHOUT ANY WARRANTY of any kind. # # don't build testcases to save time, they are not needed for the package VBOX_WITH_TESTCASES := VBOX_WITH_VALIDATIONKIT := KBUILD_MSG_STYLE:= brief ## paths, origin, hardening VBOX_WITH_HARDENING:= 2 VBOX_WITH_ORIGIN := VBOX_ONLY_ADDITIONS:= 1 TEMPLATE_VBOXGUESTR3XF86MOD_LDFLAGS.release = TEMPLATE_VBOXGUESTR3XORGMOD_LDFLAGS = $(TEMPLATE_VBOXGUESTR3DLL_LDFLAGS)
[gentoo-commits] gentoo-x86 commit in app-emulation/virtualbox: virtualbox-5.0.0.ebuild ChangeLog virtualbox-4.3.30.ebuild virtualbox-4.3.26.ebuild virtualbox-4.3.18.ebuild
polynomial-c15/07/14 14:32:07 Modified: ChangeLog Added:virtualbox-5.0.0.ebuild virtualbox-4.3.30.ebuild Removed: virtualbox-4.3.26.ebuild virtualbox-4.3.18.ebuild Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.203app-emulation/virtualbox/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox/ChangeLog?rev=1.203&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox/ChangeLog?rev=1.203&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox/ChangeLog?r1=1.202&r2=1.203 Index: ChangeLog === RCS file: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/ChangeLog,v retrieving revision 1.202 retrieving revision 1.203 diff -u -r1.202 -r1.203 --- ChangeLog 14 Jun 2015 11:53:19 - 1.202 +++ ChangeLog 14 Jul 2015 14:32:07 - 1.203 @@ -1,6 +1,15 @@ # ChangeLog for app-emulation/virtualbox # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/ChangeLog,v 1.202 2015/06/14 11:53:19 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/ChangeLog,v 1.203 2015/07/14 14:32:07 polynomial-c Exp $ + +*virtualbox-5.0.0 (14 Jul 2015) +*virtualbox-4.3.30 (14 Jul 2015) + + 14 Jul 2015; Lars Wendler + -virtualbox-4.3.18.ebuild, -virtualbox-4.3.26.ebuild, + +virtualbox-4.3.30.ebuild, +virtualbox-5.0.0.ebuild, + +files/virtualbox-5-localconfig: + Version bump. Removed old. 14 Jun 2015; Mikle Kolyada virtualbox-4.3.28.ebuild: x86 stable wrt bug #551866 1.1 app-emulation/virtualbox/virtualbox-5.0.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox/virtualbox-5.0.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox/virtualbox-5.0.0.ebuild?rev=1.1&content-type=text/plain Index: virtualbox-5.0.0.ebuild === # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/virtualbox-5.0.0.ebuild,v 1.1 2015/07/14 14:32:07 polynomial-c Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit eutils fdo-mime flag-o-matic java-pkg-opt-2 linux-info multilib pax-utils python-single-r1 qt4-r2 toolchain-funcs udev MY_PV="${PV/beta/BETA}" MY_PV="${MY_PV/rc/RC}" MY_P=VirtualBox-${MY_PV} SRC_URI="http://download.virtualbox.org/virtualbox/${MY_PV}/${MY_P}.tar.bz2 http://dev.gentoo.org/~polynomial-c/${PN}/patchsets/${PN}-5.0.0_beta3-patches-01.tar.xz"; S="${WORKDIR}/${MY_P}" DESCRIPTION="Family of powerful x86 virtualization products for enterprise as well as home use" HOMEPAGE="http://www.virtualbox.org/"; LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="alsa doc headless java pam pulseaudio +opengl python +qt4 +sdk +udev vboxwebsrv vnc" RDEPEND="!app-emulation/virtualbox-bin ~app-emulation/virtualbox-modules-${PV} dev-libs/libIDL >=dev-libs/libxslt-1.1.19 net-misc/curl dev-libs/openssl:0= dev-libs/libxml2 media-libs/libpng:0= media-libs/libvpx sys-libs/zlib !headless? ( qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 opengl? ( dev-qt/qtopengl:4 ) x11-libs/libXinerama ) opengl? ( virtual/opengl media-libs/freeglut ) x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXmu x11-libs/libXt media-libs/libsdl:0[X,video] ) java? ( || ( virtual/jre:1.7 virtual/jre:1.6 ) ) udev? ( >=virtual/udev-171 ) vnc? ( >=net-libs/libvncserver-0.9.9 )" DEPEND="${RDEPEND} >=dev-util/kbuild-0.1.9998_pre20131130 >=dev-lang/yasm-0.6.2 sys-devel/bin86 sys-power/iasl pam? ( sys-libs/pam ) sys-libs/libcap doc? ( dev-texlive/texlive-basic dev-texlive/texlive-latex dev-texlive/texlive-latexrecommended dev-texlive/texlive-latexextra dev-texlive/texlive-fontsrecommended dev-texlive/texlive-fontsextra ) java? ( || ( virtual/jdk:1.7 virtual/jdk:1.6 ) ) virtual/pkgconfig alsa? ( >=media-libs/alsa-lib-1.0.13 ) !headless? ( x11-libs/libXinerama ) pulseaudio? ( media-sound/pulseaudio ) vboxwebsrv? ( net-libs/gsoap[-gnutls(-)] ) ${PYTHON_DEPS}"
[gentoo-commits] gentoo-x86 commit in app-emulation/virtualbox/files: virtualbox-5-localconfig
polynomial-c15/07/14 14:32:07 Added:virtualbox-5-localconfig Log: Version bump. Removed old (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 981CA6FC) Revision ChangesPath 1.1 app-emulation/virtualbox/files/virtualbox-5-localconfig file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox/files/virtualbox-5-localconfig?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/virtualbox/files/virtualbox-5-localconfig?rev=1.1&content-type=text/plain Index: virtualbox-5-localconfig === # -*- Makefile -*- # # Overwrite some default kBuild settings # # # Copyright (C) 2006-2008 Sun Microsystems, Inc. # # This file is part of VirtualBox Open Source Edition (OSE), as # available from http://www.virtualbox.org. This file 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, # in version 2 as it comes in the "COPYING" file of the VirtualBox OSE # distribution. VirtualBox OSE is distributed in the hope that it will # be useful, but WITHOUT ANY WARRANTY of any kind. # # shut up wine complaining about unknown locale EXEC_X86_WIN32 := wine # don't build testcases to save time, they are not needed for the package VBOX_WITH_TESTCASES := VBOX_WITH_VALIDATIONKIT := VBOX_DOCBOOK_WITH_LATEX := 1 KBUILD_MSG_STYLE:= brief ## paths, origin, hardening VBOX_WITH_HARDENING:= 1 VBOX_WITH_ORIGIN := VBOX_PATH_APP_PRIVATE_ARCH := /usr/MY_LIBDIR/virtualbox VBOX_PATH_SHARED_LIBS := $(VBOX_PATH_APP_PRIVATE_ARCH) VBOX_WITH_RUNPATH := $(VBOX_PATH_APP_PRIVATE_ARCH) VBOX_PATH_APP_PRIVATE := /usr/share/virtualbox VBOX_PATH_APP_DOCS = $(VBOX_PATH_PACKAGE_DOCS) ## don't build unwanted/splitted stuff VBOX_WITHOUT_ADDITIONS := 1 VBOX_WITH_VBOXDRV := VBOX_WITH_VBOXBFE := VBOX_WITH_KCHMVIEWER := ## don't build with -Werror VBOX_WITH_WARNINGS_AS_ERRORS :=