public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-gfx/exiv2: ChangeLog exiv2-0.17.ebuild
@ 2008-06-09 21:39 Stefan Briesenick (sbriesen)
  0 siblings, 0 replies; 6+ messages in thread
From: Stefan Briesenick (sbriesen) @ 2008-06-09 21:39 UTC (permalink / raw
  To: gentoo-commits

sbriesen    08/06/09 21:39:41

  Modified:             ChangeLog
  Added:                exiv2-0.17.ebuild
  Log:
  version bump (see bug #225485).
  (Portage version: 2.1.5.4)

Revision  Changes    Path
1.46                 media-gfx/exiv2/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?r1=1.45&r2=1.46

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	26 Mar 2008 23:50:42 -0000	1.45
+++ ChangeLog	9 Jun 2008 21:39:41 -0000	1.46
@@ -1,6 +1,11 @@
 # ChangeLog for media-gfx/exiv2
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v 1.45 2008/03/26 23:50:42 sbriesen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v 1.46 2008/06/09 21:39:41 sbriesen Exp $
+
+*exiv2-0.17 (09 Jun 2008)
+
+  09 Jun 2008; Stefan Briesenick <sbriesen@gentoo.org> +exiv2-0.17.ebuild:
+  version bump (see bug #225485).
 
   26 Mar 2008; Stefan Briesenick <sbriesen@gentoo.org> -exiv2-0.13.ebuild,
   -exiv2-0.13-r1.ebuild:



1.1                  media-gfx/exiv2/exiv2-0.17.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?rev=1.1&content-type=text/plain

Index: exiv2-0.17.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild,v 1.1 2008/06/09 21:39:41 sbriesen Exp $

inherit eutils

DESCRIPTION="EXIF and IPTC metadata C++ library and command line utility"
HOMEPAGE="http://www.exiv2.org/"
SRC_URI="http://www.exiv2.org/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"

IUSE="doc nls zlib xmp examples unicode"
IUSE_LINGUAS="de es fi fr pl ru sk"

for X in ${IUSE_LINGUAS}; do IUSE="${IUSE} linguas_${X}"; done

RDEPEND="zlib? ( sys-libs/zlib )
	xmp? ( dev-libs/expat )
	nls? ( virtual/libintl )
	virtual/libiconv"

DEPEND="${RDEPEND}
	doc? ( app-doc/doxygen )
	nls? ( sys-devel/gettext )"

src_unpack() {
	unpack ${A}
	cd "${S}"

	if use unicode; then
		for i in doc/cmd.txt; do
			echo ">>> Converting "${i}" to UTF-8"
			iconv -f LATIN1 -t UTF-8 "${i}" > "${i}~" && mv -f "${i}~" "${i}" || rm -f "${i}~"
		done
	fi

	if use doc; then
		echo ">>> Updating doxygen config"
		doxygen &>/dev/null -u config/Doxyfile
	fi
}

src_compile() {
	local myconf="$(use_enable nls) $(use_enable xmp)"
	use zlib || myconf="${myconf} --without-zlib"  # plain 'use_with' fails
	econf ${myconf} || die "econf failed"
	emake || die "emake failed"
	if use doc; then
		emake doc || die "emake doc failed"
	fi
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc README doc/{ChangeLog,cmd.txt}
	use xmp && dodoc doc/{COPYING-XMPSDK,README-XMP,cmdxmp.txt}
	use doc && dohtml -r doc/html/.
	if use examples; then
		insinto /usr/share/doc/${PF}/examples
		doins samples/*.cpp
	fi
}

pkg_postinst() {
	ewarn
	ewarn "PLEASE PLEASE take note of this:"
	ewarn "Please make *sure* to run revdep-rebuild now"
	ewarn "Certain things on your system may have linked against a"
	ewarn "different version of exiv2 -- those things need to be"
	ewarn "recompiled. Sorry for the inconvenience!"
	ewarn
}



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



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

* [gentoo-commits] gentoo-x86 commit in media-gfx/exiv2: ChangeLog exiv2-0.17.ebuild
@ 2008-06-10  9:57 Christian Faulhammer (opfer)
  0 siblings, 0 replies; 6+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-06-10  9:57 UTC (permalink / raw
  To: gentoo-commits

opfer       08/06/10 09:57:13

  Modified:             ChangeLog exiv2-0.17.ebuild
  Log:
  stable x86, security bug 225485
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.47                 media-gfx/exiv2/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?r1=1.46&r2=1.47

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	9 Jun 2008 21:39:41 -0000	1.46
+++ ChangeLog	10 Jun 2008 09:57:12 -0000	1.47
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/exiv2
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v 1.46 2008/06/09 21:39:41 sbriesen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v 1.47 2008/06/10 09:57:12 opfer Exp $
+
+  10 Jun 2008; Christian Faulhammer <opfer@gentoo.org> exiv2-0.17.ebuild:
+  stable x86, security bug 225485
 
 *exiv2-0.17 (09 Jun 2008)
 



1.2                  media-gfx/exiv2/exiv2-0.17.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?r1=1.1&r2=1.2

Index: exiv2-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- exiv2-0.17.ebuild	9 Jun 2008 21:39:41 -0000	1.1
+++ exiv2-0.17.ebuild	10 Jun 2008 09:57:12 -0000	1.2
@@ -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/media-gfx/exiv2/exiv2-0.17.ebuild,v 1.1 2008/06/09 21:39:41 sbriesen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild,v 1.2 2008/06/10 09:57:12 opfer Exp $
 
 inherit eutils
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc x86 ~x86-fbsd"
 
 IUSE="doc nls zlib xmp examples unicode"
 IUSE_LINGUAS="de es fi fr pl ru sk"



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



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

* [gentoo-commits] gentoo-x86 commit in media-gfx/exiv2: ChangeLog exiv2-0.17.ebuild
@ 2008-06-10 14:09 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2008-06-10 14:09 UTC (permalink / raw
  To: gentoo-commits

armin76     08/06/10 14:09:01

  Modified:             ChangeLog exiv2-0.17.ebuild
  Log:
  alpha/ia64/sparc stable wrt #225485
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.48                 media-gfx/exiv2/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?r1=1.47&r2=1.48

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	10 Jun 2008 09:57:12 -0000	1.47
+++ ChangeLog	10 Jun 2008 14:09:00 -0000	1.48
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/exiv2
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v 1.47 2008/06/10 09:57:12 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v 1.48 2008/06/10 14:09:00 armin76 Exp $
+
+  10 Jun 2008; Raúl Porcel <armin76@gentoo.org> exiv2-0.17.ebuild:
+  alpha/ia64/sparc stable wrt #225485
 
   10 Jun 2008; Christian Faulhammer <opfer@gentoo.org> exiv2-0.17.ebuild:
   stable x86, security bug 225485



1.3                  media-gfx/exiv2/exiv2-0.17.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?r1=1.2&r2=1.3

Index: exiv2-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- exiv2-0.17.ebuild	10 Jun 2008 09:57:12 -0000	1.2
+++ exiv2-0.17.ebuild	10 Jun 2008 14:09:00 -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/media-gfx/exiv2/exiv2-0.17.ebuild,v 1.2 2008/06/10 09:57:12 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild,v 1.3 2008/06/10 14:09:00 armin76 Exp $
 
 inherit eutils
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ia64 ~ppc sparc x86 ~x86-fbsd"
 
 IUSE="doc nls zlib xmp examples unicode"
 IUSE_LINGUAS="de es fi fr pl ru sk"



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



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

* [gentoo-commits] gentoo-x86 commit in media-gfx/exiv2: ChangeLog exiv2-0.17.ebuild
@ 2008-06-10 18:49 Tobias Scherbaum (dertobi123)
  0 siblings, 0 replies; 6+ messages in thread
From: Tobias Scherbaum (dertobi123) @ 2008-06-10 18:49 UTC (permalink / raw
  To: gentoo-commits

dertobi123    08/06/10 18:49:01

  Modified:             ChangeLog exiv2-0.17.ebuild
  Log:
  ppc stable, bug #225485
  (Portage version: 2.1.5.4)

Revision  Changes    Path
1.49                 media-gfx/exiv2/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?r1=1.48&r2=1.49

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	10 Jun 2008 14:09:00 -0000	1.48
+++ ChangeLog	10 Jun 2008 18:49:00 -0000	1.49
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/exiv2
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v 1.48 2008/06/10 14:09:00 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v 1.49 2008/06/10 18:49:00 dertobi123 Exp $
+
+  10 Jun 2008; Tobias Scherbaum <dertobi123@gentoo.org> exiv2-0.17.ebuild:
+  ppc stable, bug #225485
 
   10 Jun 2008; Raúl Porcel <armin76@gentoo.org> exiv2-0.17.ebuild:
   alpha/ia64/sparc stable wrt #225485



1.4                  media-gfx/exiv2/exiv2-0.17.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?r1=1.3&r2=1.4

Index: exiv2-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- exiv2-0.17.ebuild	10 Jun 2008 14:09:00 -0000	1.3
+++ exiv2-0.17.ebuild	10 Jun 2008 18:49:00 -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/media-gfx/exiv2/exiv2-0.17.ebuild,v 1.3 2008/06/10 14:09:00 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild,v 1.4 2008/06/10 18:49:00 dertobi123 Exp $
 
 inherit eutils
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ia64 ~ppc sparc x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ia64 ppc sparc x86 ~x86-fbsd"
 
 IUSE="doc nls zlib xmp examples unicode"
 IUSE_LINGUAS="de es fi fr pl ru sk"



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



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

* [gentoo-commits] gentoo-x86 commit in media-gfx/exiv2: ChangeLog exiv2-0.17.ebuild
@ 2008-06-14 14:37 Richard Freeman (rich0)
  0 siblings, 0 replies; 6+ messages in thread
From: Richard Freeman (rich0) @ 2008-06-14 14:37 UTC (permalink / raw
  To: gentoo-commits

rich0       08/06/14 14:37:08

  Modified:             ChangeLog exiv2-0.17.ebuild
  Log:
  amd64 stable - 225485
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.50                 media-gfx/exiv2/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?r1=1.49&r2=1.50

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	10 Jun 2008 18:49:00 -0000	1.49
+++ ChangeLog	14 Jun 2008 14:37:08 -0000	1.50
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/exiv2
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v 1.49 2008/06/10 18:49:00 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v 1.50 2008/06/14 14:37:08 rich0 Exp $
+
+  14 Jun 2008; Richard Freeman <rich0@gentoo.org> exiv2-0.17.ebuild:
+  amd64 stable - 225485
 
   10 Jun 2008; Tobias Scherbaum <dertobi123@gentoo.org> exiv2-0.17.ebuild:
   ppc stable, bug #225485



1.5                  media-gfx/exiv2/exiv2-0.17.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?r1=1.4&r2=1.5

Index: exiv2-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- exiv2-0.17.ebuild	10 Jun 2008 18:49:00 -0000	1.4
+++ exiv2-0.17.ebuild	14 Jun 2008 14:37:08 -0000	1.5
@@ -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/media-gfx/exiv2/exiv2-0.17.ebuild,v 1.4 2008/06/10 18:49:00 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild,v 1.5 2008/06/14 14:37:08 rich0 Exp $
 
 inherit eutils
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ia64 ppc sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~x86-fbsd"
 
 IUSE="doc nls zlib xmp examples unicode"
 IUSE_LINGUAS="de es fi fr pl ru sk"



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



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

* [gentoo-commits] gentoo-x86 commit in media-gfx/exiv2: ChangeLog exiv2-0.17.ebuild
@ 2008-06-16 23:28 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2008-06-16 23:28 UTC (permalink / raw
  To: gentoo-commits

jer         08/06/16 23:28:50

  Modified:             ChangeLog exiv2-0.17.ebuild
  Log:
  Marked ~hppa (bug #225357).
  (Portage version: 2.1.5.4)

Revision  Changes    Path
1.51                 media-gfx/exiv2/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/ChangeLog?r1=1.50&r2=1.51

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog	14 Jun 2008 14:37:08 -0000	1.50
+++ ChangeLog	16 Jun 2008 23:28:50 -0000	1.51
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/exiv2
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v 1.50 2008/06/14 14:37:08 rich0 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/ChangeLog,v 1.51 2008/06/16 23:28:50 jer Exp $
+
+  16 Jun 2008; Jeroen Roovers <jer@gentoo.org> exiv2-0.17.ebuild:
+  Marked ~hppa (bug #225357).
 
   14 Jun 2008; Richard Freeman <rich0@gentoo.org> exiv2-0.17.ebuild:
   amd64 stable - 225485



1.6                  media-gfx/exiv2/exiv2-0.17.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild?r1=1.5&r2=1.6

Index: exiv2-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- exiv2-0.17.ebuild	14 Jun 2008 14:37:08 -0000	1.5
+++ exiv2-0.17.ebuild	16 Jun 2008 23:28:50 -0000	1.6
@@ -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/media-gfx/exiv2/exiv2-0.17.ebuild,v 1.5 2008/06/14 14:37:08 rich0 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/exiv2/exiv2-0.17.ebuild,v 1.6 2008/06/16 23:28:50 jer Exp $
 
 inherit eutils
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~hppa ia64 ppc sparc x86 ~x86-fbsd"
 
 IUSE="doc nls zlib xmp examples unicode"
 IUSE_LINGUAS="de es fi fr pl ru sk"



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



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

end of thread, other threads:[~2008-06-16 23:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-16 23:28 [gentoo-commits] gentoo-x86 commit in media-gfx/exiv2: ChangeLog exiv2-0.17.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2008-06-14 14:37 Richard Freeman (rich0)
2008-06-10 18:49 Tobias Scherbaum (dertobi123)
2008-06-10 14:09 Raul Porcel (armin76)
2008-06-10  9:57 Christian Faulhammer (opfer)
2008-06-09 21:39 Stefan Briesenick (sbriesen)

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