== v0.14.1 [2012-09-02] Michael Granger <ged@FaerieMUD.org> Important bugfix: - Fix stack overflow bug in PG::Result#values and #column_values (#135). Thanks to everyone who reported the bug, and Lars Kanis especially for figuring out the problem. PostgreSQL 9.2 beta fixes: - Recognize PGRES_SINGLE_TUPLE as OK when checking PGresult (Jeremy Evans) Documentation fixes: - Add note about the usage scope of the result object received by the #set_notice_receiver block. (Lars Kanis) - Add PGRES_COPY_BOTH to documentation of PG::Result#result_status. (Lars Kanis) - Add some documentation to PG::Result#fnumber (fix for #139)
20 lines
587 B
Makefile
20 lines
587 B
Makefile
# $NetBSD: Makefile,v 1.14 2012/09/03 15:13:47 taca Exp $
|
|
|
|
DISTNAME= pg-0.14.1
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:C/postgres/&ql/}
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://bitbucket.org/ged/ruby-pg/
|
|
COMMENT= Ruby extension for PostgreSQL
|
|
LICENSE= 2-clause-bsd OR ruby-license
|
|
|
|
RUBY_RDOC_REQD= 2.5.8
|
|
|
|
GEM_CLEANBUILD= ext/*
|
|
CONFIGURE_ARGS= --with-pgsql-include-dir=${PGSQL_PREFIX}/include/postgresql \
|
|
--with-pgsql-lib-dir=${PGSQL_PREFIX}/lib
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../mk/pgsql.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|