ssuominen    14/07/17 07:03:55

  Modified:             ChangeLog
  Added:                mdadm-3.3.1-r1.ebuild
  Log:
  Fix corruption of udev rules and/or systemd service files because of parallel 
make wrt #517218 by splitting installation of targets "install" and 
"install-systemd" to separate lines. Thanks to Mark R. Pariente for reporting.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  Changes    Path
1.179                sys-fs/mdadm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/ChangeLog?rev=1.179&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/ChangeLog?rev=1.179&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/ChangeLog?r1=1.178&r2=1.179

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- ChangeLog   14 Jul 2014 18:08:15 -0000      1.178
+++ ChangeLog   17 Jul 2014 07:03:55 -0000      1.179
@@ -1,6 +1,13 @@
 # ChangeLog for sys-fs/mdadm
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v 1.178 2014/07/14 
18:08:15 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v 1.179 2014/07/17 
07:03:55 ssuominen Exp $
+
+*mdadm-3.3.1-r1 (17 Jul 2014)
+
+  17 Jul 2014; Samuli Suominen <[email protected]> +mdadm-3.3.1-r1.ebuild:
+  Fix corruption of udev rules and/or systemd service files because of parallel
+  make wrt #517218 by splitting installation of targets "install" and "install-
+  systemd" to separate lines. Thanks to Mark R. Pariente for reporting.
 
 *mdadm-3.3.1 (14 Jul 2014)
 



1.1                  sys-fs/mdadm/mdadm-3.3.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/mdadm-3.3.1-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mdadm/mdadm-3.3.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: mdadm-3.3.1-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/mdadm-3.3.1-r1.ebuild,v 1.1 
2014/07/17 07:03:55 ssuominen Exp $

EAPI="4"
inherit multilib flag-o-matic systemd toolchain-funcs udev

DESCRIPTION="A useful tool for running RAID systems - it can be used as a 
replacement for the raidtools"
HOMEPAGE="http://neil.brown.name/blog/mdadm";
DEB_PR=2
SRC_URI="mirror://kernel/linux/utils/raid/mdadm/${P}.tar.xz
                
mirror://debian/pool/main/m/mdadm/${PN}_3.3-${DEB_PR}.debian.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="static"

DEPEND="virtual/pkgconfig
        app-arch/xz-utils"
RDEPEND=">=sys-apps/util-linux-2.16"

# The tests edit values in /proc and run tests on software raid devices.
# Thus, they shouldn't be run on systems with active software RAID devices.
RESTRICT="test"

mdadm_emake() {
        emake \
                PKG_CONFIG="$(tc-getPKG_CONFIG)" \
                CC="$(tc-getCC)" \
                CWFLAGS="-Wall" \
                CXFLAGS="${CFLAGS}" \
                MAP_DIR=/run/mdadm \
                UDEVDIR="$(get_udevdir)" \
                SYSTEMD_DIR="$(systemd_get_unitdir)" \
                "$@"
}

src_compile() {
        use static && append-ldflags -static
        mdadm_emake all mdassemble
}

src_test() {
        mdadm_emake test

        sh ./test || die
}

src_install() {
        # Use split lines because of bug #517218
        mdadm_emake DESTDIR="${D}" install
        mdadm_emake DESTDIR="${D}" install-systemd
        into /
        dosbin mdassemble
        dodoc ChangeLog INSTALL TODO README* ANNOUNCE-${PV}

        insinto /etc
        newins mdadm.conf-example mdadm.conf
        newinitd "${FILESDIR}"/mdadm.rc mdadm
        newconfd "${FILESDIR}"/mdadm.confd mdadm
        newinitd "${FILESDIR}"/mdraid.rc mdraid
        newconfd "${FILESDIR}"/mdraid.confd mdraid

        # From the Debian patchset
        into /usr
        dodoc "${WORKDIR}"/debian/README.checkarray
        dosbin "${WORKDIR}"/debian/checkarray

        insinto /etc/cron.weekly
        newins "${FILESDIR}"/mdadm.weekly mdadm
}

pkg_postinst() {
        if ! systemd_is_booted; then
                if [[ -z ${REPLACING_VERSIONS} ]] ; then
                        # Only inform people the first time they install.
                        elog "If you're not relying on kernel auto-detect of 
your RAID"
                        elog "devices, you need to add 'mdraid' to your 'boot' 
runlevel:"
                        elog "  rc-update add mdraid boot"
                fi
        fi
}




Reply via email to