public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-cpp/libassa: libassa-3.5.1.ebuild ChangeLog
@ 2012-05-26 20:27 Christoph Mende (angelos)
  0 siblings, 0 replies; 4+ messages in thread
From: Christoph Mende (angelos) @ 2012-05-26 20:27 UTC (permalink / raw
  To: gentoo-commits

angelos     12/05/26 20:27:48

  Modified:             ChangeLog
  Added:                libassa-3.5.1.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)

Revision  Changes    Path
1.14                 dev-cpp/libassa/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libassa/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	19 Jul 2011 20:33:31 -0000	1.13
+++ ChangeLog	26 May 2012 20:27:47 -0000	1.14
@@ -1,6 +1,11 @@
 # ChangeLog for dev-cpp/libassa
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/ChangeLog,v 1.13 2011/07/19 20:33:31 angelos Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/ChangeLog,v 1.14 2012/05/26 20:27:47 angelos Exp $
+
+*libassa-3.5.1 (26 May 2012)
+
+  26 May 2012; Christoph Mende <angelos@gentoo.org> +libassa-3.5.1.ebuild:
+  Version bump
 
   19 Jul 2011; Christoph Mende <angelos@gentoo.org> libassa-3.5.0.ebuild,
   +files/libassa-3.5.0-link-dynamically.patch:



1.1                  dev-cpp/libassa/libassa-3.5.1.ebuild

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

Index: libassa-3.5.1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/libassa-3.5.1.ebuild,v 1.1 2012/05/26 20:27:47 angelos Exp $

EAPI=4
inherit eutils

DESCRIPTION="A networking library based on Adaptive Communication Patterns"
HOMEPAGE="http://libassa.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc static-libs"

RDEPEND=""
DEPEND="doc? ( app-doc/doxygen )"

DOCS=( AUTHORS ChangeLog NEWS README TODO )

src_prepare() {
	epatch "${FILESDIR}"/${PN}-3.5.0-fix-tests.patch
}

src_configure() {
	econf \
		$(use_enable static-libs static) \
		$(use_enable doc doxygen)
}

src_install() {
	default
	find "${ED}" -name "*.la" -exec rm -rf {} + || die "failed to delete .la files"
}






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/libassa: libassa-3.5.1.ebuild ChangeLog
@ 2012-05-26 20:32 Christoph Mende (angelos)
  0 siblings, 0 replies; 4+ messages in thread
