public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: ChangeLog asio-1.4.5.ebuild
@ 2010-07-02 14:58 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 9+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-07-02 14:58 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/07/02 14:58:54

  Modified:             ChangeLog
  Added:                asio-1.4.5.ebuild
  Log:
  Version bump.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.21                 dev-cpp/asio/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	16 May 2010 16:30:11 -0000	1.20
+++ ChangeLog	2 Jul 2010 14:58:54 -0000	1.21
@@ -1,6 +1,11 @@
 # ChangeLog for dev-cpp/asio
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.20 2010/05/16 16:30:11 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.21 2010/07/02 14:58:54 ssuominen Exp $
+
+*asio-1.4.5 (02 Jul 2010)
+
+  02 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> +asio-1.4.5.ebuild:
+  Version bump.
 
   16 May 2010; Raúl Porcel <armin76@gentoo.org> asio-0.3.9.ebuild,
   asio-1.1.0.ebuild, asio-1.4.1.ebuild:



1.1                  dev-cpp/asio/asio-1.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.1&content-type=text/plain

Index: asio-1.4.5.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v 1.1 2010/07/02 14:58:54 ssuominen Exp $

EAPI=2

DESCRIPTION="Asynchronous Network Library"
HOMEPAGE="http://asio.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"

LICENSE="Boost-1.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~sparc ~x86"
IUSE="doc examples ssl test"

DEPEND="ssl? ( dev-libs/openssl )
	>=dev-libs/boost-1.35.0"

src_prepare() {
	if ! use test; then
		# Don't build nor install any examples or unittests
		# since we don't have a script to run them
		cat > src/Makefile.in <<-EOF
all:

install:
		EOF
	fi
}

src_install() {
	emake DESTDIR="${D}" install || die
	dodoc README

	if use doc; then
		dohtml -r doc/*
	fi

	if use examples; then
		if use test; then
			# Get rid of the object files
			emake clean || die
		fi
		insinto /usr/share/doc/${PF}
		doins -r src/examples
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: ChangeLog asio-1.4.5.ebuild
@ 2010-07-05 18:01 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 9+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-07-05 18:01 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/07/05 18:01:24

  Modified:             ChangeLog asio-1.4.5.ebuild
  Log:
  Keyword ~ppc64 wrt #316219
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.23                 dev-cpp/asio/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	3 Jul 2010 15:17:03 -0000	1.22
+++ ChangeLog	5 Jul 2010 18:01:24 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/asio
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.22 2010/07/03 15:17:03 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.23 2010/07/05 18:01:24 ssuominen Exp $
+
+  05 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> asio-1.4.5.ebuild:
+  Keyword ~ppc64 wrt #316219
 
   03 Jul 2010; Raúl Porcel <armin76@gentoo.org> asio-1.4.1.ebuild:
   alpha/ia64/sparc stable wrt #326499



1.2                  dev-cpp/asio/asio-1.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?r1=1.1&r2=1.2

Index: asio-1.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- asio-1.4.5.ebuild	2 Jul 2010 14:58:54 -0000	1.1
+++ asio-1.4.5.ebuild	5 Jul 2010 18:01:24 -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/dev-cpp/asio/asio-1.4.5.ebuild,v 1.1 2010/07/02 14:58:54 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v 1.2 2010/07/05 18:01:24 ssuominen Exp $
 
 EAPI=2
 
@@ -10,7 +10,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc64 ~sparc ~x86"
 IUSE="doc examples ssl test"
 
 DEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: ChangeLog asio-1.4.5.ebuild
@ 2010-07-06 14:14 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2010-07-06 14:14 UTC (permalink / raw
  To: gentoo-commits

jer         10/07/06 14:14:41

  Modified:             ChangeLog asio-1.4.5.ebuild
  Log:
  Marked ~ppc (bug #316219).
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.24                 dev-cpp/asio/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	5 Jul 2010 18:01:24 -0000	1.23
+++ ChangeLog	6 Jul 2010 14:14:41 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/asio
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.23 2010/07/05 18:01:24 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.24 2010/07/06 14:14:41 jer Exp $
+
+  06 Jul 2010; Jeroen Roovers <jer@gentoo.org> asio-1.4.5.ebuild:
+  Marked ~ppc (bug #316219).
 
   05 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> asio-1.4.5.ebuild:
   Keyword ~ppc64 wrt #316219



1.3                  dev-cpp/asio/asio-1.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?r1=1.2&r2=1.3

Index: asio-1.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- asio-1.4.5.ebuild	5 Jul 2010 18:01:24 -0000	1.2
+++ asio-1.4.5.ebuild	6 Jul 2010 14:14:41 -0000	1.3
@@ -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-cpp/asio/asio-1.4.5.ebuild,v 1.2 2010/07/05 18:01:24 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v 1.3 2010/07/06 14:14:41 jer Exp $
 
 EAPI=2
 
@@ -10,7 +10,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="doc examples ssl test"
 
 DEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: ChangeLog asio-1.4.5.ebuild
@ 2010-07-20  1:19 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2010-07-20  1:19 UTC (permalink / raw
  To: gentoo-commits

jer         10/07/20 01:19:18

  Modified:             ChangeLog asio-1.4.5.ebuild
  Log:
  Marked ~hppa (bug #316219).
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.25                 dev-cpp/asio/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	6 Jul 2010 14:14:41 -0000	1.24
+++ ChangeLog	20 Jul 2010 01:19:18 -0000	1.25
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/asio
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.24 2010/07/06 14:14:41 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.25 2010/07/20 01:19:18 jer Exp $
+
+  20 Jul 2010; Jeroen Roovers <jer@gentoo.org> asio-1.4.5.ebuild:
+  Marked ~hppa (bug #316219).
 
   06 Jul 2010; Jeroen Roovers <jer@gentoo.org> asio-1.4.5.ebuild:
   Marked ~ppc (bug #316219).



1.4                  dev-cpp/asio/asio-1.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?r1=1.3&r2=1.4

Index: asio-1.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- asio-1.4.5.ebuild	6 Jul 2010 14:14:41 -0000	1.3
+++ asio-1.4.5.ebuild	20 Jul 2010 01:19:18 -0000	1.4
@@ -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-cpp/asio/asio-1.4.5.ebuild,v 1.3 2010/07/06 14:14:41 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v 1.4 2010/07/20 01:19:18 jer Exp $
 
 EAPI=2
 
@@ -10,7 +10,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="doc examples ssl test"
 
 DEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: ChangeLog asio-1.4.5.ebuild
@ 2010-07-31 20:24 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 9+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-07-31 20:24 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/07/31 20:24:12

  Modified:             ChangeLog asio-1.4.5.ebuild
  Log:
  x86 stable wrt bug #330453
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.26                 dev-cpp/asio/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	20 Jul 2010 01:19:18 -0000	1.25
+++ ChangeLog	31 Jul 2010 20:24:12 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/asio
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.25 2010/07/20 01:19:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.26 2010/07/31 20:24:12 phajdan.jr Exp $
+
+  31 Jul 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> asio-1.4.5.ebuild:
+  x86 stable wrt bug #330453
 
   20 Jul 2010; Jeroen Roovers <jer@gentoo.org> asio-1.4.5.ebuild:
   Marked ~hppa (bug #316219).



1.5                  dev-cpp/asio/asio-1.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?r1=1.4&r2=1.5

Index: asio-1.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- asio-1.4.5.ebuild	20 Jul 2010 01:19:18 -0000	1.4
+++ asio-1.4.5.ebuild	31 Jul 2010 20:24:12 -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-cpp/asio/asio-1.4.5.ebuild,v 1.4 2010/07/20 01:19:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v 1.5 2010/07/31 20:24:12 phajdan.jr Exp $
 
 EAPI=2
 
@@ -10,7 +10,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="doc examples ssl test"
 
 DEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: ChangeLog asio-1.4.5.ebuild
@ 2010-07-31 22:37 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 9+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-07-31 22:37 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/07/31 22:37:27

  Modified:             ChangeLog asio-1.4.5.ebuild
  Log:
  Stable on amd64 wrt bug #330453
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.27                 dev-cpp/asio/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	31 Jul 2010 20:24:12 -0000	1.26
+++ ChangeLog	31 Jul 2010 22:37:27 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/asio
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.26 2010/07/31 20:24:12 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.27 2010/07/31 22:37:27 hwoarang Exp $
+
+  31 Jul 2010; Markos Chandras <hwoarang@gentoo.org> asio-1.4.5.ebuild:
+  Stable on amd64 wrt bug #330453
 
   31 Jul 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> asio-1.4.5.ebuild:
   x86 stable wrt bug #330453



1.6                  dev-cpp/asio/asio-1.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?r1=1.5&r2=1.6

Index: asio-1.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- asio-1.4.5.ebuild	31 Jul 2010 20:24:12 -0000	1.5
+++ asio-1.4.5.ebuild	31 Jul 2010 22:37:27 -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-cpp/asio/asio-1.4.5.ebuild,v 1.5 2010/07/31 20:24:12 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v 1.6 2010/07/31 22:37:27 hwoarang Exp $
 
 EAPI=2
 
@@ -10,7 +10,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="doc examples ssl test"
 
 DEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: ChangeLog asio-1.4.5.ebuild
@ 2010-08-29 14:37 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2010-08-29 14:37 UTC (permalink / raw
  To: gentoo-commits

armin76     10/08/29 14:37:07

  Modified:             ChangeLog asio-1.4.5.ebuild
  Log:
  alpha/ia64/sparc stable wrt #330453
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.28                 dev-cpp/asio/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	31 Jul 2010 22:37:27 -0000	1.27
+++ ChangeLog	29 Aug 2010 14:37:07 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/asio
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.27 2010/07/31 22:37:27 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.28 2010/08/29 14:37:07 armin76 Exp $
+
+  29 Aug 2010; Raúl Porcel <armin76@gentoo.org> asio-1.4.5.ebuild:
+  alpha/ia64/sparc stable wrt #330453
 
   31 Jul 2010; Markos Chandras <hwoarang@gentoo.org> asio-1.4.5.ebuild:
   Stable on amd64 wrt bug #330453



1.7                  dev-cpp/asio/asio-1.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?r1=1.6&r2=1.7

Index: asio-1.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- asio-1.4.5.ebuild	31 Jul 2010 22:37:27 -0000	1.6
+++ asio-1.4.5.ebuild	29 Aug 2010 14:37:07 -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-cpp/asio/asio-1.4.5.ebuild,v 1.6 2010/07/31 22:37:27 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v 1.7 2010/08/29 14:37:07 armin76 Exp $
 
 EAPI=2
 
@@ -10,7 +10,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ~ppc64 sparc x86"
 IUSE="doc examples ssl test"
 
 DEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: ChangeLog asio-1.4.5.ebuild
@ 2010-09-09 13:56 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2010-09-09 13:56 UTC (permalink / raw
  To: gentoo-commits

ranger      10/09/09 13:56:06

  Modified:             ChangeLog asio-1.4.5.ebuild
  Log:
  Marking asio-1.4.5 ppc64 for bug 326503
  (Portage version: 2.1.8.3/cvs/Linux ppc64)

Revision  Changes    Path
1.29                 dev-cpp/asio/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	29 Aug 2010 14:37:07 -0000	1.28
+++ ChangeLog	9 Sep 2010 13:56:06 -0000	1.29
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/asio
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.28 2010/08/29 14:37:07 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.29 2010/09/09 13:56:06 ranger Exp $
+
+  09 Sep 2010; Brent Baude <ranger@gentoo.org> asio-1.4.5.ebuild:
+  Marking asio-1.4.5 ppc64 for bug 326503
 
   29 Aug 2010; Raúl Porcel <armin76@gentoo.org> asio-1.4.5.ebuild:
   alpha/ia64/sparc stable wrt #330453



1.9                  dev-cpp/asio/asio-1.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?r1=1.8&r2=1.9

Index: asio-1.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- asio-1.4.5.ebuild	7 Sep 2010 11:50:00 -0000	1.8
+++ asio-1.4.5.ebuild	9 Sep 2010 13:56:06 -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-cpp/asio/asio-1.4.5.ebuild,v 1.8 2010/09/07 11:50:00 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v 1.9 2010/09/09 13:56:06 ranger Exp $
 
 EAPI=2
 
@@ -10,7 +10,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ppc64 sparc x86"
 IUSE="doc examples ssl test"
 
 RDEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: ChangeLog asio-1.4.5.ebuild
@ 2010-09-13  7:11 Joseph Jezak (josejx)
  0 siblings, 0 replies; 9+ messages in thread
From: Joseph Jezak (josejx) @ 2010-09-13  7:11 UTC (permalink / raw
  To: gentoo-commits

josejx      10/09/13 07:11:10

  Modified:             ChangeLog asio-1.4.5.ebuild
  Log:
  Marked ppc stable.
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.30                 dev-cpp/asio/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	9 Sep 2010 13:56:06 -0000	1.29
+++ ChangeLog	13 Sep 2010 07:11:10 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/asio
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.29 2010/09/09 13:56:06 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.30 2010/09/13 07:11:10 josejx Exp $
+
+  13 Sep 2010; Joseph Jezak <josejx@gentoo.org> asio-1.4.5.ebuild:
+  Marked ppc stable.
 
   09 Sep 2010; Brent Baude <ranger@gentoo.org> asio-1.4.5.ebuild:
   Marking asio-1.4.5 ppc64 for bug 326503



1.10                 dev-cpp/asio/asio-1.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild?r1=1.9&r2=1.10

Index: asio-1.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- asio-1.4.5.ebuild	9 Sep 2010 13:56:06 -0000	1.9
+++ asio-1.4.5.ebuild	13 Sep 2010 07:11:10 -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-cpp/asio/asio-1.4.5.ebuild,v 1.9 2010/09/09 13:56:06 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.5.ebuild,v 1.10 2010/09/13 07:11:10 josejx Exp $
 
 EAPI=2
 
@@ -10,7 +10,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86"
 IUSE="doc examples ssl test"
 
 RDEPEND="ssl? ( dev-libs/openssl )






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

end of thread, other threads:[~2010-09-13  7:11 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-31 22:37 [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: ChangeLog asio-1.4.5.ebuild Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2010-09-13  7:11 Joseph Jezak (josejx)
2010-09-09 13:56 Brent Baude (ranger)
2010-08-29 14:37 Raul Porcel (armin76)
2010-07-31 20:24 PaweA Hajdan (phajdan.jr)
2010-07-20  1:19 Jeroen Roovers (jer)
2010-07-06 14:14 Jeroen Roovers (jer)
2010-07-05 18:01 Samuli Suominen (ssuominen)
2010-07-02 14:58 Samuli Suominen (ssuominen)

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