* [gentoo-commits] gentoo-x86 commit in sys-apps/baselayout-prefix: baselayout-prefix-2.2-r3.ebuild ChangeLog
@ 2013-10-22 9:28 Michael Haubenwallner (haubi)
0 siblings, 0 replies; 5+ messages in thread
From: Michael Haubenwallner (haubi) @ 2013-10-22 9:28 UTC (permalink / raw
To: gentoo-commits
haubi 13/10/22 09:28:31
Modified: ChangeLog
Added: baselayout-prefix-2.2-r3.ebuild
Log:
+baselayout-prefix-2.2-r3: Still need elibtoolize, if only for exotic Prefix platforms.
(Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key A630CCB8)
Revision Changes Path
1.31 sys-apps/baselayout-prefix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?r1=1.30&r2=1.31
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog 17 Oct 2013 14:35:50 -0000 1.30
+++ ChangeLog 22 Oct 2013 09:28:31 -0000 1.31
@@ -1,6 +1,12 @@
# ChangeLog for sys-apps/baselayout-prefix
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.30 2013/10/17 14:35:50 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.31 2013/10/22 09:28:31 haubi Exp $
+
+*baselayout-prefix-2.2-r3 (22 Oct 2013)
+
+ 22 Oct 2013; Michael Haubenwallner <haubi@gentoo.org>
+ +baselayout-prefix-2.2-r3.ebuild:
+ Still need elibtoolize, if only for exotic Prefix platforms.
17 Oct 2013; Michael Haubenwallner <haubi@gentoo.org>
baselayout-prefix-2.2-r2.ebuild:
1.1 sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?rev=1.1&content-type=text/plain
Index: baselayout-prefix-2.2-r3.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v 1.1 2013/10/22 09:28:31 haubi Exp $
EAPI=3
inherit eutils multilib libtool
MY_P=${P/-prefix/} # just use "upstream" sources
EINFO=einfo-1.0.3
DESCRIPTION="Minimal baselayout and e-functions for Gentoo Prefix installs"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI="mirror://gentoo/${MY_P}.tar.bz2
http://dev.gentoo.org/~vapier/dist/${MY_P}.tar.bz2
http://dev.gentoo.org/~grobian/distfiles/${EINFO}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~arm ~arm-linux ~ppc-aix ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
IUSE="build kernel_linux"
S=${WORKDIR}/${EINFO}
pkg_preinst() {
# This is written in src_install (so it's in CONTENTS), but punt all
# pending updates to avoid user having to do etc-update (and make the
# pkg_postinst logic simpler).
rm -f "${EROOT}"/etc/._cfg????_gentoo-release
}
src_prepare() {
# POSIX specifies <termios.h>, AIX lacks <sys/termios.h>
sed -i -e 's|<sys/termios.h>|<termios.h>|' src/libeinfo/libeinfo.c || die
# exotic platforms still aren't fixed in upstream libtool
elibtoolize
}
src_configure() {
econf --libexecdir="${EPREFIX}/usr/lib/einfo"
}
src_install() {
emake DESTDIR="${D}" install || die
# make functions.sh available in /etc/init.d
# Note: we cannot replace the symlink with a file here, or Portage will
# config-protect it, and etc-update can't handle symlink to file updates
dodir etc/init.d
dosym ../../usr/lib/einfo/sh/functions.sh /etc/init.d/functions.sh
pushd "${WORKDIR}"/${MY_P} > /dev/null || die
dodir etc
sed \
-e "/PATH=/!s:/\(etc\|usr/bin\|bin\):\"${EPREFIX}\"/\1:g" \
-e "/PATH=/s|\([:\"]\)/|\1${EPREFIX}/|g" \
-e "/PATH=.*\/sbin/s|\"$|:/usr/sbin:/sbin\"|" \
-e "/PATH=.*\/bin/s|\"$|:/usr/bin:/bin\"|" \
etc/profile > "${ED}"/etc/profile || die
dodir etc/env.d
sed \
-e "s:/\(etc/env.d\|opt\|usr\):${EPREFIX}/\1:g" \
-e "/^PATH=/s|\"$|:${EPREFIX}/usr/sbin:${EPREFIX}/sbin\"|" \
etc/env.d/00basic > "${ED}"/etc/env.d/00basic || die
dodoc ChangeLog.svn
popd > /dev/null
# add the host OS MANPATH
if [[ -d "${ROOT}"/usr/share/man ]] ; then
echo 'MANPATH="/usr/share/man"' > "${ED}"/etc/env.d/99basic || die
fi
# rc-scripts version for testing of features that *should* be present
echo "Gentoo Prefix Base System release ${PV}" > "${ED}"/etc/gentoo-release
# FHS compatibility symlinks stuff
dosym /var/tmp /usr/tmp
# add a dummy to avoid Portage shebang errors
dodir sbin
cat > "${ED}"/sbin/runscript <<- EOF
#!/bin/sh
echo "runscript not supported by Gentoo Prefix Base System release ${PV}" 1>&2
exit 1
EOF
chmod 755 "${ED}"/sbin/runscript || die
}
pkg_postinst() {
# Take care of the etc-update for the user
if [ -e "${EROOT}"/etc/._cfg0000_gentoo-release ] ; then
mv "${EROOT}"/etc/._cfg0000_gentoo-release "${EROOT}"/etc/gentoo-release
fi
# baselayout leaves behind a lot of .keep files, so let's clean them up
find "${EROOT}"/lib/rcscripts/ -name .keep -exec rm -f {} + 2>/dev/null
find "${EROOT}"/lib/rcscripts/ -depth -type d -exec rmdir {} + 2>/dev/null
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/baselayout-prefix: baselayout-prefix-2.2-r3.ebuild ChangeLog
@ 2013-10-23 7:28 Michael Haubenwallner (haubi)
0 siblings, 0 replies; 5+ messages in thread
From: Michael Haubenwallner (haubi) @ 2013-10-23 7:28 UTC (permalink / raw
To: gentoo-commits
haubi 13/10/23 07:28:36
Modified: baselayout-prefix-2.2-r3.ebuild ChangeLog
Log:
baselayout-prefix-2.2-r3: Add generic AIX port, lacks strlcpy/strlcat/vsyslog funcs.
(Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key A630CCB8)
Revision Changes Path
1.2 sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?r1=1.1&r2=1.2
Index: baselayout-prefix-2.2-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- baselayout-prefix-2.2-r3.ebuild 22 Oct 2013 09:28:31 -0000 1.1
+++ baselayout-prefix-2.2-r3.ebuild 23 Oct 2013 07:28:36 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v 1.1 2013/10/22 09:28:31 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v 1.2 2013/10/23 07:28:36 haubi Exp $
EAPI=3
@@ -29,6 +29,7 @@
}
src_prepare() {
+ epatch "${FILESDIR}"/${EINFO}-checkfuncs-aix.patch # generic aix port
# POSIX specifies <termios.h>, AIX lacks <sys/termios.h>
sed -i -e 's|<sys/termios.h>|<termios.h>|' src/libeinfo/libeinfo.c || die
# exotic platforms still aren't fixed in upstream libtool
1.32 sys-apps/baselayout-prefix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?r1=1.31&r2=1.32
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog 22 Oct 2013 09:28:31 -0000 1.31
+++ ChangeLog 23 Oct 2013 07:28:36 -0000 1.32
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/baselayout-prefix
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.31 2013/10/22 09:28:31 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.32 2013/10/23 07:28:36 haubi Exp $
+
+ 23 Oct 2013; Michael Haubenwallner <haubi@gentoo.org>
+ +files/einfo-1.0.3-checkfuncs-aix.patch, baselayout-prefix-2.2-r3.ebuild:
+ Add generic AIX port, lacks strlcpy/strlcat/vsyslog funcs.
*baselayout-prefix-2.2-r3 (22 Oct 2013)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/baselayout-prefix: baselayout-prefix-2.2-r3.ebuild ChangeLog
@ 2013-10-29 21:00 Michael Haubenwallner (haubi)
0 siblings, 0 replies; 5+ messages in thread
From: Michael Haubenwallner (haubi) @ 2013-10-29 21:00 UTC (permalink / raw
To: gentoo-commits
haubi 13/10/29 21:00:57
Modified: baselayout-prefix-2.2-r3.ebuild ChangeLog
Log:
baselayout-prefix-2.2-r3: Fix termcap check and conditional.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A630CCB8)
Revision Changes Path
1.4 sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?r1=1.3&r2=1.4
Index: baselayout-prefix-2.2-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- baselayout-prefix-2.2-r3.ebuild 27 Oct 2013 16:47:02 -0000 1.3
+++ baselayout-prefix-2.2-r3.ebuild 29 Oct 2013 21:00:57 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v 1.3 2013/10/27 16:47:02 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v 1.4 2013/10/29 21:00:57 haubi Exp $
EAPI=3
@@ -29,6 +29,7 @@
}
src_prepare() {
+ epatch "${FILESDIR}"/${EINFO}-termcap-check.patch
# exotic platforms still aren't fixed in upstream libtool
elibtoolize
}
1.34 sys-apps/baselayout-prefix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?r1=1.33&r2=1.34
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog 27 Oct 2013 16:47:02 -0000 1.33
+++ ChangeLog 29 Oct 2013 21:00:57 -0000 1.34
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/baselayout-prefix
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.33 2013/10/27 16:47:02 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.34 2013/10/29 21:00:57 haubi Exp $
+
+ 29 Oct 2013; Michael Haubenwallner <haubi@gentoo.org>
+ -files/einfo-1.0.3-checkfuncs-aix.patch,
+ +files/einfo-1.0.4-termcap-check.patch, baselayout-prefix-2.2-r3.ebuild:
+ Fix termcap check and conditional.
27 Oct 2013; Fabian Groffen <grobian@gentoo.org>
-baselayout-prefix-2.2-r2.ebuild, baselayout-prefix-2.2-r3.ebuild:
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/baselayout-prefix: baselayout-prefix-2.2-r3.ebuild ChangeLog
@ 2014-02-06 17:29 Fabian Groffen (grobian)
0 siblings, 0 replies; 5+ messages in thread
From: Fabian Groffen (grobian) @ 2014-02-06 17:29 UTC (permalink / raw
To: gentoo-commits
grobian 14/02/06 17:29:03
Modified: baselayout-prefix-2.2-r3.ebuild ChangeLog
Log:
Bump einfo version for bootstrap fixes
(Portage version: 2.2.8-prefix/cvs/Darwin i386, signed Manifest commit with key 0x5F75F607C5C74E89)
Revision Changes Path
1.5 sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?r1=1.4&r2=1.5
Index: baselayout-prefix-2.2-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- baselayout-prefix-2.2-r3.ebuild 29 Oct 2013 21:00:57 -0000 1.4
+++ baselayout-prefix-2.2-r3.ebuild 6 Feb 2014 17:29:03 -0000 1.5
@@ -1,13 +1,13 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v 1.4 2013/10/29 21:00:57 haubi Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v 1.5 2014/02/06 17:29:03 grobian Exp $
EAPI=3
inherit eutils multilib libtool
MY_P=${P/-prefix/} # just use "upstream" sources
-EINFO=einfo-1.0.4
+EINFO=einfo-1.0.5
DESCRIPTION="Minimal baselayout and e-functions for Gentoo Prefix installs"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI="mirror://gentoo/${MY_P}.tar.bz2
@@ -29,7 +29,6 @@
}
src_prepare() {
- epatch "${FILESDIR}"/${EINFO}-termcap-check.patch
# exotic platforms still aren't fixed in upstream libtool
elibtoolize
}
1.36 sys-apps/baselayout-prefix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?r1=1.35&r2=1.36
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog 8 Jan 2014 06:16:00 -0000 1.35
+++ ChangeLog 6 Feb 2014 17:29:03 -0000 1.36
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/baselayout-prefix
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.35 2014/01/08 06:16:00 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.36 2014/02/06 17:29:03 grobian Exp $
+
+ 06 Feb 2014; Fabian Groffen <grobian@gentoo.org>
+ baselayout-prefix-2.2-r3.ebuild:
+ Bump einfo version for bootstrap fixes
08 Jan 2014; Mike Frysinger <vapier@gentoo.org>
baselayout-prefix-1.12.14-r1.ebuild:
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/baselayout-prefix: baselayout-prefix-2.2-r3.ebuild ChangeLog
@ 2014-02-12 19:57 Ruud Koolen (redlizard)
0 siblings, 0 replies; 5+ messages in thread
From: Ruud Koolen (redlizard) @ 2014-02-12 19:57 UTC (permalink / raw
To: gentoo-commits
redlizard 14/02/12 19:57:23
Modified: baselayout-prefix-2.2-r3.ebuild ChangeLog
Log:
Bump einfo version for fixes for platforms without visibility(hidden) support.
(Portage version: 2.2.8-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x10FB016B)
Revision Changes Path
1.6 sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild?r1=1.5&r2=1.6
Index: baselayout-prefix-2.2-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- baselayout-prefix-2.2-r3.ebuild 6 Feb 2014 17:29:03 -0000 1.5
+++ baselayout-prefix-2.2-r3.ebuild 12 Feb 2014 19:57:23 -0000 1.6
@@ -1,18 +1,18 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v 1.5 2014/02/06 17:29:03 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v 1.6 2014/02/12 19:57:23 redlizard Exp $
EAPI=3
inherit eutils multilib libtool
MY_P=${P/-prefix/} # just use "upstream" sources
-EINFO=einfo-1.0.5
+EINFO=einfo-1.0.6
DESCRIPTION="Minimal baselayout and e-functions for Gentoo Prefix installs"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI="mirror://gentoo/${MY_P}.tar.bz2
http://dev.gentoo.org/~vapier/dist/${MY_P}.tar.bz2
- http://dev.gentoo.org/~grobian/distfiles/${EINFO}.tar.xz"
+ http://dev.gentoo.org/~redlizard/distfiles/${EINFO}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
1.37 sys-apps/baselayout-prefix/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog?r1=1.36&r2=1.37
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog 6 Feb 2014 17:29:03 -0000 1.36
+++ ChangeLog 12 Feb 2014 19:57:23 -0000 1.37
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/baselayout-prefix
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.36 2014/02/06 17:29:03 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/ChangeLog,v 1.37 2014/02/12 19:57:23 redlizard Exp $
+
+ 12 Feb 2014; redlizard <redlizard@gentoo.org> baselayout-prefix-2.2-r3.ebuild:
+ Bump einfo version for fixes for platforms without visibility(hidden) support.
06 Feb 2014; Fabian Groffen <grobian@gentoo.org>
baselayout-prefix-2.2-r3.ebuild:
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-02-12 19:57 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-29 21:00 [gentoo-commits] gentoo-x86 commit in sys-apps/baselayout-prefix: baselayout-prefix-2.2-r3.ebuild ChangeLog Michael Haubenwallner (haubi)
-- strict thread matches above, loose matches on Subject: below --
2014-02-12 19:57 Ruud Koolen (redlizard)
2014-02-06 17:29 Fabian Groffen (grobian)
2013-10-23 7:28 Michael Haubenwallner (haubi)
2013-10-22 9:28 Michael Haubenwallner (haubi)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox