ryao 14/07/31 17:41:30 Modified: ChangeLog Added: lz4-0_p120.ebuild Log: Bump to upstream r120; Keywords on alpha, hppa and ia64 are dropped because valgrind is unavailable on those architectures; We now pull from github, so future updates will be easier (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xBEE84C64)
Revision Changes Path 1.24 app-arch/lz4/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lz4/ChangeLog?rev=1.24&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lz4/ChangeLog?rev=1.24&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lz4/ChangeLog?r1=1.23&r2=1.24 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-arch/lz4/ChangeLog,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- ChangeLog 24 Jul 2014 21:19:18 -0000 1.23 +++ ChangeLog 31 Jul 2014 17:41:30 -0000 1.24 @@ -1,6 +1,13 @@ # ChangeLog for app-arch/lz4 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/lz4/ChangeLog,v 1.23 2014/07/24 21:19:18 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/lz4/ChangeLog,v 1.24 2014/07/31 17:41:30 ryao Exp $ + +*lz4-0_p120 (31 Jul 2014) + + 31 Jul 2014; Richard Yao <[email protected]> +lz4-0_p120.ebuild: + Bump to upstream r120; Keywords on alpha, hppa and ia64 are dropped because + valgrind is unavailable on those architectures; We now pull from github, so + future updates will be easier 24 Jul 2014; Michał Górny <[email protected]> lz4-9999.ebuild: Use the development branch. Switch back to plain Makefile which is better 1.1 app-arch/lz4/lz4-0_p120.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lz4/lz4-0_p120.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/lz4/lz4-0_p120.ebuild?rev=1.1&content-type=text/plain Index: lz4-0_p120.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-arch/lz4/lz4-0_p120.ebuild,v 1.1 2014/07/31 17:41:30 ryao Exp $ EAPI=5 inherit multilib multilib-minimal if [[ ${PV} == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/Cyan4973/lz4.git" EGIT_BRANCH=dev else MY_PV="r${PV##0_p}" MY_P="${PN}-${MY_PV}" SRC_URI="https://github.com/Cyan4973/lz4/archive/${MY_PV}.tar.gz -> ${MY_P}.tar.gz" KEYWORDS="~amd64 ~arm ~arm64 ~mips ~s390 ~x86 ~amd64-linux ~x86-linux" S="${WORKDIR}/${MY_P}" fi DESCRIPTION="Extremely Fast Compression algorithm" HOMEPAGE="https://code.google.com/p/lz4/" LICENSE="BSD-2 GPL-2" SLOT="0" IUSE="test" RDEPEND="" DEPEND="test? ( dev-util/valgrind )" src_prepare() { multilib_copy_sources } multilib_src_compile() { # we must not use the 'all' target since it builds test programs # & extra -m32 executables emake emake -C programs } multilib_src_install() { emake install DESTDIR="${D}" \ PREFIX="${EPREFIX}/usr" \ LIBDIR="${EPREFIX}"/usr/$(get_libdir) }
