public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-apps/hwinfo: hwinfo-16.0.ebuild ChangeLog
@ 2010-02-01  6:58 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 5+ messages in thread
From: Robin H. Johnson (robbat2) @ 2010-02-01  6:58 UTC (permalink / raw
  To: gentoo-commits

robbat2     10/02/01 06:58:57

  Modified:             ChangeLog
  Added:                hwinfo-16.0.ebuild
  Log:
  Version bump per bug #266745. Avoid kernel header issues per bug #236449. I know the last part of the build is forced non-parallel. It is not trivially fixable. Tell repoman to get lost.
  (Portage version: 2.2_rc61/cvs/Linux x86_64)

Revision  Changes    Path
1.11                 sys-apps/hwinfo/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -p -w -b -B -u -u -r1.10 -r1.11
--- ChangeLog	16 Jul 2008 12:59:19 -0000	1.10
+++ ChangeLog	1 Feb 2010 06:58:56 -0000	1.11
@@ -1,6 +1,14 @@
 # ChangeLog for sys-apps/hwinfo
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v 1.10 2008/07/16 12:59:19 nixnut Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v 1.11 2010/02/01 06:58:56 robbat2 Exp $
+
+*hwinfo-16.0 (01 Feb 2010)
+
+  01 Feb 2010; Robin H. Johnson <robbat2@gentoo.org> +hwinfo-16.0.ebuild,
+  +files/hwinfo-16.0-parallel-fixes.patch:
+  Version bump per bug #266745. Avoid kernel header issues per bug #236449.
+  I know the last part of the build is forced non-parallel. It is not
+  trivially fixable. Tell repoman to get lost.
 
   16 Jul 2008; nixnut <nixnut@gentoo.org> hwinfo-13.28.ebuild:
   Stable on ppc wrt bug 231667



1.1                  sys-apps/hwinfo/hwinfo-16.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?rev=1.1&content-type=text/plain

Index: hwinfo-16.0.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild,v 1.1 2010/02/01 06:58:56 robbat2 Exp $

EAPI=2
inherit eutils

DESCRIPTION="hwinfo is the hardware detection tool used in SuSE Linux."
HOMEPAGE="http://www.suse.com"
DEBIAN_PV="2"
DEBIAN_BASE_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/"
SRC_URI="${DEBIAN_BASE_URI}/${PN}_${PV}.orig.tar.gz
		 ${DEBIAN_BASE_URI}/${PN}_${PV}-${DEBIAN_PV}.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=">=sys-fs/sysfsutils-2
		sys-apps/hal
		sys-apps/dbus"
# this package won't work on *BSD
DEPEND="${RDEPEND}
		>=sys-kernel/linux-headers-2.6.17"

src_unpack (){
	unpack ${PN}_${PV}.orig.tar.gz
}

src_prepare() {
	EPATCH_OPTS="-p1 -d ${S}" epatch "${DISTDIR}"/${PN}_${PV}-${DEBIAN_PV}.diff.gz
	cd "${S}"
	for i in $(<"${S}"/debian/patches/series) ; do
		EPATCH_SUFFIX="" EPATCH_FORCE="yes" epatch "${S}"/debian/patches/${i}
	done
	EPATCH_OPTS="-p1 -d ${S}" epatch "${FILESDIR}"/${PN}-13.11-makefile-fixes.patch
	EPATCH_OPTS="-p1 -d ${S}" epatch "${FILESDIR}"/${PN}-16.0-parallel-fixes.patch
	#sed -i -e "s,^LIBS[ \t]*= -lhd,LIBS = -lhd -lsysfs," ${S}/Makefile
	#sed -i -e "s,^LIBDIR[ \t]*= /usr/lib$,LIBDIR = /usr/$(get_libdir)," ${S}/Makefile
	sed -i -e 's,make,$(MAKE),g' "${S}"/Makefile "${S}"/Makefile.common
	sed -i -e '/^touch:/s,$, $(LIBHD),g' "${S}"/src/Makefile
	sed -i -e '/^hw[a-z]\+:.*$(LIBHD)/s,$, subdirs ranlib,g' "${S}"/Makefile
	echo '$(LIBHD): subdirs' >>"${S}"/Makefile
	for i in src/{,ids,hd,isdn,isdn/cdb,int10,smp} ; do
		echo 'objects: $(OBJS) $(LIBHD)' >>"${S}"/${i}/Makefile
		echo '$(OBJS): subdirs' >>"${S}"/${i}/Makefile
		echo 'libs: $(LIBHD) subdirs $(OBJS)' >>"${S}"/${i}/Makefile
	done

	echo 'libs:' >>"${S}"/src/x86emu/Makefile

	echo 'libs: subdirs' >>"${S}"/Makefile
	echo 'ranlib: $(LIBHD) subdirs' >>"${S}"/Makefile
	echo -e "\tranlib \$(LIBHD)" >>"${S}"/Makefile
}

src_compile(){
	# build is NOT parallel safe, and the build system blows goats
	einfo "ISDN CDB pass"
	emake EXTRA_FLAGS="${CFLAGS}" -C 'src/isdn/cdb' || die "emake failed"
	einfo "LIBS pass"
	emake EXTRA_FLAGS="${CFLAGS}" libs || die "emake failed"
	einfo "FINAL pass"
	emake -j1 EXTRA_FLAGS="${CFLAGS}" || die "emake failed"
}

src_install() {
	emake install DESTDIR="${D}" || die
	[[ "$(get_libdir)" != "lib" ]] && mv "${D}"/usr/lib "${D}/usr/$(get_libdir)"
	dodoc VERSION README
	doman doc/hwinfo.8
}






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/hwinfo: hwinfo-16.0.ebuild ChangeLog
@ 2010-02-21 21:57 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 5+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-02-21 21:57 UTC (permalink / raw
  To: gentoo-commits

fauli       10/02/21 21:57:47

  Modified:             hwinfo-16.0.ebuild ChangeLog
  Log:
  stable x86, bug 305499
  (Portage version: 2.1.7.17/cvs/Linux i686)

Revision  Changes    Path
1.2                  sys-apps/hwinfo/hwinfo-16.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?r1=1.1&r2=1.2

Index: hwinfo-16.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hwinfo-16.0.ebuild	1 Feb 2010 06:58:56 -0000	1.1
+++ hwinfo-16.0.ebuild	21 Feb 2010 21:57:47 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild,v 1.1 2010/02/01 06:58:56 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild,v 1.2 2010/02/21 21:57:47 fauli Exp $
 
 EAPI=2
 inherit eutils
@@ -13,7 +13,7 @@
 		 ${DEBIAN_BASE_URI}/${PN}_${PV}-${DEBIAN_PV}.diff.gz"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE=""
 RDEPEND=">=sys-fs/sysfsutils-2
 		sys-apps/hal



1.12                 sys-apps/hwinfo/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	1 Feb 2010 06:58:56 -0000	1.11
+++ ChangeLog	21 Feb 2010 21:57:47 -0000	1.12
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/hwinfo
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v 1.11 2010/02/01 06:58:56 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v 1.12 2010/02/21 21:57:47 fauli Exp $
+
+  21 Feb 2010; Christian Faulhammer <fauli@gentoo.org> hwinfo-16.0.ebuild:
+  stable x86, bug 305499
 
 *hwinfo-16.0 (01 Feb 2010)
 






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/hwinfo: hwinfo-16.0.ebuild ChangeLog
@ 2010-02-22 17:22 Joseph Jezak (josejx)
  0 siblings, 0 replies; 5+ messages in thread
From: Joseph Jezak (josejx) @ 2010-02-22 17:22 UTC (permalink / raw
  To: gentoo-commits

josejx      10/02/22 17:22:25

  Modified:             hwinfo-16.0.ebuild ChangeLog
  Log:
  Marked ppc stable for bug #305499.
  (Portage version: 2.1.7.17/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  sys-apps/hwinfo/hwinfo-16.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?r1=1.2&r2=1.3

Index: hwinfo-16.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hwinfo-16.0.ebuild	21 Feb 2010 21:57:47 -0000	1.2
+++ hwinfo-16.0.ebuild	22 Feb 2010 17:22:24 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild,v 1.2 2010/02/21 21:57:47 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild,v 1.3 2010/02/22 17:22:24 josejx Exp $
 
 EAPI=2
 inherit eutils
@@ -13,7 +13,7 @@
 		 ${DEBIAN_BASE_URI}/${PN}_${PV}-${DEBIAN_PV}.diff.gz"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="~amd64 ppc x86"
 IUSE=""
 RDEPEND=">=sys-fs/sysfsutils-2
 		sys-apps/hal



1.13                 sys-apps/hwinfo/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	21 Feb 2010 21:57:47 -0000	1.12
+++ ChangeLog	22 Feb 2010 17:22:24 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/hwinfo
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v 1.12 2010/02/21 21:57:47 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v 1.13 2010/02/22 17:22:24 josejx Exp $
+
+  22 Feb 2010; Joseph Jezak <josejx@gentoo.org> hwinfo-16.0.ebuild:
+  Marked ppc stable for bug #305499.
 
   21 Feb 2010; Christian Faulhammer <fauli@gentoo.org> hwinfo-16.0.ebuild:
   stable x86, bug 305499






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/hwinfo: hwinfo-16.0.ebuild ChangeLog
@ 2010-02-23 17:30 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-02-23 17:30 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/02/23 17:30:55

  Modified:             hwinfo-16.0.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #305499
  (Portage version: 2.2_rc63/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  sys-apps/hwinfo/hwinfo-16.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?r1=1.3&r2=1.4

Index: hwinfo-16.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- hwinfo-16.0.ebuild	22 Feb 2010 17:22:24 -0000	1.3
+++ hwinfo-16.0.ebuild	23 Feb 2010 17:30:54 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild,v 1.3 2010/02/22 17:22:24 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild,v 1.4 2010/02/23 17:30:54 hwoarang Exp $
 
 EAPI=2
 inherit eutils
@@ -13,7 +13,7 @@
 		 ${DEBIAN_BASE_URI}/${PN}_${PV}-${DEBIAN_PV}.diff.gz"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE=""
 RDEPEND=">=sys-fs/sysfsutils-2
 		sys-apps/hal



1.14                 sys-apps/hwinfo/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/hwinfo/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	22 Feb 2010 17:22:24 -0000	1.13
+++ ChangeLog	23 Feb 2010 17:30:54 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/hwinfo
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v 1.13 2010/02/22 17:22:24 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v 1.14 2010/02/23 17:30:54 hwoarang Exp $
+
+  23 Feb 2010; Markos Chandras <hwoarang@gentoo.org> hwinfo-16.0.ebuild:
+  Stable on amd64 wrt bug #305499
 
   22 Feb 2010; Joseph Jezak <josejx@gentoo.org> hwinfo-16.0.ebuild:
   Marked ppc stable for bug #305499.






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/hwinfo: hwinfo-16.0.ebuild ChangeLog
@ 2010-06-29 18:29 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 5+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-06-29 18:29 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/06/29 18:29:21

  Modified:             hwinfo-16.0.ebuild ChangeLog
  Log:
  Fix building with -Wl,--as-needed wrt #313369 by Kacper Kowalik.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  sys-apps/hwinfo/hwinfo-16.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild?r1=1.4&r2=1.5

Index: hwinfo-16.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- hwinfo-16.0.ebuild	23 Feb 2010 17:30:54 -0000	1.4
+++ hwinfo-16.0.ebuild	29 Jun 2010 18:29:21 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild,v 1.4 2010/02/23 17:30:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/hwinfo-16.0.ebuild,v 1.5 2010/06/29 18:29:21 ssuominen Exp $
 
 EAPI=2
 inherit eutils
@@ -51,6 +51,10 @@
 	echo 'libs: subdirs' >>"${S}"/Makefile
 	echo 'ranlib: $(LIBHD) subdirs' >>"${S}"/Makefile
 	echo -e "\tranlib \$(LIBHD)" >>"${S}"/Makefile
+
+	sed -i -e 's/LDFLAGS	= /LDFLAGS := $(LDFLAGS) /' "${S}"/Makefile.common || die
+	sed -i -e 's/(CFLAGS)/& $(LDFLAGS)/' "${S}"/src/ids/Makefile || die
+	epatch "${FILESDIR}"/${PN}-16.0-asneeded.patch
 }
 
 src_compile(){



1.15                 sys-apps/hwinfo/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwinfo/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwinfo/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/hwinfo/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	23 Feb 2010 17:30:54 -0000	1.14
+++ ChangeLog	29 Jun 2010 18:29:21 -0000	1.15
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/hwinfo
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v 1.14 2010/02/23 17:30:54 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwinfo/ChangeLog,v 1.15 2010/06/29 18:29:21 ssuominen Exp $
+
+  29 Jun 2010; Samuli Suominen <ssuominen@gentoo.org> hwinfo-16.0.ebuild,
+  +files/hwinfo-16.0-asneeded.patch:
+  Fix building with -Wl,--as-needed wrt #313369 by Kacper Kowalik.
 
   23 Feb 2010; Markos Chandras <hwoarang@gentoo.org> hwinfo-16.0.ebuild:
   Stable on amd64 wrt bug #305499






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

end of thread, other threads:[~2010-06-29 18:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-01  6:58 [gentoo-commits] gentoo-x86 commit in sys-apps/hwinfo: hwinfo-16.0.ebuild ChangeLog Robin H. Johnson (robbat2)
  -- strict thread matches above, loose matches on Subject: below --
2010-02-21 21:57 Christian Faulhammer (fauli)
2010-02-22 17:22 Joseph Jezak (josejx)
2010-02-23 17:30 Markos Chandras (hwoarang)
2010-06-29 18:29 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