public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ml/extlib: ChangeLog extlib-1.5.1.ebuild
@ 2008-01-03 21:54 Alexis Ballier (aballier)
  0 siblings, 0 replies; 6+ messages in thread
From: Alexis Ballier (aballier) @ 2008-01-03 21:54 UTC (permalink / raw
  To: gentoo-commits

aballier    08/01/03 21:54:29

  Modified:             ChangeLog
  Added:                extlib-1.5.1.ebuild
  Log:
  version bump, add optional support for ocamlopt
  (Portage version: 2.1.4_rc14)

Revision  Changes    Path
1.5                  dev-ml/extlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	21 Feb 2007 00:49:35 -0000	1.4
+++ ChangeLog	3 Jan 2008 21:54:28 -0000	1.5
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/extlib
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.4 2007/02/21 00:49:35 nattfodd Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.5 2008/01/03 21:54:28 aballier Exp $
+
+*extlib-1.5.1 (03 Jan 2008)
+
+  03 Jan 2008; Alexis Ballier <aballier@gentoo.org> +extlib-1.5.1.ebuild:
+  version bump, add optional support for ocamlopt
 
   21 Feb 2007; Alexandre Buisse <nattfodd@gentoo.org> extlib-1.5.ebuild:
   Removed multiple inherit (thanks to Jokey for reporting).



1.1                  dev-ml/extlib/extlib-1.5.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?rev=1.1&content-type=text/plain

Index: extlib-1.5.1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v 1.1 2008/01/03 21:54:28 aballier Exp $

inherit findlib eutils

EAPI="1"

DESCRIPTION="Standard library extensions for O'Caml"
HOMEPAGE="http://code.google.com/p/ocaml-extlib/"
SRC_URI="http://ocaml-extlib.googlecode.com/files/${P}.tar.gz"
LICENSE="LGPL-2.1"
DEPEND=">=dev-lang/ocaml-3.07"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc-macos ~x86"
IUSE="doc +ocamlopt"

pkg_setup() {
	if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
		eerror "In order to build ${PN} with native code support from ocaml"
		eerror "You first need to have a native code ocaml compiler."
		eerror "You need to install dev-lang/ocaml with ocamlopt useflag on."
		die "Please install ocaml with ocamlopt useflag"
	fi
}

src_compile() {
	emake all || die "failed to build"
	if use ocamlopt; then
		emake opt || die "failed to build"
	fi

	if use doc; then
		emake doc || die "failed to create documentation"
	fi
}

src_install () {
	findlib_src_install

	# install documentation
	dodoc README.txt

	if use doc; then
		dohtml doc/*
	fi
}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/extlib: ChangeLog extlib-1.5.1.ebuild
@ 2008-04-19 14:50 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 6+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-04-19 14:50 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/04/19 14:50:37

  Modified:             ChangeLog extlib-1.5.1.ebuild
  Log:
  Stable on ppc wrt bug 217537
  (Portage version: 2.1.5_rc4)

Revision  Changes    Path
1.7                  dev-ml/extlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	27 Jan 2008 12:19:53 -0000	1.6
+++ ChangeLog	19 Apr 2008 14:50:36 -0000	1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/extlib
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.6 2008/01/27 12:19:53 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.7 2008/04/19 14:50:36 nixnut Exp $
+
+  19 Apr 2008; nixnut <nixnut@gentoo.org> extlib-1.5.1.ebuild:
+  Stable on ppc wrt bug 217537
 
   27 Jan 2008; Fabian Groffen <grobian@gentoo.org> extlib-1.4.ebuild,
   extlib-1.5.ebuild, extlib-1.5.1.ebuild:



1.3                  dev-ml/extlib/extlib-1.5.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?r1=1.2&r2=1.3

Index: extlib-1.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- extlib-1.5.1.ebuild	27 Jan 2008 12:19:53 -0000	1.2
+++ extlib-1.5.1.ebuild	19 Apr 2008 14:50:36 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v 1.2 2008/01/27 12:19:53 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v 1.3 2008/04/19 14:50:36 nixnut Exp $
 
 inherit findlib eutils
 
@@ -12,7 +12,7 @@
 LICENSE="LGPL-2.1"
 DEPEND=">=dev-lang/ocaml-3.07"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ppc ~x86"
 IUSE="doc +ocamlopt"
 
 pkg_setup() {



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/extlib: ChangeLog extlib-1.5.1.ebuild
@ 2008-04-20 14:09 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2008-04-20 14:09 UTC (permalink / raw
  To: gentoo-commits

maekke      08/04/20 14:09:03

  Modified:             ChangeLog extlib-1.5.1.ebuild
  Log:
  amd64/x86 stable, bug #217537
  (Portage version: 2.1.5_rc5)

Revision  Changes    Path
1.8                  dev-ml/extlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	19 Apr 2008 14:50:36 -0000	1.7
+++ ChangeLog	20 Apr 2008 14:09:02 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/extlib
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.7 2008/04/19 14:50:36 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.8 2008/04/20 14:09:02 maekke Exp $
+
+  20 Apr 2008; Markus Meier <maekke@gentoo.org> extlib-1.5.1.ebuild:
+  amd64/x86 stable, bug #217537
 
   19 Apr 2008; nixnut <nixnut@gentoo.org> extlib-1.5.1.ebuild:
   Stable on ppc wrt bug 217537



1.4                  dev-ml/extlib/extlib-1.5.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?r1=1.3&r2=1.4

Index: extlib-1.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- extlib-1.5.1.ebuild	19 Apr 2008 14:50:36 -0000	1.3
+++ extlib-1.5.1.ebuild	20 Apr 2008 14:09:02 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v 1.3 2008/04/19 14:50:36 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v 1.4 2008/04/20 14:09:02 maekke Exp $
 
 inherit findlib eutils
 
@@ -12,7 +12,7 @@
 LICENSE="LGPL-2.1"
 DEPEND=">=dev-lang/ocaml-3.07"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="doc +ocamlopt"
 
 pkg_setup() {



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/extlib: ChangeLog extlib-1.5.1.ebuild
@ 2009-09-28 16:33 Petteri Raty (betelgeuse)
  0 siblings, 0 replies; 6+ messages in thread
From: Petteri Raty (betelgeuse) @ 2009-09-28 16:33 UTC (permalink / raw
  To: gentoo-commits

betelgeuse    09/09/28 16:33:57

  Modified:             ChangeLog extlib-1.5.1.ebuild
  Log:
  Migrate to EAPI 2 in order to nuke built_with_use.
  (Portage version: 2.2_rc40/cvs/Linux i686)

Revision  Changes    Path
1.10                 dev-ml/extlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	20 Apr 2008 14:20:27 -0000	1.9
+++ ChangeLog	28 Sep 2009 16:33:56 -0000	1.10
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/extlib
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.9 2008/04/20 14:20:27 aballier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.10 2009/09/28 16:33:56 betelgeuse Exp $
+
+  28 Sep 2009; Petteri Räty <betelgeuse@gentoo.org> extlib-1.5.1.ebuild:
+  Migrate to EAPI 2 in order to nuke built_with_use.
 
   20 Apr 2008; Alexis Ballier <aballier@gentoo.org>
   -files/extlib-1.5-ExtList.remove.patch, -extlib-1.4.ebuild,
@@ -28,7 +31,7 @@
   21 Sep 2005; Matthieu Sozeau <mattam@gentoo.org> :
   Version bump (fixes #87864).
 
-*extlib-1.3 (06 Feb 2005)
+*extlib-1.4 (06 Feb 2005)
 
   06 Feb 2005; Matthieu Sozeau <mattam@gentoo.org> -extlib-1.2.ebuild,
   +extlib-1.4.ebuild:



1.5                  dev-ml/extlib/extlib-1.5.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?r1=1.4&r2=1.5

Index: extlib-1.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- extlib-1.5.1.ebuild	20 Apr 2008 14:09:02 -0000	1.4
+++ extlib-1.5.1.ebuild	28 Sep 2009 16:33:56 -0000	1.5
@@ -1,29 +1,20 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v 1.4 2008/04/20 14:09:02 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v 1.5 2009/09/28 16:33:56 betelgeuse Exp $
 
-inherit findlib eutils
+EAPI="2"
 
-EAPI="1"
+inherit findlib eutils
 
 DESCRIPTION="Standard library extensions for O'Caml"
 HOMEPAGE="http://code.google.com/p/ocaml-extlib/"
 SRC_URI="http://ocaml-extlib.googlecode.com/files/${P}.tar.gz"
 LICENSE="LGPL-2.1"
-DEPEND=">=dev-lang/ocaml-3.07"
+DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
 SLOT="0"
 KEYWORDS="amd64 ppc x86"
 IUSE="doc +ocamlopt"
 
-pkg_setup() {
-	if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
-		eerror "In order to build ${PN} with native code support from ocaml"
-		eerror "You first need to have a native code ocaml compiler."
-		eerror "You need to install dev-lang/ocaml with ocamlopt useflag on."
-		die "Please install ocaml with ocamlopt useflag"
-	fi
-}
-
 src_compile() {
 	emake all || die "failed to build"
 	if use ocamlopt; then
@@ -39,9 +30,9 @@
 	findlib_src_install
 
 	# install documentation
-	dodoc README.txt
+	dodoc README.txt || die
 
 	if use doc; then
-		dohtml doc/*
+		dohtml doc/* || die
 	fi
 }






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/extlib: ChangeLog extlib-1.5.1.ebuild
@ 2010-01-02 18:34 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 6+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-01-02 18:34 UTC (permalink / raw
  To: gentoo-commits

fauli       10/01/02 18:34:53

  Modified:             ChangeLog extlib-1.5.1.ebuild
  Log:
  Transfer Prefix keywords
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.11                 dev-ml/extlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	28 Sep 2009 16:33:56 -0000	1.10
+++ ChangeLog	2 Jan 2010 18:34:53 -0000	1.11
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/extlib
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.10 2009/09/28 16:33:56 betelgeuse Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.11 2010/01/02 18:34:53 fauli Exp $
+
+  02 Jan 2010; Christian Faulhammer <fauli@gentoo.org> extlib-1.5.1.ebuild:
+  Transfer Prefix keywords
 
   28 Sep 2009; Petteri Räty <betelgeuse@gentoo.org> extlib-1.5.1.ebuild:
   Migrate to EAPI 2 in order to nuke built_with_use.



1.6                  dev-ml/extlib/extlib-1.5.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild?r1=1.5&r2=1.6

Index: extlib-1.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- extlib-1.5.1.ebuild	28 Sep 2009 16:33:56 -0000	1.5
+++ extlib-1.5.1.ebuild	2 Jan 2010 18:34:53 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v 1.5 2009/09/28 16:33:56 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.1.ebuild,v 1.6 2010/01/02 18:34:53 fauli Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 LICENSE="LGPL-2.1"
 DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
 SLOT="0"
-KEYWORDS="amd64 ppc x86"
+KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc +ocamlopt"
 
 src_compile() {






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/extlib: ChangeLog extlib-1.5.1.ebuild
@ 2012-05-05 14:20 Alexis Ballier (aballier)
  0 siblings, 0 replies; 6+ messages in thread
From: Alexis Ballier (aballier) @ 2012-05-05 14:20 UTC (permalink / raw
  To: gentoo-commits

aballier    12/05/05 14:20:12

  Modified:             ChangeLog
  Removed:              extlib-1.5.1.ebuild
  Log:
  remove old
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)

Revision  Changes    Path
1.16                 dev-ml/extlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/extlib/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/extlib/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	8 Mar 2012 11:46:09 -0000	1.15
+++ ChangeLog	5 May 2012 14:20:12 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/extlib
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.15 2012/03/08 11:46:09 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.16 2012/05/05 14:20:12 aballier Exp $
+
+  05 May 2012; Alexis Ballier <aballier@gentoo.org> -extlib-1.5.1.ebuild:
+  remove old
 
   08 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> extlib-1.5.2.ebuild:
   x86 stable wrt bug #400023






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

end of thread, other threads:[~2012-05-05 14:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-02 18:34 [gentoo-commits] gentoo-x86 commit in dev-ml/extlib: ChangeLog extlib-1.5.1.ebuild Christian Faulhammer (fauli)
  -- strict thread matches above, loose matches on Subject: below --
2012-05-05 14:20 Alexis Ballier (aballier)
2009-09-28 16:33 Petteri Raty (betelgeuse)
2008-04-20 14:09 Markus Meier (maekke)
2008-04-19 14:50 Gysbert Wassenaar (nixnut)
2008-01-03 21:54 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