From: Christoph Mende (angelos) @ 2012-05-26 20:32 UTC (permalink / raw
  To: gentoo-commits

angelos     12/05/26 20:32:44

  Modified:             libassa-3.5.1.ebuild ChangeLog
  Log:
  Add missing dependency
  
  (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-cpp/libassa/libassa-3.5.1.ebuild

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

Index: libassa-3.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libassa/libassa-3.5.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libassa-3.5.1.ebuild	26 May 2012 20:27:47 -0000	1.1
+++ libassa-3.5.1.ebuild	26 May 2012 20:32:44 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/libassa-3.5.1.ebuild,v 1.1 2012/05/26 20:27:47 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/libassa-3.5.1.ebuild,v 1.2 2012/05/26 20:32:44 angelos Exp $
 
 EAPI=4
 inherit eutils
@@ -14,8 +14,9 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="doc static-libs"
 
-RDEPEND=""
-DEPEND="doc? ( app-doc/doxygen )"
+RDEPEND="net-libs/libtirpc"
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen )"
 
 DOCS=( AUTHORS ChangeLog NEWS README TODO )
 



1.15                 dev-cpp/libassa/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libassa/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	26 May 2012 20:27:47 -0000	1.14
+++ ChangeLog	26 May 2012 20:32:44 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/libassa
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/ChangeLog,v 1.14 2012/05/26 20:27:47 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/ChangeLog,v 1.15 2012/05/26 20:32:44 angelos Exp $
+
+  26 May 2012; Christoph Mende <angelos@gentoo.org> libassa-3.5.1.ebuild:
+  Add missing dependency
 
 *libassa-3.5.1 (26 May 2012)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/libassa: libassa-3.5.1.ebuild ChangeLog
@ 2012-05-27  6:49 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-05-27  6:49 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/05/27 06:49:03

  Modified:             libassa-3.5.1.ebuild ChangeLog
  Log:
  marked x86 per bug 417691
  
  (Portage version: 2.2.0_alpha108/cvs/Linux i686)

Revision  Changes    Path
1.3                  dev-cpp/libassa/libassa-3.5.1.ebuild

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

Index: libassa-3.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libassa/libassa-3.5.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libassa-3.5.1.ebuild	26 May 2012 20:32:44 -0000	1.2
+++ libassa-3.5.1.ebuild	27 May 2012 06:49:03 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/libassa-3.5.1.ebuild,v 1.2 2012/05/26 20:32:44 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/libassa-3.5.1.ebuild,v 1.3 2012/05/27 06:49:03 jdhore Exp $
 
 EAPI=4
 inherit eutils
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="doc static-libs"
 
 RDEPEND="net-libs/libtirpc"



1.16                 dev-cpp/libassa/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libassa/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	26 May 2012 20:32:44 -0000	1.15
+++ ChangeLog	27 May 2012 06:49:03 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/libassa
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/ChangeLog,v 1.15 2012/05/26 20:32:44 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/ChangeLog,v 1.16 2012/05/27 06:49:03 jdhore Exp $
+
+  27 May 2012; Jeff Horelick <jdhore@gentoo.org> libassa-3.5.1.ebuild:
+  marked x86 per bug 417691
 
   26 May 2012; Christoph Mende <angelos@gentoo.org> libassa-3.5.1.ebuild:
   Add missing dependency






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/libassa: libassa-3.5.1.ebuild ChangeLog
@ 2012-05-27  7:29 Christoph Mende (angelos)
  0 siblings, 0 replies; 4+ messages in thread
From: Christoph Mende (angelos) @ 2012-05-27  7:29 UTC (permalink / raw
  To: gentoo-commits

angelos     12/05/27 07:29:17

  Modified:             libassa-3.5.1.ebuild ChangeLog
  Log:
  Stable on amd64 (bug #417691)
  
  (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-cpp/libassa/libassa-3.5.1.ebuild

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

Index: libassa-3.5.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libassa/libassa-3.5.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libassa-3.5.1.ebuild	27 May 2012 06:49:03 -0000	1.3
+++ libassa-3.5.1.ebuild	27 May 2012 07:29:17 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/libassa-3.5.1.ebuild,v 1.3 2012/05/27 06:49:03 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/libassa-3.5.1.ebuild,v 1.4 2012/05/27 07:29:17 angelos Exp $
 
 EAPI=4
 inherit eutils
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="doc static-libs"
 
 RDEPEND="net-libs/libtirpc"



1.17                 dev-cpp/libassa/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libassa/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	27 May 2012 06:49:03 -0000	1.16
+++ ChangeLog	27 May 2012 07:29:17 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/libassa
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/ChangeLog,v 1.16 2012/05/27 06:49:03 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/ChangeLog,v 1.17 2012/05/27 07:29:17 angelos Exp $
+
+  27 May 2012; Christoph Mende <angelos@gentoo.org> libassa-3.5.1.ebuild:
+  Stable on amd64 (bug #417691)
 
   27 May 2012; Jeff Horelick <jdhore@gentoo.org> libassa-3.5.1.ebuild:
   marked x86 per bug 417691






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

end of thread, other threads:[~2012-05-27  7:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-26 20:32 [gentoo-commits] gentoo-x86 commit in dev-cpp/libassa: libassa-3.5.1.ebuild ChangeLog Christoph Mende (angelos)
  -- strict thread matches above, loose matches on Subject: below --
2012-05-27  7:29 Christoph Mende (angelos)
2012-05-27  6:49 Jeff Horelick (jdhore)
2012-05-26 20:27 Christoph Mende (angelos)

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