Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 267154 - sys-fs/dmraid-1.0.0_rc15: depend lvm2 fix (gparted dmraid USE)
Summary: sys-fs/dmraid-1.0.0_rc15: depend lvm2 fix (gparted dmraid USE)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: All Linux
: High normal
Assignee: Stefan Schweizer (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-04-23 04:32 UTC by gogonkt
Modified: 2009-04-27 15:50 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
changed dependencies (dmraid-1.0.0_rc15_lvm2-2.02.45.diff,569 bytes, text/plain)
2009-04-24 11:58 UTC, Roman v. Gemmeren
Details

Note You need to log in before you can comment on or make changes to this bug.
Description gogonkt 2009-04-23 04:32:20 UTC
sys-fs/dmraid-1.0.0_rc15: depend lvm2 fix (gparted dmraid USE)
When I install gparted,
[blocks B     ] sys-fs/device-mapper ("sys-fs/device-mapper" is blocking sys-fs/lvm2-2.02.45)
I found sys-fs/dmraid-1.0.0_rc15 ebuild problem
chang:
DEPEND="|| ( >=sys-fs/lvm2-2.02.45
            sys-fs/device-mapper )
    selinux? ( sys-libs/libselinux
           sys-libs/libsepol )"

it work great

ebuild:

Reproducible: Always




# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/dmraid/dmraid-1.0.0_rc15.ebuild,v 1.1 2009/03/23 21:34:33 genstef Exp $

inherit linux-info flag-o-matic

MY_PV=${PV/_/.}

DESCRIPTION="Device-mapper RAID tool and library"
HOMEPAGE="http://people.redhat.com/~heinzm/sw/dmraid/"
SRC_URI="http://people.redhat.com/~heinzm/sw/dmraid/src/${PN}-${MY_PV}.tar.bz2"

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

DEPEND="|| ( >=sys-fs/lvm2-2.02.45
            sys-fs/device-mapper )
    selinux? ( sys-libs/libselinux
           sys-libs/libsepol )"
RDEPEND="${DEPEND}"

S=${WORKDIR}/${PN}/${MY_PV}

pkg_setup() {
    if kernel_is lt 2 6 ; then
        ewarn "You are using a kernel < 2.6"
        ewarn "DMraid uses recently introduced Device-Mapper features."
        ewarn "These might be unavailable in the kernel you are running now."
    fi
    if use static && use selinux ; then
        eerror "ERROR - cannot compile static with libselinux / libsepol"
        die "USE flag conflicts."
    fi
}

src_unpack() {
    unpack ${A}
    cd "${S}"
    epatch "${FILESDIR}/${PN}-destdir-fix.patch"
}

src_compile() {
    econf \
        $(use_enable static static_link) \
        $(use_enable selinux libselinux) \
        $(use_enable selinux libsepol)
    emake -j1 || die "emake failed"
}                                                                                                            

src_install() {
    emake DESTDIR="${D}" install || die "emake install failed"
    dodoc CHANGELOG README TODO KNOWN_BUGS doc/* || die "dodoc failed"
}

pkg_postinst() {
    einfo "For booting Gentoo from Device-Mapper RAID you can use Genkernel."
    einfo " "
    einfo "Genkernel will generate the kernel and the initrd with a statically "
    einfo "linked dmraid binary (its own version which may not be the same as this version):"
    einfo "  emerge -av sys-kernel/genkernel"
    einfo "  genkernel --dmraid --udev all"
    einfo " "
    einfo "If you would rather use this version of DMRAID with Genkernel, copy the distfile"
    einfo "from your distdir to '/usr/share/genkernel/pkg/' and update the following"
    einfo "in /etc/genkernel.conf:"
    einfo "  DMRAID_VER=\"${MY_PV/_/.}\""
    einfo "  DMRAID_SRCTAR=\"\${GK_SHARE}/pkg/${A}\""
    einfo " "
    ewarn "DMRAID should be safe to use, but no warranties can be given"
    einfo " "
}
Comment 1 Lars Wendler (Polynomial-C) (RETIRED) gentoo-dev 2009-04-23 21:56:09 UTC
Please attach unified diffs (diff -u) when you did changes to an ebuild. That would be much more handy for our devs.
Comment 2 Roman v. Gemmeren 2009-04-24 11:58:19 UTC
Created attachment 189310 [details]
changed dependencies

here is a diff according to the above described problem. device-mapper is being blocked because of the newer lvm2, which contains some kind of device-mapper of its own.
Comment 3 Ian Stakenvicius (RETIRED) gentoo-dev 2009-04-26 03:26:37 UTC
This fix is in line with bug 265599 (this package probably should've been included in the fix list for that bug).  Could a dev apply the above patch for me asap?

Thanks!
Comment 4 Patrick Lauer gentoo-dev 2009-04-27 15:50:48 UTC
+  27 Apr 2009; Patrick Lauer <patrick@gentoo.org> dmraid-1.0.0_rc15:
+  Dep fix for #267154