mjo 15/02/14 02:13:24 Modified: ChangeLog Added: davical-1.1.3.1-r1.ebuild Removed: davical-1.1.3.1.ebuild Log: Revbump to fix dev-php/awl lower bound, bug #529994. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x6F48D3DA05C2DADB!)
Revision Changes Path 1.8 www-apps/davical/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/davical/ChangeLog?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/davical/ChangeLog?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/davical/ChangeLog?r1=1.7&r2=1.8 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/www-apps/davical/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ChangeLog 14 Nov 2014 19:29:54 -0000 1.7 +++ ChangeLog 14 Feb 2015 02:13:24 -0000 1.8 @@ -1,6 +1,12 @@ # ChangeLog for www-apps/davical -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/davical/ChangeLog,v 1.7 2014/11/14 19:29:54 titanofold Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/davical/ChangeLog,v 1.8 2015/02/14 02:13:24 mjo Exp $ + +*davical-1.1.3.1-r1 (14 Feb 2015) + + 14 Feb 2015; Michael Orlitzky <[email protected]> +davical-1.1.3.1-r1.ebuild, + -davical-1.1.3.1.ebuild: + Revbump to fix dev-php/awl lower bound, bug #529994. *davical-1.1.3.1 (14 Nov 2014) 1.1 www-apps/davical/davical-1.1.3.1-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/davical/davical-1.1.3.1-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/davical/davical-1.1.3.1-r1.ebuild?rev=1.1&content-type=text/plain Index: davical-1.1.3.1-r1.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/www-apps/davical/davical-1.1.3.1-r1.ebuild,v 1.1 2015/02/14 02:13:24 mjo Exp $ EAPI=5 inherit depend.php webapp DESCRIPTION="A CalDAV and CardDAV Server" HOMEPAGE="http://davical.org/" SRC_URI="https://gitlab.com/${PN}-project/${PN}/repository/archive.tar.gz?ref=r${PV} -> ${PN}-${PV}.tar.gz" LICENSE="GPL-2" KEYWORDS="~amd64 ~x86" IUSE="doc" RDEPEND="app-admin/pwgen dev-lang/php[calendar,curl,pdo,postgres,xml] dev-perl/DBI dev-perl/DBD-Pg dev-perl/yaml >=dev-php/awl-0.55 virtual/httpd-php" DEPEND="${RDEPEND} doc? ( dev-php/PEAR-PhpDocumentor )" S="${WORKDIR}/${PN}.git" need_php5 need_httpd src_prepare() { epatch "${FILESDIR}/awl-locations.patch" epatch "${FILESDIR}/inc_path.patch" } src_compile() { emake built-po if use doc ; then einfo "Generating documentation" phpdoc -q -c "docs/api/phpdoc.ini"\ || die "Documentation failed to build" fi } src_install() { webapp_src_preinst dodoc-php INSTALL README debian/README.Debian \ testing/README.regression_tests TODO debian/changelog \ || die "dodoc failed" einfo "Installing web files" insinto "${MY_HTDOCSDIR}" doins -r htdocs/* htdocs/.htaccess einfo "Installing main files and i18n" insinto "${MY_HOSTROOTDIR}/${PN}" doins -r inc locale rm "${D}/${MY_HOSTROOTDIR}/${PN}/inc/always.php.in" || die einfo "Installing sql files" insinto "${MY_SQLSCRIPTSDIR}" doins -r dba/* if use doc ; then einfo "Installing documentation" dohtml -r docs/api/ docs/website/ fi insinto /etc/${PN} doins config/* "${FILESDIR}/vhost-example" webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt" webapp_src_install fperms +x "${MY_SQLSCRIPTSDIR}/create-database.sh" fperms +x "${MY_SQLSCRIPTSDIR}/update-davical-database" }
