mjo 15/02/14 01:14:25 Modified: ChangeLog Added: awl-0.55.ebuild Log: Version bump to fix bug #530488. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x6F48D3DA05C2DADB!)
Revision Changes Path 1.9 dev-php/awl/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/ChangeLog?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/ChangeLog?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/ChangeLog?r1=1.8&r2=1.9 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-php/awl/ChangeLog,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ChangeLog 30 Oct 2014 03:51:16 -0000 1.8 +++ ChangeLog 14 Feb 2015 01:14:25 -0000 1.9 @@ -1,6 +1,11 @@ # ChangeLog for dev-php/awl -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/awl/ChangeLog,v 1.8 2014/10/30 03:51:16 grknight Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/awl/ChangeLog,v 1.9 2015/02/14 01:14:25 mjo Exp $ + +*awl-0.55 (14 Feb 2015) + + 14 Feb 2015; Michael Orlitzky <m...@gentoo.org> +awl-0.55.ebuild: + Version bump to fix bug #530488. 30 Oct 2014; Brian Evans <grkni...@gentoo.org> -awl-0.51-r1.ebuild, -awl-0.51.ebuild, -awl-0.52.ebuild, -awl-0.53.ebuild: 1.1 dev-php/awl/awl-0.55.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/awl-0.55.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/awl/awl-0.55.ebuild?rev=1.1&content-type=text/plain Index: awl-0.55.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-php/awl/awl-0.55.ebuild,v 1.1 2015/02/14 01:14:25 mjo Exp $ EAPI=5 inherit eutils git-r3 DESCRIPTION="Andrew McMillan's Web Libraries" HOMEPAGE="https://gitlab.com/davical-project/awl" EGIT_REPO_URI="https://gitlab.com/davical-project/awl.git" EGIT_COMMIT="r${PV}" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc test" DEPEND="doc? ( dev-php/PEAR-PhpDocumentor ) test? ( dev-php/phpunit )" RDEPEND="dev-lang/php[pdo,postgres,xml]" src_compile() { if use doc ; then ebegin "Generating documentation" phpdoc -c "docs/api/phpdoc.ini" || die "Documentation failed to build" fi } src_test() { phpunit tests/ || die "test suite failed" } src_install() { dodoc debian/changelog use doc && dohtml -r "docs/api/" insinto "/usr/share/php/${PN}" doins -r dba inc }