public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-misc/xdotool: xdotool-20091231.02.ebuild ChangeLog
@ 2010-01-14  5:32 Christian Birchinger (joker)
  0 siblings, 0 replies; 4+ messages in thread
From: Christian Birchinger (joker) @ 2010-01-14  5:32 UTC (permalink / raw
  To: gentoo-commits

joker       10/01/14 05:32:47

  Modified:             ChangeLog
  Added:                xdotool-20091231.02.ebuild
  Log:
  Version bump and ebuild cleanups.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  x11-misc/xdotool/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	30 Oct 2009 11:05:37 -0000	1.5
+++ ChangeLog	14 Jan 2010 05:32:46 -0000	1.6
@@ -1,6 +1,13 @@
 # ChangeLog for x11-misc/xdotool
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.5 2009/10/30 11:05:37 maekke Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.6 2010/01/14 05:32:46 joker Exp $
+
+*xdotool-20091231.02 (14 Jan 2010)
+
+  14 Jan 2010; Christian Birchinger <joker@gentoo.org>
+  +xdotool-20091231.02.ebuild, +files/xdotool-20091231.02_as-needed.patch,
+  +files/xdotool-20091231.02_install-D.patch:
+  Version bump and ebuild cleanups.
 
   30 Oct 2009; Markus Meier <maekke@gentoo.org> xdotool-20090609.ebuild:
   amd64/x86 stable, bug #289978



1.1                  x11-misc/xdotool/xdotool-20091231.02.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild?rev=1.1&content-type=text/plain

Index: xdotool-20091231.02.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild,v 1.1 2010/01/14 05:32:46 joker Exp $

EAPI=2

inherit eutils toolchain-funcs flag-o-matic multilib

DESCRIPTION="Simulate keyboard input and mouse activity, move and resize windows."
HOMEPAGE="http://www.semicomplete.com/projects/xdotool/"
SRC_URI="http://semicomplete.googlecode.com/files/${P}.tar.gz"
LICENSE="as-is"

SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="examples"

DEPEND="x11-libs/libXtst
	x11-libs/libX11"

RDEPEND="${DEPEND}"

src_prepare() {
	epatch "${FILESDIR}/${P}_install-D.patch" \
		"${FILESDIR}/${P}_as-needed.patch"
}

src_compile() {
	tc-export CC LD
	export LDFLAGS="$(raw-ldflags)"
	default
	emake libxdo.so || die "Unable to build libxdo.so"
}

src_install() {
	emake PREFIX="${D}usr" INSTALLMAN="${D}usr/share/man" INSTALLLIB="${D}usr/$(get_libdir)" install || die

	dodoc CHANGELIST README
	if use examples; then
		insinto /usr/share/doc/${PF}/examples
		doins examples/*
	fi
}






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-misc/xdotool: xdotool-20091231.02.ebuild ChangeLog
@ 2010-01-14  7:30 Christian Birchinger (joker)
  0 siblings, 0 replies; 4+ messages in thread
From: Christian Birchinger (joker) @ 2010-01-14  7:30 UTC (permalink / raw
  To: gentoo-commits

joker       10/01/14 07:30:32

  Modified:             xdotool-20091231.02.ebuild ChangeLog
  Log:
  Added RESTRICT=test and a reason for it.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  x11-misc/xdotool/xdotool-20091231.02.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild?r1=1.1&r2=1.2

Index: xdotool-20091231.02.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xdotool-20091231.02.ebuild	14 Jan 2010 05:32:46 -0000	1.1
+++ xdotool-20091231.02.ebuild	14 Jan 2010 07:30:32 -0000	1.2
@@ -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/x11-misc/xdotool/xdotool-20091231.02.ebuild,v 1.1 2010/01/14 05:32:46 joker Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild,v 1.2 2010/01/14 07:30:32 joker Exp $
 
 EAPI=2
 
@@ -20,6 +20,12 @@
 
 RDEPEND="${DEPEND}"
 
+# The test want to manualy start Xvfb an wont use VirtualX and
+# it tries to run a full gnome-session. For such a tiny application
+# i consider it overkill to rewrite the test scripts to use it's own     
+# X server and add a full blown gnome just to run the tests.
+RESTRICT="test"
+
 src_prepare() {
 	epatch "${FILESDIR}/${P}_install-D.patch" \
 		"${FILESDIR}/${P}_as-needed.patch"



1.7                  x11-misc/xdotool/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	14 Jan 2010 05:32:46 -0000	1.6
+++ ChangeLog	14 Jan 2010 07:30:32 -0000	1.7
@@ -1,6 +1,10 @@
 # ChangeLog for x11-misc/xdotool
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.6 2010/01/14 05:32:46 joker Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.7 2010/01/14 07:30:32 joker Exp $
+
+  14 Jan 2010; Christian Birchinger <joker@gentoo.org>
+  xdotool-20091231.02.ebuild:
+  Added RESTRICT=test and a reason for it.
 
 *xdotool-20091231.02 (14 Jan 2010)
 






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-misc/xdotool: xdotool-20091231.02.ebuild ChangeLog
@ 2010-04-25 16:22 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 4+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-04-25 16:22 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/04/25 16:22:23

  Modified:             xdotool-20091231.02.ebuild ChangeLog
  Log:
  x86 stable wrt bug #312729
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.5                  x11-misc/xdotool/xdotool-20091231.02.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild?r1=1.4&r2=1.5

Index: xdotool-20091231.02.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- xdotool-20091231.02.ebuild	8 Apr 2010 16:12:22 -0000	1.4
+++ xdotool-20091231.02.ebuild	25 Apr 2010 16:22:22 -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/x11-misc/xdotool/xdotool-20091231.02.ebuild,v 1.4 2010/04/08 16:12:22 joker Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild,v 1.5 2010/04/25 16:22:22 phajdan.jr Exp $
 
 EAPI=2
 
@@ -12,7 +12,7 @@
 LICENSE="as-is"
 
 SLOT="0"
-KEYWORDS="~x86 ~amd64"
+KEYWORDS="~amd64 x86"
 IUSE="examples"
 
 DEPEND="x11-libs/libXtst



1.10                 x11-misc/xdotool/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdotool/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	8 Apr 2010 16:12:22 -0000	1.9
+++ ChangeLog	25 Apr 2010 16:22:22 -0000	1.10
@@ -1,6 +1,10 @@
 # ChangeLog for x11-misc/xdotool
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.9 2010/04/08 16:12:22 joker Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.10 2010/04/25 16:22:22 phajdan.jr Exp $
+
+  25 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  xdotool-20091231.02.ebuild:
+  x86 stable wrt bug #312729
 
   08 Apr 2010; Christian Birchinger <joker@gentoo.org>
   -xdotool-20090815.ebuild, xdotool-20091231.02.ebuild:






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-misc/xdotool: xdotool-20091231.02.ebuild ChangeLog
@ 2010-05-23 20:01 Pacho Ramos (pacho)
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos (pacho) @ 2010-05-23 20:01 UTC (permalink / raw
  To: gentoo-commits

pacho       10/05/23 20:01:35

  Modified:             xdotool-20091231.02.ebuild ChangeLog
  Log:
  stable amd64, bug 312729
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  x11-misc/xdotool/xdotool-20091231.02.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild?r1=1.5&r2=1.6

Index: xdotool-20091231.02.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- xdotool-20091231.02.ebuild	25 Apr 2010 16:22:22 -0000	1.5
+++ xdotool-20091231.02.ebuild	23 May 2010 20:01:35 -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/x11-misc/xdotool/xdotool-20091231.02.ebuild,v 1.5 2010/04/25 16:22:22 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20091231.02.ebuild,v 1.6 2010/05/23 20:01:35 pacho Exp $
 
 EAPI=2
 
@@ -12,7 +12,7 @@
 LICENSE="as-is"
 
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="examples"
 
 DEPEND="x11-libs/libXtst



1.11                 x11-misc/xdotool/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdotool/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdotool/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdotool/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	25 Apr 2010 16:22:22 -0000	1.10
+++ ChangeLog	23 May 2010 20:01:35 -0000	1.11
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/xdotool
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.10 2010/04/25 16:22:22 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.11 2010/05/23 20:01:35 pacho Exp $
+
+  23 May 2010; Pacho Ramos <pacho@gentoo.org> xdotool-20091231.02.ebuild:
+  stable amd64, bug 312729
 
   25 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   xdotool-20091231.02.ebuild:






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-05-23 20:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-25 16:22 [gentoo-commits] gentoo-x86 commit in x11-misc/xdotool: xdotool-20091231.02.ebuild ChangeLog PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2010-05-23 20:01 Pacho Ramos (pacho)
2010-01-14  7:30 Christian Birchinger (joker)
2010-01-14  5:32 Christian Birchinger (joker)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox