public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: asio-1.4.1.ebuild ChangeLog
@ 2009-05-12  8:34 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 5+ messages in thread
From: Samuli Suominen (ssuominen) @ 2009-05-12  8:34 UTC (permalink / raw
  To: gentoo-commits

ssuominen    09/05/12 08:34:26

  Modified:             ChangeLog
  Added:                asio-1.4.1.ebuild
  Log:
  Version bump.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.16                 dev-cpp/asio/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	11 Jun 2008 16:21:56 -0000	1.15
+++ ChangeLog	12 May 2009 08:34:26 -0000	1.16
@@ -1,10 +1,15 @@
 # ChangeLog for dev-cpp/asio
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.15 2008/06/11 16:21:56 drac Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.16 2009/05/12 08:34:26 ssuominen Exp $
+
+*asio-1.4.1 (12 May 2009)
+
+  12 May 2009; Samuli Suominen <ssuominen@gentoo.org> +asio-1.4.1.ebuild:
+  Version bump.
 
 *asio-1.1.0 (11 Jun 2008)
 
-  11 Jun 2008; Samuli Suominen <drac@gentoo.org> +asio-1.1.0.ebuild:
+  11 Jun 2008; Samuli Suominen <ssuominen@gentoo.org> +asio-1.1.0.ebuild:
   Version bump.
 
   05 Feb 2008; Tiziano Müller <dev-zero@gentoo.org>
@@ -14,7 +19,7 @@
   05 Feb 2008; Christian Faulhammer <opfer@gentoo.org> asio-0.3.9.ebuild:
   stable x86, bug 209002
 
-  05 Feb 2008; Samuli Suominen <drac@gentoo.org> asio-0.3.9.ebuild:
+  05 Feb 2008; Samuli Suominen <ssuominen@gentoo.org> asio-0.3.9.ebuild:
   amd64 stable wrt #209002
 
 *asio-0.3.9 (24 Dec 2007)



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

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

Index: asio-1.4.1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.1.ebuild,v 1.1 2009/05/12 08:34:26 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="~amd64 ~x86"
IUSE="doc examples ssl test"

RDEPEND="ssl? ( dev-libs/openssl )
	>=dev-libs/boost-1.34.1"
DEPEND="${DEPEND}"

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 "emake install failed"
	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 "emake clean failed"
		fi
		insinto /usr/share/doc/${PF}
		doins -r src/examples
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: asio-1.4.1.ebuild ChangeLog
@ 2009-09-11 11:22 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 5+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-09-11 11:22 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/09/11 11:22:52

  Modified:             asio-1.4.1.ebuild ChangeLog
  Log:
  Fix DEPEND/RDEPEND assignment.
  (Portage version: 2.2_rc40/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-cpp/asio/asio-1.4.1.ebuild

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

Index: asio-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- asio-1.4.1.ebuild	12 May 2009 08:34:26 -0000	1.1
+++ asio-1.4.1.ebuild	11 Sep 2009 11:22:52 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.1.ebuild,v 1.1 2009/05/12 08:34:26 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.1.ebuild,v 1.2 2009/09/11 11:22:52 flameeyes Exp $
 
 EAPI=2
 
@@ -15,7 +15,7 @@
 
 RDEPEND="ssl? ( dev-libs/openssl )
 	>=dev-libs/boost-1.34.1"
-DEPEND="${DEPEND}"
+DEPEND="${RDEPEND}"
 
 src_prepare() {
 	if ! use test; then



1.17                 dev-cpp/asio/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	12 May 2009 08:34:26 -0000	1.16
+++ ChangeLog	11 Sep 2009 11:22:52 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/asio
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.16 2009/05/12 08:34:26 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.17 2009/09/11 11:22:52 flameeyes Exp $
+
+  11 Sep 2009; Diego E. Pettenò <flameeyes@gentoo.org> asio-1.4.1.ebuild:
+  Fix DEPEND/RDEPEND assignment.
 
 *asio-1.4.1 (12 May 2009)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: asio-1.4.1.ebuild ChangeLog
@ 2010-04-13 11:08 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-04-13 11:08 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/04/13 11:08:22

  Modified:             asio-1.4.1.ebuild ChangeLog
  Log:
  x86 stable wrt bug #313401
  (Portage version: 2.1.7.17/cvs/Linux i686)

Revision  Changes    Path
1.3                  dev-cpp/asio/asio-1.4.1.ebuild

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

Index: asio-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- asio-1.4.1.ebuild	11 Sep 2009 11:22:52 -0000	1.2
+++ asio-1.4.1.ebuild	13 Apr 2010 11:08:22 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# 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.1.ebuild,v 1.2 2009/09/11 11:22:52 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.1.ebuild,v 1.3 2010/04/13 11:08:22 phajdan.jr Exp $
 
 EAPI=2
 
@@ -10,7 +10,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="doc examples ssl test"
 
 RDEPEND="ssl? ( dev-libs/openssl )



1.18                 dev-cpp/asio/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	11 Sep 2009 11:22:52 -0000	1.17
+++ ChangeLog	13 Apr 2010 11:08:22 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/asio
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.17 2009/09/11 11:22:52 flameeyes Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.18 2010/04/13 11:08:22 phajdan.jr Exp $
+
+  13 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> asio-1.4.1.ebuild:
+  x86 stable wrt bug #313401
 
   11 Sep 2009; Diego E. Pettenò <flameeyes@gentoo.org> asio-1.4.1.ebuild:
   Fix DEPEND/RDEPEND assignment.






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: asio-1.4.1.ebuild ChangeLog
@ 2010-04-13 20:45 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-04-13 20:45 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/04/13 20:45:06

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

Revision  Changes    Path
1.4                  dev-cpp/asio/asio-1.4.1.ebuild

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

Index: asio-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- asio-1.4.1.ebuild	13 Apr 2010 11:08:22 -0000	1.3
+++ asio-1.4.1.ebuild	13 Apr 2010 20:45:06 -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.1.ebuild,v 1.3 2010/04/13 11:08:22 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.1.ebuild,v 1.4 2010/04/13 20:45:06 hwoarang Exp $
 
 EAPI=2
 
@@ -10,7 +10,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="doc examples ssl test"
 
 RDEPEND="ssl? ( dev-libs/openssl )



1.19                 dev-cpp/asio/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/asio/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	13 Apr 2010 11:08:22 -0000	1.18
+++ ChangeLog	13 Apr 2010 20:45:06 -0000	1.19
@@ -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.18 2010/04/13 11:08:22 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.19 2010/04/13 20:45:06 hwoarang Exp $
+
+  13 Apr 2010; Markos Chandras <hwoarang@gentoo.org> asio-1.4.1.ebuild:
+  Stable on amd64 wrt bug #313401
 
   13 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> asio-1.4.1.ebuild:
   x86 stable wrt bug #313401






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: asio-1.4.1.ebuild ChangeLog
@ 2010-07-03 15:17 Raul Porcel (armin76)
  0 siblings, 0 replies; 5+ messages in thread
From: Raul Porcel (armin76) @ 2010-07-03 15:17 UTC (permalink / raw
  To: gentoo-commits

armin76     10/07/03 15:17:04

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

Revision  Changes    Path
1.6                  dev-cpp/asio/asio-1.4.1.ebuild

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

Index: asio-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- asio-1.4.1.ebuild	16 May 2010 16:30:11 -0000	1.5
+++ asio-1.4.1.ebuild	3 Jul 2010 15:17:03 -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.1.ebuild,v 1.5 2010/05/16 16:30:11 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-1.4.1.ebuild,v 1.6 2010/07/03 15:17:03 armin76 Exp $
 
 EAPI=2
 
@@ -10,7 +10,7 @@
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~sparc x86"
+KEYWORDS="alpha amd64 ia64 sparc x86"
 IUSE="doc examples ssl test"
 
 RDEPEND="ssl? ( dev-libs/openssl )



1.22                 dev-cpp/asio/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	2 Jul 2010 14:58:54 -0000	1.21
+++ ChangeLog	3 Jul 2010 15:17:03 -0000	1.22
@@ -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.21 2010/07/02 14:58:54 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.22 2010/07/03 15:17:03 armin76 Exp $
+
+  03 Jul 2010; Raúl Porcel <armin76@gentoo.org> asio-1.4.1.ebuild:
+  alpha/ia64/sparc stable wrt #326499
 
 *asio-1.4.5 (02 Jul 2010)
 






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

end of thread, other threads:[~2010-07-03 15:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-13 20:45 [gentoo-commits] gentoo-x86 commit in dev-cpp/asio: asio-1.4.1.ebuild ChangeLog Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2010-07-03 15:17 Raul Porcel (armin76)
2010-04-13 11:08 PaweA Hajdan (phajdan.jr)
2009-09-11 11:22 Diego Petteno (flameeyes)
2009-05-12  8:34 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