Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
wschlich 09/11/10 11:46:09
Modified: ChangeLog
Added: drbd-8.3.6.ebuild
Log:
version bump wrt bug #290313
(Portage version: 2.2_rc33/cvs/Linux i686)
Revision Changes Path
1.97 sys-cluster/drbd/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-cluster/drbd/ChangeLog?rev=1.97&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-cluster/drbd/ChangeLog?rev=1.97&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-cluster/drbd/ChangeLog?r1=1.96&r2=1.97
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/drbd/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog 30 Sep 2009 14:00:20 -0000 1.96
+++ ChangeLog 10 Nov 2009 11:46:08 -0000 1.97
@@ -1,6 +1,11 @@
# ChangeLog for sys-cluster/drbd
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/drbd/ChangeLog,v 1.96 2009/09/30 14:00:20 xmerlin Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/drbd/ChangeLog,v 1.97 2009/11/10 11:46:08 wschlich Exp $
+
+*drbd-8.3.6 (10 Nov 2009)
+
+ 10 Nov 2009; Wolfram Schlich <wschlich@g.o> +drbd-8.3.6.ebuild:
+ version bump wrt bug #290313
30 Sep 2009; Christian Zoffoli <xmerlin@g.o>
+files/drbd-8.3.2-bitsperlong.h.patch, drbd-8.3.2.ebuild:
1.1 sys-cluster/drbd/drbd-8.3.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-cluster/drbd/drbd-8.3.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-cluster/drbd/drbd-8.3.6.ebuild?rev=1.1&content-type=text/plain
Index: drbd-8.3.6.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/drbd/drbd-8.3.6.ebuild,v 1.1 2009/11/10 11:46:08 wschlich Exp $
EAPI="2"
inherit eutils versionator
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
MY_MAJ_PV="$(get_version_component_range 1-2 ${PV})"
DESCRIPTION="mirror/replicate block-devices across a network-connection"
SRC_URI="http://oss.linbit.com/drbd/${MY_MAJ_PV}/${PN}-${PV}.tar.gz"
HOMEPAGE="http://www.drbd.org"
IUSE=""
DEPEND=""
RDEPEND=""
PDEPEND="~sys-cluster/drbd-kernel-${PV}"
SLOT="0"
src_configure() {
# TODO FIXME: add USE flags?
econf \
--localstatedir=/var \
--with-utils \
--without-km \
--without-udev \
--with-xen \
--without-pacemaker \
--with-heartbeat \
--without-rgmanager \
--without-bashcompletion \
--with-distro=gentoo \
|| die "configure failed"
}
src_compile() {
# only compile the tools
emake -j1 OPTFLAGS="${CFLAGS}" tools || die "compilation failed"
}
src_install() {
# only install the tools
emake DESTDIR="${D}" install-tools || die "installation failed"
# install our own init script
newinitd "${FILESDIR}"/${PN}-8.0.rc ${PN} || die
# manually install udev rules
insinto /etc/udev/rules.d
newins scripts/drbd.rules 65-drbd.rules || die
# manually install bash-completion script
insinto /usr/share/bash-completion
newins scripts/drbdadm.bash_completion drbdadm
# install the docs
dodoc README ChangeLog
# it doesnt make sense to install a default conf in /etc,
# so we put it to the docs
rm -f "${D}"/etc/drbd.conf
dodoc scripts/drbd.conf || die
}
pkg_postinst() {
einfo ""
einfo "Please copy and gunzip the configuration file"
einfo "from /usr/share/doc/${PF}/drbd.conf.gz to /etc"
einfo "and edit it to your needs. Helpful commands:"
einfo "man 5 drbd.conf"
einfo "man 8 drbdsetup"
einfo "man 8 drbdadm"
einfo "man 8 drbddisk"
einfo "man 8 drbdmeta"
einfo ""
}
|
|