pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc Revbump and use of c++11 beacuse of lang/qore update.
details: https://anonhg.NetBSD.org/pkgsrc/rev/b24291bec3c2
branches: trunk
changeset: 370169:b24291bec3c2
user: nros <nros%pkgsrc.org@localhost>
date: Thu Oct 12 18:21:23 2017 +0000
description:
Revbump and use of c++11 beacuse of lang/qore update.
diffstat:
databases/qore-freetds-module/Makefile | 6 +++---
databases/qore-mysql-module/Makefile | 6 +++---
databases/qore-mysql-module/buildlink3.mk | 4 ++--
databases/qore-openldap-module/Makefile | 5 +++--
databases/qore-pgsql-module/Makefile | 6 +++---
databases/qore-sqlite3-module/Makefile | 6 +++---
devel/qore-uuid-module/Makefile | 6 +++---
graphics/qore-glut-module/Makefile | 6 +++---
graphics/qore-glut-module/buildlink3.mk | 4 ++--
graphics/qore-opengl-module/Makefile | 6 +++---
graphics/qore-opengl-module/buildlink3.mk | 4 ++--
security/qore-asn1-module/Makefile | 6 +++---
security/qore-ssh2-module/Makefile | 5 +++--
security/qore-xmlsec-module/Makefile | 6 +++---
textproc/qore-xml-module/Makefile | 5 +++--
textproc/qore-yaml-module/Makefile | 5 +++--
16 files changed, 45 insertions(+), 41 deletions(-)
diffs (truncated from 337 to 300 lines):
diff -r 007f34eb11d5 -r b24291bec3c2 databases/qore-freetds-module/Makefile
--- a/databases/qore-freetds-module/Makefile Thu Oct 12 18:17:46 2017 +0000
+++ b/databases/qore-freetds-module/Makefile Thu Oct 12 18:21:23 2017 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.7 2017/09/17 15:05:31 taca Exp $
+# $NetBSD: Makefile,v 1.8 2017/10/12 18:21:23 nros Exp $
DISTNAME= qore-sybase-modules-1.0.4
PKGNAME= ${DISTNAME:S/sybase-modules/freetds-module/}
-PKGREVISION= 2
+PKGREVISION= 3
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/}
EXTRACT_SUFX= .tar.bz2
@@ -16,7 +16,7 @@
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
-USE_LANGUAGES= c c++
+USE_LANGUAGES= c c++11
USE_TOOLS+= pax
PTHREAD_OPTS+= require
diff -r 007f34eb11d5 -r b24291bec3c2 databases/qore-mysql-module/Makefile
--- a/databases/qore-mysql-module/Makefile Thu Oct 12 18:17:46 2017 +0000
+++ b/databases/qore-mysql-module/Makefile Thu Oct 12 18:21:23 2017 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2016/08/07 11:44:42 nros Exp $
+# $NetBSD: Makefile,v 1.5 2017/10/12 18:21:23 nros Exp $
DISTNAME= qore-mysql-module-2.0.1
-PKGREVISION= 6
+PKGREVISION= 7
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/}
EXTRACT_SUFX= .tar.bz2
@@ -13,7 +13,7 @@
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
-USE_LANGUAGES= c c++
+USE_LANGUAGES= c c++11
USE_TOOLS+= gmake pax
PTHREAD_OPTS+= native
diff -r 007f34eb11d5 -r b24291bec3c2 databases/qore-mysql-module/buildlink3.mk
--- a/databases/qore-mysql-module/buildlink3.mk Thu Oct 12 18:17:46 2017 +0000
+++ b/databases/qore-mysql-module/buildlink3.mk Thu Oct 12 18:21:23 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.4 2016/07/22 13:01:33 nros Exp $
+# $NetBSD: buildlink3.mk,v 1.5 2017/10/12 18:21:23 nros Exp $
#
BUILDLINK_TREE+= qore-mysql-module
@@ -7,7 +7,7 @@
QORE_MYSQL_MODULE_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.qore-mysql-module+= qore-mysql-module>=2.0.1
-BUILDLINK_ABI_DEPENDS.qore-mysql-module?= qore-mysql-module>=2.0.1nb6
+BUILDLINK_ABI_DEPENDS.qore-mysql-module?= qore-mysql-module>=2.0.1nb7
BUILDLINK_PKGSRCDIR.qore-mysql-module?= ../../databases/qore-mysql-module
.include "../../lang/qore/buildlink3.mk"
diff -r 007f34eb11d5 -r b24291bec3c2 databases/qore-openldap-module/Makefile
--- a/databases/qore-openldap-module/Makefile Thu Oct 12 18:17:46 2017 +0000
+++ b/databases/qore-openldap-module/Makefile Thu Oct 12 18:21:23 2017 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2016/08/07 11:44:42 nros Exp $
+# $NetBSD: Makefile,v 1.5 2017/10/12 18:21:23 nros Exp $
DISTNAME= qore-openldap-module-1.1
+PKGREVISION= 1
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/}
EXTRACT_SUFX= .tar.bz2
@@ -14,7 +15,7 @@
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
-USE_LANGUAGES= c c++
+USE_LANGUAGES= c c++11
USE_TOOLS+= gmake pax
PTHREAD_OPTS+= native
diff -r 007f34eb11d5 -r b24291bec3c2 databases/qore-pgsql-module/Makefile
--- a/databases/qore-pgsql-module/Makefile Thu Oct 12 18:17:46 2017 +0000
+++ b/databases/qore-pgsql-module/Makefile Thu Oct 12 18:21:23 2017 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2016/10/09 21:41:57 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2017/10/12 18:21:24 nros Exp $
DISTNAME= qore-pgsql-module-2.4
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/}
EXTRACT_SUFX= .tar.bz2
@@ -15,7 +15,7 @@
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
-USE_LANGUAGES= c c++
+USE_LANGUAGES= c c++11
USE_TOOLS+= gmake pax
PTHREAD_OPTS+= native
diff -r 007f34eb11d5 -r b24291bec3c2 databases/qore-sqlite3-module/Makefile
--- a/databases/qore-sqlite3-module/Makefile Thu Oct 12 18:17:46 2017 +0000
+++ b/databases/qore-sqlite3-module/Makefile Thu Oct 12 18:21:23 2017 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.12 2017/09/18 09:53:14 maya Exp $
+# $NetBSD: Makefile,v 1.13 2017/10/12 18:21:24 nros Exp $
DISTNAME= qore-sqlite3-module-1.0.1
-PKGREVISION= 12
+PKGREVISION= 13
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/}
@@ -12,7 +12,7 @@
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
-USE_LANGUAGES= c c++
+USE_LANGUAGES= c c++11
PTHREAD_OPTS+= native
CONFIGURE_ARGS+=--with-sqlite3=${BUILDLINK_PREFIX.sqlite3}
diff -r 007f34eb11d5 -r b24291bec3c2 devel/qore-uuid-module/Makefile
--- a/devel/qore-uuid-module/Makefile Thu Oct 12 18:17:46 2017 +0000
+++ b/devel/qore-uuid-module/Makefile Thu Oct 12 18:21:23 2017 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.3 2016/07/22 13:07:15 nros Exp $
+# $NetBSD: Makefile,v 1.4 2017/10/12 18:21:24 nros Exp $
DISTNAME= qore-uuid-module-1.3
-PKGREVISION= 3
+PKGREVISION= 4
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/}
EXTRACT_SUFX= .tar.bz2
@@ -13,7 +13,7 @@
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
-USE_LANGUAGES= c c++
+USE_LANGUAGES= c c++11
USE_TOOLS+= gmake pax
PTHREAD_OPTS+= native
diff -r 007f34eb11d5 -r b24291bec3c2 graphics/qore-glut-module/Makefile
--- a/graphics/qore-glut-module/Makefile Thu Oct 12 18:17:46 2017 +0000
+++ b/graphics/qore-glut-module/Makefile Thu Oct 12 18:21:23 2017 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2016/08/07 11:44:43 nros Exp $
+# $NetBSD: Makefile,v 1.6 2017/10/12 18:21:24 nros Exp $
DISTNAME= qore-glut-module-0.0.3
-PKGREVISION= 6
+PKGREVISION= 7
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/}
@@ -12,7 +12,7 @@
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
-USE_LANGUAGES= c c++
+USE_LANGUAGES= c c++11
PTHREAD_OPTS+= native
CONFIGURE_ARGS+=--with-glut=${BUILDLINK_PREFIX.glut}
diff -r 007f34eb11d5 -r b24291bec3c2 graphics/qore-glut-module/buildlink3.mk
--- a/graphics/qore-glut-module/buildlink3.mk Thu Oct 12 18:17:46 2017 +0000
+++ b/graphics/qore-glut-module/buildlink3.mk Thu Oct 12 18:21:23 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.3 2016/07/22 13:16:39 nros Exp $
+# $NetBSD: buildlink3.mk,v 1.4 2017/10/12 18:21:24 nros Exp $
#
BUILDLINK_TREE+= qore-glut-module
@@ -7,7 +7,7 @@
QORE_GLUT_MODULE_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.qore-glut-module+= qore-glut-module>=0.0.3
-BUILDLINK_ABI_DEPENDS.qore-glut-module?= qore-glut-module>=0.0.3nb6
+BUILDLINK_ABI_DEPENDS.qore-glut-module?= qore-glut-module>=0.0.3nb7
BUILDLINK_PKGSRCDIR.qore-glut-module?= ../../graphics/qore-glut-module
.include "../../graphics/qore-opengl-module/buildlink3.mk"
diff -r 007f34eb11d5 -r b24291bec3c2 graphics/qore-opengl-module/Makefile
--- a/graphics/qore-opengl-module/Makefile Thu Oct 12 18:17:46 2017 +0000
+++ b/graphics/qore-opengl-module/Makefile Thu Oct 12 18:21:23 2017 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2016/08/07 11:44:43 nros Exp $
+# $NetBSD: Makefile,v 1.6 2017/10/12 18:21:24 nros Exp $
DISTNAME= qore-opengl-module-0.0.3
-PKGREVISION= 7
+PKGREVISION= 8
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/}
@@ -12,7 +12,7 @@
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
-USE_LANGUAGES= c c++
+USE_LANGUAGES= c c++11
USE_TOOLS+= autoconf automake gmake
PTHREAD_OPTS+= native
diff -r 007f34eb11d5 -r b24291bec3c2 graphics/qore-opengl-module/buildlink3.mk
--- a/graphics/qore-opengl-module/buildlink3.mk Thu Oct 12 18:17:46 2017 +0000
+++ b/graphics/qore-opengl-module/buildlink3.mk Thu Oct 12 18:21:23 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.3 2016/07/22 13:12:17 nros Exp $
+# $NetBSD: buildlink3.mk,v 1.4 2017/10/12 18:21:24 nros Exp $
#
BUILDLINK_TREE+= qore-opengl-module
@@ -7,7 +7,7 @@
QORE_OPENGL_MODULE_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.qore-opengl-module+= qore-opengl-module>=0.0.3
-BUILDLINK_ABI_DEPENDS.qore-opengl-module?= qore-opengl-module>=0.0.3nb7
+BUILDLINK_ABI_DEPENDS.qore-opengl-module?= qore-opengl-module>=0.0.3nb8
BUILDLINK_PKGSRCDIR.qore-opengl-module?= ../../graphics/qore-opengl-module
.include "../../lang/qore/buildlink3.mk"
diff -r 007f34eb11d5 -r b24291bec3c2 security/qore-asn1-module/Makefile
--- a/security/qore-asn1-module/Makefile Thu Oct 12 18:17:46 2017 +0000
+++ b/security/qore-asn1-module/Makefile Thu Oct 12 18:21:23 2017 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2016/08/07 10:17:53 nros Exp $
+# $NetBSD: Makefile,v 1.5 2017/10/12 18:21:24 nros Exp $
DISTNAME= qore-asn1-module-0.0.3
-PKGREVISION= 3
+PKGREVISION= 4
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/}
@@ -12,7 +12,7 @@
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
-USE_LANGUAGES= c c++
+USE_LANGUAGES= c c++11
PTHREAD_OPTS+= require
INSTALLATION_DIRS+= share/doc/qore-asn1-module
diff -r 007f34eb11d5 -r b24291bec3c2 security/qore-ssh2-module/Makefile
--- a/security/qore-ssh2-module/Makefile Thu Oct 12 18:17:46 2017 +0000
+++ b/security/qore-ssh2-module/Makefile Thu Oct 12 18:21:23 2017 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.6 2016/08/07 11:44:43 nros Exp $
+# $NetBSD: Makefile,v 1.7 2017/10/12 18:21:24 nros Exp $
DISTNAME= qore-ssh2-module-1.0
+PKGREVISION= 1
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/}
EXTRACT_SUFX= .tar.bz2
@@ -14,7 +15,7 @@
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
-USE_LANGUAGES= c c++
+USE_LANGUAGES= c c++11
USE_TOOLS+= gmake pax
PTHREAD_OPTS+= native
diff -r 007f34eb11d5 -r b24291bec3c2 security/qore-xmlsec-module/Makefile
--- a/security/qore-xmlsec-module/Makefile Thu Oct 12 18:17:46 2017 +0000
+++ b/security/qore-xmlsec-module/Makefile Thu Oct 12 18:21:23 2017 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2016/03/05 11:29:25 jperkin Exp $
+# $NetBSD: Makefile,v 1.3 2017/10/12 18:21:24 nros Exp $
DISTNAME= qore-xmlsec-module-0.0.2
-PKGREVISION= 5
+PKGREVISION= 6
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/}
@@ -12,7 +12,7 @@
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
-USE_LANGUAGES= c c++
+USE_LANGUAGES= c c++11
PTHREAD_OPTS+= native
CONFIGURE_ARGS+=--with-xmlsec-dir=${BUILDLINK_PREFIX.xmlsec1}
diff -r 007f34eb11d5 -r b24291bec3c2 textproc/qore-xml-module/Makefile
--- a/textproc/qore-xml-module/Makefile Thu Oct 12 18:17:46 2017 +0000
+++ b/textproc/qore-xml-module/Makefile Thu Oct 12 18:21:23 2017 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2016/08/07 11:44:43 nros Exp $
Home |
Main Index |
Thread Index |
Old Index