* [gentoo-commits] gentoo-x86 commit in sys-apps/kmod: kmod-5.ebuild ChangeLog
@ 2012-02-08 2:54 William Hubbs (williamh)
0 siblings, 0 replies; 2+ messages in thread
From: William Hubbs (williamh) @ 2012-02-08 2:54 UTC (permalink / raw
To: gentoo-commits
williamh 12/02/08 02:54:59
Modified: ChangeLog
Added: kmod-5.ebuild
Log:
version bump
(Portage version: 2.2.0_alpha85/cvs/Linux x86_64)
Revision Changes Path
1.19 sys-apps/kmod/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?r1=1.18&r2=1.19
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog 4 Feb 2012 00:37:44 -0000 1.18
+++ ChangeLog 8 Feb 2012 02:54:59 -0000 1.19
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/kmod
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v 1.18 2012/02/04 00:37:44 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v 1.19 2012/02/08 02:54:59 williamh Exp $
+
+*kmod-5 (08 Feb 2012)
+
+ 08 Feb 2012; William Hubbs <williamh@gentoo.org> +kmod-5.ebuild:
+ version bump
04 Feb 2012; William Hubbs <williamh@gentoo.org> kmod-4.ebuild,
kmod-9999.ebuild:
1.1 sys-apps/kmod/kmod-5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/kmod-5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/kmod-5.ebuild?rev=1.1&content-type=text/plain
Index: kmod-5.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/kmod-5.ebuild,v 1.1 2012/02/08 02:54:59 williamh Exp $
EAPI=4
EGIT_REPO_URI="git://git.profusion.mobi/${PN}.git"
[[ "${PV}" == "9999" ]] && vcs=git-2
inherit ${vcs} autotools eutils toolchain-funcs
unset vcs
if [[ "${PV}" != "9999" ]] ; then
SRC_URI="http://packages.profusion.mobi/kmod/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
fi
DESCRIPTION="library and tools for managing linux kernel modules"
HOMEPAGE="http://git.profusion.mobi/cgit.cgi/kmod.git"
LICENSE="LGPL-2"
SLOT="0"
IUSE="+compat doc debug lzma static-libs +tools zlib"
REQUIRED_USE="compat? ( tools )"
COMMON_DEPEND="!sys-apps/module-init-tools
lzma? ( app-arch/xz-utils )
zlib? ( sys-libs/zlib )"
DEPEND="${COMMON_DEPEND}
doc? ( dev-util/gtk-doc )"
RDEPEND="${COMMON_DEPEND}"
src_prepare()
{
if [ ! -e configure ]; then
if use doc; then
gtkdocize --copy --docdir libkmod/docs || die "gtkdocize failed"
else
touch libkmod/docs/gtk-doc.make
fi
eautoreconf
else
elibtoolize
fi
}
src_configure()
{
econf \
$(use_enable debug) \
$(use_enable doc gtk-doc) \
$(use_with lzma xz) \
$(use_enable static-libs static) \
$(use_enable tools) \
$(use_with zlib)
}
src_install()
{
default
# we have a .pc file for people to use
find "${D}" -name libkmod.la -delete
if use compat && use tools; then
dodir /bin
dosym /usr/bin/kmod /bin/lsmod
dodir /sbin
for cmd in depmod insmod modinfo modprobe rmmod; do
dosym /usr/bin/kmod /sbin/$cmd
done
fi
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/kmod: kmod-5.ebuild ChangeLog
@ 2012-02-08 16:56 Matt Turner (mattst88)
0 siblings, 0 replies; 2+ messages in thread
From: Matt Turner (mattst88) @ 2012-02-08 16:56 UTC (permalink / raw
To: gentoo-commits
mattst88 12/02/08 16:56:21
Modified: kmod-5.ebuild ChangeLog
Log:
Added ~mips, bug 397769.
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Revision Changes Path
1.2 sys-apps/kmod/kmod-5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/kmod-5.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/kmod-5.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/kmod-5.ebuild?r1=1.1&r2=1.2
Index: kmod-5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kmod/kmod-5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kmod-5.ebuild 8 Feb 2012 02:54:59 -0000 1.1
+++ kmod-5.ebuild 8 Feb 2012 16:56:21 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/kmod-5.ebuild,v 1.1 2012/02/08 02:54:59 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/kmod-5.ebuild,v 1.2 2012/02/08 16:56:21 mattst88 Exp $
EAPI=4
@@ -12,7 +12,7 @@
if [[ "${PV}" != "9999" ]] ; then
SRC_URI="http://packages.profusion.mobi/kmod/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+ KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86"
fi
DESCRIPTION="library and tools for managing linux kernel modules"
1.20 sys-apps/kmod/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?r1=1.19&r2=1.20
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog 8 Feb 2012 02:54:59 -0000 1.19
+++ ChangeLog 8 Feb 2012 16:56:21 -0000 1.20
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/kmod
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v 1.19 2012/02/08 02:54:59 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v 1.20 2012/02/08 16:56:21 mattst88 Exp $
+
+ 08 Feb 2012; Matt Turner <mattst88@gentoo.org> kmod-5.ebuild:
+ Added ~mips, bug 397769.
*kmod-5 (08 Feb 2012)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-02-08 16:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-08 16:56 [gentoo-commits] gentoo-x86 commit in sys-apps/kmod: kmod-5.ebuild ChangeLog Matt Turner (mattst88)
-- strict thread matches above, loose matches on Subject: below --
2012-02-08 2:54 William Hubbs (williamh)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox