public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-text/htmlc: ChangeLog htmlc-2.60.0.ebuild
@ 2014-11-30 12:59 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2014-11-30 12:59 UTC (permalink / raw
  To: gentoo-commits

aballier    14/11/30 12:59:06

  Modified:             ChangeLog
  Added:                htmlc-2.60.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.8                  app-text/htmlc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htmlc/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htmlc/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htmlc/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/htmlc/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	24 Dec 2013 12:55:56 -0000	1.7
+++ ChangeLog	30 Nov 2014 12:59:06 -0000	1.8
@@ -1,6 +1,11 @@
 # ChangeLog for app-text/htmlc
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/htmlc/ChangeLog,v 1.7 2013/12/24 12:55:56 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/htmlc/ChangeLog,v 1.8 2014/11/30 12:59:06 aballier Exp $
+
+*htmlc-2.60.0 (30 Nov 2014)
+
+  30 Nov 2014; Alexis Ballier <aballier@gentoo.org> +htmlc-2.60.0.ebuild:
+  version bump
 
   24 Dec 2013; Agostino Sarubbo <ago@gentoo.org> htmlc-2.40.0.ebuild:
   Stable for x86, wrt bug #491944



1.1                  app-text/htmlc/htmlc-2.60.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htmlc/htmlc-2.60.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htmlc/htmlc-2.60.0.ebuild?rev=1.1&content-type=text/plain

Index: htmlc-2.60.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/htmlc/htmlc-2.60.0.ebuild,v 1.1 2014/11/30 12:59:06 aballier Exp $

EAPI=5

# Override version: 2.4.0 > 2.21.0 so we name it 2.40.0
MY_P="${P/0[.]/.}"

DESCRIPTION="HTML template files expander"
HOMEPAGE="http://htmlc.inria.fr/"
SRC_URI="http://htmlc.inria.fr/${MY_P%.0}.tgz"

LICENSE="htmlc"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="+ocamlopt"
# Files for the tests are missing...
#RESTRICT="test"

DEPEND=">=dev-lang/ocaml-3.11.2:=[ocamlopt?]"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${MY_P}"

src_configure() {
	./configure \
		--install-root-dir "${ED}usr" \
		|| die
}

src_compile() {
	if use ocamlopt ; then
		emake bin
	else
		emake byt
	fi
}

src_install() {
	if use ocamlopt ; then
		emake installbin
	else
		emake installbyt
	fi
	emake MANDIR='$(PREFIXINSTALLDIR)/share/man/man$(MANEXT)' installman
	dodoc README Announce* CHANGES
}





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

* [gentoo-commits] gentoo-x86 commit in app-text/htmlc: ChangeLog htmlc-2.60.0.ebuild
@ 2015-06-18  8:45 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2015-06-18  8:45 UTC (permalink / raw
  To: gentoo-commits

aballier    15/06/18 08:45:33

  Modified:             ChangeLog htmlc-2.60.0.ebuild
  Log:
  dont build with werror
  
  Signed-off-by: Alexis Ballier <aballier@gentoo.org>
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.10                 app-text/htmlc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htmlc/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htmlc/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htmlc/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/htmlc/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	23 May 2015 12:43:52 -0000	1.9
+++ ChangeLog	18 Jun 2015 08:45:33 -0000	1.10
@@ -1,6 +1,10 @@
 # ChangeLog for app-text/htmlc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/htmlc/ChangeLog,v 1.9 2015/05/23 12:43:52 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/htmlc/ChangeLog,v 1.10 2015/06/18 08:45:33 aballier Exp $
+
+  18 Jun 2015; Alexis Ballier <aballier@gentoo.org> htmlc-2.60.0.ebuild,
+  +files/werror.patch:
+  dont build with werror
 
   23 May 2015; Manuel Rüger <mrueg@gentoo.org>
   -files/htmlc-2.21.0-ocaml312.patch, -files/htmlc-2.21.0-werror.patch,



1.2                  app-text/htmlc/htmlc-2.60.0.ebuild

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

Index: htmlc-2.60.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/htmlc/htmlc-2.60.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- htmlc-2.60.0.ebuild	30 Nov 2014 12:59:06 -0000	1.1
+++ htmlc-2.60.0.ebuild	18 Jun 2015 08:45:33 -0000	1.2
@@ -1,9 +1,11 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/htmlc/htmlc-2.60.0.ebuild,v 1.1 2014/11/30 12:59:06 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/htmlc/htmlc-2.60.0.ebuild,v 1.2 2015/06/18 08:45:33 aballier Exp $
 
 EAPI=5
 
+inherit eutils
+
 # Override version: 2.4.0 > 2.21.0 so we name it 2.40.0
 MY_P="${P/0[.]/.}"
 
@@ -23,6 +25,10 @@
 
 S="${WORKDIR}/${MY_P}"
 
+src_prepare() {
+	epatch "${FILESDIR}/werror.patch"
+}
+
 src_configure() {
 	./configure \
 		--install-root-dir "${ED}usr" \





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

end of thread, other threads:[~2015-06-18  8:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-30 12:59 [gentoo-commits] gentoo-x86 commit in app-text/htmlc: ChangeLog htmlc-2.60.0.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2015-06-18  8:45 Alexis Ballier (aballier)

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