pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
re2: Rename to re2-git
Module Name: pkgsrc-wip
Committed By: Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By: kamil
Date: Sun Sep 25 23:10:20 2016 +0200
Changeset: ca2c5ea78f33aa9e30066c3f9552394d3f71d729
Modified Files:
Makefile
Added Files:
re2-git/DESCR
re2-git/Makefile
re2-git/PLIST
re2-git/buildlink3.mk
re2-git/distinfo
re2-git/patches/patch-Makefile
Removed Files:
re2/DESCR
re2/Makefile
re2/PLIST
re2/buildlink3.mk
re2/distinfo
re2/patches/patch-Makefile
Log Message:
re2: Rename to re2-git
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=ca2c5ea78f33aa9e30066c3f9552394d3f71d729
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
Makefile | 2 +-
re2-git/DESCR | 18 ++++++++++++++++++
re2-git/Makefile | 21 +++++++++++++++++++++
re2-git/PLIST | 10 ++++++++++
re2-git/buildlink3.mk | 12 ++++++++++++
re2-git/distinfo | 3 +++
re2-git/patches/patch-Makefile | 43 ++++++++++++++++++++++++++++++++++++++++++
re2/DESCR | 18 ------------------
re2/Makefile | 21 ---------------------
re2/PLIST | 10 ----------
re2/buildlink3.mk | 12 ------------
re2/distinfo | 3 ---
re2/patches/patch-Makefile | 43 ------------------------------------------
13 files changed, 108 insertions(+), 108 deletions(-)
diffs:
diff --git a/Makefile b/Makefile
index 8b8d54b..3966377 100644
--- a/Makefile
+++ b/Makefile
@@ -3661,7 +3661,7 @@ SUBDIR+= rc.subr
SUBDIR+= rcm
SUBDIR+= rdsn-git
SUBDIR+= rdup
-SUBDIR+= re2
+SUBDIR+= re2-git
SUBDIR+= readseq
SUBDIR+= realtimebattle
SUBDIR+= realvnc
diff --git a/re2-git/DESCR b/re2-git/DESCR
new file mode 100644
index 0000000..30f819e
--- /dev/null
+++ b/re2-git/DESCR
@@ -0,0 +1,18 @@
+RE2 is a fast, safe, thread-friendly alternative to backtracking
+regular expression engines like those used in PCRE, Perl, and
+Python. It is a C++ library.
+
+Backtracking engines are typically full of features and
+convenient syntactic sugar but can be forced into taking
+exponential amounts of time on even small inputs. RE2 uses
+automata theory to guarantee that regular expression searches
+run in time linear in the size of the input. RE2 implements
+memory limits, so that searches can be constrained to a fixed
+amount of memory. RE2 is engineered to use a small fixed C++
+stack footprint no matter what inputs or regular expressions it
+must process; thus RE2 is useful in multithreaded environments
+where thread stacks cannot grow arbitrarily large.
+
+On large inputs, RE2 is often much faster than backtracking
+engines; its use of automata theory lets it apply optimizations
+that the others cannot.
diff --git a/re2-git/Makefile b/re2-git/Makefile
new file mode 100644
index 0000000..e02c382
--- /dev/null
+++ b/re2-git/Makefile
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.3 2012/10/07 14:53:43 asau Exp $
+
+DISTNAME= re2-0.99
+PKGNAME= ${DISTNAME}
+CATEGORIES= devel
+
+MAINTAINER= asau%inbox.ru@localhost
+HOMEPAGE= https://github.com/google/re2
+COMMENT= RE2 is a fast, safe, thread-friendly regular expressions library
+LICENSE= modified-bsd
+
+WRKSRC= ${WRKDIR}/${PKGBASE}
+
+USE_LANGUAGES= c c++
+USE_TOOLS= gmake
+
+GIT_REPOSITORIES= re2
+GIT_REPO.re2= git%github.com@localhost:google/re2.git
+
+.include "../../wip/mk/git-package.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/re2-git/PLIST b/re2-git/PLIST
new file mode 100644
index 0000000..0833d24
--- /dev/null
+++ b/re2-git/PLIST
@@ -0,0 +1,10 @@
+@comment $NetBSD: PLIST,v 1.2 2012/01/23 11:57:34 thomasklausner Exp $
+include/re2/filtered_re2.h
+include/re2/re2.h
+include/re2/set.h
+include/re2/stringpiece.h
+include/re2/variadic_function.h
+lib/libre2.a
+lib/libre2.so
+lib/libre2.so.0
+lib/libre2.so.0.0.0
diff --git a/re2-git/buildlink3.mk b/re2-git/buildlink3.mk
new file mode 100644
index 0000000..ea6c827
--- /dev/null
+++ b/re2-git/buildlink3.mk
@@ -0,0 +1,12 @@
+# $NetBSD: buildlink3.mk,v 1.1.1.1 2011/08/27 18:45:02 asau Exp $
+
+BUILDLINK_TREE+= re2
+
+.if !defined(RE2_BUILDLINK3_MK)
+RE2_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.re2+= re2>=0.99
+BUILDLINK_PKGSRCDIR.re2?= ../../wip/re2-git
+.endif # RE2_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -re2
diff --git a/re2-git/distinfo b/re2-git/distinfo
new file mode 100644
index 0000000..e11b631
--- /dev/null
+++ b/re2-git/distinfo
@@ -0,0 +1,3 @@
+$NetBSD: distinfo,v 1.2 2012/01/23 11:57:34 thomasklausner Exp $
+
+SHA1 (patch-Makefile) = ebbc97b2f6bb3209c9e9c8e847da2a2835c78a88
diff --git a/re2-git/patches/patch-Makefile b/re2-git/patches/patch-Makefile
new file mode 100644
index 0000000..ce53fc4
--- /dev/null
+++ b/re2-git/patches/patch-Makefile
@@ -0,0 +1,43 @@
+$NetBSD: patch-Makefile,v 1.2 2012/01/23 11:57:34 thomasklausner Exp $
+
+Change some settings so they can be overridden by pkgsrc.
+
+--- Makefile.orig 2012-01-23 11:51:01.000000000 +0000
++++ Makefile
+@@ -9,25 +9,25 @@ all: obj/libre2.a obj/so/libre2.so
+ # CCPCRE=-I/usr/local/include -DUSEPCRE
+ # LDPCRE=-L/usr/local/lib -lpcre
+
+-CXX=g++
+-CXXFLAGS=-Wall -O3 -g -pthread # can override
++CXX?=g++
++CXXFLAGS?=-Wall -O3 -g -pthread # can override
+ RE2_CXXFLAGS=-Wno-sign-compare -c -I. $(CCPCRE) # required
+-LDFLAGS=-pthread
+-AR=ar
+-ARFLAGS=rsc
+-NM=nm
+-NMFLAGS=-p
++LDFLAGS?=-pthread
++AR?=ar
++ARFLAGS?=rsc
++NM?=nm
++NMFLAGS?=-p
+
+ # Variables mandated by GNU, the arbiter of all good taste on the internet.
+ # http://www.gnu.org/prep/standards/standards.html
+-prefix=/usr/local
++prefix=$(PREFIX)
+ exec_prefix=$(prefix)
+ bindir=$(exec_prefix)/bin
+ includedir=$(prefix)/include
+ libdir=$(exec_prefix)/lib
+-INSTALL=install
+-INSTALL_PROGRAM=$(INSTALL)
+-INSTALL_DATA=$(INSTALL) -m 644
++INSTALL?=install
++INSTALL_PROGRAM?=$(INSTALL)
++INSTALL_DATA?=$(INSTALL) -m 644
+
+ # ABI version
+ # http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html
diff --git a/re2/DESCR b/re2/DESCR
deleted file mode 100644
index 30f819e..0000000
--- a/re2/DESCR
+++ /dev/null
@@ -1,18 +0,0 @@
-RE2 is a fast, safe, thread-friendly alternative to backtracking
-regular expression engines like those used in PCRE, Perl, and
-Python. It is a C++ library.
-
-Backtracking engines are typically full of features and
-convenient syntactic sugar but can be forced into taking
-exponential amounts of time on even small inputs. RE2 uses
-automata theory to guarantee that regular expression searches
-run in time linear in the size of the input. RE2 implements
-memory limits, so that searches can be constrained to a fixed
-amount of memory. RE2 is engineered to use a small fixed C++
-stack footprint no matter what inputs or regular expressions it
-must process; thus RE2 is useful in multithreaded environments
-where thread stacks cannot grow arbitrarily large.
-
-On large inputs, RE2 is often much faster than backtracking
-engines; its use of automata theory lets it apply optimizations
-that the others cannot.
diff --git a/re2/Makefile b/re2/Makefile
deleted file mode 100644
index e02c382..0000000
--- a/re2/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-# $NetBSD: Makefile,v 1.3 2012/10/07 14:53:43 asau Exp $
-
-DISTNAME= re2-0.99
-PKGNAME= ${DISTNAME}
-CATEGORIES= devel
-
-MAINTAINER= asau%inbox.ru@localhost
-HOMEPAGE= https://github.com/google/re2
-COMMENT= RE2 is a fast, safe, thread-friendly regular expressions library
-LICENSE= modified-bsd
-
-WRKSRC= ${WRKDIR}/${PKGBASE}
-
-USE_LANGUAGES= c c++
-USE_TOOLS= gmake
-
-GIT_REPOSITORIES= re2
-GIT_REPO.re2= git%github.com@localhost:google/re2.git
-
-.include "../../wip/mk/git-package.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/re2/PLIST b/re2/PLIST
deleted file mode 100644
index 0833d24..0000000
--- a/re2/PLIST
+++ /dev/null
@@ -1,10 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 2012/01/23 11:57:34 thomasklausner Exp $
-include/re2/filtered_re2.h
-include/re2/re2.h
-include/re2/set.h
-include/re2/stringpiece.h
-include/re2/variadic_function.h
-lib/libre2.a
-lib/libre2.so
-lib/libre2.so.0
-lib/libre2.so.0.0.0
diff --git a/re2/buildlink3.mk b/re2/buildlink3.mk
deleted file mode 100644
index b7ac4df..0000000
--- a/re2/buildlink3.mk
+++ /dev/null
@@ -1,12 +0,0 @@
-# $NetBSD: buildlink3.mk,v 1.1.1.1 2011/08/27 18:45:02 asau Exp $
-
-BUILDLINK_TREE+= re2
-
-.if !defined(RE2_BUILDLINK3_MK)
-RE2_BUILDLINK3_MK:=
-
-BUILDLINK_API_DEPENDS.re2+= re2>=0.99
-BUILDLINK_PKGSRCDIR.re2?= ../../wip/re2
-.endif # RE2_BUILDLINK3_MK
-
-BUILDLINK_TREE+= -re2
diff --git a/re2/distinfo b/re2/distinfo
deleted file mode 100644
index e11b631..0000000
--- a/re2/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-$NetBSD: distinfo,v 1.2 2012/01/23 11:57:34 thomasklausner Exp $
-
-SHA1 (patch-Makefile) = ebbc97b2f6bb3209c9e9c8e847da2a2835c78a88
diff --git a/re2/patches/patch-Makefile b/re2/patches/patch-Makefile
deleted file mode 100644
index ce53fc4..0000000
--- a/re2/patches/patch-Makefile
+++ /dev/null
@@ -1,43 +0,0 @@
-$NetBSD: patch-Makefile,v 1.2 2012/01/23 11:57:34 thomasklausner Exp $
-
-Change some settings so they can be overridden by pkgsrc.
-
---- Makefile.orig 2012-01-23 11:51:01.000000000 +0000
-+++ Makefile
-@@ -9,25 +9,25 @@ all: obj/libre2.a obj/so/libre2.so
- # CCPCRE=-I/usr/local/include -DUSEPCRE
- # LDPCRE=-L/usr/local/lib -lpcre
-
--CXX=g++
--CXXFLAGS=-Wall -O3 -g -pthread # can override
-+CXX?=g++
-+CXXFLAGS?=-Wall -O3 -g -pthread # can override
- RE2_CXXFLAGS=-Wno-sign-compare -c -I. $(CCPCRE) # required
--LDFLAGS=-pthread
--AR=ar
--ARFLAGS=rsc
--NM=nm
--NMFLAGS=-p
-+LDFLAGS?=-pthread
-+AR?=ar
-+ARFLAGS?=rsc
-+NM?=nm
-+NMFLAGS?=-p
-
- # Variables mandated by GNU, the arbiter of all good taste on the internet.
- # http://www.gnu.org/prep/standards/standards.html
--prefix=/usr/local
-+prefix=$(PREFIX)
- exec_prefix=$(prefix)
- bindir=$(exec_prefix)/bin
- includedir=$(prefix)/include
- libdir=$(exec_prefix)/lib
--INSTALL=install
--INSTALL_PROGRAM=$(INSTALL)
--INSTALL_DATA=$(INSTALL) -m 644
-+INSTALL?=install
-+INSTALL_PROGRAM?=$(INSTALL)
-+INSTALL_DATA?=$(INSTALL) -m 644
-
- # ABI version
- # http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html
Home |
Main Index |
Thread Index |
Old Index