public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-fs/vhba: ChangeLog vhba-1.2.1.ebuild
@ 2009-03-12  7:59 Tiziano Mueller (dev-zero)
  0 siblings, 0 replies; 6+ messages in thread
From: Tiziano Mueller (dev-zero) @ 2009-03-12  7:59 UTC (permalink / raw
  To: gentoo-commits

dev-zero    09/03/12 07:59:38

  Modified:             ChangeLog
  Added:                vhba-1.2.1.ebuild
  Log:
  Version bump (bug #255743, should also fix #233910 and #233102), general ebuild cleanup.
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 sys-fs/vhba/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	16 Nov 2008 01:24:38 -0000	1.9
+++ ChangeLog	12 Mar 2009 07:59:38 -0000	1.10
@@ -1,6 +1,13 @@
 # ChangeLog for sys-fs/vhba
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.9 2008/11/16 01:24:38 vanquirius Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.10 2009/03/12 07:59:38 dev-zero Exp $
+
+*vhba-1.2.1 (12 Mar 2009)
+
+  12 Mar 2009; Tiziano Müller <dev-zero@gentoo.org>
+  +files/1.2.1-parallel_build.patch, +vhba-1.2.1.ebuild:
+  Version bump (bug #255743, should also fix #233910 and #233102), general
+  ebuild cleanup.
 
   16 Nov 2008; Marcelo Goes <vanquirius@gentoo.org> vhba-1.1.0.ebuild:
   Build against sources in /usr/src/linux instead of /lib/modules/uname -r for



1.1                  sys-fs/vhba/vhba-1.2.1.ebuild

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

Index: vhba-1.2.1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild,v 1.1 2009/03/12 07:59:38 dev-zero Exp $

EAPI="2"

inherit linux-info linux-mod eutils

DESCRIPTION="VHBA module provides Virtual (SCSI) Host Bus Adapter for the cdemu suite"
HOMEPAGE="http://cdemu.org"
SRC_URI="mirror://sourceforge/cdemu/vhba-module-${PV}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND=">=virtual/linux-sources-2.6.19"
RDEPEND=""

S="${WORKDIR}/vhba-module-${PV}"
MODULE_NAMES="vhba(block:${S})"
BUILD_TARGETS="all"

pkg_setup() {
	CONFIG_CHECK="~BLK_DEV_SR ~CHR_DEV_SG"
	check_extra_config
	BUILD_PARAMS="KERNELDIR=${KV_DIR}"
	linux-mod_pkg_setup
}

src_prepare() {
	epatch "${FILESDIR}/${PV}-parallel_build.patch"
	sed -i \
		-e "s:/lib/modules/\$(KERNELRELEASE)/build:${KERNEL_DIR}:g" \
		Makefile || die "sed failed"
}

src_install() {
	KV_OBJ="ko"
	linux-mod_src_install || die "Error: installing module failed!"
	UDEV_RULES="/etc/udev/rules.d/70-vhba.rules"
	einfo "Generating UDEV-rules ..."
	mkdir -p "${D}"/${UDEV_RULES%/*}
	echo -e "# do not edit this file, it will be overwritten on update\n#" \
		> "${D}"/${UDEV_RULES}
	echo -e "KERNEL==\"vhba_ctl\", NAME=\"%k\", MODE=\"0660\", OWNER=\"root\",GROUP=\"cdemu\"" >> "${D}"/${UDEV_RULES}
}

pkg_postinst() {
	einfo "Generating cdemu group ..."
	enewgroup cdemu

	elog "Don't forget to add your user to the cdemu group "
	elog "if you want to be able to use virtual cdemu devices."
	linux-mod_pkg_postinst
}






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/vhba: ChangeLog vhba-1.2.1.ebuild
@ 2009-09-19 11:18 Tiziano Mueller (dev-zero)
  0 siblings, 0 replies; 6+ messages in thread
From: Tiziano Mueller (dev-zero) @ 2009-09-19 11:18 UTC (permalink / raw
  To: gentoo-commits

dev-zero    09/09/19 11:18:46

  Modified:             ChangeLog vhba-1.2.1.ebuild
  Log:
  Force the kernel-dir to be KV_DIR (bug #233910, thanks to Ambroz Bizjak).
  (Portage version: 2.2_rc40/cvs/Linux x86_64)

Revision  Changes    Path
1.12                 sys-fs/vhba/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	6 Sep 2009 21:18:46 -0000	1.11
+++ ChangeLog	19 Sep 2009 11:18:45 -0000	1.12
@@ -1,6 +1,10 @@
 # ChangeLog for sys-fs/vhba
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.11 2009/09/06 21:18:46 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.12 2009/09/19 11:18:45 dev-zero Exp $
+
+  19 Sep 2009; Tiziano Müller <dev-zero@gentoo.org>
+  +files/1.2.1-kerneldir.patch, vhba-1.2.1.ebuild:
+  Force the kernel-dir to be KV_DIR (bug #233910, thanks to Ambroz Bizjak).
 
   06 Sep 2009; Robin H. Johnson <robbat2@gentoo.org> vhba-1.0.0.ebuild,
   vhba-1.1.0.ebuild, vhba-1.2.1.ebuild:



1.3                  sys-fs/vhba/vhba-1.2.1.ebuild

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

Index: vhba-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vhba-1.2.1.ebuild	6 Sep 2009 21:18:46 -0000	1.2
+++ vhba-1.2.1.ebuild	19 Sep 2009 11:18:45 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild,v 1.2 2009/09/06 21:18:46 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild,v 1.3 2009/09/19 11:18:45 dev-zero Exp $
 
 EAPI="2"
 
@@ -25,15 +25,14 @@
 pkg_setup() {
 	CONFIG_CHECK="~BLK_DEV_SR ~CHR_DEV_SG"
 	check_extra_config
-	BUILD_PARAMS="KERNELDIR=${KV_DIR}"
+	BUILD_PARAMS="KDIR=${KV_DIR}"
 	linux-mod_pkg_setup
 }
 
 src_prepare() {
-	epatch "${FILESDIR}/${PV}-parallel_build.patch"
-	sed -i \
-		-e "s:/lib/modules/\$(KERNELRELEASE)/build:${KERNEL_DIR}:g" \
-		Makefile || die "sed failed"
+	epatch \
+		"${FILESDIR}/${PV}-parallel_build.patch" \
+		"${FILESDIR}/${PV}-kerneldir.patch"
 }
 
 src_install() {






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/vhba: ChangeLog vhba-1.2.1.ebuild
@ 2010-01-16 17:36 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 6+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-01-16 17:36 UTC (permalink / raw
  To: gentoo-commits

fauli       10/01/16 17:36:20

  Modified:             ChangeLog vhba-1.2.1.ebuild
  Log:
  stable x86, bug 296868
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.13                 sys-fs/vhba/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	19 Sep 2009 11:18:45 -0000	1.12
+++ ChangeLog	16 Jan 2010 17:36:20 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/vhba
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.12 2009/09/19 11:18:45 dev-zero Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.13 2010/01/16 17:36:20 fauli Exp $
+
+  16 Jan 2010; Christian Faulhammer <fauli@gentoo.org> vhba-1.2.1.ebuild:
+  stable x86, bug 296868
 
   19 Sep 2009; Tiziano Müller <dev-zero@gentoo.org>
   +files/1.2.1-kerneldir.patch, vhba-1.2.1.ebuild:



1.4                  sys-fs/vhba/vhba-1.2.1.ebuild

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

Index: vhba-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- vhba-1.2.1.ebuild	19 Sep 2009 11:18:45 -0000	1.3
+++ vhba-1.2.1.ebuild	16 Jan 2010 17:36:20 -0000	1.4
@@ -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/sys-fs/vhba/vhba-1.2.1.ebuild,v 1.3 2009/09/19 11:18:45 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild,v 1.4 2010/01/16 17:36:20 fauli Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 DEPEND=">=virtual/linux-sources-2.6.19"






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/vhba: ChangeLog vhba-1.2.1.ebuild
@ 2010-02-01 20:02 Peter Volkov (pva)
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Volkov (pva) @ 2010-02-01 20:02 UTC (permalink / raw
  To: gentoo-commits

pva         10/02/01 20:02:01

  Modified:             ChangeLog vhba-1.2.1.ebuild
  Log:
  amd64 stable, bug #296868
  (Portage version: 2.1.7.17/cvs/Linux x86_64)

Revision  Changes    Path
1.14                 sys-fs/vhba/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	16 Jan 2010 17:36:20 -0000	1.13
+++ ChangeLog	1 Feb 2010 20:02:00 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/vhba
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.13 2010/01/16 17:36:20 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.14 2010/02/01 20:02:00 pva Exp $
+
+  01 Feb 2010; Peter Volkov <pva@gentoo.org> vhba-1.2.1.ebuild:
+  amd64 stable, bug #296868
 
   16 Jan 2010; Christian Faulhammer <fauli@gentoo.org> vhba-1.2.1.ebuild:
   stable x86, bug 296868



1.5                  sys-fs/vhba/vhba-1.2.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild?r1=1.4&r2=1.5

Index: vhba-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- vhba-1.2.1.ebuild	16 Jan 2010 17:36:20 -0000	1.4
+++ vhba-1.2.1.ebuild	1 Feb 2010 20:02:00 -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-fs/vhba/vhba-1.2.1.ebuild,v 1.4 2010/01/16 17:36:20 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild,v 1.5 2010/02/01 20:02:00 pva Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 DEPEND=">=virtual/linux-sources-2.6.19"






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/vhba: ChangeLog vhba-1.2.1.ebuild
@ 2010-03-05 14:19 Peter Volkov (pva)
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Volkov (pva) @ 2010-03-05 14:19 UTC (permalink / raw
  To: gentoo-commits

pva         10/03/05 14:19:35

  Modified:             ChangeLog vhba-1.2.1.ebuild
  Log:
  Added patch to fix compatibility with 2.6.33 kernels, bug 303146 thank Rion for catching upstream fix fast.
  (Portage version: 2.2_rc62/cvs/Linux i686)

Revision  Changes    Path
1.16                 sys-fs/vhba/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	1 Feb 2010 20:03:32 -0000	1.15
+++ ChangeLog	5 Mar 2010 14:19:34 -0000	1.16
@@ -1,6 +1,11 @@
 # ChangeLog for sys-fs/vhba
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.15 2010/02/01 20:03:32 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.16 2010/03/05 14:19:34 pva Exp $
+
+  05 Mar 2010; Peter Volkov <pva@gentoo.org> vhba-1.2.1.ebuild,
+  +files/vhba-1.2.1-kernel-2.6.33.patch:
+  Added patch to fix compatibility with 2.6.33 kernels, bug 303146 thank
+  Rion for catching upstream fix fast.
 
   01 Feb 2010; Peter Volkov <pva@gentoo.org> -vhba-1.0.0.ebuild,
   -vhba-1.1.0.ebuild:



1.6                  sys-fs/vhba/vhba-1.2.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild?r1=1.5&r2=1.6

Index: vhba-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- vhba-1.2.1.ebuild	1 Feb 2010 20:02:00 -0000	1.5
+++ vhba-1.2.1.ebuild	5 Mar 2010 14:19:34 -0000	1.6
@@ -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-fs/vhba/vhba-1.2.1.ebuild,v 1.5 2010/02/01 20:02:00 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild,v 1.6 2010/03/05 14:19:34 pva Exp $
 
 EAPI="2"
 
@@ -32,7 +32,8 @@
 src_prepare() {
 	epatch \
 		"${FILESDIR}/${PV}-parallel_build.patch" \
-		"${FILESDIR}/${PV}-kerneldir.patch"
+		"${FILESDIR}/${PV}-kerneldir.patch" \
+		"${FILESDIR}/${P}-kernel-2.6.33.patch"
 }
 
 src_install() {






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/vhba: ChangeLog vhba-1.2.1.ebuild
@ 2010-04-26 19:40 Peter Volkov (pva)
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Volkov (pva) @ 2010-04-26 19:40 UTC (permalink / raw
  To: gentoo-commits

pva         10/04/26 19:40:36

  Modified:             ChangeLog vhba-1.2.1.ebuild
  Log:
  Fixed build issue with 2.6.34 kernels, bug #317119, thank Rion for report.
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.17                 sys-fs/vhba/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	5 Mar 2010 14:19:34 -0000	1.16
+++ ChangeLog	26 Apr 2010 19:40:36 -0000	1.17
@@ -1,6 +1,10 @@
 # ChangeLog for sys-fs/vhba
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.16 2010/03/05 14:19:34 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.17 2010/04/26 19:40:36 pva Exp $
+
+  26 Apr 2010; Peter Volkov <pva@gentoo.org>
+  +files/vhba-1.2.1-kernel-2.6.34.patch:
+  Fixed build issue with 2.6.34 kernels, bug #317119, thank Rion for report.
 
   05 Mar 2010; Peter Volkov <pva@gentoo.org> vhba-1.2.1.ebuild,
   +files/vhba-1.2.1-kernel-2.6.33.patch:



1.7                  sys-fs/vhba/vhba-1.2.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild?r1=1.6&r2=1.7

Index: vhba-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- vhba-1.2.1.ebuild	5 Mar 2010 14:19:34 -0000	1.6
+++ vhba-1.2.1.ebuild	26 Apr 2010 19:40:36 -0000	1.7
@@ -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-fs/vhba/vhba-1.2.1.ebuild,v 1.6 2010/03/05 14:19:34 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-1.2.1.ebuild,v 1.7 2010/04/26 19:40:36 pva Exp $
 
 EAPI="2"
 
@@ -33,7 +33,8 @@
 	epatch \
 		"${FILESDIR}/${PV}-parallel_build.patch" \
 		"${FILESDIR}/${PV}-kerneldir.patch" \
-		"${FILESDIR}/${P}-kernel-2.6.33.patch"
+		"${FILESDIR}/${P}-kernel-2.6.33.patch" \
+		"${FILESDIR}/${P}-kernel-2.6.34.patch"
 }
 
 src_install() {






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

end of thread, other threads:[~2010-04-26 19:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-16 17:36 [gentoo-commits] gentoo-x86 commit in sys-fs/vhba: ChangeLog vhba-1.2.1.ebuild Christian Faulhammer (fauli)
  -- strict thread matches above, loose matches on Subject: below --
2010-04-26 19:40 Peter Volkov (pva)
2010-03-05 14:19 Peter Volkov (pva)
2010-02-01 20:02 Peter Volkov (pva)
2009-09-19 11:18 Tiziano Mueller (dev-zero)
2009-03-12  7:59 Tiziano Mueller (dev-zero)

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