public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-lua/luadbi: luadbi-0.5-r1.ebuild ChangeLog
@ 2011-05-02 16:37 Dirkjan Ochtman (djc)
  0 siblings, 0 replies; 5+ messages in thread
From: Dirkjan Ochtman (djc) @ 2011-05-02 16:37 UTC (permalink / raw
  To: gentoo-commits

djc         11/05/02 16:37:07

  Modified:             ChangeLog
  Added:                luadbi-0.5-r1.ebuild
  Log:
  Fix path to postgres header (bug 364141).
  
  (Portage version: 2.1.9.46/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-lua/luadbi/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	8 Apr 2011 16:37:09 -0000	1.1
+++ ChangeLog	2 May 2011 16:37:07 -0000	1.2
@@ -1,6 +1,12 @@
 # ChangeLog for dev-lua/luadbi
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v 1.1 2011/04/08 16:37:09 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v 1.2 2011/05/02 16:37:07 djc Exp $
+
+*luadbi-0.5-r1 (02 May 2011)
+
+  02 May 2011; Dirkjan Ochtman <djc@gentoo.org>
+  +files/0.5-postgres-path.patch, +luadbi-0.5-r1.ebuild:
+  Fix path to postgres header (bug 364141).
 
 *luadbi-0.5 (08 Apr 2011)
 



1.1                  dev-lua/luadbi/luadbi-0.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r1.ebuild?rev=1.1&content-type=text/plain

Index: luadbi-0.5-r1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r1.ebuild,v 1.1 2011/05/02 16:37:07 djc Exp $

EAPI=2

inherit multilib toolchain-funcs flag-o-matic eutils

DESCRIPTION="DBI module for Lua"
HOMEPAGE="http://code.google.com/p/luadbi/"
SRC_URI="http://luadbi.googlecode.com/files/${PN}.${PV}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="mysql postgres sqlite"

RDEPEND=">=dev-lang/lua-5.1
		mysql? ( dev-db/mysql )
		postgres? ( dev-db/postgresql-base )
		sqlite? ( >=dev-db/sqlite-3 )"
DEPEND="${RDEPEND}
	dev-util/pkgconfig"

S="${WORKDIR}"

src_prepare() {
	epatch "${FILESDIR}/${PV}-Makefile.patch"
	epatch "${FILESDIR}/${PV}-postgres-path.patch"
	sed -i -e "s#^INSTALL_DIR_LUA=.*#INSTALL_DIR_LUA=$(pkg-config --variable INSTALL_LMOD lua)#" "${S}/Makefile"
	sed -i -e "s#^INSTALL_DIR_BIN=.*#INSTALL_DIR_BIN=$(pkg-config --variable INSTALL_CMOD lua)#" "${S}/Makefile"
	sed -i -e "s#^LUA_INC_DIR=.*#LUA_INC_DIR=$(pkg-config --variable INSTALL_INC lua)#" "${S}/Makefile"
	sed -i -e "s#^LUA_LIB_DIR=.*#LUA_LIB_DIR=$(pkg-config --variable INSTALL_LIB lua)#" "${S}/Makefile"
	sed -i -e "s#^LUA_LIB =.*#LUA_LIB=lua#" "${S}/Makefile"
}

src_compile() {
	local drivers=""
	use mysql && drivers="${drivers} mysql"
	use postgres && drivers="${drivers} psql"
	use sqlite && drivers="${drivers} sqlite3"

	if [ -z "${drivers// /}" ] ; then
		eerror
		eerror "No driver was selected, cannot build."
		eerror "Please set USE flags to build any driver."
		eerror "Possible USE flags: mysql postgres sqlite"
		eerror
		die "No driver selected"
	fi

	append-flags -fPIC -c
	for driver in "${drivers}" ; do
		emake ${driver} \
			|| die "Compiling driver '${drivers// /}' failed"
	done
}

src_install() {
	local drivers=""
	use mysql && drivers="${drivers} mysql"
	use postgres && drivers="${drivers} psql"
	use sqlite && drivers="${drivers} sqlite3"

	for driver in ${drivers} ; do
		emake DESTDIR="${D}" "install_${driver// /}" \
			|| die "Install of driver '${drivers// /}' failed"
	done
}






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

* [gentoo-commits] gentoo-x86 commit in dev-lua/luadbi: luadbi-0.5-r1.ebuild ChangeLog
@ 2012-03-01 12:16 Dirkjan Ochtman (djc)
  0 siblings, 0 replies; 5+ messages in thread
From: Dirkjan Ochtman (djc) @ 2012-03-01 12:16 UTC (permalink / raw
  To: gentoo-commits

djc         12/03/01 12:16:02

  Modified:             luadbi-0.5-r1.ebuild ChangeLog
  Log:
  Fix mysql dependency for luadbi (bug 392395).
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-lua/luadbi/luadbi-0.5-r1.ebuild

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

Index: luadbi-0.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- luadbi-0.5-r1.ebuild	2 May 2011 16:37:07 -0000	1.1
+++ luadbi-0.5-r1.ebuild	1 Mar 2012 12:16:02 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r1.ebuild,v 1.1 2011/05/02 16:37:07 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r1.ebuild,v 1.2 2012/03/01 12:16:02 djc Exp $
 
 EAPI=2
 
@@ -16,7 +16,7 @@
 IUSE="mysql postgres sqlite"
 
 RDEPEND=">=dev-lang/lua-5.1
-		mysql? ( dev-db/mysql )
+		mysql? ( virtual/mysql )
 		postgres? ( dev-db/postgresql-base )
 		sqlite? ( >=dev-db/sqlite-3 )"
 DEPEND="${RDEPEND}



1.4                  dev-lua/luadbi/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	1 Mar 2012 12:13:59 -0000	1.3
+++ ChangeLog	1 Mar 2012 12:16:02 -0000	1.4
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lua/luadbi
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v 1.3 2012/03/01 12:13:59 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v 1.4 2012/03/01 12:16:02 djc Exp $
+
+  01 Mar 2012; Dirkjan Ochtman <djc@gentoo.org> luadbi-0.5-r1.ebuild:
+  Depend on virtual/mysql instead of dev-db/mysql (bug 392395).
 
   01 Mar 2012; Dirkjan Ochtman <djc@gentoo.org> -luadbi-0.5.ebuild:
   Remove old version.






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

* [gentoo-commits] gentoo-x86 commit in dev-lua/luadbi: luadbi-0.5-r1.ebuild ChangeLog
@ 2012-09-30 11:57 Dirkjan Ochtman (djc)
  0 siblings, 0 replies; 5+ messages in thread
From: Dirkjan Ochtman (djc) @ 2012-09-30 11:57 UTC (permalink / raw
  To: gentoo-commits

djc         12/09/30 11:57:08

  Modified:             luadbi-0.5-r1.ebuild ChangeLog
  Log:
  Update luadbi to EAPI=4 (bug 427928).
  
  (Portage version: 2.1.11.23/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-lua/luadbi/luadbi-0.5-r1.ebuild

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

Index: luadbi-0.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- luadbi-0.5-r1.ebuild	4 May 2012 04:01:52 -0000	1.3
+++ luadbi-0.5-r1.ebuild	30 Sep 2012 11:57:08 -0000	1.4
@@ -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-lua/luadbi/luadbi-0.5-r1.ebuild,v 1.3 2012/05/04 04:01:52 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r1.ebuild,v 1.4 2012/09/30 11:57:08 djc Exp $
 
-EAPI=2
+EAPI=4
 
 inherit multilib toolchain-funcs flag-o-matic eutils
 
@@ -14,6 +14,7 @@
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="mysql postgres sqlite"
+REQUIRED_USE="|| ( mysql postgres sqlite )"
 
 RDEPEND=">=dev-lang/lua-5.1
 		mysql? ( virtual/mysql )
@@ -40,19 +41,9 @@
 	use postgres && drivers="${drivers} psql"
 	use sqlite && drivers="${drivers} sqlite3"
 
-	if [ -z "${drivers// /}" ] ; then
-		eerror
-		eerror "No driver was selected, cannot build."
-		eerror "Please set USE flags to build any driver."
-		eerror "Possible USE flags: mysql postgres sqlite"
-		eerror
-		die "No driver selected"
-	fi
-
 	append-flags -fPIC -c
 	for driver in "${drivers}" ; do
-		emake ${driver} \
-			|| die "Compiling driver '${drivers// /}' failed"
+		emake ${driver}
 	done
 }
 
@@ -63,7 +54,6 @@
 	use sqlite && drivers="${drivers} sqlite3"
 
 	for driver in ${drivers} ; do
-		emake DESTDIR="${D}" "install_${driver// /}" \
-			|| die "Install of driver '${drivers// /}' failed"
+		emake DESTDIR="${D}" "install_${driver// /}"
 	done
 }



1.6                  dev-lua/luadbi/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	4 May 2012 04:01:52 -0000	1.5
+++ ChangeLog	30 Sep 2012 11:57:08 -0000	1.6
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lua/luadbi
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v 1.5 2012/05/04 04:01:52 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v 1.6 2012/09/30 11:57:08 djc Exp $
+
+  30 Sep 2012; Dirkjan Ochtman <djc@gentoo.org> luadbi-0.5-r1.ebuild:
+  Upgrade to EAPI=4, for REQUIRED_USE (bug 427928, thanks to
+  gentoo@quintero.com).
 
   04 May 2012; Jeff Horelick <jdhore@gentoo.org> luadbi-0.5-r1.ebuild:
   dev-util/pkgconfig -> virtual/pkgconfig





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

* [gentoo-commits] gentoo-x86 commit in dev-lua/luadbi: luadbi-0.5-r1.ebuild ChangeLog
@ 2012-10-21  9:10 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2012-10-21  9:10 UTC (permalink / raw
  To: gentoo-commits

maekke      12/10/21 09:10:04

  Modified:             luadbi-0.5-r1.ebuild ChangeLog
  Log:
  x86 stable, bug #388797
  
  (Portage version: 2.1.11.29/cvs/Linux x86_64, signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.5                  dev-lua/luadbi/luadbi-0.5-r1.ebuild

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

Index: luadbi-0.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- luadbi-0.5-r1.ebuild	30 Sep 2012 11:57:08 -0000	1.4
+++ luadbi-0.5-r1.ebuild	21 Oct 2012 09:10:04 -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-lua/luadbi/luadbi-0.5-r1.ebuild,v 1.4 2012/09/30 11:57:08 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r1.ebuild,v 1.5 2012/10/21 09:10:04 maekke Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="mysql postgres sqlite"
 REQUIRED_USE="|| ( mysql postgres sqlite )"
 



1.7                  dev-lua/luadbi/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	30 Sep 2012 11:57:08 -0000	1.6
+++ ChangeLog	21 Oct 2012 09:10:04 -0000	1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lua/luadbi
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v 1.6 2012/09/30 11:57:08 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v 1.7 2012/10/21 09:10:04 maekke Exp $
+
+  21 Oct 2012; Markus Meier <maekke@gentoo.org> luadbi-0.5-r1.ebuild:
+  x86 stable, bug #388797
 
   30 Sep 2012; Dirkjan Ochtman <djc@gentoo.org> luadbi-0.5-r1.ebuild:
   Upgrade to EAPI=4, for REQUIRED_USE (bug 427928, thanks to





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

* [gentoo-commits] gentoo-x86 commit in dev-lua/luadbi: luadbi-0.5-r1.ebuild ChangeLog
@ 2012-12-31  9:49 Dirkjan Ochtman (djc)
  0 siblings, 0 replies; 5+ messages in thread
From: Dirkjan Ochtman (djc) @ 2012-12-31  9:49 UTC (permalink / raw
  To: gentoo-commits

djc         12/12/31 09:49:27

  Modified:             luadbi-0.5-r1.ebuild ChangeLog
  Log:
  Use correct compiler, obey LDFLAGS (bug 436650, bug 436654).
  
  (Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key 6B065BFB)

Revision  Changes    Path
1.6                  dev-lua/luadbi/luadbi-0.5-r1.ebuild

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

Index: luadbi-0.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- luadbi-0.5-r1.ebuild	21 Oct 2012 09:10:04 -0000	1.5
+++ luadbi-0.5-r1.ebuild	31 Dec 2012 09:49:27 -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-lua/luadbi/luadbi-0.5-r1.ebuild,v 1.5 2012/10/21 09:10:04 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r1.ebuild,v 1.6 2012/12/31 09:49:27 djc Exp $
 
 EAPI=4
 
@@ -43,7 +43,7 @@
 
 	append-flags -fPIC -c
 	for driver in "${drivers}" ; do
-		emake ${driver}
+		emake CC="$(tc-getCC)" COMMON_LDFLAGS="${LDFLAGS}" ${driver}
 	done
 }
 



1.8                  dev-lua/luadbi/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	21 Oct 2012 09:10:04 -0000	1.7
+++ ChangeLog	31 Dec 2012 09:49:27 -0000	1.8
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lua/luadbi
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v 1.7 2012/10/21 09:10:04 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/ChangeLog,v 1.8 2012/12/31 09:49:27 djc Exp $
+
+  31 Dec 2012; Dirkjan Ochtman <djc@gentoo.org> luadbi-0.5-r1.ebuild:
+  Use correct compiler, obey LDFLAGS (bug 436650, bug 436654, thanks to
+  gentoo@rueg.eu).
 
   21 Oct 2012; Markus Meier <maekke@gentoo.org> luadbi-0.5-r1.ebuild:
   x86 stable, bug #388797





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

end of thread, other threads:[~2012-12-31  9:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-01 12:16 [gentoo-commits] gentoo-x86 commit in dev-lua/luadbi: luadbi-0.5-r1.ebuild ChangeLog Dirkjan Ochtman (djc)
  -- strict thread matches above, loose matches on Subject: below --
2012-12-31  9:49 Dirkjan Ochtman (djc)
2012-10-21  9:10 Markus Meier (maekke)
2012-09-30 11:57 Dirkjan Ochtman (djc)
2011-05-02 16:37 Dirkjan Ochtman (djc)

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