* [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild
@ 2010-04-12 20:17 Justin Lecher (jlec)
0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher (jlec) @ 2010-04-12 20:17 UTC (permalink / raw
To: gentoo-commits
jlec 10/04/12 20:17:41
Modified: ChangeLog
Added: expect-5.44.1.15.ebuild
Log:
Version Bump, per 313567, thanks Harald van Dijk for patches
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.67 dev-tcltk/expect/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.67&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.67&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.66&r2=1.67
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog 8 Apr 2010 06:19:28 -0000 1.66
+++ ChangeLog 12 Apr 2010 20:17:41 -0000 1.67
@@ -1,6 +1,13 @@
# ChangeLog for dev-tcltk/expect
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.66 2010/04/08 06:19:28 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.67 2010/04/12 20:17:41 jlec Exp $
+
+*expect-5.44.1.15 (12 Apr 2010)
+
+ 12 Apr 2010; Justin Lecher <jlec@gentoo.org> +expect-5.44.1.15.ebuild,
+ +files/expect-5.44.1.15-gfbsd.patch,
+ +files/expect-5.44.1.15-ldflags.patch, -files/expect-5.44.1-ldflags.patch:
+ Version Bump, per 313567, thanks Harald van Dijk for patches
08 Apr 2010; Justin Lecher <jlec@gentoo.org> -expect-5.44.1.ebuild:
Removed due to a upstream recall of this version, #313567
1.1 dev-tcltk/expect/expect-5.44.1.15.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.1&content-type=text/plain
Index: expect-5.44.1.15.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.1 2010/04/12 20:17:41 jlec Exp $
EAPI="3"
WANT_AUTOCONF="2.5"
inherit autotools eutils
DESCRIPTION="tool for automating interactive applications"
HOMEPAGE="http://expect.nist.gov/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
IUSE="X doc"
# We need dejagnu for src_test, but dejagnu needs expect
# to compile/run, so we cant add dejagnu to DEPEND :/
DEPEND="
>=dev-lang/tcl-8.2
>=dev-lang/tk-8.2"
RDEPEND="${DEPEND}"
src_prepare() {
# fix install_name on darwin
[[ ${CHOST} == *-darwin* ]] && \
epatch "${FILESDIR}"/${P}-darwin.patch
sed -i "s#/usr/local/bin#${EPREFIX}/usr/bin#" expect.man
sed -i "s#/usr/local/bin#${EPREFIX}/usr/bin#" expectk.man
#stops any example scripts being installed by default
sed -i \
-e '/^install:/s/install-libraries //' \
-e 's/^SCRIPTS_MANPAGES = /_&/' \
Makefile.in
epatch "${FILESDIR}/${P}-gfbsd.patch"
epatch "${FILESDIR}/${P}-ldflags.patch"
eautoconf
}
src_configure() {
local myconf
local tclv
local tkv
# Find the version of tcl/tk that has headers installed.
# This will be the most recently merged, not necessarily the highest
# version number.
tclv=$(grep TCL_VER ${EPREFIX}/usr/include/tcl.h | sed 's/^.*"\(.*\)".*/\1/')
#tkv isn't really needed, included for symmetry and the future
#tkv=$(grep TK_VER /usr/include/tk.h | sed 's/^.*"\(.*\)".*/\1/')
#configure needs to find the files tclConfig.sh and tclInt.h
myconf="--with-tcl=${EPREFIX}/usr/$(get_libdir) --with-tclinclude=${EPREFIX}/usr/$(get_libdir)/tcl${tclv}/include/generic"
if use X ; then
#--with-x is enabled by default
#configure needs to find the file tkConfig.sh and tk.h
#tk.h is in /usr/lib so don't need to explicitly set --with-tkinclude
myconf="$myconf --with-tk=${EPREFIX}/usr/$(get_libdir) --with-tkinclude=${EPREFIX}/usr/include"
else
#configure knows that tk depends on X so just disable X
myconf="$myconf --without-x"
fi
econf $myconf --enable-shared || die "econf failed"
}
src_test() {
# we need dejagnu to do tests ... but dejagnu needs
# expect ... so don't do tests unless we have dejagnu
type -p runtest || return 0
emake test || die "emake test failed"
}
src_install() {
dodir /usr/$(get_libdir)
emake install DESTDIR="${D}" || die "make install failed"
dodoc ChangeLog FAQ HISTORY NEWS README
#install examples if 'doc' is set
if use doc ; then
docinto examples
local scripts=$(make -qp | \
sed -e 's/^SCRIPTS = //' -et -ed | head -n1)
exeinto /usr/share/doc/${PF}/examples
doexe ${scripts}
local scripts_manpages=$(make -qp | \
sed -e 's/^_SCRIPTS_MANPAGES = //' -et -ed | head -n1)
for m in ${scripts_manpages}; do
dodoc example/${m}.man
done
dodoc example/README
fi
}
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild
@ 2010-04-28 19:58 Justin Lecher (jlec)
0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher (jlec) @ 2010-04-28 19:58 UTC (permalink / raw
To: gentoo-commits
jlec 10/04/28 19:58:03
Modified: ChangeLog expect-5.44.1.15.ebuild
Log:
Fix for changed path of example files, #316885, thanks Juergen Rose for providing the patch
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.72 dev-tcltk/expect/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.71&r2=1.72
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog 23 Apr 2010 10:44:12 -0000 1.71
+++ ChangeLog 28 Apr 2010 19:58:03 -0000 1.72
@@ -1,6 +1,10 @@
# ChangeLog for dev-tcltk/expect
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.71 2010/04/23 10:44:12 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.72 2010/04/28 19:58:03 jlec Exp $
+
+ 28 Apr 2010; Justin Lecher <jlec@gentoo.org> expect-5.44.1.15.ebuild:
+ Fix for changed path of example files, #316885, thanks Juergen Rose for
+ providing the patch
23 Apr 2010; Justin Lecher <jlec@gentoo.org> expect-5.43.0-r1.ebuild,
expect-5.44.1.15.ebuild:
1.5 dev-tcltk/expect/expect-5.44.1.15.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?r1=1.4&r2=1.5
Index: expect-5.44.1.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- expect-5.44.1.15.ebuild 23 Apr 2010 10:44:12 -0000 1.4
+++ expect-5.44.1.15.ebuild 28 Apr 2010 19:58:03 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.4 2010/04/23 10:44:12 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.5 2010/04/28 19:58:03 jlec Exp $
EAPI="3"
@@ -90,7 +90,9 @@
local scripts=$(make -qp | \
sed -e 's/^SCRIPTS = //' -et -ed | head -n1)
insinto /usr/share/doc/${PF}/examples
- doins ${scripts} || die
+ for s in ${scripts}; do
+ doins example/${s} || die
+ done
local scripts_manpages=$(make -qp | \
sed -e 's/^_SCRIPTS_MANPAGES = //' -et -ed | head -n1)
for m in ${scripts_manpages}; do
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild
@ 2010-05-25 11:01 Justin Lecher (jlec)
0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher (jlec) @ 2010-05-25 11:01 UTC (permalink / raw
To: gentoo-commits
jlec 10/05/25 11:01:59
Modified: ChangeLog expect-5.44.1.15.ebuild
Log:
Fix for build w/o tk, #319631; thanks Jonathan-Christofer Demay for digging out the patch
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.73 dev-tcltk/expect/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.72&r2=1.73
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog 28 Apr 2010 19:58:03 -0000 1.72
+++ ChangeLog 25 May 2010 11:01:58 -0000 1.73
@@ -1,6 +1,11 @@
# ChangeLog for dev-tcltk/expect
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.72 2010/04/28 19:58:03 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.73 2010/05/25 11:01:58 jlec Exp $
+
+ 25 May 2010; Justin Lecher <jlec@gentoo.org> expect-5.44.1.15.ebuild,
+ +files/expect-5.44.1.15_with-tk-no.patch:
+ Fix for build w/o tk, #319631; thanks Jonathan-Christofer Demay for
+ digging out the patch
28 Apr 2010; Justin Lecher <jlec@gentoo.org> expect-5.44.1.15.ebuild:
Fix for changed path of example files, #316885, thanks Juergen Rose for
1.6 dev-tcltk/expect/expect-5.44.1.15.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?r1=1.5&r2=1.6
Index: expect-5.44.1.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- expect-5.44.1.15.ebuild 28 Apr 2010 19:58:03 -0000 1.5
+++ expect-5.44.1.15.ebuild 25 May 2010 11:01:58 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.5 2010/04/28 19:58:03 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.6 2010/05/25 11:01:58 jlec Exp $
EAPI="3"
@@ -37,6 +37,7 @@
epatch "${FILESDIR}/${P}-gfbsd.patch"
epatch "${FILESDIR}/${P}-ldflags.patch"
+ epatch "${FILESDIR}/${P}_with-tk-no.patch"
eautoconf
}
@@ -51,17 +52,17 @@
tclv=$(grep TCL_VER ${EPREFIX}/usr/include/tcl.h | sed 's/^.*"\(.*\)".*/\1/')
#tkv isn't really needed, included for symmetry and the future
#tkv=$(grep TK_VER ${EPREFIX}/usr/include/tk.h | sed 's/^.*"\(.*\)".*/\1/')
- myconf="--with-tcl=${EPREFIX}/usr/$(get_libdir) --with-tclinclude=${EPREFIX}/usr/$(get_libdir)/tcl${tclv}/include/generic"
+ myconf="--with-tcl=${EPREFIX}/usr/$(get_libdir) --with-tclinclude=${EPREFIX}/usr/$(get_libdir)/tcl${tclv}/include/generic --with-tk=yes"
-# if use X ; then
+ if use X ; then
#--with-x is enabled by default
#configure needs to find the file tkConfig.sh and tk.h
#tk.h is in /usr/lib so don't need to explicitly set --with-tkinclude
myconf="$myconf --with-tk=${EPREFIX}/usr/$(get_libdir) --with-tkinclude=${EPREFIX}/usr/include"
-# else
-# #configure knows that tk depends on X so just disable X
-# myconf="$myconf --without-x"
-# fi
+ else
+ #configure knows that tk depends on X so just disable X
+ myconf="$myconf --with-tk=no"
+ fi
econf \
$myconf \
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild
@ 2010-06-24 1:28 Jeroen Roovers (jer)
0 siblings, 0 replies; 13+ messages in thread
From: Jeroen Roovers (jer) @ 2010-06-24 1:28 UTC (permalink / raw
To: gentoo-commits
jer 10/06/24 01:28:51
Modified: ChangeLog expect-5.44.1.15.ebuild
Log:
Stable for HPPA (bug #324951).
(Portage version: 2.2_rc67/cvs/Linux i686)
Revision Changes Path
1.74 dev-tcltk/expect/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.74&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.74&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.73&r2=1.74
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog 25 May 2010 11:01:58 -0000 1.73
+++ ChangeLog 24 Jun 2010 01:28:51 -0000 1.74
@@ -1,6 +1,9 @@
# ChangeLog for dev-tcltk/expect
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.73 2010/05/25 11:01:58 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.74 2010/06/24 01:28:51 jer Exp $
+
+ 24 Jun 2010; Jeroen Roovers <jer@gentoo.org> expect-5.44.1.15.ebuild:
+ Stable for HPPA (bug #324951).
25 May 2010; Justin Lecher <jlec@gentoo.org> expect-5.44.1.15.ebuild,
+files/expect-5.44.1.15_with-tk-no.patch:
1.7 dev-tcltk/expect/expect-5.44.1.15.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?r1=1.6&r2=1.7
Index: expect-5.44.1.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- expect-5.44.1.15.ebuild 25 May 2010 11:01:58 -0000 1.6
+++ expect-5.44.1.15.ebuild 24 Jun 2010 01:28:51 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.6 2010/05/25 11:01:58 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.7 2010/06/24 01:28:51 jer Exp $
EAPI="3"
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
IUSE="debug doc threads X"
# We need dejagnu for src_test, but dejagnu needs expect
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild
@ 2010-06-24 21:47 Pacho Ramos (pacho)
0 siblings, 0 replies; 13+ messages in thread
From: Pacho Ramos (pacho) @ 2010-06-24 21:47 UTC (permalink / raw
To: gentoo-commits
pacho 10/06/24 21:47:18
Modified: ChangeLog expect-5.44.1.15.ebuild
Log:
stable amd64, bug 324951
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.75 dev-tcltk/expect/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.74&r2=1.75
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog 24 Jun 2010 01:28:51 -0000 1.74
+++ ChangeLog 24 Jun 2010 21:47:17 -0000 1.75
@@ -1,6 +1,9 @@
# ChangeLog for dev-tcltk/expect
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.74 2010/06/24 01:28:51 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.75 2010/06/24 21:47:17 pacho Exp $
+
+ 24 Jun 2010; Pacho Ramos <pacho@gentoo.org> expect-5.44.1.15.ebuild:
+ stable amd64, bug 324951
24 Jun 2010; Jeroen Roovers <jer@gentoo.org> expect-5.44.1.15.ebuild:
Stable for HPPA (bug #324951).
1.8 dev-tcltk/expect/expect-5.44.1.15.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?r1=1.7&r2=1.8
Index: expect-5.44.1.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- expect-5.44.1.15.ebuild 24 Jun 2010 01:28:51 -0000 1.7
+++ expect-5.44.1.15.ebuild 24 Jun 2010 21:47:18 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.7 2010/06/24 01:28:51 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.8 2010/06/24 21:47:18 pacho Exp $
EAPI="3"
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
IUSE="debug doc threads X"
# We need dejagnu for src_test, but dejagnu needs expect
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild
@ 2010-07-07 14:03 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 13+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-07-07 14:03 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 10/07/07 14:03:02
Modified: ChangeLog expect-5.44.1.15.ebuild
Log:
x86 stable wrt bug #324951
(Portage version: 2.1.8.3/cvs/Linux i686)
Revision Changes Path
1.76 dev-tcltk/expect/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.75&r2=1.76
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog 24 Jun 2010 21:47:17 -0000 1.75
+++ ChangeLog 7 Jul 2010 14:03:01 -0000 1.76
@@ -1,6 +1,10 @@
# ChangeLog for dev-tcltk/expect
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.75 2010/06/24 21:47:17 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.76 2010/07/07 14:03:01 phajdan.jr Exp $
+
+ 07 Jul 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+ expect-5.44.1.15.ebuild:
+ x86 stable wrt bug #324951
24 Jun 2010; Pacho Ramos <pacho@gentoo.org> expect-5.44.1.15.ebuild:
stable amd64, bug 324951
1.9 dev-tcltk/expect/expect-5.44.1.15.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?r1=1.8&r2=1.9
Index: expect-5.44.1.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- expect-5.44.1.15.ebuild 24 Jun 2010 21:47:18 -0000 1.8
+++ expect-5.44.1.15.ebuild 7 Jul 2010 14:03:01 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.8 2010/06/24 21:47:18 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.9 2010/07/07 14:03:01 phajdan.jr Exp $
EAPI="3"
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
IUSE="debug doc threads X"
# We need dejagnu for src_test, but dejagnu needs expect
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild
@ 2010-07-09 21:14 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 13+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-07-09 21:14 UTC (permalink / raw
To: gentoo-commits
ssuominen 10/07/09 21:14:43
Modified: ChangeLog expect-5.44.1.15.ebuild
Log:
ppc64 stable wrt #324951
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.77 dev-tcltk/expect/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.77&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.77&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.76&r2=1.77
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog 7 Jul 2010 14:03:01 -0000 1.76
+++ ChangeLog 9 Jul 2010 21:14:43 -0000 1.77
@@ -1,6 +1,10 @@
# ChangeLog for dev-tcltk/expect
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.76 2010/07/07 14:03:01 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.77 2010/07/09 21:14:43 ssuominen Exp $
+
+ 09 Jul 2010; Samuli Suominen <ssuominen@gentoo.org>
+ expect-5.44.1.15.ebuild:
+ ppc64 stable wrt #324951
07 Jul 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
expect-5.44.1.15.ebuild:
1.10 dev-tcltk/expect/expect-5.44.1.15.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?r1=1.9&r2=1.10
Index: expect-5.44.1.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- expect-5.44.1.15.ebuild 7 Jul 2010 14:03:01 -0000 1.9
+++ expect-5.44.1.15.ebuild 9 Jul 2010 21:14:43 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.9 2010/07/07 14:03:01 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.10 2010/07/09 21:14:43 ssuominen Exp $
EAPI="3"
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
IUSE="debug doc threads X"
# We need dejagnu for src_test, but dejagnu needs expect
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild
@ 2010-07-18 13:52 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 13+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2010-07-18 13:52 UTC (permalink / raw
To: gentoo-commits
nixnut 10/07/18 13:52:09
Modified: ChangeLog expect-5.44.1.15.ebuild
Log:
ppc stable #324951
(Portage version: 2.1.8.3/cvs/Linux ppc)
Revision Changes Path
1.78 dev-tcltk/expect/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.77&r2=1.78
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog 9 Jul 2010 21:14:43 -0000 1.77
+++ ChangeLog 18 Jul 2010 13:52:09 -0000 1.78
@@ -1,6 +1,9 @@
# ChangeLog for dev-tcltk/expect
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.77 2010/07/09 21:14:43 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.78 2010/07/18 13:52:09 nixnut Exp $
+
+ 18 Jul 2010; <nixnut@gentoo.org> expect-5.44.1.15.ebuild:
+ ppc stable #324951
09 Jul 2010; Samuli Suominen <ssuominen@gentoo.org>
expect-5.44.1.15.ebuild:
1.11 dev-tcltk/expect/expect-5.44.1.15.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?r1=1.10&r2=1.11
Index: expect-5.44.1.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- expect-5.44.1.15.ebuild 9 Jul 2010 21:14:43 -0000 1.10
+++ expect-5.44.1.15.ebuild 18 Jul 2010 13:52:09 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.10 2010/07/09 21:14:43 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.11 2010/07/18 13:52:09 nixnut Exp $
EAPI="3"
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
IUSE="debug doc threads X"
# We need dejagnu for src_test, but dejagnu needs expect
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild
@ 2010-07-23 12:35 Markus Meier (maekke)
0 siblings, 0 replies; 13+ messages in thread
From: Markus Meier (maekke) @ 2010-07-23 12:35 UTC (permalink / raw
To: gentoo-commits
maekke 10/07/23 12:35:15
Modified: ChangeLog expect-5.44.1.15.ebuild
Log:
arm stable, bug #324951
(Portage version: 2.2_rc67/cvs/Linux i686)
Revision Changes Path
1.79 dev-tcltk/expect/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.78&r2=1.79
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog 18 Jul 2010 13:52:09 -0000 1.78
+++ ChangeLog 23 Jul 2010 12:35:15 -0000 1.79
@@ -1,6 +1,9 @@
# ChangeLog for dev-tcltk/expect
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.78 2010/07/18 13:52:09 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.79 2010/07/23 12:35:15 maekke Exp $
+
+ 23 Jul 2010; Markus Meier <maekke@gentoo.org> expect-5.44.1.15.ebuild:
+ arm stable, bug #324951
18 Jul 2010; <nixnut@gentoo.org> expect-5.44.1.15.ebuild:
ppc stable #324951
1.12 dev-tcltk/expect/expect-5.44.1.15.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?r1=1.11&r2=1.12
Index: expect-5.44.1.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- expect-5.44.1.15.ebuild 18 Jul 2010 13:52:09 -0000 1.11
+++ expect-5.44.1.15.ebuild 23 Jul 2010 12:35:15 -0000 1.12
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.11 2010/07/18 13:52:09 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.12 2010/07/23 12:35:15 maekke Exp $
EAPI="3"
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
IUSE="debug doc threads X"
# We need dejagnu for src_test, but dejagnu needs expect
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild
@ 2010-08-07 16:57 Raul Porcel (armin76)
0 siblings, 0 replies; 13+ messages in thread
From: Raul Porcel (armin76) @ 2010-08-07 16:57 UTC (permalink / raw
To: gentoo-commits
armin76 10/08/07 16:57:34
Modified: ChangeLog expect-5.44.1.15.ebuild
Log:
alpha/ia64/m68k/s390/sh/sparc stable wrt #324951
(Portage version: 2.1.8.3/cvs/Linux ia64)
Revision Changes Path
1.80 dev-tcltk/expect/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.80&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.80&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.79&r2=1.80
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog 23 Jul 2010 12:35:15 -0000 1.79
+++ ChangeLog 7 Aug 2010 16:57:33 -0000 1.80
@@ -1,6 +1,9 @@
# ChangeLog for dev-tcltk/expect
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.79 2010/07/23 12:35:15 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.80 2010/08/07 16:57:33 armin76 Exp $
+
+ 07 Aug 2010; Raúl Porcel <armin76@gentoo.org> expect-5.44.1.15.ebuild:
+ alpha/ia64/m68k/s390/sh/sparc stable wrt #324951
23 Jul 2010; Markus Meier <maekke@gentoo.org> expect-5.44.1.15.ebuild:
arm stable, bug #324951
1.13 dev-tcltk/expect/expect-5.44.1.15.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?r1=1.12&r2=1.13
Index: expect-5.44.1.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- expect-5.44.1.15.ebuild 23 Jul 2010 12:35:15 -0000 1.12
+++ expect-5.44.1.15.ebuild 7 Aug 2010 16:57:33 -0000 1.13
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.12 2010/07/23 12:35:15 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.13 2010/08/07 16:57:33 armin76 Exp $
EAPI="3"
@@ -13,7 +13,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
IUSE="debug doc threads X"
# We need dejagnu for src_test, but dejagnu needs expect
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild
@ 2010-09-20 7:27 Mike Frysinger (vapier)
0 siblings, 0 replies; 13+ messages in thread
From: Mike Frysinger (vapier) @ 2010-09-20 7:27 UTC (permalink / raw
To: gentoo-commits
vapier 10/09/20 07:27:45
Modified: ChangeLog expect-5.44.1.15.ebuild
Log:
Clean up ebuild and fix missing prototype warnings #337943 by David J Cozatt.
(Portage version: 2.2_rc83/cvs/Linux x86_64)
Revision Changes Path
1.81 dev-tcltk/expect/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.80&r2=1.81
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog 7 Aug 2010 16:57:33 -0000 1.80
+++ ChangeLog 20 Sep 2010 07:27:45 -0000 1.81
@@ -1,6 +1,10 @@
# ChangeLog for dev-tcltk/expect
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.80 2010/08/07 16:57:33 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.81 2010/09/20 07:27:45 vapier Exp $
+
+ 20 Sep 2010; Mike Frysinger <vapier@gentoo.org> expect-5.44.1.15.ebuild,
+ +files/expect-5.44.1.15-headers.patch:
+ Clean up ebuild and fix missing prototype warnings #337943 by David J Cozatt.
07 Aug 2010; Raúl Porcel <armin76@gentoo.org> expect-5.44.1.15.ebuild:
alpha/ia64/m68k/s390/sh/sparc stable wrt #324951
1.14 dev-tcltk/expect/expect-5.44.1.15.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?r1=1.13&r2=1.14
Index: expect-5.44.1.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- expect-5.44.1.15.ebuild 7 Aug 2010 16:57:33 -0000 1.13
+++ expect-5.44.1.15.ebuild 20 Sep 2010 07:27:45 -0000 1.14
@@ -1,10 +1,9 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.13 2010/08/07 16:57:33 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.14 2010/09/20 07:27:45 vapier Exp $
EAPI="3"
-WANT_AUTOCONF="2.5"
inherit autotools eutils
DESCRIPTION="tool for automating interactive applications"
@@ -23,21 +22,18 @@
RDEPEND="${DEPEND}"
src_prepare() {
- # fix install_name on darwin
- [[ ${CHOST} == *-darwin* ]] && \
- epatch "${FILESDIR}"/${P}-darwin.patch
-
- sed -i "s#/usr/local/bin#${EPREFIX}/usr/bin#" expect.man
- sed -i "s#/usr/local/bin#${EPREFIX}/usr/bin#" expectk.man
- #stops any example scripts being installed by default
+ sed -i "s#/usr/local/bin#${EPREFIX}/usr/bin#" expect{,k}.man || die
+ # stops any example scripts being installed by default
sed -i \
-e '/^install:/s/install-libraries //' \
-e 's/^SCRIPTS_MANPAGES = /_&/' \
Makefile.in
- epatch "${FILESDIR}/${P}-gfbsd.patch"
- epatch "${FILESDIR}/${P}-ldflags.patch"
- epatch "${FILESDIR}/${P}_with-tk-no.patch"
+ epatch "${FILESDIR}"/${P}-gfbsd.patch
+ epatch "${FILESDIR}"/${P}-ldflags.patch
+ epatch "${FILESDIR}"/${P}_with-tk-no.patch
+ epatch "${FILESDIR}"/${P}-headers.patch #337943
+ sed -i 's:ifdef HAVE_SYS_WAIT_H:ifndef NO_SYS_WAIT_H:' *.c
eautoconf
}
@@ -79,26 +75,21 @@
emake test || die "emake test failed"
}
-src_install() {
- dodir /usr/$(get_libdir)
- emake install DESTDIR="${D}" || die "make install failed"
+expect_make_var() {
+ touch pkgIndex.tcl-hand
+ printf 'all:;echo $('$1')\ninclude Makefile' | emake -s -f -
+ rm -f pkgIndex.tcl-hand
+}
+src_install() {
+ emake install DESTDIR="${D}" || die
dodoc ChangeLog FAQ HISTORY NEWS README
- #install examples if 'doc' is set
+ # install examples if 'doc' is set
if use doc ; then
- docinto examples
- local scripts=$(make -qp | \
- sed -e 's/^SCRIPTS = //' -et -ed | head -n1)
insinto /usr/share/doc/${PF}/examples
- for s in ${scripts}; do
- doins example/${s} || die
- done
- local scripts_manpages=$(make -qp | \
- sed -e 's/^_SCRIPTS_MANPAGES = //' -et -ed | head -n1)
- for m in ${scripts_manpages}; do
- dodoc example/${m}.man
- done
- dodoc example/README
+ doins $(printf 'example/%s ' $(expect_make_var SCRIPTS)) || die
+ docinto examples
+ dodoc example/README $(printf 'example/%s.man ' $(expect_make_var _SCRIPTS_MANPAGES)) || die
fi
}
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild
@ 2010-12-17 22:35 Mike Frysinger (vapier)
0 siblings, 0 replies; 13+ messages in thread
From: Mike Frysinger (vapier) @ 2010-12-17 22:35 UTC (permalink / raw
To: gentoo-commits
vapier 10/12/17 22:35:03
Modified: ChangeLog expect-5.44.1.15.ebuild
Log:
Force ignoring of -w in MAKEOPTS #338970 by Drake Wyrm.
(Portage version: 2.2.0_alpha8/cvs/Linux x86_64)
Revision Changes Path
1.83 dev-tcltk/expect/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.82&r2=1.83
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog 17 Dec 2010 22:25:42 -0000 1.82
+++ ChangeLog 17 Dec 2010 22:35:03 -0000 1.83
@@ -1,6 +1,9 @@
# ChangeLog for dev-tcltk/expect
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.82 2010/12/17 22:25:42 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.83 2010/12/17 22:35:03 vapier Exp $
+
+ 17 Dec 2010; Mike Frysinger <vapier@gentoo.org> expect-5.44.1.15.ebuild:
+ Force ignoring of -w in MAKEOPTS #338970 by Drake Wyrm.
17 Dec 2010; Mike Frysinger <vapier@gentoo.org> -expect-5.42.1-r1.ebuild,
-expect-5.42.1-r2.ebuild, -files/expect-5.42.1-missing-includes.patch,
1.15 dev-tcltk/expect/expect-5.44.1.15.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?r1=1.14&r2=1.15
Index: expect-5.44.1.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- expect-5.44.1.15.ebuild 20 Sep 2010 07:27:45 -0000 1.14
+++ expect-5.44.1.15.ebuild 17 Dec 2010 22:35:03 -0000 1.15
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.14 2010/09/20 07:27:45 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.15 2010/12/17 22:35:03 vapier Exp $
EAPI="3"
@@ -77,7 +77,7 @@
expect_make_var() {
touch pkgIndex.tcl-hand
- printf 'all:;echo $('$1')\ninclude Makefile' | emake -s -f -
+ printf 'all:;echo $('$1')\ninclude Makefile' | emake --no-print-directory -s -f -
rm -f pkgIndex.tcl-hand
}
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild
@ 2010-12-17 22:56 Mike Frysinger (vapier)
0 siblings, 0 replies; 13+ messages in thread
From: Mike Frysinger (vapier) @ 2010-12-17 22:56 UTC (permalink / raw
To: gentoo-commits
vapier 10/12/17 22:56:19
Modified: ChangeLog expect-5.44.1.15.ebuild
Log:
Fix expectk handling, and include a few more headers #279335 by OKUMURA N. Shin-ya.
(Portage version: 2.2.0_alpha8/cvs/Linux x86_64)
Revision Changes Path
1.84 dev-tcltk/expect/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/ChangeLog?r1=1.83&r2=1.84
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog 17 Dec 2010 22:35:03 -0000 1.83
+++ ChangeLog 17 Dec 2010 22:56:19 -0000 1.84
@@ -1,6 +1,12 @@
# ChangeLog for dev-tcltk/expect
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.83 2010/12/17 22:35:03 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/ChangeLog,v 1.84 2010/12/17 22:56:19 vapier Exp $
+
+ 17 Dec 2010; Mike Frysinger <vapier@gentoo.org> expect-5.44.1.15.ebuild,
+ +files/expect-5.44.1.15-expectk.patch,
+ files/expect-5.44.1.15-headers.patch:
+ Fix expectk handling, and include a few more headers #279335 by OKUMURA N.
+ Shin-ya.
17 Dec 2010; Mike Frysinger <vapier@gentoo.org> expect-5.44.1.15.ebuild:
Force ignoring of -w in MAKEOPTS #338970 by Drake Wyrm.
1.16 dev-tcltk/expect/expect-5.44.1.15.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild?r1=1.15&r2=1.16
Index: expect-5.44.1.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- expect-5.44.1.15.ebuild 17 Dec 2010 22:35:03 -0000 1.15
+++ expect-5.44.1.15.ebuild 17 Dec 2010 22:56:19 -0000 1.16
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.15 2010/12/17 22:35:03 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.16 2010/12/17 22:56:19 vapier Exp $
EAPI="3"
@@ -33,6 +33,7 @@
epatch "${FILESDIR}"/${P}-ldflags.patch
epatch "${FILESDIR}"/${P}_with-tk-no.patch
epatch "${FILESDIR}"/${P}-headers.patch #337943
+ epatch "${FILESDIR}"/${P}-expectk.patch
sed -i 's:ifdef HAVE_SYS_WAIT_H:ifndef NO_SYS_WAIT_H:' *.c
eautoconf
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2010-12-17 22:56 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-07 16:57 [gentoo-commits] gentoo-x86 commit in dev-tcltk/expect: ChangeLog expect-5.44.1.15.ebuild Raul Porcel (armin76)
-- strict thread matches above, loose matches on Subject: below --
2010-12-17 22:56 Mike Frysinger (vapier)
2010-12-17 22:35 Mike Frysinger (vapier)
2010-09-20 7:27 Mike Frysinger (vapier)
2010-07-23 12:35 Markus Meier (maekke)
2010-07-18 13:52 Gysbert Wassenaar (nixnut)
2010-07-09 21:14 Samuli Suominen (ssuominen)
2010-07-07 14:03 PaweA Hajdan (phajdan.jr)
2010-06-24 21:47 Pacho Ramos (pacho)
2010-06-24 1:28 Jeroen Roovers (jer)
2010-05-25 11:01 Justin Lecher (jlec)
2010-04-28 19:58 Justin Lecher (jlec)
2010-04-12 20:17 Justin Lecher (jlec)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox