* [gentoo-commits] gentoo-x86 commit in sys-apps/util-linux: ChangeLog util-linux-2.20.1-r2.ebuild
@ 2012-02-16 20:10 Mike Frysinger (vapier)
0 siblings, 0 replies; 6+ messages in thread
From: Mike Frysinger (vapier) @ 2012-02-16 20:10 UTC (permalink / raw
To: gentoo-commits
vapier 12/02/16 20:10:52
Modified: ChangeLog
Added: util-linux-2.20.1-r2.ebuild
Log:
Add patch from upstream for libmount.h in C++ code #401057 by Michał Górny. Have umount search /usr/sbin like mount/fsck #403073 by Aidan Marks.
(Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
Revision Changes Path
1.367 sys-apps/util-linux/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?rev=1.367&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?rev=1.367&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?r1=1.366&r2=1.367
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v
retrieving revision 1.366
retrieving revision 1.367
diff -u -r1.366 -r1.367
--- ChangeLog 7 Jan 2012 21:33:35 -0000 1.366
+++ ChangeLog 16 Feb 2012 20:10:52 -0000 1.367
@@ -1,6 +1,14 @@
# ChangeLog for sys-apps/util-linux
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.366 2012/01/07 21:33:35 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.367 2012/02/16 20:10:52 vapier Exp $
+
+*util-linux-2.20.1-r2 (16 Feb 2012)
+
+ 16 Feb 2012; Mike Frysinger <vapier@gentoo.org> +util-linux-2.20.1-r2.ebuild,
+ +files/util-linux-2.20.1-libmount-c++.patch,
+ +files/util-linux-2.20.1-umount-fs-search.patch:
+ Add patch from upstream for libmount.h in C++ code #401057 by Michał Górny.
+ Have umount search /usr/sbin like mount/fsck #403073 by Aidan Marks.
*util-linux-2.20.1-r1 (07 Jan 2012)
1.1 sys-apps/util-linux/util-linux-2.20.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?rev=1.1&content-type=text/plain
Index: util-linux-2.20.1-r2.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild,v 1.1 2012/02/16 20:10:52 vapier Exp $
EAPI="3"
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git"
inherit eutils toolchain-funcs libtool flag-o-matic
[[ ${PV} == "9999" ]] && inherit git autotools
MY_PV=${PV/_/-}
MY_P=${PN}-${MY_PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Various useful Linux utilities"
HOMEPAGE="http://www.kernel.org/pub/linux/utils/util-linux/"
if [[ ${PV} == "9999" ]] ; then
SRC_URI=""
#KEYWORDS=""
else
SRC_URI="mirror://kernel/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.bz2
loop-aes? ( http://loop-aes.sourceforge.net/updates/util-linux-2.20-20110905.diff.bz2 )"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-linux"
fi
LICENSE="GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain"
SLOT="0"
IUSE="+cramfs crypt ddate loop-aes ncurses nls old-linux perl selinux slang static-libs uclibc unicode"
RDEPEND="!sys-process/schedutils
!sys-apps/setarch
!<sys-apps/sysvinit-2.88-r3
!<sys-libs/e2fsprogs-libs-1.41.8
!<sys-fs/e2fsprogs-1.41.8
cramfs? ( sys-libs/zlib )
ncurses? ( >=sys-libs/ncurses-5.2-r2 )
perl? ( dev-lang/perl )
selinux? ( sys-libs/libselinux )
slang? ( sys-libs/slang )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
virtual/os-headers"
src_prepare() {
if [[ ${PV} == "9999" ]] ; then
po/update-potfiles
autopoint --force
eautoreconf
else
use loop-aes && epatch "${WORKDIR}"/util-linux-*.diff
fi
epatch "${FILESDIR}"/${P}-libmount-c++.patch #401057
epatch "${FILESDIR}"/${PN}-2.20.1-umount-fs-search.patch #403073
use uclibc && sed -i -e s/versionsort/alphasort/g -e s/strverscmp.h/dirent.h/g mount/lomount.c
elibtoolize
}
lfs_fallocate_test() {
# Make sure we can use fallocate with LFS #300307
cat <<-EOF > "${T}"/fallocate.c
#define _GNU_SOURCE
#include <fcntl.h>
main() { return fallocate(0, 0, 0, 0); }
EOF
append-lfs-flags
$(tc-getCC) ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} "${T}"/fallocate.c -o /dev/null >/dev/null 2>&1 \
|| export ac_cv_func_fallocate=no
rm -f "${T}"/fallocate.c
}
usex() { use $1 && echo ${2:-yes} || echo ${3:-no} ; }
src_configure() {
lfs_fallocate_test
econf \
--enable-fs-paths-extra=/usr/sbin \
$(use_enable nls) \
--enable-agetty \
$(use_enable cramfs) \
$(use_enable ddate) \
$(use_enable old-linux elvtune) \
--with-ncurses=$(usex ncurses $(usex unicode auto yes) no) \
--disable-kill \
--disable-last \
--disable-mesg \
--enable-partx \
--enable-raw \
--enable-rename \
--disable-reset \
--disable-login-utils \
--enable-schedutils \
--disable-wall \
--enable-write \
--without-pam \
$(use_with selinux) \
$(use_with slang) \
$(use_enable static-libs static) \
$(tc-has-tls || echo --disable-tls)
}
src_install() {
emake install DESTDIR="${D}" || die "install failed"
dodoc AUTHORS NEWS README* TODO docs/*
use ddate || find "${ED}"/usr/share/man -name 'ddate.1*' -delete
if ! use perl ; then #284093
rm "${ED}"/usr/bin/chkdupexe || die
rm "${ED}"/usr/share/man/man1/chkdupexe.1 || die
fi
# need the libs in /
gen_usr_ldscript -a blkid mount uuid
# e2fsprogs-libs didnt install .la files, and .pc work fine
rm -f "${ED}"/usr/$(get_libdir)/*.la
if use crypt ; then
newinitd "${FILESDIR}"/crypto-loop.initd crypto-loop || die
newconfd "${FILESDIR}"/crypto-loop.confd crypto-loop || die
fi
}
pkg_postinst() {
elog "The agetty util now clears the terminal by default. You"
elog "might want to add --noclear to your /etc/inittab lines."
}
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/util-linux: ChangeLog util-linux-2.20.1-r2.ebuild
@ 2012-06-08 0:41 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 6+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-06-08 0:41 UTC (permalink / raw
To: gentoo-commits
ssuominen 12/06/08 00:41:03
Modified: ChangeLog util-linux-2.20.1-r2.ebuild
Log:
ppc/ppc64/x86 stable wrt #420167
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Revision Changes Path
1.388 sys-apps/util-linux/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?rev=1.388&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?rev=1.388&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?r1=1.387&r2=1.388
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v
retrieving revision 1.387
retrieving revision 1.388
diff -u -r1.387 -r1.388
--- ChangeLog 2 Jun 2012 18:55:37 -0000 1.387
+++ ChangeLog 8 Jun 2012 00:41:03 -0000 1.388
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/util-linux
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.387 2012/06/02 18:55:37 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.388 2012/06/08 00:41:03 ssuominen Exp $
+
+ 08 Jun 2012; Samuli Suominen <ssuominen@gentoo.org>
+ util-linux-2.20.1-r2.ebuild:
+ ppc/ppc64/x86 stable wrt #420167
02 Jun 2012; Mike Frysinger <vapier@gentoo.org> util-linux-2.21.2.ebuild,
util-linux-9999.ebuild:
1.6 sys-apps/util-linux/util-linux-2.20.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?r1=1.5&r2=1.6
Index: util-linux-2.20.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- util-linux-2.20.1-r2.ebuild 25 May 2012 16:14:22 -0000 1.5
+++ util-linux-2.20.1-r2.ebuild 8 Jun 2012 00:41:03 -0000 1.6
@@ -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/util-linux/util-linux-2.20.1-r2.ebuild,v 1.5 2012/05/25 16:14:22 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild,v 1.6 2012/06/08 00:41:03 ssuominen Exp $
EAPI="3"
@@ -11,7 +11,7 @@
inherit git-2 autotools
#KEYWORDS=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-linux"
+ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-linux"
fi
MY_PV=${PV/_/-}
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/util-linux: ChangeLog util-linux-2.20.1-r2.ebuild
@ 2012-06-09 9:02 Markus Meier (maekke)
0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2012-06-09 9:02 UTC (permalink / raw
To: gentoo-commits
maekke 12/06/09 09:02:22
Modified: ChangeLog util-linux-2.20.1-r2.ebuild
Log:
arm stable, bug #420167
(Portage version: 2.1.10.63/cvs/Linux i686)
Revision Changes Path
1.389 sys-apps/util-linux/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?rev=1.389&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?rev=1.389&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?r1=1.388&r2=1.389
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v
retrieving revision 1.388
retrieving revision 1.389
diff -u -r1.388 -r1.389
--- ChangeLog 8 Jun 2012 00:41:03 -0000 1.388
+++ ChangeLog 9 Jun 2012 09:02:21 -0000 1.389
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/util-linux
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.388 2012/06/08 00:41:03 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.389 2012/06/09 09:02:21 maekke Exp $
+
+ 09 Jun 2012; Markus Meier <maekke@gentoo.org> util-linux-2.20.1-r2.ebuild:
+ arm stable, bug #420167
08 Jun 2012; Samuli Suominen <ssuominen@gentoo.org>
util-linux-2.20.1-r2.ebuild:
1.7 sys-apps/util-linux/util-linux-2.20.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?r1=1.6&r2=1.7
Index: util-linux-2.20.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- util-linux-2.20.1-r2.ebuild 8 Jun 2012 00:41:03 -0000 1.6
+++ util-linux-2.20.1-r2.ebuild 9 Jun 2012 09:02:21 -0000 1.7
@@ -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/util-linux/util-linux-2.20.1-r2.ebuild,v 1.6 2012/06/08 00:41:03 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild,v 1.7 2012/06/09 09:02:21 maekke Exp $
EAPI="3"
@@ -11,7 +11,7 @@
inherit git-2 autotools
#KEYWORDS=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-linux"
+ KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-linux"
fi
MY_PV=${PV/_/-}
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/util-linux: ChangeLog util-linux-2.20.1-r2.ebuild
@ 2012-06-11 12:41 Agostino Sarubbo (ago)
0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-06-11 12:41 UTC (permalink / raw
To: gentoo-commits
ago 12/06/11 12:41:51
Modified: ChangeLog util-linux-2.20.1-r2.ebuild
Log:
Stable for amd64, wrt bug #420167
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Revision Changes Path
1.390 sys-apps/util-linux/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?rev=1.390&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?rev=1.390&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?r1=1.389&r2=1.390
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v
retrieving revision 1.389
retrieving revision 1.390
diff -u -r1.389 -r1.390
--- ChangeLog 9 Jun 2012 09:02:21 -0000 1.389
+++ ChangeLog 11 Jun 2012 12:41:51 -0000 1.390
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/util-linux
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.389 2012/06/09 09:02:21 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.390 2012/06/11 12:41:51 ago Exp $
+
+ 11 Jun 2012; Agostino Sarubbo <ago@gentoo.org> util-linux-2.20.1-r2.ebuild:
+ Stable for amd64, wrt bug #420167
09 Jun 2012; Markus Meier <maekke@gentoo.org> util-linux-2.20.1-r2.ebuild:
arm stable, bug #420167
1.8 sys-apps/util-linux/util-linux-2.20.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?r1=1.7&r2=1.8
Index: util-linux-2.20.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- util-linux-2.20.1-r2.ebuild 9 Jun 2012 09:02:21 -0000 1.7
+++ util-linux-2.20.1-r2.ebuild 11 Jun 2012 12:41:51 -0000 1.8
@@ -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/util-linux/util-linux-2.20.1-r2.ebuild,v 1.7 2012/06/09 09:02:21 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild,v 1.8 2012/06/11 12:41:51 ago Exp $
EAPI="3"
@@ -11,7 +11,7 @@
inherit git-2 autotools
#KEYWORDS=""
else
- KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-linux"
+ KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-linux"
fi
MY_PV=${PV/_/-}
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/util-linux: ChangeLog util-linux-2.20.1-r2.ebuild
@ 2012-06-21 14:51 Jeroen Roovers (jer)
0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2012-06-21 14:51 UTC (permalink / raw
To: gentoo-commits
jer 12/06/21 14:51:54
Modified: ChangeLog util-linux-2.20.1-r2.ebuild
Log:
Stable for HPPA (bug #420167).
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Revision Changes Path
1.391 sys-apps/util-linux/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?rev=1.391&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?rev=1.391&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?r1=1.390&r2=1.391
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v
retrieving revision 1.390
retrieving revision 1.391
diff -u -r1.390 -r1.391
--- ChangeLog 11 Jun 2012 12:41:51 -0000 1.390
+++ ChangeLog 21 Jun 2012 14:51:54 -0000 1.391
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/util-linux
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.390 2012/06/11 12:41:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.391 2012/06/21 14:51:54 jer Exp $
+
+ 21 Jun 2012; Jeroen Roovers <jer@gentoo.org> util-linux-2.20.1-r2.ebuild:
+ Stable for HPPA (bug #420167).
11 Jun 2012; Agostino Sarubbo <ago@gentoo.org> util-linux-2.20.1-r2.ebuild:
Stable for amd64, wrt bug #420167
1.9 sys-apps/util-linux/util-linux-2.20.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?r1=1.8&r2=1.9
Index: util-linux-2.20.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- util-linux-2.20.1-r2.ebuild 11 Jun 2012 12:41:51 -0000 1.8
+++ util-linux-2.20.1-r2.ebuild 21 Jun 2012 14:51:54 -0000 1.9
@@ -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/util-linux/util-linux-2.20.1-r2.ebuild,v 1.8 2012/06/11 12:41:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild,v 1.9 2012/06/21 14:51:54 jer Exp $
EAPI="3"
@@ -11,7 +11,7 @@
inherit git-2 autotools
#KEYWORDS=""
else
- KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-linux"
+ KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-linux"
fi
MY_PV=${PV/_/-}
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/util-linux: ChangeLog util-linux-2.20.1-r2.ebuild
@ 2012-07-08 17:32 Raul Porcel (armin76)
0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2012-07-08 17:32 UTC (permalink / raw
To: gentoo-commits
armin76 12/07/08 17:32:29
Modified: ChangeLog util-linux-2.20.1-r2.ebuild
Log:
alpha/ia64/m68k/s390/sh/sparc stable wrt #420167
(Portage version: 2.1.11.5/cvs/Linux ia64)
Revision Changes Path
1.392 sys-apps/util-linux/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?rev=1.392&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?rev=1.392&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/ChangeLog?r1=1.391&r2=1.392
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v
retrieving revision 1.391
retrieving revision 1.392
diff -u -r1.391 -r1.392
--- ChangeLog 21 Jun 2012 14:51:54 -0000 1.391
+++ ChangeLog 8 Jul 2012 17:32:29 -0000 1.392
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/util-linux
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.391 2012/06/21 14:51:54 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/ChangeLog,v 1.392 2012/07/08 17:32:29 armin76 Exp $
+
+ 08 Jul 2012; Raúl Porcel <armin76@gentoo.org> util-linux-2.20.1-r2.ebuild:
+ alpha/ia64/m68k/s390/sh/sparc stable wrt #420167
21 Jun 2012; Jeroen Roovers <jer@gentoo.org> util-linux-2.20.1-r2.ebuild:
Stable for HPPA (bug #420167).
1.10 sys-apps/util-linux/util-linux-2.20.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild?r1=1.9&r2=1.10
Index: util-linux-2.20.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- util-linux-2.20.1-r2.ebuild 21 Jun 2012 14:51:54 -0000 1.9
+++ util-linux-2.20.1-r2.ebuild 8 Jul 2012 17:32:29 -0000 1.10
@@ -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/util-linux/util-linux-2.20.1-r2.ebuild,v 1.9 2012/06/21 14:51:54 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.20.1-r2.ebuild,v 1.10 2012/07/08 17:32:29 armin76 Exp $
EAPI="3"
@@ -11,7 +11,7 @@
inherit git-2 autotools
#KEYWORDS=""
else
- KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-linux"
+ KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-linux"
fi
MY_PV=${PV/_/-}
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-07-08 17:32 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-08 0:41 [gentoo-commits] gentoo-x86 commit in sys-apps/util-linux: ChangeLog util-linux-2.20.1-r2.ebuild Samuli Suominen (ssuominen)
-- strict thread matches above, loose matches on Subject: below --
2012-07-08 17:32 Raul Porcel (armin76)
2012-06-21 14:51 Jeroen Roovers (jer)
2012-06-11 12:41 Agostino Sarubbo (ago)
2012-06-09 9:02 Markus Meier (maekke)
2012-02-16 20:10 Mike Frysinger (vapier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox