patrick 15/03/06 01:24:59 Modified: ChangeLog Added: toybox-0.5.2.ebuild Log: Bump (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.8 sys-apps/toybox/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/toybox/ChangeLog?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/toybox/ChangeLog?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/toybox/ChangeLog?r1=1.7&r2=1.8 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-apps/toybox/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ChangeLog 20 Nov 2014 06:20:23 -0000 1.7 +++ ChangeLog 6 Mar 2015 01:24:59 -0000 1.8 @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/toybox -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/toybox/ChangeLog,v 1.7 2014/11/20 06:20:23 patrick Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/toybox/ChangeLog,v 1.8 2015/03/06 01:24:59 patrick Exp $ + +*toybox-0.5.2 (06 Mar 2015) + + 06 Mar 2015; Patrick Lauer <[email protected]> +toybox-0.5.2.ebuild: + Bump *toybox-0.5.1 (20 Nov 2014) 1.1 sys-apps/toybox/toybox-0.5.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/toybox/toybox-0.5.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/toybox/toybox-0.5.2.ebuild?rev=1.1&content-type=text/plain Index: toybox-0.5.2.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/toybox/toybox-0.5.2.ebuild,v 1.1 2015/03/06 01:24:59 patrick Exp $ EAPI=5 inherit eutils multiprocessing savedconfig toolchain-funcs if [[ ${PV} == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/gfto/toybox.git" else SRC_URI="http://landley.net/code/toybox/downloads/${P}.tar.gz" KEYWORDS="~amd64 ~x86" fi # makefile is stupid RESTRICT="test" DESCRIPTION="Common linux commands in a multicall binary" HOMEPAGE="http://landley.net/code/toybox/" # The source code does not explicitly say that it's BSD, but the author has repeatedly said it LICENSE="BSD-2" SLOT="0" IUSE="" src_prepare() { epatch_user restore_config .config } src_configure() { if [ -f .config ]; then yes "" | emake -j1 oldconfig > /dev/null return 0 else einfo "Could not locate user configfile, so we will save a default one" emake defconfig > /dev/null fi } src_compile() { tc-export CC STRIP export HOSTCC=$(tc-getBUILD_CC) unset CROSS_COMPILE export CPUS=$(makeopts_jobs) emake V=1 } src_test() { emake test } src_install() { save_config .config newbin toybox_unstripped toybox }
