sping 15/04/27 19:02:56 Modified: ChangeLog Added: uriparser-0.8.2.ebuild Log: dev-libs/uriparser: 0.8.2 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)
Revision Changes Path 1.50 dev-libs/uriparser/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uriparser/ChangeLog?rev=1.50&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uriparser/ChangeLog?rev=1.50&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uriparser/ChangeLog?r1=1.49&r2=1.50 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v retrieving revision 1.49 retrieving revision 1.50 diff -u -r1.49 -r1.50 --- ChangeLog 21 Nov 2014 17:04:09 -0000 1.49 +++ ChangeLog 27 Apr 2015 19:02:56 -0000 1.50 @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/uriparser -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v 1.49 2014/11/21 17:04:09 sping Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/ChangeLog,v 1.50 2015/04/27 19:02:56 sping Exp $ + +*uriparser-0.8.2 (27 Apr 2015) + + 27 Apr 2015; Sebastian Pipping <[email protected]> +uriparser-0.8.2.ebuild: + Bump to 0.8.2 21 Nov 2014; Sebastian Pipping <[email protected]> uriparser-0.8.1.ebuild, +files/uriparser-0.8.1-doc-install.patch: 1.1 dev-libs/uriparser/uriparser-0.8.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uriparser/uriparser-0.8.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uriparser/uriparser-0.8.2.ebuild?rev=1.1&content-type=text/plain Index: uriparser-0.8.2.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/uriparser/uriparser-0.8.2.ebuild,v 1.1 2015/04/27 19:02:56 sping Exp $ EAPI=4 DESCRIPTION="Uriparser is a strictly RFC 3986 compliant URI parsing library in C" HOMEPAGE="http://uriparser.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" IUSE="doc qt4 test unicode" RDEPEND="" DEPEND="virtual/pkgconfig doc? ( >=app-doc/doxygen-1.5.8 qt4? ( dev-qt/qthelp:4 ) ) test? ( >=dev-util/cpptest-1.1.1 )" REQUIRED_USE="test? ( unicode )" src_configure() { econf \ --disable-sizedown \ $(use_enable test) \ --enable-char \ $(use_enable unicode wchar_t) \ $(use_enable doc) \ --disable-dependency-tracking \ --docdir=/usr/share/doc/${PF}/ } src_install() { emake DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS ChangeLog THANKS || die if use doc && use qt4; then insinto /usr/share/doc/${PF}/ doins doc/*.qch || die # Using doins to avoid dodoc's compression fi }
