pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/creduce Add creduce-2.5.0:
details: https://anonhg.NetBSD.org/pkgsrc/rev/7ad1b6499898
branches: trunk
changeset: 354561:7ad1b6499898
user: joerg <joerg%pkgsrc.org@localhost>
date: Wed Nov 02 00:15:43 2016 +0000
description:
Add creduce-2.5.0:
C-Reduce is a tool that takes a large C, C++, or OpenCL file that has a
property of interest (such as triggering a compiler bug) and
automatically produces a much smaller C/C++ file that has the same
property. It is intended for use by people who discover and report bugs
in compilers and other tools that process source code.
diffstat:
devel/creduce/DESCR | 5 +++
devel/creduce/Makefile | 29 ++++++++++++++++++++
devel/creduce/PLIST | 25 +++++++++++++++++
devel/creduce/distinfo | 8 +++++
devel/creduce/patches/patch-clang__delta_Makefile.am | 13 ++++++++
devel/creduce/patches/patch-clang__delta_Makefile.in | 13 ++++++++
6 files changed, 93 insertions(+), 0 deletions(-)
diffs (117 lines):
diff -r decb5934247e -r 7ad1b6499898 devel/creduce/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/creduce/DESCR Wed Nov 02 00:15:43 2016 +0000
@@ -0,0 +1,5 @@
+C-Reduce is a tool that takes a large C, C++, or OpenCL file that has a
+property of interest (such as triggering a compiler bug) and
+automatically produces a much smaller C/C++ file that has the same
+property. It is intended for use by people who discover and report bugs
+in compilers and other tools that process source code.
diff -r decb5934247e -r 7ad1b6499898 devel/creduce/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/creduce/Makefile Wed Nov 02 00:15:43 2016 +0000
@@ -0,0 +1,29 @@
+# $NetBSD: Makefile,v 1.1 2016/11/02 00:15:43 joerg Exp $
+
+DISTNAME= creduce-2.5.0
+CATEGORIES= devel
+MASTER_SITES= https://embed.cs.utah.edu/creduce/
+
+MAINTAINER= joerg%NetBSD.org@localhost
+HOMEPAGE= https://embed.cs.utah.edu/creduce/
+COMMENT= Tool for automatic reduction of C/C++ files triggering bugs
+LICENSE= 2-clause-bsd
+
+GNU_CONFIGURE= yes
+
+USE_TOOLS+= flex perl:run gmake
+USE_LANGUAGES= c c++
+
+DEPENDS+= p5-Exporter-Lite-[0-9]*:../../devel/p5-Exporter-Lite
+DEPENDS+= p5-File-Which-[0-9]*:../../devel/p5-File-Which
+DEPENDS+= p5-Getopt-Tabular-[0-9]*:../../devel/p5-Getopt-Tabular
+DEPENDS+= p5-Term-ReadKey-[0-9]*:../../devel/p5-Term-ReadKey
+DEPENDS+= p5-Sys-CPU-[0-9]*:../../sysutils/p5-Sys-CPU
+DEPENDS+= p5-Regexp-Common-[0-9]*:../../textproc/p5-Regexp-Common
+
+.include "../../mk/bsd.prefs.mk"
+
+CXXFLAGS+= -std=c++11
+
+.include "../../lang/clang/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r decb5934247e -r 7ad1b6499898 devel/creduce/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/creduce/PLIST Wed Nov 02 00:15:43 2016 +0000
@@ -0,0 +1,25 @@
+@comment $NetBSD: PLIST,v 1.1 2016/11/02 00:15:43 joerg Exp $
+bin/creduce
+libexec/clang_delta
+libexec/clex
+libexec/strlex
+libexec/topformflat
+libexec/unifdef
+share/creduce/perl/creduce_config.pm
+share/creduce/perl/creduce_regexes.pm
+share/creduce/perl/creduce_utils.pm
+share/creduce/perl/pass_balanced.pm
+share/creduce/perl/pass_blank.pm
+share/creduce/perl/pass_clang.pm
+share/creduce/perl/pass_clang_binsrch.pm
+share/creduce/perl/pass_clex.pm
+share/creduce/perl/pass_comments.pm
+share/creduce/perl/pass_include_includes.pm
+share/creduce/perl/pass_includes.pm
+share/creduce/perl/pass_indent.pm
+share/creduce/perl/pass_ints.pm
+share/creduce/perl/pass_lines.pm
+share/creduce/perl/pass_peep.pm
+share/creduce/perl/pass_special.pm
+share/creduce/perl/pass_ternary.pm
+share/creduce/perl/pass_unifdef.pm
diff -r decb5934247e -r 7ad1b6499898 devel/creduce/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/creduce/distinfo Wed Nov 02 00:15:43 2016 +0000
@@ -0,0 +1,8 @@
+$NetBSD: distinfo,v 1.1 2016/11/02 00:15:43 joerg Exp $
+
+SHA1 (creduce-2.5.0.tar.gz) = 3b0400bf9163ff707d9a046b501b75a233f73533
+RMD160 (creduce-2.5.0.tar.gz) = c7166d53c8e57455fabcdbbab82304de7395e05b
+SHA512 (creduce-2.5.0.tar.gz) = 5292381ddf5e2b061bcfb1a3f52cd25cab3ab5985faade7c779c41be19b5cf7309fbcfff1428f026bfcee5da7c6f898b0b8fa48d03ef83acd64000c3ece2189d
+Size (creduce-2.5.0.tar.gz) = 742516 bytes
+SHA1 (patch-clang__delta_Makefile.am) = f8c9201b12b07ff6499f40bba49c37ac1ee67739
+SHA1 (patch-clang__delta_Makefile.in) = 49b005fe89225f785bbe41fb5e0b4a3027121a79
diff -r decb5934247e -r 7ad1b6499898 devel/creduce/patches/patch-clang__delta_Makefile.am
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/creduce/patches/patch-clang__delta_Makefile.am Wed Nov 02 00:15:43 2016 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-clang__delta_Makefile.am,v 1.1 2016/11/02 00:15:43 joerg Exp $
+
+--- clang_delta/Makefile.am.orig 2016-11-01 21:32:26.772471037 +0000
++++ clang_delta/Makefile.am
+@@ -93,8 +93,6 @@ clang_delta_CXXFLAGS = \
+ # libraries. So probably, we could move `LLVMLDFLAGS' back to the definition
+ # of `clang_delta_LDFLAGS'. I'll do that later.
+ clang_delta_LDADD = \
+- -lclangStaticAnalyzerFrontend -lclangStaticAnalyzerCheckers \
+- -lclangStaticAnalyzerCore \
+ -lclangFrontendTool -lclangFrontend -lclangDriver -lclangSerialization \
+ -lclangCodeGen -lclangParse -lclangSema -lclangAnalysis \
+ -lclangRewriteFrontend -lclangRewrite -lclangAST -lclangBasic -lclangEdit -lclangLex \
diff -r decb5934247e -r 7ad1b6499898 devel/creduce/patches/patch-clang__delta_Makefile.in
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/creduce/patches/patch-clang__delta_Makefile.in Wed Nov 02 00:15:43 2016 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-clang__delta_Makefile.in,v 1.1 2016/11/02 00:15:43 joerg Exp $
+
+--- clang_delta/Makefile.in.orig 2016-11-01 21:32:43.204473218 +0000
++++ clang_delta/Makefile.in
+@@ -488,8 +488,6 @@ clang_delta_CXXFLAGS = \
+ # libraries. So probably, we could move `LLVMLDFLAGS' back to the definition
+ # of `clang_delta_LDFLAGS'. I'll do that later.
+ clang_delta_LDADD = \
+- -lclangStaticAnalyzerFrontend -lclangStaticAnalyzerCheckers \
+- -lclangStaticAnalyzerCore \
+ -lclangFrontendTool -lclangFrontend -lclangDriver -lclangSerialization \
+ -lclangCodeGen -lclangParse -lclangSema -lclangAnalysis \
+ -lclangRewriteFrontend -lclangRewrite -lclangAST -lclangBasic -lclangEdit -lclangLex \
Home |
Main Index |
Thread Index |
Old Index