public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-db/unixODBC: ChangeLog unixODBC-2.3.1.ebuild
@ 2012-01-23  8:02 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 9+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-01-23  8:02 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/01/23 08:02:55

  Modified:             ChangeLog
  Added:                unixODBC-2.3.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.104                dev-db/unixODBC/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?r1=1.103&r2=1.104

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog	13 Sep 2011 20:10:10 -0000	1.103
+++ ChangeLog	23 Jan 2012 08:02:54 -0000	1.104
@@ -1,6 +1,11 @@
 # ChangeLog for dev-db/unixODBC
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.103 2011/09/13 20:10:10 neurogeek Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.104 2012/01/23 08:02:54 ssuominen Exp $
+
+*unixODBC-2.3.1 (23 Jan 2012)
+
+  23 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> +unixODBC-2.3.1.ebuild:
+  Version bump.
 
   13 Sep 2011; Jesus Rivero <neurogeek@gentoo.org> metadata.xml:
   Added myself to metadata.xml as maintainer



1.1                  dev-db/unixODBC/unixODBC-2.3.1.ebuild

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

Index: unixODBC-2.3.1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.1 2012/01/23 08:02:54 ssuominen Exp $

EAPI=4
inherit libtool

DESCRIPTION="A complete ODBC driver manager"
HOMEPAGE="http://www.unixodbc.org/"
SRC_URI="http://ftp.unixodbc.org/pub/${PN}/${P}.tar.gz"

LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
IUSE="+minimal odbcmanual static-libs"

RDEPEND=">=sys-devel/libtool-2.2.6b
	>=sys-libs/readline-6.1
	>=sys-libs/ncurses-5.7-r7
	virtual/libiconv"
DEPEND="${RDEPEND}
	sys-devel/flex"

DOCS="AUTHORS ChangeLog NEWS README"

src_prepare() {
	elibtoolize
}

src_configure() {
	econf \
		--sysconfdir="${EPREFIX}"/etc/${PN} \
		$(use_enable static-libs static) \
		$(use_enable !minimal drivers) \
		$(use_enable !minimal driver-conf)
}

src_install() {
	default

	use prefix && dodoc README*
	use odbcmanual && dohtml -a css,gif,html,sql,vsd -r doc/*

	find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} +
}






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

* [gentoo-commits] gentoo-x86 commit in dev-db/unixODBC: ChangeLog unixODBC-2.3.1.ebuild
@ 2012-01-23  8:14 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 9+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-01-23  8:14 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/01/23 08:14:28

  Modified:             ChangeLog unixODBC-2.3.1.ebuild
  Log:
  Despite ./configure --help giving --enable-driver-conf it's really AC_ARG_ENABLE for --enable-driverc.
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.105                dev-db/unixODBC/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?r1=1.104&r2=1.105

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog	23 Jan 2012 08:02:54 -0000	1.104
+++ ChangeLog	23 Jan 2012 08:14:27 -0000	1.105
@@ -1,6 +1,10 @@
 # ChangeLog for dev-db/unixODBC
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.104 2012/01/23 08:02:54 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.105 2012/01/23 08:14:27 ssuominen Exp $
+
+  23 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> unixODBC-2.3.1.ebuild:
+  Despite ./configure --help giving --enable-driver-conf it's really
+  AC_ARG_ENABLE for --enable-driverc.
 
 *unixODBC-2.3.1 (23 Jan 2012)
 



1.2                  dev-db/unixODBC/unixODBC-2.3.1.ebuild

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

Index: unixODBC-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- unixODBC-2.3.1.ebuild	23 Jan 2012 08:02:54 -0000	1.1
+++ unixODBC-2.3.1.ebuild	23 Jan 2012 08:14:27 -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-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.1 2012/01/23 08:02:54 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.2 2012/01/23 08:14:27 ssuominen Exp $
 
 EAPI=4
 inherit libtool
@@ -28,11 +28,12 @@
 }
 
 src_configure() {
+	# --enable-driver-conf is --enable-driverc as per configure.in
 	econf \
 		--sysconfdir="${EPREFIX}"/etc/${PN} \
 		$(use_enable static-libs static) \
 		$(use_enable !minimal drivers) \
-		$(use_enable !minimal driver-conf)
+		$(use_enable !minimal driverc)
 }
 
 src_install() {






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

* [gentoo-commits] gentoo-x86 commit in dev-db/unixODBC: ChangeLog unixODBC-2.3.1.ebuild
@ 2012-02-21 14:52 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-02-21 14:52 UTC (permalink / raw
  To: gentoo-commits

ago         12/02/21 14:52:33

  Modified:             ChangeLog unixODBC-2.3.1.ebuild
  Log:
  Stable for amd64, wrt bug #405059
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.106                dev-db/unixODBC/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?r1=1.105&r2=1.106

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	23 Jan 2012 08:14:27 -0000	1.105
+++ ChangeLog	21 Feb 2012 14:52:32 -0000	1.106
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/unixODBC
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.105 2012/01/23 08:14:27 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.106 2012/02/21 14:52:32 ago Exp $
+
+  21 Feb 2012; Agostino Sarubbo <ago@gentoo.org> unixODBC-2.3.1.ebuild:
+  Stable for amd64, wrt bug #405059
 
   23 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> unixODBC-2.3.1.ebuild:
   Despite ./configure --help giving --enable-driver-conf it's really



1.3                  dev-db/unixODBC/unixODBC-2.3.1.ebuild

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

Index: unixODBC-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- unixODBC-2.3.1.ebuild	23 Jan 2012 08:14:27 -0000	1.2
+++ unixODBC-2.3.1.ebuild	21 Feb 2012 14:52:32 -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-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.2 2012/01/23 08:14:27 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.3 2012/02/21 14:52:32 ago Exp $
 
 EAPI=4
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
 IUSE="+minimal odbcmanual static-libs"
 
 RDEPEND=">=sys-devel/libtool-2.2.6b






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

* [gentoo-commits] gentoo-x86 commit in dev-db/unixODBC: ChangeLog unixODBC-2.3.1.ebuild
@ 2012-02-21 23:42 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2012-02-21 23:42 UTC (permalink / raw
  To: gentoo-commits

jer         12/02/21 23:42:05

  Modified:             ChangeLog unixODBC-2.3.1.ebuild
  Log:
  Stable for HPPA (bug #405059).
  
  (Portage version: 2.2.0_alpha88/cvs/Linux x86_64)

Revision  Changes    Path
1.107                dev-db/unixODBC/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?r1=1.106&r2=1.107

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog	21 Feb 2012 14:52:32 -0000	1.106
+++ ChangeLog	21 Feb 2012 23:42:05 -0000	1.107
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/unixODBC
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.106 2012/02/21 14:52:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.107 2012/02/21 23:42:05 jer Exp $
+
+  21 Feb 2012; Jeroen Roovers <jer@gentoo.org> unixODBC-2.3.1.ebuild:
+  Stable for HPPA (bug #405059).
 
   21 Feb 2012; Agostino Sarubbo <ago@gentoo.org> unixODBC-2.3.1.ebuild:
   Stable for amd64, wrt bug #405059



1.4                  dev-db/unixODBC/unixODBC-2.3.1.ebuild

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

Index: unixODBC-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- unixODBC-2.3.1.ebuild	21 Feb 2012 14:52:32 -0000	1.3
+++ unixODBC-2.3.1.ebuild	21 Feb 2012 23:42:05 -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-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.3 2012/02/21 14:52:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.4 2012/02/21 23:42:05 jer Exp $
 
 EAPI=4
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
 IUSE="+minimal odbcmanual static-libs"
 
 RDEPEND=">=sys-devel/libtool-2.2.6b






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

* [gentoo-commits] gentoo-x86 commit in dev-db/unixODBC: ChangeLog unixODBC-2.3.1.ebuild
@ 2012-02-24 14:14 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 9+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-02-24 14:14 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/02/24 14:14:56

  Modified:             ChangeLog unixODBC-2.3.1.ebuild
  Log:
  x86 stable wrt bug #405059
  
  (Portage version: 2.1.10.44/cvs/Linux i686)

Revision  Changes    Path
1.108                dev-db/unixODBC/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?r1=1.107&r2=1.108

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog	21 Feb 2012 23:42:05 -0000	1.107
+++ ChangeLog	24 Feb 2012 14:14:55 -0000	1.108
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/unixODBC
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.107 2012/02/21 23:42:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.108 2012/02/24 14:14:55 phajdan.jr Exp $
+
+  24 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> unixODBC-2.3.1.ebuild:
+  x86 stable wrt bug #405059
 
   21 Feb 2012; Jeroen Roovers <jer@gentoo.org> unixODBC-2.3.1.ebuild:
   Stable for HPPA (bug #405059).



1.5                  dev-db/unixODBC/unixODBC-2.3.1.ebuild

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

Index: unixODBC-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- unixODBC-2.3.1.ebuild	21 Feb 2012 23:42:05 -0000	1.4
+++ unixODBC-2.3.1.ebuild	24 Feb 2012 14:14:55 -0000	1.5
@@ -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-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.4 2012/02/21 23:42:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.5 2012/02/24 14:14:55 phajdan.jr Exp $
 
 EAPI=4
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
 IUSE="+minimal odbcmanual static-libs"
 
 RDEPEND=">=sys-devel/libtool-2.2.6b






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

* [gentoo-commits] gentoo-x86 commit in dev-db/unixODBC: ChangeLog unixODBC-2.3.1.ebuild
@ 2012-02-25 15:12 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 9+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-02-25 15:12 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/02/25 15:12:21

  Modified:             ChangeLog unixODBC-2.3.1.ebuild
  Log:
  ppc/ppc64 stable wrt #405059
  
  (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)

Revision  Changes    Path
1.109                dev-db/unixODBC/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.109&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.109&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?r1=1.108&r2=1.109

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ChangeLog	24 Feb 2012 14:14:55 -0000	1.108
+++ ChangeLog	25 Feb 2012 15:12:20 -0000	1.109
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/unixODBC
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.108 2012/02/24 14:14:55 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.109 2012/02/25 15:12:20 ssuominen Exp $
+
+  25 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> unixODBC-2.3.1.ebuild:
+  ppc/ppc64 stable wrt #405059
 
   24 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> unixODBC-2.3.1.ebuild:
   x86 stable wrt bug #405059



1.6                  dev-db/unixODBC/unixODBC-2.3.1.ebuild

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

Index: unixODBC-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- unixODBC-2.3.1.ebuild	24 Feb 2012 14:14:55 -0000	1.5
+++ unixODBC-2.3.1.ebuild	25 Feb 2012 15:12:20 -0000	1.6
@@ -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-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.5 2012/02/24 14:14:55 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.6 2012/02/25 15:12:20 ssuominen Exp $
 
 EAPI=4
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
 IUSE="+minimal odbcmanual static-libs"
 
 RDEPEND=">=sys-devel/libtool-2.2.6b






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

* [gentoo-commits] gentoo-x86 commit in dev-db/unixODBC: ChangeLog unixODBC-2.3.1.ebuild
@ 2012-03-12 19:31 Markus Meier (maekke)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2012-03-12 19:31 UTC (permalink / raw
  To: gentoo-commits

maekke      12/03/12 19:31:07

  Modified:             ChangeLog unixODBC-2.3.1.ebuild
  Log:
  arm stable, bug #405059
  
  (Portage version: 2.1.10.49/cvs/Linux i686)

Revision  Changes    Path
1.110                dev-db/unixODBC/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?r1=1.109&r2=1.110

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog	25 Feb 2012 15:12:20 -0000	1.109
+++ ChangeLog	12 Mar 2012 19:31:07 -0000	1.110
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/unixODBC
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.109 2012/02/25 15:12:20 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.110 2012/03/12 19:31:07 maekke Exp $
+
+  12 Mar 2012; Markus Meier <maekke@gentoo.org> unixODBC-2.3.1.ebuild:
+  arm stable, bug #405059
 
   25 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> unixODBC-2.3.1.ebuild:
   ppc/ppc64 stable wrt #405059



1.7                  dev-db/unixODBC/unixODBC-2.3.1.ebuild

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

Index: unixODBC-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- unixODBC-2.3.1.ebuild	25 Feb 2012 15:12:20 -0000	1.6
+++ unixODBC-2.3.1.ebuild	12 Mar 2012 19:31:07 -0000	1.7
@@ -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-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.6 2012/02/25 15:12:20 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.7 2012/03/12 19:31:07 maekke Exp $
 
 EAPI=4
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
 IUSE="+minimal odbcmanual static-libs"
 
 RDEPEND=">=sys-devel/libtool-2.2.6b






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

* [gentoo-commits] gentoo-x86 commit in dev-db/unixODBC: ChangeLog unixODBC-2.3.1.ebuild
@ 2012-03-31 18:30 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2012-03-31 18:30 UTC (permalink / raw
  To: gentoo-commits

armin76     12/03/31 18:30:32

  Modified:             ChangeLog unixODBC-2.3.1.ebuild
  Log:
  alpha/ia64/s390/sh/sparc stable wrt #405059
  
  (Portage version: 2.1.10.49/cvs/Linux ia64)

Revision  Changes    Path
1.111                dev-db/unixODBC/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.111&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.111&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?r1=1.110&r2=1.111

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog	12 Mar 2012 19:31:07 -0000	1.110
+++ ChangeLog	31 Mar 2012 18:30:32 -0000	1.111
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/unixODBC
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.110 2012/03/12 19:31:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.111 2012/03/31 18:30:32 armin76 Exp $
+
+  31 Mar 2012; Raúl Porcel <armin76@gentoo.org> unixODBC-2.3.1.ebuild:
+  alpha/ia64/s390/sh/sparc stable wrt #405059
 
   12 Mar 2012; Markus Meier <maekke@gentoo.org> unixODBC-2.3.1.ebuild:
   arm stable, bug #405059



1.8                  dev-db/unixODBC/unixODBC-2.3.1.ebuild

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

Index: unixODBC-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- unixODBC-2.3.1.ebuild	12 Mar 2012 19:31:07 -0000	1.7
+++ unixODBC-2.3.1.ebuild	31 Mar 2012 18:30:32 -0000	1.8
@@ -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-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.7 2012/03/12 19:31:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.8 2012/03/31 18:30:32 armin76 Exp $
 
 EAPI=4
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
 IUSE="+minimal odbcmanual static-libs"
 
 RDEPEND=">=sys-devel/libtool-2.2.6b






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

* [gentoo-commits] gentoo-x86 commit in dev-db/unixODBC: ChangeLog unixODBC-2.3.1.ebuild
@ 2012-05-12  1:10 Alexis Ballier (aballier)
  0 siblings, 0 replies; 9+ messages in thread
From: Alexis Ballier (aballier) @ 2012-05-12  1:10 UTC (permalink / raw
  To: gentoo-commits

aballier    12/05/12 01:10:55

  Modified:             ChangeLog unixODBC-2.3.1.ebuild
  Log:
  keyword ~amd64-fbsd
  
  (Portage version: 2.2.0_alpha103/cvs/Linux x86_64)

Revision  Changes    Path
1.113                dev-db/unixODBC/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.113&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.113&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?r1=1.112&r2=1.113

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog	6 May 2012 13:02:50 -0000	1.112
+++ ChangeLog	12 May 2012 01:10:55 -0000	1.113
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/unixODBC
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.112 2012/05/06 13:02:50 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.113 2012/05/12 01:10:55 aballier Exp $
+
+  12 May 2012; Alexis Ballier <aballier@gentoo.org> unixODBC-2.3.1.ebuild:
+  keyword ~amd64-fbsd
 
   06 May 2012; Fabian Groffen <grobian@gentoo.org> unixODBC-2.3.1.ebuild:
   Marked ~x{86,64}-solaris



1.10                 dev-db/unixODBC/unixODBC-2.3.1.ebuild

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

Index: unixODBC-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- unixODBC-2.3.1.ebuild	6 May 2012 13:02:50 -0000	1.9
+++ unixODBC-2.3.1.ebuild	12 May 2012 01:10:55 -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-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.9 2012/05/06 13:02:50 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.1.ebuild,v 1.10 2012/05/12 01:10:55 aballier Exp $
 
 EAPI=4
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="+minimal odbcmanual static-libs"
 
 RDEPEND=">=sys-devel/libtool-2.2.6b






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

end of thread, other threads:[~2012-05-12  1:11 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-12 19:31 [gentoo-commits] gentoo-x86 commit in dev-db/unixODBC: ChangeLog unixODBC-2.3.1.ebuild Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2012-05-12  1:10 Alexis Ballier (aballier)
2012-03-31 18:30 Raul Porcel (armin76)
2012-02-25 15:12 Samuli Suominen (ssuominen)
2012-02-24 14:14 PaweA Hajdan (phajdan.jr)
2012-02-21 23:42 Jeroen Roovers (jer)
2012-02-21 14:52 Agostino Sarubbo (ago)
2012-01-23  8:14 Samuli Suominen (ssuominen)
2012-01-23  8:02 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