public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/tiff: tiff-4.0.3-r6.ebuild ChangeLog
@ 2014-02-04 16:27 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 9+ messages in thread
From: Samuli Suominen (ssuominen) @ 2014-02-04 16:27 UTC (permalink / raw
  To: gentoo-commits

ssuominen    14/02/04 16:27:21

  Modified:             ChangeLog
  Added:                tiff-4.0.3-r6.ebuild
  Log:
  Use multilib_build_binaries() to be multilib-portage (multilib-overlay) friendly wrt #489590 by Thomas Sachau. Force USE="jpeg" for testsuite wrt #483132 by Johann Schmitz. Apply security patch from Fedora wrt #486590.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.256                media-libs/tiff/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
retrieving revision 1.255
retrieving revision 1.256
diff -u -r1.255 -r1.256
--- ChangeLog	26 Oct 2013 08:19:22 -0000	1.255
+++ ChangeLog	4 Feb 2014 16:27:21 -0000	1.256
@@ -1,6 +1,14 @@
 # ChangeLog for media-libs/tiff
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.255 2013/10/26 08:19:22 mgorny Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.256 2014/02/04 16:27:21 ssuominen Exp $
+
+*tiff-4.0.3-r6 (04 Feb 2014)
+
+  04 Feb 2014; Samuli Suominen <ssuominen@gentoo.org>
+  +files/tiff-4.0.3-CVE-2013-4244.patch, +tiff-4.0.3-r6.ebuild:
+  Use multilib_build_binaries() to be multilib-portage (multilib-overlay)
+  friendly wrt #489590 by Thomas Sachau. Force USE="jpeg" for testsuite wrt
+  #483132 by Johann Schmitz. Apply security patch from Fedora wrt #486590.
 
   26 Oct 2013; Michał Górny <mgorny@gentoo.org> tiff-3.9.7-r1.ebuild:
   Override multilib_src_install_all() not to install docs rather than removing



1.1                  media-libs/tiff/tiff-4.0.3-r6.ebuild

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

Index: tiff-4.0.3-r6.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v 1.1 2014/02/04 16:27:21 ssuominen Exp $

EAPI=5
inherit eutils libtool multilib-minimal

DESCRIPTION="Tag Image File Format (TIFF) library"
HOMEPAGE="http://www.remotesensing.org/libtiff/"
SRC_URI="http://download.osgeo.org/libtiff/${P}.tar.gz
	ftp://ftp.remotesensing.org/pub/libtiff/${P}.tar.gz"

LICENSE="libtiff"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="+cxx jbig jpeg lzma static-libs test zlib"

RDEPEND="jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )
	jbig? ( media-libs/jbigkit:=[${MULTILIB_USEDEP}] )
	lzma? ( app-arch/xz-utils:=[${MULTILIB_USEDEP}] )
	zlib? ( sys-libs/zlib:=[${MULTILIB_USEDEP}] )
	abi_x86_32? (
		!<=app-emulation/emul-linux-x86-baselibs-20130224-r9
		!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
	)"
DEPEND="${RDEPEND}"

REQUIRED_USE="test? ( jpeg )" #483132

MULTILIB_WRAPPED_HEADERS=(
	/usr/include/tiffconf.h
)

src_prepare() {
	epatch "${FILESDIR}"/${PN}-4.0.3-tiff2pdf-colors.patch #145055
	epatch "${FILESDIR}"/${P}-CVE-2012-{4447,4564}.patch #440944
	epatch "${FILESDIR}"/${P}-CVE-2013-{1960,1961}.patch #468334
	epatch "${FILESDIR}"/${P}-CVE-2013-{4231,4232}.patch #480466
	epatch "${FILESDIR}"/${P}-CVE-2013-4244.patch #486590
	epatch "${FILESDIR}"/${P}-libjpeg-turbo.patch

	elibtoolize
}

multilib_src_configure() {
	ECONF_SOURCE="${S}" econf \
		$(use_enable static-libs static) \
		$(use_enable zlib) \
		$(use_enable jpeg) \
		$(use_enable jbig) \
		$(use_enable lzma) \
		$(use_enable cxx) \
		--without-x \
		--with-docdir="${EPREFIX}"/usr/share/doc/${PF}

	# remove useless subdirs
	if ! multilib_build_binaries ; then
		sed -i \
			-e 's/ tools//' \
			-e 's/ contrib//' \
			-e 's/ man//' \
			-e 's/ html//' \
			Makefile || die
	fi
}

multilib_src_test() {
	if ! multilib_build_binaries ; then
		cd tools
		emake
		cd "${BUILD_DIR}"
	fi
	emake check
}

multilib_src_install_all() {
	prune_libtool_files --all
	rm -f "${ED}"/usr/share/doc/${PF}/{COPYRIGHT,README*,RELEASE-DATE,TODO,VERSION}
}





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

* [gentoo-commits] gentoo-x86 commit in media-libs/tiff: tiff-4.0.3-r6.ebuild ChangeLog
@ 2014-02-04 22:55 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2014-02-04 22:55 UTC (permalink / raw
  To: gentoo-commits

jer         14/02/04 22:55:26

  Modified:             tiff-4.0.3-r6.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #486590).
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.2                  media-libs/tiff/tiff-4.0.3-r6.ebuild

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

Index: tiff-4.0.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tiff-4.0.3-r6.ebuild	4 Feb 2014 16:27:21 -0000	1.1
+++ tiff-4.0.3-r6.ebuild	4 Feb 2014 22:55:26 -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/tiff/tiff-4.0.3-r6.ebuild,v 1.1 2014/02/04 16:27:21 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v 1.2 2014/02/04 22:55:26 jer Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -12,7 +12,7 @@
 
 LICENSE="libtiff"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+cxx jbig jpeg lzma static-libs test zlib"
 
 RDEPEND="jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )



1.257                media-libs/tiff/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
retrieving revision 1.256
retrieving revision 1.257
diff -u -r1.256 -r1.257
--- ChangeLog	4 Feb 2014 16:27:21 -0000	1.256
+++ ChangeLog	4 Feb 2014 22:55:26 -0000	1.257
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/tiff
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.256 2014/02/04 16:27:21 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.257 2014/02/04 22:55:26 jer Exp $
+
+  04 Feb 2014; Jeroen Roovers <jer@gentoo.org> tiff-4.0.3-r6.ebuild:
+  Stable for HPPA (bug #486590).
 
 *tiff-4.0.3-r6 (04 Feb 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in media-libs/tiff: tiff-4.0.3-r6.ebuild ChangeLog
@ 2014-02-09  8:18 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-02-09  8:18 UTC (permalink / raw
  To: gentoo-commits

ago         14/02/09 08:18:52

  Modified:             tiff-4.0.3-r6.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #486590
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  media-libs/tiff/tiff-4.0.3-r6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?r1=1.4&r2=1.5

Index: tiff-4.0.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- tiff-4.0.3-r6.ebuild	6 Feb 2014 06:05:37 -0000	1.4
+++ tiff-4.0.3-r6.ebuild	9 Feb 2014 08:18:52 -0000	1.5
@@ -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/tiff/tiff-4.0.3-r6.ebuild,v 1.4 2014/02/06 06:05:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v 1.5 2014/02/09 08:18:52 ago Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -12,7 +12,7 @@
 
 LICENSE="libtiff"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+cxx jbig jpeg lzma static-libs test zlib"
 
 RDEPEND="jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )



1.260                media-libs/tiff/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
retrieving revision 1.259
retrieving revision 1.260
diff -u -r1.259 -r1.260
--- ChangeLog	6 Feb 2014 06:05:37 -0000	1.259
+++ ChangeLog	9 Feb 2014 08:18:52 -0000	1.260
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/tiff
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.259 2014/02/06 06:05:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.260 2014/02/09 08:18:52 ago Exp $
+
+  09 Feb 2014; Agostino Sarubbo <ago@gentoo.org> tiff-4.0.3-r6.ebuild:
+  Stable for ppc, wrt bug #486590
 
   06 Feb 2014; Agostino Sarubbo <ago@gentoo.org> tiff-3.9.7-r1.ebuild,
   tiff-4.0.3-r6.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in media-libs/tiff: tiff-4.0.3-r6.ebuild ChangeLog
@ 2014-02-09  8:23 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-02-09  8:23 UTC (permalink / raw
  To: gentoo-commits

ago         14/02/09 08:23:38

  Modified:             tiff-4.0.3-r6.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #486590
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  media-libs/tiff/tiff-4.0.3-r6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?r1=1.5&r2=1.6

Index: tiff-4.0.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- tiff-4.0.3-r6.ebuild	9 Feb 2014 08:18:52 -0000	1.5
+++ tiff-4.0.3-r6.ebuild	9 Feb 2014 08:23:38 -0000	1.6
@@ -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/tiff/tiff-4.0.3-r6.ebuild,v 1.5 2014/02/09 08:18:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v 1.6 2014/02/09 08:23:38 ago Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -12,7 +12,7 @@
 
 LICENSE="libtiff"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+cxx jbig jpeg lzma static-libs test zlib"
 
 RDEPEND="jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )



1.261                media-libs/tiff/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
retrieving revision 1.260
retrieving revision 1.261
diff -u -r1.260 -r1.261
--- ChangeLog	9 Feb 2014 08:18:52 -0000	1.260
+++ ChangeLog	9 Feb 2014 08:23:38 -0000	1.261
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/tiff
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.260 2014/02/09 08:18:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.261 2014/02/09 08:23:38 ago Exp $
+
+  09 Feb 2014; Agostino Sarubbo <ago@gentoo.org> tiff-4.0.3-r6.ebuild:
+  Stable for ppc64, wrt bug #486590
 
   09 Feb 2014; Agostino Sarubbo <ago@gentoo.org> tiff-4.0.3-r6.ebuild:
   Stable for ppc, wrt bug #486590





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

* [gentoo-commits] gentoo-x86 commit in media-libs/tiff: tiff-4.0.3-r6.ebuild ChangeLog
@ 2014-02-09  8:26 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-02-09  8:26 UTC (permalink / raw
  To: gentoo-commits

ago         14/02/09 08:26:59

  Modified:             tiff-4.0.3-r6.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #486590
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  media-libs/tiff/tiff-4.0.3-r6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?r1=1.6&r2=1.7

Index: tiff-4.0.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- tiff-4.0.3-r6.ebuild	9 Feb 2014 08:23:38 -0000	1.6
+++ tiff-4.0.3-r6.ebuild	9 Feb 2014 08:26:59 -0000	1.7
@@ -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/tiff/tiff-4.0.3-r6.ebuild,v 1.6 2014/02/09 08:23:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v 1.7 2014/02/09 08:26:59 ago Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -12,7 +12,7 @@
 
 LICENSE="libtiff"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+cxx jbig jpeg lzma static-libs test zlib"
 
 RDEPEND="jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )



1.262                media-libs/tiff/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -r1.261 -r1.262
--- ChangeLog	9 Feb 2014 08:23:38 -0000	1.261
+++ ChangeLog	9 Feb 2014 08:26:59 -0000	1.262
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/tiff
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.261 2014/02/09 08:23:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.262 2014/02/09 08:26:59 ago Exp $
+
+  09 Feb 2014; Agostino Sarubbo <ago@gentoo.org> tiff-4.0.3-r6.ebuild:
+  Stable for sparc, wrt bug #486590
 
   09 Feb 2014; Agostino Sarubbo <ago@gentoo.org> tiff-4.0.3-r6.ebuild:
   Stable for ppc64, wrt bug #486590





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

* [gentoo-commits] gentoo-x86 commit in media-libs/tiff: tiff-4.0.3-r6.ebuild ChangeLog
@ 2014-02-11 15:10 Akinori Hattori (hattya)
  0 siblings, 0 replies; 9+ messages in thread
From: Akinori Hattori (hattya) @ 2014-02-11 15:10 UTC (permalink / raw
  To: gentoo-commits

hattya      14/02/11 15:10:30

  Modified:             tiff-4.0.3-r6.ebuild ChangeLog
  Log:
  ia64 stable wrt bug #486590
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)

Revision  Changes    Path
1.8                  media-libs/tiff/tiff-4.0.3-r6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?r1=1.7&r2=1.8

Index: tiff-4.0.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- tiff-4.0.3-r6.ebuild	9 Feb 2014 08:26:59 -0000	1.7
+++ tiff-4.0.3-r6.ebuild	11 Feb 2014 15:10:30 -0000	1.8
@@ -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/tiff/tiff-4.0.3-r6.ebuild,v 1.7 2014/02/09 08:26:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v 1.8 2014/02/11 15:10:30 hattya Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -12,7 +12,7 @@
 
 LICENSE="libtiff"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+cxx jbig jpeg lzma static-libs test zlib"
 
 RDEPEND="jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )



1.263                media-libs/tiff/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -r1.262 -r1.263
--- ChangeLog	9 Feb 2014 08:26:59 -0000	1.262
+++ ChangeLog	11 Feb 2014 15:10:30 -0000	1.263
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/tiff
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.262 2014/02/09 08:26:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.263 2014/02/11 15:10:30 hattya Exp $
+
+  11 Feb 2014; Akinori Hattori <hattya@gentoo.org> tiff-4.0.3-r6.ebuild:
+  ia64 stable wrt bug #486590
 
   09 Feb 2014; Agostino Sarubbo <ago@gentoo.org> tiff-4.0.3-r6.ebuild:
   Stable for sparc, wrt bug #486590





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

* [gentoo-commits] gentoo-x86 commit in media-libs/tiff: tiff-4.0.3-r6.ebuild ChangeLog
@ 2014-02-14  6:39 Sergey Popov (pinkbyte)
  0 siblings, 0 replies; 9+ messages in thread
From: Sergey Popov (pinkbyte) @ 2014-02-14  6:39 UTC (permalink / raw
  To: gentoo-commits

pinkbyte    14/02/14 06:39:00

  Modified:             tiff-4.0.3-r6.ebuild ChangeLog
  Log:
  Stable on arm, wrt bug #486590
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)

Revision  Changes    Path
1.9                  media-libs/tiff/tiff-4.0.3-r6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?r1=1.8&r2=1.9

Index: tiff-4.0.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- tiff-4.0.3-r6.ebuild	11 Feb 2014 15:10:30 -0000	1.8
+++ tiff-4.0.3-r6.ebuild	14 Feb 2014 06:39:00 -0000	1.9
@@ -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/tiff/tiff-4.0.3-r6.ebuild,v 1.8 2014/02/11 15:10:30 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v 1.9 2014/02/14 06:39:00 pinkbyte Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -12,7 +12,7 @@
 
 LICENSE="libtiff"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+cxx jbig jpeg lzma static-libs test zlib"
 
 RDEPEND="jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )



1.264                media-libs/tiff/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
retrieving revision 1.263
retrieving revision 1.264
diff -u -r1.263 -r1.264
--- ChangeLog	11 Feb 2014 15:10:30 -0000	1.263
+++ ChangeLog	14 Feb 2014 06:39:00 -0000	1.264
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/tiff
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.263 2014/02/11 15:10:30 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.264 2014/02/14 06:39:00 pinkbyte Exp $
+
+  14 Feb 2014; Sergey Popov <pinkbyte@gentoo.org> tiff-4.0.3-r6.ebuild:
+  Stable on arm, wrt bug #486590
 
   11 Feb 2014; Akinori Hattori <hattya@gentoo.org> tiff-4.0.3-r6.ebuild:
   ia64 stable wrt bug #486590





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

* [gentoo-commits] gentoo-x86 commit in media-libs/tiff: tiff-4.0.3-r6.ebuild ChangeLog
@ 2014-02-16  7:34 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-02-16  7:34 UTC (permalink / raw
  To: gentoo-commits

ago         14/02/16 07:34:51

  Modified:             tiff-4.0.3-r6.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #486590
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 media-libs/tiff/tiff-4.0.3-r6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?r1=1.9&r2=1.10

Index: tiff-4.0.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- tiff-4.0.3-r6.ebuild	14 Feb 2014 06:39:00 -0000	1.9
+++ tiff-4.0.3-r6.ebuild	16 Feb 2014 07:34:51 -0000	1.10
@@ -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/tiff/tiff-4.0.3-r6.ebuild,v 1.9 2014/02/14 06:39:00 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v 1.10 2014/02/16 07:34:51 ago Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -12,7 +12,7 @@
 
 LICENSE="libtiff"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+cxx jbig jpeg lzma static-libs test zlib"
 
 RDEPEND="jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )



1.265                media-libs/tiff/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
retrieving revision 1.264
retrieving revision 1.265
diff -u -r1.264 -r1.265
--- ChangeLog	14 Feb 2014 06:39:00 -0000	1.264
+++ ChangeLog	16 Feb 2014 07:34:51 -0000	1.265
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/tiff
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.264 2014/02/14 06:39:00 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.265 2014/02/16 07:34:51 ago Exp $
+
+  16 Feb 2014; Agostino Sarubbo <ago@gentoo.org> tiff-4.0.3-r6.ebuild:
+  Stable for alpha, wrt bug #486590
 
   14 Feb 2014; Sergey Popov <pinkbyte@gentoo.org> tiff-4.0.3-r6.ebuild:
   Stable on arm, wrt bug #486590





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

* [gentoo-commits] gentoo-x86 commit in media-libs/tiff: tiff-4.0.3-r6.ebuild ChangeLog
@ 2014-04-28 17:49 Michal Gorny (mgorny)
  0 siblings, 0 replies; 9+ messages in thread
From: Michal Gorny (mgorny) @ 2014-04-28 17:49 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/04/28 17:49:34

  Modified:             tiff-4.0.3-r6.ebuild ChangeLog
  Log:
  Replace multilib_build_binaries with multilib_is_native_abi, in order to put an end to the confusion introduced by having two functions, the proper one suggesting it is just for binaries.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.11                 media-libs/tiff/tiff-4.0.3-r6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild?r1=1.10&r2=1.11

Index: tiff-4.0.3-r6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- tiff-4.0.3-r6.ebuild	16 Feb 2014 07:34:51 -0000	1.10
+++ tiff-4.0.3-r6.ebuild	28 Apr 2014 17:49:34 -0000	1.11
@@ -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/tiff/tiff-4.0.3-r6.ebuild,v 1.10 2014/02/16 07:34:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r6.ebuild,v 1.11 2014/04/28 17:49:34 mgorny Exp $
 
 EAPI=5
 inherit eutils libtool multilib-minimal
@@ -54,7 +54,7 @@
 		--with-docdir="${EPREFIX}"/usr/share/doc/${PF}
 
 	# remove useless subdirs
-	if ! multilib_build_binaries ; then
+	if ! multilib_is_native_abi ; then
 		sed -i \
 			-e 's/ tools//' \
 			-e 's/ contrib//' \
@@ -65,7 +65,7 @@
 }
 
 multilib_src_test() {
-	if ! multilib_build_binaries ; then
+	if ! multilib_is_native_abi ; then
 		cd tools
 		emake
 		cd "${BUILD_DIR}"



1.267                media-libs/tiff/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
retrieving revision 1.266
retrieving revision 1.267
diff -u -r1.266 -r1.267
--- ChangeLog	17 Feb 2014 05:30:16 -0000	1.266
+++ ChangeLog	28 Apr 2014 17:49:34 -0000	1.267
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/tiff
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.266 2014/02/17 05:30:16 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.267 2014/04/28 17:49:34 mgorny Exp $
+
+  28 Apr 2014; Michał Górny <mgorny@gentoo.org> tiff-4.0.3-r6.ebuild:
+  Replace multilib_build_binaries with multilib_is_native_abi, in order to put
+  an end to the confusion introduced by having two functions, the proper one
+  suggesting it is just for binaries.
 
   17 Feb 2014; Samuli Suominen <ssuominen@gentoo.org> -tiff-3.9.7.ebuild,
   -tiff-4.0.3-r4.ebuild, -tiff-4.0.3-r5.ebuild:





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

end of thread, other threads:[~2014-04-28 17:49 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-04 16:27 [gentoo-commits] gentoo-x86 commit in media-libs/tiff: tiff-4.0.3-r6.ebuild ChangeLog Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2014-02-04 22:55 Jeroen Roovers (jer)
2014-02-09  8:18 Agostino Sarubbo (ago)
2014-02-09  8:23 Agostino Sarubbo (ago)
2014-02-09  8:26 Agostino Sarubbo (ago)
2014-02-11 15:10 Akinori Hattori (hattya)
2014-02-14  6:39 Sergey Popov (pinkbyte)
2014-02-16  7:34 Agostino Sarubbo (ago)
2014-04-28 17:49 Michal Gorny (mgorny)

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