public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2010-08-01 14:48 Dominik Kapusta (ayoy)
  0 siblings, 0 replies; 14+ messages in thread
From: Dominik Kapusta (ayoy) @ 2010-08-01 14:48 UTC (permalink / raw
  To: gentoo-commits

ayoy        10/08/01 14:48:43

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

Revision  Changes    Path
1.8                  dev-libs/qoauth/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	20 Dec 2009 19:34:06 -0000	1.7
+++ ChangeLog	1 Aug 2010 14:48:43 -0000	1.8
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/qoauth
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.7 2009/12/20 19:34:06 ayoy Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.8 2010/08/01 14:48:43 ayoy Exp $
+
+*qoauth-1.0.1 (01 Aug 2010)
+
+  01 Aug 2010; Dominik Kapusta <ayoy@gentoo.org> +qoauth-1.0.1.ebuild:
+  Version bump
 
   20 Dec 2009; Dominik Kapusta <ayoy@gentoo.org> qoauth-1.0-r1.ebuild:
   Porting to qt4-r2.eclass



1.1                  dev-libs/qoauth/qoauth-1.0.1.ebuild

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

Index: qoauth-1.0.1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.1 2010/08/01 14:48:43 ayoy Exp $

EAPI="2"

inherit qt4-r2

DESCRIPTION="A Qt-based library for OAuth support"
HOMEPAGE="http://wiki.github.com/ayoy/qoauth"
SRC_URI="http://files.ayoy.net/qoauth/release/${PV}/src/${P}-src.tar.bz2"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug doc static-libs test"

COMMON_DEPEND="app-crypt/qca:2[debug?]"
DEPEND="${COMMON_DEPEND}
	doc? ( app-doc/doxygen )"
RDEPEND="${COMMON_DEPEND}
	app-crypt/qca-ossl:2[debug?]"

S="${WORKDIR}/${P}-src"

src_prepare() {
	sed -i -e '/^ *docs \\$/d' \
		   -e '/^ *build_all \\$/d' \
		   -e 's/^\#\(!macx\)/\1/' \
		src/src.pro || die "sed failed"

	sed -i -e "s/\(.*\)lib$/\1$(get_libdir)/" src/pcfile.sh || die "sed failed"

	if ! use test; then
		sed -i -e 's/^\(SUBDIRS.*\) tests/\1/' ${PN}.pro || die "sed failed"
	fi
}

src_compile() {
	default
	if use static-libs; then
		emake -C src static || die "emake failed"
	fi
}

src_install() {
	emake INSTALL_ROOT="${D}" install || die "emake install failed"
	dodoc README CHANGELOG || die "dodoc failed"

	if use static-libs; then
		dolib.a "${S}/lib/lib${PN}.a" || die "dolib failed"
	fi

	if use doc; then
		doxygen "${S}/Doxyfile" || die "Failed to generate documentation"
		dohtml "${S}"/doc/html/* || die "Failed to install documentation"
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2010-10-16 10:19 Dominik Kapusta (ayoy)
  0 siblings, 0 replies; 14+ messages in thread
From: Dominik Kapusta (ayoy) @ 2010-10-16 10:19 UTC (permalink / raw
  To: gentoo-commits

ayoy        10/10/16 10:19:51

  Modified:             qoauth-1.0.1.ebuild ChangeLog
  Log:
  Adding x11-libs/qt-test conditional dependency to compile and run tests (bug #337643).
  
  (Portage version: 2.2_rc97/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-libs/qoauth/qoauth-1.0.1.ebuild

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

Index: qoauth-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qoauth-1.0.1.ebuild	1 Aug 2010 14:48:43 -0000	1.1
+++ qoauth-1.0.1.ebuild	16 Oct 2010 10:19:51 -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-libs/qoauth/qoauth-1.0.1.ebuild,v 1.1 2010/08/01 14:48:43 ayoy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.2 2010/10/16 10:19:51 ayoy Exp $
 
 EAPI="2"
 
@@ -17,7 +17,8 @@
 
 COMMON_DEPEND="app-crypt/qca:2[debug?]"
 DEPEND="${COMMON_DEPEND}
-	doc? ( app-doc/doxygen )"
+	doc? ( app-doc/doxygen )
+	test? ( x11-libs/qt-test )"
 RDEPEND="${COMMON_DEPEND}
 	app-crypt/qca-ossl:2[debug?]"
 



1.9                  dev-libs/qoauth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	1 Aug 2010 14:48:43 -0000	1.8
+++ ChangeLog	16 Oct 2010 10:19:51 -0000	1.9
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/qoauth
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.8 2010/08/01 14:48:43 ayoy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.9 2010/10/16 10:19:51 ayoy Exp $
+
+  16 Oct 2010; Dominik Kapusta <ayoy@gentoo.org> qoauth-1.0.1.ebuild:
+  Adding x11-libs/qt-test conditional dependency to compile and run tests
+  (bug #337643).
 
 *qoauth-1.0.1 (01 Aug 2010)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2010-10-16 13:04 Dominik Kapusta (ayoy)
  0 siblings, 0 replies; 14+ messages in thread
From: Dominik Kapusta (ayoy) @ 2010-10-16 13:04 UTC (permalink / raw
  To: gentoo-commits

ayoy        10/10/16 13:04:51

  Modified:             qoauth-1.0.1.ebuild ChangeLog
  Log:
  Disable functional tests that require network connection and rely on 3rd party external server (bug #341267).
  
  (Portage version: 2.2_rc97/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-libs/qoauth/qoauth-1.0.1.ebuild

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

Index: qoauth-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- qoauth-1.0.1.ebuild	16 Oct 2010 10:19:51 -0000	1.2
+++ qoauth-1.0.1.ebuild	16 Oct 2010 13:04:51 -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-libs/qoauth/qoauth-1.0.1.ebuild,v 1.2 2010/10/16 10:19:51 ayoy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.3 2010/10/16 13:04:51 ayoy Exp $
 
 EAPI="2"
 
@@ -25,16 +25,16 @@
 S="${WORKDIR}/${P}-src"
 
 src_prepare() {
+	# disable functional tests that require network connection and rely
+	# on 3rd party external server (bug #341267)
+	epatch "${FILESDIR}/${P}-disable-ft.patch"
+
 	sed -i -e '/^ *docs \\$/d' \
 		   -e '/^ *build_all \\$/d' \
 		   -e 's/^\#\(!macx\)/\1/' \
 		src/src.pro || die "sed failed"
 
 	sed -i -e "s/\(.*\)lib$/\1$(get_libdir)/" src/pcfile.sh || die "sed failed"
-
-	if ! use test; then
-		sed -i -e 's/^\(SUBDIRS.*\) tests/\1/' ${PN}.pro || die "sed failed"
-	fi
 }
 
 src_compile() {



1.10                 dev-libs/qoauth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	16 Oct 2010 10:19:51 -0000	1.9
+++ ChangeLog	16 Oct 2010 13:04:51 -0000	1.10
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/qoauth
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.9 2010/10/16 10:19:51 ayoy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.10 2010/10/16 13:04:51 ayoy Exp $
+
+  16 Oct 2010; Dominik Kapusta <ayoy@gentoo.org> qoauth-1.0.1.ebuild,
+  +files/qoauth-1.0.1-disable-ft.patch:
+  Disable functional tests that require network connection and rely on
+  3rd party external server (bug #341267).
 
   16 Oct 2010; Dominik Kapusta <ayoy@gentoo.org> qoauth-1.0.1.ebuild:
   Adding x11-libs/qt-test conditional dependency to compile and run tests






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2010-10-18 13:44 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 14+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-10-18 13:44 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/10/18 13:44:58

  Modified:             qoauth-1.0.1.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #341277
  
  (Portage version: 2.2_rc97/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-libs/qoauth/qoauth-1.0.1.ebuild

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

Index: qoauth-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- qoauth-1.0.1.ebuild	16 Oct 2010 13:04:51 -0000	1.3
+++ qoauth-1.0.1.ebuild	18 Oct 2010 13:44:57 -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-libs/qoauth/qoauth-1.0.1.ebuild,v 1.3 2010/10/16 13:04:51 ayoy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.4 2010/10/18 13:44:57 hwoarang Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="debug doc static-libs test"
 
 COMMON_DEPEND="app-crypt/qca:2[debug?]"



1.11                 dev-libs/qoauth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	16 Oct 2010 13:04:51 -0000	1.10
+++ ChangeLog	18 Oct 2010 13:44:57 -0000	1.11
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/qoauth
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.10 2010/10/16 13:04:51 ayoy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.11 2010/10/18 13:44:57 hwoarang Exp $
+
+  18 Oct 2010; Markos Chandras <hwoarang@gentoo.org> qoauth-1.0.1.ebuild:
+  Stable on amd64 wrt bug #341277
 
   16 Oct 2010; Dominik Kapusta <ayoy@gentoo.org> qoauth-1.0.1.ebuild,
   +files/qoauth-1.0.1-disable-ft.patch:






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2010-10-20 10:09 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 14+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-10-20 10:09 UTC (permalink / raw
  To: gentoo-commits

fauli       10/10/20 10:09:37

  Modified:             qoauth-1.0.1.ebuild ChangeLog
  Log:
  stable x86, bug 341277
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.5                  dev-libs/qoauth/qoauth-1.0.1.ebuild

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

Index: qoauth-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- qoauth-1.0.1.ebuild	18 Oct 2010 13:44:57 -0000	1.4
+++ qoauth-1.0.1.ebuild	20 Oct 2010 10:09:37 -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-libs/qoauth/qoauth-1.0.1.ebuild,v 1.4 2010/10/18 13:44:57 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.5 2010/10/20 10:09:37 fauli Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="debug doc static-libs test"
 
 COMMON_DEPEND="app-crypt/qca:2[debug?]"



1.12                 dev-libs/qoauth/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	18 Oct 2010 13:44:57 -0000	1.11
+++ ChangeLog	20 Oct 2010 10:09:37 -0000	1.12
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/qoauth
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.11 2010/10/18 13:44:57 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.12 2010/10/20 10:09:37 fauli Exp $
+
+  20 Oct 2010; Christian Faulhammer <fauli@gentoo.org> qoauth-1.0.1.ebuild:
+  stable x86, bug 341277
 
   18 Oct 2010; Markos Chandras <hwoarang@gentoo.org> qoauth-1.0.1.ebuild:
   Stable on amd64 wrt bug #341277






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2010-11-08 20:48 Dominik Kapusta (ayoy)
  0 siblings, 0 replies; 14+ messages in thread
From: Dominik Kapusta (ayoy) @ 2010-11-08 20:48 UTC (permalink / raw
  To: gentoo-commits

ayoy        10/11/08 20:48:24

  Modified:             qoauth-1.0.1.ebuild ChangeLog
  Log:
  Fixing bug #337643 for real. Missed sedding out test subdirectory when test useflag is undefined.
  
  (Portage version: 2.1.9.24/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  dev-libs/qoauth/qoauth-1.0.1.ebuild

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

Index: qoauth-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- qoauth-1.0.1.ebuild	20 Oct 2010 10:09:37 -0000	1.5
+++ qoauth-1.0.1.ebuild	8 Nov 2010 20:48:24 -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-libs/qoauth/qoauth-1.0.1.ebuild,v 1.5 2010/10/20 10:09:37 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.6 2010/11/08 20:48:24 ayoy Exp $
 
 EAPI="2"
 
@@ -29,6 +29,10 @@
 	# on 3rd party external server (bug #341267)
 	epatch "${FILESDIR}/${P}-disable-ft.patch"
 
+	if ! use test; then
+		sed -i -e '/SUBDIRS/s/tests//' ${PN}.pro || die "sed failed"
+	fi
+
 	sed -i -e '/^ *docs \\$/d' \
 		   -e '/^ *build_all \\$/d' \
 		   -e 's/^\#\(!macx\)/\1/' \



1.13                 dev-libs/qoauth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	20 Oct 2010 10:09:37 -0000	1.12
+++ ChangeLog	8 Nov 2010 20:48:24 -0000	1.13
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/qoauth
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.12 2010/10/20 10:09:37 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.13 2010/11/08 20:48:24 ayoy Exp $
+
+  08 Nov 2010; Dominik Kapusta <ayoy@gentoo.org> qoauth-1.0.1.ebuild:
+  Fixing bug #337643 for real. Missed sedding out test subdirectory when
+  test useflag is undefined.
 
   20 Oct 2010; Christian Faulhammer <fauli@gentoo.org> qoauth-1.0.1.ebuild:
   stable x86, bug 341277






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2012-02-18 17:33 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 14+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2012-02-18 17:33 UTC (permalink / raw
  To: gentoo-commits

nixnut      12/02/18 17:33:43

  Modified:             qoauth-1.0.1.ebuild ChangeLog
  Log:
  ~ppc, preparing for #396359
  
  (Portage version: 2.1.10.44/cvs/Linux ppc)

Revision  Changes    Path
1.7                  dev-libs/qoauth/qoauth-1.0.1.ebuild

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

Index: qoauth-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- qoauth-1.0.1.ebuild	8 Nov 2010 20:48:24 -0000	1.6
+++ qoauth-1.0.1.ebuild	18 Feb 2012 17:33:43 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.6 2010/11/08 20:48:24 ayoy Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.7 2012/02/18 17:33:43 nixnut Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="debug doc static-libs test"
 
 COMMON_DEPEND="app-crypt/qca:2[debug?]"



1.16                 dev-libs/qoauth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	17 Feb 2012 13:54:46 -0000	1.15
+++ ChangeLog	18 Feb 2012 17:33:43 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/qoauth
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.15 2012/02/17 13:54:46 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.16 2012/02/18 17:33:43 nixnut Exp $
+
+  18 Feb 2012; nixnut <nixnut@gentoo.org> qoauth-1.0.1.ebuild:
+  ~ppc, preparing for #396359
 
   17 Feb 2012; Davide Pesavento <pesa@gentoo.org> -qoauth-1.0-r1.ebuild,
   -qoauth-1.0.ebuild, metadata.xml:






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2012-05-21 19:58 Davide Pesavento (pesa)
  0 siblings, 0 replies; 14+ messages in thread
From: Davide Pesavento (pesa) @ 2012-05-21 19:58 UTC (permalink / raw
  To: gentoo-commits

pesa        12/05/21 19:58:32

  Modified:             qoauth-1.0.1.ebuild ChangeLog
  Log:
  Use more qt4-r2 eclass features.
  
  (Portage version: 2.2.0_alpha107/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  dev-libs/qoauth/qoauth-1.0.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild?r1=1.7&r2=1.8

Index: qoauth-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- qoauth-1.0.1.ebuild	18 Feb 2012 17:33:43 -0000	1.7
+++ qoauth-1.0.1.ebuild	21 May 2012 19:58:32 -0000	1.8
@@ -1,8 +1,8 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.7 2012/02/18 17:33:43 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.8 2012/05/21 19:58:32 pesa Exp $
 
-EAPI="2"
+EAPI=2
 
 inherit qt4-r2
 
@@ -18,16 +18,23 @@
 COMMON_DEPEND="app-crypt/qca:2[debug?]"
 DEPEND="${COMMON_DEPEND}
 	doc? ( app-doc/doxygen )
-	test? ( x11-libs/qt-test )"
+	test? ( x11-libs/qt-test )
+"
 RDEPEND="${COMMON_DEPEND}
-	app-crypt/qca-ossl:2[debug?]"
+	app-crypt/qca-ossl:2[debug?]
+"
 
-S="${WORKDIR}/${P}-src"
+S=${WORKDIR}/${P}-src
+
+DOCS="README CHANGELOG"
+PATCHES=(
+	# disable functional tests that require network connection
+	# and rely on 3rd party external server (bug #341267)
+	"${FILESDIR}/${P}-disable-ft.patch"
+)
 
 src_prepare() {
-	# disable functional tests that require network connection and rely
-	# on 3rd party external server (bug #341267)
-	epatch "${FILESDIR}/${P}-disable-ft.patch"
+	qt4-r2_src_prepare
 
 	if ! use test; then
 		sed -i -e '/SUBDIRS/s/tests//' ${PN}.pro || die "sed failed"
@@ -49,8 +56,7 @@
 }
 
 src_install() {
-	emake INSTALL_ROOT="${D}" install || die "emake install failed"
-	dodoc README CHANGELOG || die "dodoc failed"
+	qt4-r2_src_install
 
 	if use static-libs; then
 		dolib.a "${S}/lib/lib${PN}.a" || die "dolib failed"



1.17                 dev-libs/qoauth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	18 Feb 2012 17:33:43 -0000	1.16
+++ ChangeLog	21 May 2012 19:58:32 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/qoauth
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.16 2012/02/18 17:33:43 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.17 2012/05/21 19:58:32 pesa Exp $
+
+  21 May 2012; Davide Pesavento <pesa@gentoo.org> qoauth-1.0.1.ebuild:
+  Use more qt4-r2 eclass features.
 
   18 Feb 2012; nixnut <nixnut@gentoo.org> qoauth-1.0.1.ebuild:
   ~ppc, preparing for #396359






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2012-05-21 20:14 Davide Pesavento (pesa)
  0 siblings, 0 replies; 14+ messages in thread
From: Davide Pesavento (pesa) @ 2012-05-21 20:14 UTC (permalink / raw
  To: gentoo-commits

pesa        12/05/21 20:14:08

  Modified:             qoauth-1.0.1.ebuild ChangeLog
  Log:
  EAPI=4
  
  (Portage version: 2.2.0_alpha107/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  dev-libs/qoauth/qoauth-1.0.1.ebuild

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

Index: qoauth-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- qoauth-1.0.1.ebuild	21 May 2012 19:58:32 -0000	1.8
+++ qoauth-1.0.1.ebuild	21 May 2012 20:14:08 -0000	1.9
@@ -1,8 +1,8 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.8 2012/05/21 19:58:32 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.9 2012/05/21 20:14:08 pesa Exp $
 
-EAPI=2
+EAPI=4
 
 inherit qt4-r2
 
@@ -18,7 +18,7 @@
 COMMON_DEPEND="app-crypt/qca:2[debug?]"
 DEPEND="${COMMON_DEPEND}
 	doc? ( app-doc/doxygen )
-	test? ( x11-libs/qt-test )
+	test? ( x11-libs/qt-test:4 )
 "
 RDEPEND="${COMMON_DEPEND}
 	app-crypt/qca-ossl:2[debug?]
@@ -41,8 +41,8 @@
 	fi
 
 	sed -i -e '/^ *docs \\$/d' \
-		   -e '/^ *build_all \\$/d' \
-		   -e 's/^\#\(!macx\)/\1/' \
+		-e '/^ *build_all \\$/d' \
+		-e 's/^\#\(!macx\)/\1/' \
 		src/src.pro || die "sed failed"
 
 	sed -i -e "s/\(.*\)lib$/\1$(get_libdir)/" src/pcfile.sh || die "sed failed"
@@ -51,7 +51,7 @@
 src_compile() {
 	default
 	if use static-libs; then
-		emake -C src static || die "emake failed"
+		emake -C src static
 	fi
 }
 
@@ -59,11 +59,11 @@
 	qt4-r2_src_install
 
 	if use static-libs; then
-		dolib.a "${S}/lib/lib${PN}.a" || die "dolib failed"
+		dolib.a "${S}"/lib/lib${PN}.a
 	fi
 
 	if use doc; then
-		doxygen "${S}/Doxyfile" || die "Failed to generate documentation"
-		dohtml "${S}"/doc/html/* || die "Failed to install documentation"
+		doxygen "${S}"/Doxyfile || die "failed to generate documentation"
+		dohtml "${S}"/doc/html/*
 	fi
 }



1.18                 dev-libs/qoauth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	21 May 2012 19:58:32 -0000	1.17
+++ ChangeLog	21 May 2012 20:14:08 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/qoauth
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.17 2012/05/21 19:58:32 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.18 2012/05/21 20:14:08 pesa Exp $
+
+  21 May 2012; Davide Pesavento <pesa@gentoo.org> qoauth-1.0.1.ebuild:
+  EAPI=4
 
   21 May 2012; Davide Pesavento <pesa@gentoo.org> qoauth-1.0.1.ebuild:
   Use more qt4-r2 eclass features.






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2012-09-06 13:28 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 14+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2012-09-06 13:28 UTC (permalink / raw
  To: gentoo-commits

scarabeus    12/09/06 13:28:54

  Modified:             qoauth-1.0.1.ebuild ChangeLog
  Log:
  Mark ppc and ~ppc64. Per johu's request.
  
  (Portage version: 2.2.0_alpha124/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 dev-libs/qoauth/qoauth-1.0.1.ebuild

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

Index: qoauth-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- qoauth-1.0.1.ebuild	21 May 2012 20:14:08 -0000	1.9
+++ qoauth-1.0.1.ebuild	6 Sep 2012 13:28:54 -0000	1.10
@@ -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-libs/qoauth/qoauth-1.0.1.ebuild,v 1.9 2012/05/21 20:14:08 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.10 2012/09/06 13:28:54 scarabeus Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc ~ppc64 x86"
 IUSE="debug doc static-libs test"
 
 COMMON_DEPEND="app-crypt/qca:2[debug?]"



1.19                 dev-libs/qoauth/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	21 May 2012 20:14:08 -0000	1.18
+++ ChangeLog	6 Sep 2012 13:28:54 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/qoauth
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.18 2012/05/21 20:14:08 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.19 2012/09/06 13:28:54 scarabeus Exp $
+
+  06 Sep 2012; Tomáš Chvátal <scarabeus@gentoo.org> qoauth-1.0.1.ebuild:
+  Mark ppc and ~ppc64. Per johu's request.
 
   21 May 2012; Davide Pesavento <pesa@gentoo.org> qoauth-1.0.1.ebuild:
   EAPI=4
@@ -70,4 +73,3 @@
   14 Jul 2009; Markos Chandras <hwoarang@gentoo.org> +qoauth-0.1.0.ebuild,
   +metadata.xml:
   Initial commit of qoauth library
-





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2013-03-02 20:03 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 14+ messages in thread
From: Markos Chandras (hwoarang) @ 2013-03-02 20:03 UTC (permalink / raw
  To: gentoo-commits

hwoarang    13/03/02 20:03:37

  Modified:             qoauth-1.0.1.ebuild ChangeLog
  Log:
  Move Qt dependencies to the new category
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key C2BA7F3C!)

Revision  Changes    Path
1.11                 dev-libs/qoauth/qoauth-1.0.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild?r1=1.10&r2=1.11

Index: qoauth-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- qoauth-1.0.1.ebuild	6 Sep 2012 13:28:54 -0000	1.10
+++ qoauth-1.0.1.ebuild	2 Mar 2013 20:03:37 -0000	1.11
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.10 2012/09/06 13:28:54 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.11 2013/03/02 20:03:37 hwoarang Exp $
 
 EAPI=4
 
@@ -18,7 +18,7 @@
 COMMON_DEPEND="app-crypt/qca:2[debug?]"
 DEPEND="${COMMON_DEPEND}
 	doc? ( app-doc/doxygen )
-	test? ( x11-libs/qt-test:4 )
+	test? ( dev-qt/qttest:4 )
 "
 RDEPEND="${COMMON_DEPEND}
 	app-crypt/qca-ossl:2[debug?]



1.20                 dev-libs/qoauth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	6 Sep 2012 13:28:54 -0000	1.19
+++ ChangeLog	2 Mar 2013 20:03:37 -0000	1.20
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/qoauth
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.19 2012/09/06 13:28:54 scarabeus Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.20 2013/03/02 20:03:37 hwoarang Exp $
+
+  02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> qoauth-1.0.1.ebuild:
+  Move Qt dependencies to the new category
 
   06 Sep 2012; Tomáš Chvátal <scarabeus@gentoo.org> qoauth-1.0.1.ebuild:
   Mark ppc and ~ppc64. Per johu's request.





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2013-04-02 20:56 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-04-02 20:56 UTC (permalink / raw
  To: gentoo-commits

ago         13/04/02 20:56:16

  Modified:             qoauth-1.0.1.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #462890
  
  (Portage version: 2.1.11.55/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.12                 dev-libs/qoauth/qoauth-1.0.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild?r1=1.11&r2=1.12

Index: qoauth-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- qoauth-1.0.1.ebuild	2 Mar 2013 20:03:37 -0000	1.11
+++ qoauth-1.0.1.ebuild	2 Apr 2013 20:56:16 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.11 2013/03/02 20:03:37 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.12 2013/04/02 20:56:16 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="debug doc static-libs test"
 
 COMMON_DEPEND="app-crypt/qca:2[debug?]"



1.21                 dev-libs/qoauth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	2 Mar 2013 20:03:37 -0000	1.20
+++ ChangeLog	2 Apr 2013 20:56:16 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/qoauth
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.20 2013/03/02 20:03:37 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.21 2013/04/02 20:56:16 ago Exp $
+
+  02 Apr 2013; Agostino Sarubbo <ago@gentoo.org> qoauth-1.0.1.ebuild:
+  Stable for ppc64, wrt bug #462890
 
   02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> qoauth-1.0.1.ebuild:
   Move Qt dependencies to the new category





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2015-01-28 23:06 Johannes Huber (johu)
  0 siblings, 0 replies; 14+ messages in thread
From: Johannes Huber (johu) @ 2015-01-28 23:06 UTC (permalink / raw
  To: gentoo-commits

johu        15/01/28 23:06:23

  Modified:             qoauth-1.0.1.ebuild ChangeLog
  Log:
  Adjust dependencies to handle merged plugins in >=app-crypt/qca-2.1.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)

Revision  Changes    Path
1.13                 dev-libs/qoauth/qoauth-1.0.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild?r1=1.12&r2=1.13

Index: qoauth-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- qoauth-1.0.1.ebuild	2 Apr 2013 20:56:16 -0000	1.12
+++ qoauth-1.0.1.ebuild	28 Jan 2015 23:06:23 -0000	1.13
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.12 2013/04/02 20:56:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.13 2015/01/28 23:06:23 johu Exp $
 
 EAPI=4
 
@@ -15,13 +15,13 @@
 KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="debug doc static-libs test"
 
-COMMON_DEPEND="app-crypt/qca:2[debug?]"
+COMMON_DEPEND="app-crypt/qca:2[debug?,qt4(+)]"
 DEPEND="${COMMON_DEPEND}
 	doc? ( app-doc/doxygen )
 	test? ( dev-qt/qttest:4 )
 "
 RDEPEND="${COMMON_DEPEND}
-	app-crypt/qca-ossl:2[debug?]
+	|| ( app-crypt/qca-ossl:2[debug?] app-crypt/qca:2[debug?,openssl] )
 "
 
 S=${WORKDIR}/${P}-src



1.22                 dev-libs/qoauth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	2 Apr 2013 20:56:16 -0000	1.21
+++ ChangeLog	28 Jan 2015 23:06:23 -0000	1.22
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/qoauth
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.21 2013/04/02 20:56:16 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.22 2015/01/28 23:06:23 johu Exp $
+
+  28 Jan 2015; Johannes Huber <johu@gentoo.org> qoauth-1.0.1.ebuild:
+  Adjust dependencies to handle merged plugins in >=app-crypt/qca-2.1.
 
   02 Apr 2013; Agostino Sarubbo <ago@gentoo.org> qoauth-1.0.1.ebuild:
   Stable for ppc64, wrt bug #462890





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog
@ 2015-02-22 18:32 Michal Gorny (mgorny)
  0 siblings, 0 replies; 14+ messages in thread
From: Michal Gorny (mgorny) @ 2015-02-22 18:32 UTC (permalink / raw
  To: gentoo-commits

mgorny      15/02/22 18:32:01

  Modified:             qoauth-1.0.1.ebuild ChangeLog
  Log:
  Update dependency on QCA plugins to use USE flags on app-crypt/qca:2 unconditionally, to provide a single sane path for dependency resolution. Bug #541066.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.14                 dev-libs/qoauth/qoauth-1.0.1.ebuild

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

Index: qoauth-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- qoauth-1.0.1.ebuild	28 Jan 2015 23:06:23 -0000	1.13
+++ qoauth-1.0.1.ebuild	22 Feb 2015 18:32:01 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.13 2015/01/28 23:06:23 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/qoauth-1.0.1.ebuild,v 1.14 2015/02/22 18:32:01 mgorny Exp $
 
 EAPI=4
 
@@ -21,7 +21,7 @@
 	test? ( dev-qt/qttest:4 )
 "
 RDEPEND="${COMMON_DEPEND}
-	|| ( app-crypt/qca-ossl:2[debug?] app-crypt/qca:2[debug?,openssl] )
+	app-crypt/qca:2[openssl]
 "
 
 S=${WORKDIR}/${P}-src



1.23                 dev-libs/qoauth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	28 Jan 2015 23:06:23 -0000	1.22
+++ ChangeLog	22 Feb 2015 18:32:01 -0000	1.23
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/qoauth
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.22 2015/01/28 23:06:23 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qoauth/ChangeLog,v 1.23 2015/02/22 18:32:01 mgorny Exp $
+
+  22 Feb 2015; Michał Górny <mgorny@gentoo.org> qoauth-1.0.1.ebuild:
+  Update dependency on QCA plugins to use USE flags on app-crypt/qca:2
+  unconditionally, to provide a single sane path for dependency resolution. Bug
+  #541066.
 
   28 Jan 2015; Johannes Huber <johu@gentoo.org> qoauth-1.0.1.ebuild:
   Adjust dependencies to handle merged plugins in >=app-crypt/qca-2.1.





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

end of thread, other threads:[~2015-02-22 18:32 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-22 18:32 [gentoo-commits] gentoo-x86 commit in dev-libs/qoauth: qoauth-1.0.1.ebuild ChangeLog Michal Gorny (mgorny)
  -- strict thread matches above, loose matches on Subject: below --
2015-01-28 23:06 Johannes Huber (johu)
2013-04-02 20:56 Agostino Sarubbo (ago)
2013-03-02 20:03 Markos Chandras (hwoarang)
2012-09-06 13:28 Tomas Chvatal (scarabeus)
2012-05-21 20:14 Davide Pesavento (pesa)
2012-05-21 19:58 Davide Pesavento (pesa)
2012-02-18 17:33 Gysbert Wassenaar (nixnut)
2010-11-08 20:48 Dominik Kapusta (ayoy)
2010-10-20 10:09 Christian Faulhammer (fauli)
2010-10-18 13:44 Markos Chandras (hwoarang)
2010-10-16 13:04 Dominik Kapusta (ayoy)
2010-10-16 10:19 Dominik Kapusta (ayoy)
2010-08-01 14:48 Dominik Kapusta (ayoy)

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