public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/raptor: raptor-2.0.14.ebuild ChangeLog
@ 2014-10-21  4:22 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2014-10-21  4:22 UTC (permalink / raw
  To: gentoo-commits

ssuominen    14/10/21 04:22:41

  Modified:             ChangeLog
  Added:                raptor-2.0.14.ebuild
  Log:
  Version bump wrt #513528 by "RAPHEAD". Don't pass --with-xml2-config=no or --with-curl-config=no because upstream changed configure.ac and they break the configure now.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.158                media-libs/raptor/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.158&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.158&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?r1=1.157&r2=1.158

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -r1.157 -r1.158
--- ChangeLog	4 Mar 2014 22:30:42 -0000	1.157
+++ ChangeLog	21 Oct 2014 04:22:41 -0000	1.158
@@ -1,6 +1,13 @@
 # ChangeLog for media-libs/raptor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.157 2014/03/04 22:30:42 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.158 2014/10/21 04:22:41 ssuominen Exp $
+
+*raptor-2.0.14 (21 Oct 2014)
+
+  21 Oct 2014; Samuli Suominen <ssuominen@gentoo.org> +raptor-2.0.14.ebuild:
+  Version bump wrt #513528 by "RAPHEAD". Don't pass --with-xml2-config=no or
+  --with-curl-config=no because upstream changed configure.ac and they break the
+  configure now.
 
   04 Mar 2014; Andreas K. Huettel <dilfridge@gentoo.org> -raptor-2.0.8.ebuild:
   Remove old so we can close bug 468042



1.1                  media-libs/raptor/raptor-2.0.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild?rev=1.1&content-type=text/plain

Index: raptor-2.0.14.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild,v 1.1 2014/10/21 04:22:41 ssuominen Exp $

EAPI=5
inherit eutils libtool

MY_PN=${PN}2
MY_P=${MY_PN}-${PV}

DESCRIPTION="The RDF Parser Toolkit"
HOMEPAGE="http://librdf.org/raptor/"
SRC_URI="http://download.librdf.org/source/${MY_P}.tar.gz"

LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="+curl debug json static-libs unicode"

RDEPEND="dev-libs/libxml2
	dev-libs/libxslt
	curl? ( net-misc/curl )
	json? ( dev-libs/yajl )
	unicode? ( dev-libs/icu:= )
	!media-libs/raptor:0"
DEPEND="${RDEPEND}
	>=sys-devel/bison-3
	sys-devel/flex
	virtual/pkgconfig"

S=${WORKDIR}/${MY_P}

DOCS="AUTHORS ChangeLog NEWS NOTICE README"

src_prepare() {
	elibtoolize # Keep this for ~*-fbsd
}

src_configure() {
	# FIXME: It should be possible to use net-nntp/inn for libinn.h and -linn!

	local myconf='--with-www=xml'
	use curl && myconf='--with-www=curl'

	econf \
		$(use_enable static-libs static) \
		$(use_enable debug) \
		$(use unicode && echo --with-icu-config="${EPREFIX}"/usr/bin/icu-config) \
		$(use_with json yajl) \
		--with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
		${myconf}
}

src_test() {
	emake -j1 test
}

src_install() {
	default
	dohtml {NEWS,README,RELEASE,UPGRADING}.html
	prune_libtool_files --all

	# http://bugs.gentoo.org/467768
	local _rdocdir=/usr/share/doc/${PF}/html/${MY_PN}
	[[ -d ${_rdocdir} ]] && dosym ${_rdocdir} /usr/share/gtk-doc/html/${MY_PN}
}





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/raptor: raptor-2.0.14.ebuild ChangeLog
@ 2014-10-21  4:29 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2014-10-21  4:29 UTC (permalink / raw
  To: gentoo-commits

ssuominen    14/10/21 04:29:28

  Modified:             raptor-2.0.14.ebuild ChangeLog
  Log:
  Raise sys-devel/flex DEPEND to 2.5.36
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.2                  media-libs/raptor/raptor-2.0.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild?r1=1.1&r2=1.2

Index: raptor-2.0.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- raptor-2.0.14.ebuild	21 Oct 2014 04:22:41 -0000	1.1
+++ raptor-2.0.14.ebuild	21 Oct 2014 04:29:28 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild,v 1.1 2014/10/21 04:22:41 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild,v 1.2 2014/10/21 04:29:28 ssuominen Exp $
 
 EAPI=5
 inherit eutils libtool
@@ -25,7 +25,7 @@
 	!media-libs/raptor:0"
 DEPEND="${RDEPEND}
 	>=sys-devel/bison-3
-	sys-devel/flex
+	>=sys-devel/flex-2.5.36
 	virtual/pkgconfig"
 
 S=${WORKDIR}/${MY_P}



1.159                media-libs/raptor/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.159&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.159&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?r1=1.158&r2=1.159

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v
retrieving revision 1.158
retrieving revision 1.159
diff -u -r1.158 -r1.159
--- ChangeLog	21 Oct 2014 04:22:41 -0000	1.158
+++ ChangeLog	21 Oct 2014 04:29:28 -0000	1.159
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/raptor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.158 2014/10/21 04:22:41 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.159 2014/10/21 04:29:28 ssuominen Exp $
+
+  21 Oct 2014; Samuli Suominen <ssuominen@gentoo.org> raptor-2.0.14.ebuild:
+  Raise sys-devel/flex DEPEND to 2.5.36
 
 *raptor-2.0.14 (21 Oct 2014)
 





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/raptor: raptor-2.0.14.ebuild ChangeLog
@ 2014-10-21  4:42 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2014-10-21  4:42 UTC (permalink / raw
  To: gentoo-commits

ssuominen    14/10/21 04:42:49

  Modified:             raptor-2.0.14.ebuild ChangeLog
  Log:
  Missing reference to ${ED} in symlink creation for gtk-doc.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.3                  media-libs/raptor/raptor-2.0.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild?r1=1.2&r2=1.3

Index: raptor-2.0.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- raptor-2.0.14.ebuild	21 Oct 2014 04:29:28 -0000	1.2
+++ raptor-2.0.14.ebuild	21 Oct 2014 04:42:49 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild,v 1.2 2014/10/21 04:29:28 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-2.0.14.ebuild,v 1.3 2014/10/21 04:42:49 ssuominen Exp $
 
 EAPI=5
 inherit eutils libtool
@@ -62,5 +62,5 @@
 
 	# http://bugs.gentoo.org/467768
 	local _rdocdir=/usr/share/doc/${PF}/html/${MY_PN}
-	[[ -d ${_rdocdir} ]] && dosym ${_rdocdir} /usr/share/gtk-doc/html/${MY_PN}
+	[[ -d ${ED}/${_rdocdir} ]] && dosym ${_rdocdir} /usr/share/gtk-doc/html/${MY_PN}
 }



1.160                media-libs/raptor/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.160&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.160&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?r1=1.159&r2=1.160

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- ChangeLog	21 Oct 2014 04:29:28 -0000	1.159
+++ ChangeLog	21 Oct 2014 04:42:49 -0000	1.160
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/raptor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.159 2014/10/21 04:29:28 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.160 2014/10/21 04:42:49 ssuominen Exp $
+
+  21 Oct 2014; Samuli Suominen <ssuominen@gentoo.org> raptor-2.0.14.ebuild:
+  Missing reference to ${ED} in symlink creation for gtk-doc.
 
   21 Oct 2014; Samuli Suominen <ssuominen@gentoo.org> raptor-2.0.14.ebuild:
   Raise sys-devel/flex DEPEND to 2.5.36





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-10-21  4:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-21  4:22 [gentoo-commits] gentoo-x86 commit in media-libs/raptor: raptor-2.0.14.ebuild ChangeLog Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2014-10-21  4:29 Samuli Suominen (ssuominen)
2014-10-21  4:42 Samuli Suominen (ssuominen)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox