Merge branch '2.8' into 3.0

This commit is contained in:
Juergen Daubert 2012-12-22 10:45:40 +01:00
commit 1e96e922fb
30 changed files with 1197 additions and 1098 deletions

View File

@ -1,3 +1,4 @@
dab90271e918f48ed215648521d5a8a0 bison.patch
2ee0e7ca8ec685d4031625bc005f4f45 chromium-21.0.1180.92.tar.bz2
64968626706b07721983ac59fb3babbf chromium.sh
d1a2b0663cbf38ebc71cc75073a39b43 use-siginfo_t.patch

View File

@ -6,9 +6,9 @@
name=chromium
version=21.0.1180.92
release=1
release=2
source=(http://gsdview.appspot.com/chromium-browser-official/$name-$version.tar.bz2 \
$name.sh bison.patch)
$name.sh bison.patch use-siginfo_t.patch)
build() {
cd $name-$version
@ -16,6 +16,9 @@ build() {
# https://bugs.webkit.org/show_bug.cgi?id=92264
patch -d ./third_party/WebKit -p1 -i $SRC/bison.patch
# fix building issues
patch -p1 -i $SRC/use-siginfo_t.patch
find third_party/WebKit/Source ui/base/ime \
-type f -exec sed -e 's|<glib/.*\.h>|<glib.h>|g' -i {} \;

View File

@ -0,0 +1,35 @@
diff -upr chromium-20.0.1132.57.orig/third_party/tcmalloc/chromium/src/base/linux_syscall_support.h chromium-20.0.1132.57/third_party/tcmalloc/chromium/src/base/linux_syscall_support.h
--- chromium-20.0.1132.57.orig/third_party/tcmalloc/chromium/src/base/linux_syscall_support.h 2012-07-10 10:48:31.000000000 +0300
+++ chromium-20.0.1132.57/third_party/tcmalloc/chromium/src/base/linux_syscall_support.h 2012-07-11 23:44:11.000000000 +0300
@@ -243,14 +243,13 @@ struct kernel_rusage {
long ru_nivcsw;
};
-struct siginfo;
#if defined(__i386__) || defined(__arm__) || defined(__PPC__)
/* include/asm-{arm,i386,mips,ppc}/signal.h */
struct kernel_old_sigaction {
union {
void (*sa_handler_)(int);
- void (*sa_sigaction_)(int, struct siginfo *, void *);
+ void (*sa_sigaction_)(int, siginfo_t *, void *);
};
unsigned long sa_mask;
unsigned long sa_flags;
@@ -287,13 +286,13 @@ struct kernel_sigaction {
unsigned long sa_flags;
union {
void (*sa_handler_)(int);
- void (*sa_sigaction_)(int, struct siginfo *, void *);
+ void (*sa_sigaction_)(int, siginfo_t *, void *);
};
struct kernel_sigset_t sa_mask;
#else
union {
void (*sa_handler_)(int);
- void (*sa_sigaction_)(int, struct siginfo *, void *);
+ void (*sa_sigaction_)(int, siginfo_t *, void *);
};
unsigned long sa_flags;
void (*sa_restorer)(void);

View File

@ -1 +1 @@
24a6779a9fe0260667710de1b082ef61 gdb-7.5.tar.bz2
3f48f468b24447cf24820054ff6e85b1 gdb-7.5.1.tar.bz2

View File

@ -5,7 +5,7 @@
# Depends on: ncurses
name=gdb
version=7.5
version=7.5.1
release=1
source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)

View File

@ -1,2 +1,2 @@
12f4d20f34ae37086d86dd3b9d037bba git-1.8.0.tar.gz
66f0a839d933c7d573fb40cb051b5e66 git-manpages-1.8.0.tar.gz
1aca109d4a719fe5bc43d25927fbc7d9 git-1.8.0.2.tar.gz
ab83283a5b3c73ab711a9f02896ca12e git-manpages-1.8.0.2.tar.gz

View File

@ -6,7 +6,7 @@
# Nice to have: tk
name=git
version=1.8.0
version=1.8.0.2
release=1
source=(https://git-core.googlecode.com/files/$name-{,manpages-}$version.tar.gz)

View File

@ -4,6 +4,7 @@ drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/c-index-test
-rwxr-xr-x root/root usr/bin/clang
lrwxrwxrwx root/root usr/bin/clang++ -> clang
-rwxr-xr-x root/root usr/bin/clang-check
-rwxr-xr-x root/root usr/bin/clang-tblgen
-rwxr-xr-x root/root usr/bin/llc
-rwxr-xr-x root/root usr/bin/lli
@ -16,9 +17,9 @@ lrwxrwxrwx root/root usr/bin/clang++ -> clang
-rwxr-xr-x root/root usr/bin/llvm-dis
-rwxr-xr-x root/root usr/bin/llvm-dwarfdump
-rwxr-xr-x root/root usr/bin/llvm-extract
-rwxr-xr-x root/root usr/bin/llvm-ld
-rwxr-xr-x root/root usr/bin/llvm-link
-rwxr-xr-x root/root usr/bin/llvm-mc
-rwxr-xr-x root/root usr/bin/llvm-mcmarkup
-rwxr-xr-x root/root usr/bin/llvm-nm
-rwxr-xr-x root/root usr/bin/llvm-objdump
-rwxr-xr-x root/root usr/bin/llvm-prof
@ -27,13 +28,15 @@ lrwxrwxrwx root/root usr/bin/clang++ -> clang
-rwxr-xr-x root/root usr/bin/llvm-rtdyld
-rwxr-xr-x root/root usr/bin/llvm-size
-rwxr-xr-x root/root usr/bin/llvm-stress
-rwxr-xr-x root/root usr/bin/llvm-stub
-rwxr-xr-x root/root usr/bin/llvm-tblgen
-rwxr-xr-x root/root usr/bin/macho-dump
-rwxr-xr-x root/root usr/bin/opt
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/clang-c/
-rw-r--r-- root/root usr/include/clang-c/CXCompilationDatabase.h
-rw-r--r-- root/root usr/include/clang-c/CXString.h
-rw-r--r-- root/root usr/include/clang-c/Index.h
-rw-r--r-- root/root usr/include/clang-c/Platform.h
drwxr-xr-x root/root usr/include/clang/
drwxr-xr-x root/root usr/include/clang/ARCMigrate/
-rw-r--r-- root/root usr/include/clang/ARCMigrate/ARCMT.h
@ -56,6 +59,18 @@ drwxr-xr-x root/root usr/include/clang/AST/
-rw-r--r-- root/root usr/include/clang/AST/CXXInheritance.h
-rw-r--r-- root/root usr/include/clang/AST/CanonicalType.h
-rw-r--r-- root/root usr/include/clang/AST/CharUnits.h
-rw-r--r-- root/root usr/include/clang/AST/Comment.h
-rw-r--r-- root/root usr/include/clang/AST/CommentBriefParser.h
-rw-r--r-- root/root usr/include/clang/AST/CommentCommandInfo.inc
-rw-r--r-- root/root usr/include/clang/AST/CommentCommandTraits.h
-rw-r--r-- root/root usr/include/clang/AST/CommentDiagnostic.h
-rw-r--r-- root/root usr/include/clang/AST/CommentHTMLTags.inc
-rw-r--r-- root/root usr/include/clang/AST/CommentHTMLTagsProperties.inc
-rw-r--r-- root/root usr/include/clang/AST/CommentLexer.h
-rw-r--r-- root/root usr/include/clang/AST/CommentNodes.inc
-rw-r--r-- root/root usr/include/clang/AST/CommentParser.h
-rw-r--r-- root/root usr/include/clang/AST/CommentSema.h
-rw-r--r-- root/root usr/include/clang/AST/CommentVisitor.h
-rw-r--r-- root/root usr/include/clang/AST/Decl.h
-rw-r--r-- root/root usr/include/clang/AST/DeclAccessPair.h
-rw-r--r-- root/root usr/include/clang/AST/DeclBase.h
@ -83,6 +98,7 @@ drwxr-xr-x root/root usr/include/clang/AST/
-rw-r--r-- root/root usr/include/clang/AST/OperationKinds.h
-rw-r--r-- root/root usr/include/clang/AST/ParentMap.h
-rw-r--r-- root/root usr/include/clang/AST/PrettyPrinter.h
-rw-r--r-- root/root usr/include/clang/AST/RawCommentList.h
-rw-r--r-- root/root usr/include/clang/AST/RecordLayout.h
-rw-r--r-- root/root usr/include/clang/AST/RecursiveASTVisitor.h
-rw-r--r-- root/root usr/include/clang/AST/Redeclarable.h
@ -106,6 +122,12 @@ drwxr-xr-x root/root usr/include/clang/AST/
-rw-r--r-- root/root usr/include/clang/AST/UnresolvedSet.h
-rw-r--r-- root/root usr/include/clang/AST/VTTBuilder.h
-rw-r--r-- root/root usr/include/clang/AST/VTableBuilder.h
drwxr-xr-x root/root usr/include/clang/ASTMatchers/
-rw-r--r-- root/root usr/include/clang/ASTMatchers/ASTMatchFinder.h
-rw-r--r-- root/root usr/include/clang/ASTMatchers/ASTMatchers.h
-rw-r--r-- root/root usr/include/clang/ASTMatchers/ASTMatchersInternal.h
-rw-r--r-- root/root usr/include/clang/ASTMatchers/ASTMatchersMacros.h
-rw-r--r-- root/root usr/include/clang/ASTMatchers/ASTTypeTraits.h
drwxr-xr-x root/root usr/include/clang/Analysis/
drwxr-xr-x root/root usr/include/clang/Analysis/Analyses/
-rw-r--r-- root/root usr/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.h
@ -124,6 +146,7 @@ drwxr-xr-x root/root usr/include/clang/Analysis/Analyses/
-rw-r--r-- root/root usr/include/clang/Analysis/CallGraph.h
drwxr-xr-x root/root usr/include/clang/Analysis/DomainSpecific/
-rw-r--r-- root/root usr/include/clang/Analysis/DomainSpecific/CocoaConventions.h
-rw-r--r-- root/root usr/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h
drwxr-xr-x root/root usr/include/clang/Analysis/FlowSensitive/
-rw-r--r-- root/root usr/include/clang/Analysis/FlowSensitive/DataflowSolver.h
-rw-r--r-- root/root usr/include/clang/Analysis/FlowSensitive/DataflowValues.h
@ -145,14 +168,16 @@ drwxr-xr-x root/root usr/include/clang/Basic/
-rw-r--r-- root/root usr/include/clang/Basic/Builtins.h
-rw-r--r-- root/root usr/include/clang/Basic/BuiltinsARM.def
-rw-r--r-- root/root usr/include/clang/Basic/BuiltinsHexagon.def
-rw-r--r-- root/root usr/include/clang/Basic/BuiltinsMips.def
-rw-r--r-- root/root usr/include/clang/Basic/BuiltinsNVPTX.def
-rw-r--r-- root/root usr/include/clang/Basic/BuiltinsPPC.def
-rw-r--r-- root/root usr/include/clang/Basic/BuiltinsPTX.def
-rw-r--r-- root/root usr/include/clang/Basic/BuiltinsX86.def
-rw-r--r-- root/root usr/include/clang/Basic/ConvertUTF.h
-rw-r--r-- root/root usr/include/clang/Basic/Diagnostic.h
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticASTKinds.inc
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticAnalysisKinds.inc
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticCategories.h
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticCommentKinds.inc
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticCommonKinds.inc
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticDriverKinds.inc
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticFrontendKinds.inc
@ -160,6 +185,8 @@ drwxr-xr-x root/root usr/include/clang/Basic/
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticIDs.h
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticIndexName.inc
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticLexKinds.inc
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticOptions.def
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticOptions.h
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticParseKinds.inc
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticSemaKinds.inc
-rw-r--r-- root/root usr/include/clang/Basic/DiagnosticSerializationKinds.inc
@ -176,6 +203,7 @@ drwxr-xr-x root/root usr/include/clang/Basic/
-rw-r--r-- root/root usr/include/clang/Basic/Linkage.h
-rw-r--r-- root/root usr/include/clang/Basic/MacroBuilder.h
-rw-r--r-- root/root usr/include/clang/Basic/Module.h
-rw-r--r-- root/root usr/include/clang/Basic/ObjCRuntime.h
-rw-r--r-- root/root usr/include/clang/Basic/OnDiskHashTable.h
-rw-r--r-- root/root usr/include/clang/Basic/OpenCL.h
-rw-r--r-- root/root usr/include/clang/Basic/OpenCLExtensions.def
@ -183,6 +211,7 @@ drwxr-xr-x root/root usr/include/clang/Basic/
-rw-r--r-- root/root usr/include/clang/Basic/OperatorKinds.h
-rw-r--r-- root/root usr/include/clang/Basic/PartialDiagnostic.h
-rw-r--r-- root/root usr/include/clang/Basic/PrettyStackTrace.h
-rw-r--r-- root/root usr/include/clang/Basic/Sanitizers.def
-rw-r--r-- root/root usr/include/clang/Basic/SourceLocation.h
-rw-r--r-- root/root usr/include/clang/Basic/SourceManager.h
-rw-r--r-- root/root usr/include/clang/Basic/SourceManagerInternals.h
@ -211,13 +240,11 @@ drwxr-xr-x root/root usr/include/clang/Driver/
-rw-r--r-- root/root usr/include/clang/Driver/ArgList.h
-rw-r--r-- root/root usr/include/clang/Driver/CC1AsOptions.h
-rw-r--r-- root/root usr/include/clang/Driver/CC1AsOptions.inc
-rw-r--r-- root/root usr/include/clang/Driver/CC1Options.h
-rw-r--r-- root/root usr/include/clang/Driver/CC1Options.inc
-rw-r--r-- root/root usr/include/clang/Driver/CC1Options.h (EMPTY)
-rw-r--r-- root/root usr/include/clang/Driver/Compilation.h
-rw-r--r-- root/root usr/include/clang/Driver/Driver.h
-rw-r--r-- root/root usr/include/clang/Driver/DriverDiagnostic.h
-rw-r--r-- root/root usr/include/clang/Driver/Job.h
-rw-r--r-- root/root usr/include/clang/Driver/ObjCRuntime.h
-rw-r--r-- root/root usr/include/clang/Driver/OptSpecifier.h
-rw-r--r-- root/root usr/include/clang/Driver/OptTable.h
-rw-r--r-- root/root usr/include/clang/Driver/Option.h
@ -238,30 +265,26 @@ drwxr-xr-x root/root usr/include/clang/Edit/
drwxr-xr-x root/root usr/include/clang/Frontend/
-rw-r--r-- root/root usr/include/clang/Frontend/ASTConsumers.h
-rw-r--r-- root/root usr/include/clang/Frontend/ASTUnit.h
-rw-r--r-- root/root usr/include/clang/Frontend/Analyses.def
-rw-r--r-- root/root usr/include/clang/Frontend/AnalyzerOptions.h
-rw-r--r-- root/root usr/include/clang/Frontend/ChainedDiagnosticConsumer.h
-rw-r--r-- root/root usr/include/clang/Frontend/ChainedIncludesSource.h
-rw-r--r-- root/root usr/include/clang/Frontend/CodeGenOptions.def
-rw-r--r-- root/root usr/include/clang/Frontend/CodeGenOptions.h
-rw-r--r-- root/root usr/include/clang/Frontend/CommandLineSourceLoc.h
-rw-r--r-- root/root usr/include/clang/Frontend/CompilerInstance.h
-rw-r--r-- root/root usr/include/clang/Frontend/CompilerInvocation.h
-rw-r--r-- root/root usr/include/clang/Frontend/DependencyOutputOptions.h
-rw-r--r-- root/root usr/include/clang/Frontend/DiagnosticOptions.h
-rw-r--r-- root/root usr/include/clang/Frontend/DiagnosticRenderer.h
-rw-r--r-- root/root usr/include/clang/Frontend/FrontendAction.h
-rw-r--r-- root/root usr/include/clang/Frontend/FrontendActions.h
-rw-r--r-- root/root usr/include/clang/Frontend/FrontendDiagnostic.h
-rw-r--r-- root/root usr/include/clang/Frontend/FrontendOptions.h
-rw-r--r-- root/root usr/include/clang/Frontend/FrontendPluginRegistry.h
-rw-r--r-- root/root usr/include/clang/Frontend/HeaderSearchOptions.h
-rw-r--r-- root/root usr/include/clang/Frontend/LangStandard.h
-rw-r--r-- root/root usr/include/clang/Frontend/LangStandards.def
-rw-r--r-- root/root usr/include/clang/Frontend/LayoutOverrideSource.h
-rw-r--r-- root/root usr/include/clang/Frontend/LogDiagnosticPrinter.h
-rw-r--r-- root/root usr/include/clang/Frontend/MigratorOptions.h
-rw-r--r-- root/root usr/include/clang/Frontend/MultiplexConsumer.h
-rw-r--r-- root/root usr/include/clang/Frontend/PreprocessorOptions.h
-rw-r--r-- root/root usr/include/clang/Frontend/PreprocessorOutputOptions.h
-rw-r--r-- root/root usr/include/clang/Frontend/SerializedDiagnosticPrinter.h
-rw-r--r-- root/root usr/include/clang/Frontend/TextDiagnostic.h
@ -278,6 +301,7 @@ drwxr-xr-x root/root usr/include/clang/Lex/
-rw-r--r-- root/root usr/include/clang/Lex/ExternalPreprocessorSource.h
-rw-r--r-- root/root usr/include/clang/Lex/HeaderMap.h
-rw-r--r-- root/root usr/include/clang/Lex/HeaderSearch.h
-rw-r--r-- root/root usr/include/clang/Lex/HeaderSearchOptions.h
-rw-r--r-- root/root usr/include/clang/Lex/LexDiagnostic.h
-rw-r--r-- root/root usr/include/clang/Lex/Lexer.h
-rw-r--r-- root/root usr/include/clang/Lex/LiteralSupport.h
@ -286,12 +310,14 @@ drwxr-xr-x root/root usr/include/clang/Lex/
-rw-r--r-- root/root usr/include/clang/Lex/ModuleMap.h
-rw-r--r-- root/root usr/include/clang/Lex/MultipleIncludeOpt.h
-rw-r--r-- root/root usr/include/clang/Lex/PPCallbacks.h
-rw-r--r-- root/root usr/include/clang/Lex/PPMutationListener.h
-rw-r--r-- root/root usr/include/clang/Lex/PTHLexer.h
-rw-r--r-- root/root usr/include/clang/Lex/PTHManager.h
-rw-r--r-- root/root usr/include/clang/Lex/Pragma.h
-rw-r--r-- root/root usr/include/clang/Lex/PreprocessingRecord.h
-rw-r--r-- root/root usr/include/clang/Lex/Preprocessor.h
-rw-r--r-- root/root usr/include/clang/Lex/PreprocessorLexer.h
-rw-r--r-- root/root usr/include/clang/Lex/PreprocessorOptions.h
-rw-r--r-- root/root usr/include/clang/Lex/ScratchBuffer.h
-rw-r--r-- root/root usr/include/clang/Lex/Token.h
-rw-r--r-- root/root usr/include/clang/Lex/TokenConcatenation.h
@ -302,15 +328,17 @@ drwxr-xr-x root/root usr/include/clang/Parse/
-rw-r--r-- root/root usr/include/clang/Parse/ParseDiagnostic.h
-rw-r--r-- root/root usr/include/clang/Parse/Parser.h
drwxr-xr-x root/root usr/include/clang/Rewrite/
-rw-r--r-- root/root usr/include/clang/Rewrite/ASTConsumers.h
-rw-r--r-- root/root usr/include/clang/Rewrite/DeltaTree.h
-rw-r--r-- root/root usr/include/clang/Rewrite/FixItRewriter.h
-rw-r--r-- root/root usr/include/clang/Rewrite/FrontendActions.h
-rw-r--r-- root/root usr/include/clang/Rewrite/HTMLRewrite.h
-rw-r--r-- root/root usr/include/clang/Rewrite/RewriteRope.h
-rw-r--r-- root/root usr/include/clang/Rewrite/Rewriter.h
-rw-r--r-- root/root usr/include/clang/Rewrite/Rewriters.h
-rw-r--r-- root/root usr/include/clang/Rewrite/TokenRewriter.h
drwxr-xr-x root/root usr/include/clang/Rewrite/Core/
-rw-r--r-- root/root usr/include/clang/Rewrite/Core/DeltaTree.h
-rw-r--r-- root/root usr/include/clang/Rewrite/Core/HTMLRewrite.h
-rw-r--r-- root/root usr/include/clang/Rewrite/Core/RewriteRope.h
-rw-r--r-- root/root usr/include/clang/Rewrite/Core/Rewriter.h
-rw-r--r-- root/root usr/include/clang/Rewrite/Core/TokenRewriter.h
drwxr-xr-x root/root usr/include/clang/Rewrite/Frontend/
-rw-r--r-- root/root usr/include/clang/Rewrite/Frontend/ASTConsumers.h
-rw-r--r-- root/root usr/include/clang/Rewrite/Frontend/FixItRewriter.h
-rw-r--r-- root/root usr/include/clang/Rewrite/Frontend/FrontendActions.h
-rw-r--r-- root/root usr/include/clang/Rewrite/Frontend/Rewriters.h
drwxr-xr-x root/root usr/include/clang/Sema/
-rw-r--r-- root/root usr/include/clang/Sema/AnalysisBasedWarnings.h
-rw-r--r-- root/root usr/include/clang/Sema/AttrParsedAttrKinds.inc
@ -319,6 +347,7 @@ drwxr-xr-x root/root usr/include/clang/Sema/
-rw-r--r-- root/root usr/include/clang/Sema/AttributeList.h
-rw-r--r-- root/root usr/include/clang/Sema/CXXFieldCollector.h
-rw-r--r-- root/root usr/include/clang/Sema/CodeCompleteConsumer.h
-rw-r--r-- root/root usr/include/clang/Sema/CodeCompleteOptions.h
-rw-r--r-- root/root usr/include/clang/Sema/DeclSpec.h
-rw-r--r-- root/root usr/include/clang/Sema/DelayedDiagnostic.h
-rw-r--r-- root/root usr/include/clang/Sema/Designator.h
@ -327,6 +356,7 @@ drwxr-xr-x root/root usr/include/clang/Sema/
-rw-r--r-- root/root usr/include/clang/Sema/Initialization.h
-rw-r--r-- root/root usr/include/clang/Sema/LocInfoType.h
-rw-r--r-- root/root usr/include/clang/Sema/Lookup.h
-rw-r--r-- root/root usr/include/clang/Sema/MultiplexExternalSemaSource.h
-rw-r--r-- root/root usr/include/clang/Sema/ObjCMethodList.h
-rw-r--r-- root/root usr/include/clang/Sema/Overload.h
-rw-r--r-- root/root usr/include/clang/Sema/Ownership.h
@ -358,9 +388,10 @@ drwxr-xr-x root/root usr/include/clang/StaticAnalyzer/
drwxr-xr-x root/root usr/include/clang/StaticAnalyzer/Checkers/
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Checkers/CommonBugCategories.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Checkers/DereferenceChecker.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h
drwxr-xr-x root/root usr/include/clang/StaticAnalyzer/Core/
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/Analyses.def
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
drwxr-xr-x root/root usr/include/clang/StaticAnalyzer/Core/BugReporter/
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h
@ -372,19 +403,21 @@ drwxr-xr-x root/root usr/include/clang/StaticAnalyzer/Core/BugReporter/
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
drwxr-xr-x root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/ObjCMessage.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h
@ -402,7 +435,14 @@ drwxr-xr-x root/root usr/include/clang/StaticAnalyzer/Frontend/
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
-rw-r--r-- root/root usr/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
drwxr-xr-x root/root usr/include/clang/Tooling/
-rw-r--r-- root/root usr/include/clang/Tooling/ArgumentsAdjusters.h
-rw-r--r-- root/root usr/include/clang/Tooling/CommonOptionsParser.h
-rw-r--r-- root/root usr/include/clang/Tooling/CompilationDatabase.h
-rw-r--r-- root/root usr/include/clang/Tooling/CompilationDatabasePluginRegistry.h
-rw-r--r-- root/root usr/include/clang/Tooling/FileMatchTrie.h
-rw-r--r-- root/root usr/include/clang/Tooling/JSONCompilationDatabase.h
-rw-r--r-- root/root usr/include/clang/Tooling/Refactoring.h
-rw-r--r-- root/root usr/include/clang/Tooling/RefactoringCallbacks.h
-rw-r--r-- root/root usr/include/clang/Tooling/Tooling.h
drwxr-xr-x root/root usr/include/llvm-c/
-rw-r--r-- root/root usr/include/llvm-c/Analysis.h
@ -414,6 +454,7 @@ drwxr-xr-x root/root usr/include/llvm-c/
-rw-r--r-- root/root usr/include/llvm-c/ExecutionEngine.h
-rw-r--r-- root/root usr/include/llvm-c/Initialization.h
-rw-r--r-- root/root usr/include/llvm-c/LinkTimeOptimizer.h
-rw-r--r-- root/root usr/include/llvm-c/Linker.h
-rw-r--r-- root/root usr/include/llvm-c/Object.h
-rw-r--r-- root/root usr/include/llvm-c/Target.h
-rw-r--r-- root/root usr/include/llvm-c/TargetMachine.h
@ -449,6 +490,7 @@ drwxr-xr-x root/root usr/include/llvm/ADT/
-rw-r--r-- root/root usr/include/llvm/ADT/IntEqClasses.h
-rw-r--r-- root/root usr/include/llvm/ADT/IntervalMap.h
-rw-r--r-- root/root usr/include/llvm/ADT/IntrusiveRefCntPtr.h
-rw-r--r-- root/root usr/include/llvm/ADT/MapVector.h
-rw-r--r-- root/root usr/include/llvm/ADT/NullablePtr.h
-rw-r--r-- root/root usr/include/llvm/ADT/Optional.h
-rw-r--r-- root/root usr/include/llvm/ADT/OwningPtr.h
@ -476,7 +518,6 @@ drwxr-xr-x root/root usr/include/llvm/ADT/
-rw-r--r-- root/root usr/include/llvm/ADT/StringSet.h
-rw-r--r-- root/root usr/include/llvm/ADT/StringSwitch.h
-rw-r--r-- root/root usr/include/llvm/ADT/TinyPtrVector.h
-rw-r--r-- root/root usr/include/llvm/ADT/Trie.h
-rw-r--r-- root/root usr/include/llvm/ADT/Triple.h
-rw-r--r-- root/root usr/include/llvm/ADT/Twine.h
-rw-r--r-- root/root usr/include/llvm/ADT/UniqueVector.h
@ -485,6 +526,7 @@ drwxr-xr-x root/root usr/include/llvm/ADT/
-rw-r--r-- root/root usr/include/llvm/ADT/edit_distance.h
-rw-r--r-- root/root usr/include/llvm/ADT/ilist.h
-rw-r--r-- root/root usr/include/llvm/ADT/ilist_node.h
-rw-r--r-- root/root usr/include/llvm/AddressingMode.h
drwxr-xr-x root/root usr/include/llvm/Analysis/
-rw-r--r-- root/root usr/include/llvm/Analysis/AliasAnalysis.h
-rw-r--r-- root/root usr/include/llvm/Analysis/AliasSetTracker.h
@ -497,9 +539,8 @@ drwxr-xr-x root/root usr/include/llvm/Analysis/
-rw-r--r-- root/root usr/include/llvm/Analysis/CodeMetrics.h
-rw-r--r-- root/root usr/include/llvm/Analysis/ConstantFolding.h
-rw-r--r-- root/root usr/include/llvm/Analysis/ConstantsScanner.h
-rw-r--r-- root/root usr/include/llvm/Analysis/DIBuilder.h
-rw-r--r-- root/root usr/include/llvm/Analysis/DOTGraphTraitsPass.h
-rw-r--r-- root/root usr/include/llvm/Analysis/DebugInfo.h
-rw-r--r-- root/root usr/include/llvm/Analysis/DependenceAnalysis.h
-rw-r--r-- root/root usr/include/llvm/Analysis/DomPrinter.h
-rw-r--r-- root/root usr/include/llvm/Analysis/DominanceFrontier.h
-rw-r--r-- root/root usr/include/llvm/Analysis/DominatorInternals.h
@ -516,8 +557,8 @@ drwxr-xr-x root/root usr/include/llvm/Analysis/
-rw-r--r-- root/root usr/include/llvm/Analysis/LibCallSemantics.h
-rw-r--r-- root/root usr/include/llvm/Analysis/Lint.h
-rw-r--r-- root/root usr/include/llvm/Analysis/Loads.h
-rw-r--r-- root/root usr/include/llvm/Analysis/LoopDependenceAnalysis.h
-rw-r--r-- root/root usr/include/llvm/Analysis/LoopInfo.h
-rw-r--r-- root/root usr/include/llvm/Analysis/LoopInfoImpl.h
-rw-r--r-- root/root usr/include/llvm/Analysis/LoopIterator.h
-rw-r--r-- root/root usr/include/llvm/Analysis/LoopPass.h
-rw-r--r-- root/root usr/include/llvm/Analysis/MemoryBuiltins.h
@ -527,6 +568,8 @@ drwxr-xr-x root/root usr/include/llvm/Analysis/
-rw-r--r-- root/root usr/include/llvm/Analysis/PathNumbering.h
-rw-r--r-- root/root usr/include/llvm/Analysis/PathProfileInfo.h
-rw-r--r-- root/root usr/include/llvm/Analysis/PostDominators.h
-rw-r--r-- root/root usr/include/llvm/Analysis/ProfileDataLoader.h
-rw-r--r-- root/root usr/include/llvm/Analysis/ProfileDataTypes.h
-rw-r--r-- root/root usr/include/llvm/Analysis/ProfileInfo.h
-rw-r--r-- root/root usr/include/llvm/Analysis/ProfileInfoLoader.h
-rw-r--r-- root/root usr/include/llvm/Analysis/ProfileInfoTypes.h
@ -565,6 +608,7 @@ drwxr-xr-x root/root usr/include/llvm/CodeGen/
-rw-r--r-- root/root usr/include/llvm/CodeGen/AsmPrinter.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/CalcSpillWeights.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/CallingConvLower.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/CommandFlags.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/DFAPacketizer.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/EdgeBundles.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/FastISel.h
@ -608,6 +652,7 @@ drwxr-xr-x root/root usr/include/llvm/CodeGen/
-rw-r--r-- root/root usr/include/llvm/CodeGen/MachineModuleInfoImpls.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/MachineOperand.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/MachinePassRegistry.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/MachinePostDominators.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/MachineRegisterInfo.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/MachineRelocation.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/MachineSSAUpdater.h
@ -621,14 +666,16 @@ drwxr-xr-x root/root usr/include/llvm/CodeGen/PBQP/Heuristics/
-rw-r--r-- root/root usr/include/llvm/CodeGen/PBQP/Math.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/PBQP/Solution.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/Passes.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/ProcessImplicitDefs.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/PseudoSourceValue.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/RegAllocPBQP.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/RegAllocRegistry.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/RegisterClassInfo.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/RegisterPressure.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/RegisterScavenging.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/ResourcePriorityQueue.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/RuntimeLibcalls.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/ScheduleDAG.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/ScheduleDAGILP.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/ScheduleDAGInstrs.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/ScheduleHazardRecognizer.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/SchedulerRegistry.h
@ -638,6 +685,7 @@ drwxr-xr-x root/root usr/include/llvm/CodeGen/PBQP/Heuristics/
-rw-r--r-- root/root usr/include/llvm/CodeGen/SelectionDAGNodes.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/SlotIndexes.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/TargetSchedule.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/ValueTypes.h
-rw-r--r-- root/root usr/include/llvm/CodeGen/ValueTypes.td
drwxr-xr-x root/root usr/include/llvm/Config/
@ -649,6 +697,9 @@ drwxr-xr-x root/root usr/include/llvm/Config/
-rw-r--r-- root/root usr/include/llvm/Config/llvm-config.h
-rw-r--r-- root/root usr/include/llvm/Constant.h
-rw-r--r-- root/root usr/include/llvm/Constants.h
-rw-r--r-- root/root usr/include/llvm/DIBuilder.h
-rw-r--r-- root/root usr/include/llvm/DataLayout.h
-rw-r--r-- root/root usr/include/llvm/DebugInfo.h
drwxr-xr-x root/root usr/include/llvm/DebugInfo/
-rw-r--r-- root/root usr/include/llvm/DebugInfo/DIContext.h
-rw-r--r-- root/root usr/include/llvm/DefaultPasses.h
@ -656,19 +707,21 @@ drwxr-xr-x root/root usr/include/llvm/DebugInfo/
drwxr-xr-x root/root usr/include/llvm/ExecutionEngine/
-rw-r--r-- root/root usr/include/llvm/ExecutionEngine/ExecutionEngine.h
-rw-r--r-- root/root usr/include/llvm/ExecutionEngine/GenericValue.h
-rw-r--r-- root/root usr/include/llvm/ExecutionEngine/IntelJITEventsWrapper.h
-rw-r--r-- root/root usr/include/llvm/ExecutionEngine/Interpreter.h
-rw-r--r-- root/root usr/include/llvm/ExecutionEngine/JIT.h
-rw-r--r-- root/root usr/include/llvm/ExecutionEngine/JITEventListener.h
-rw-r--r-- root/root usr/include/llvm/ExecutionEngine/JITMemoryManager.h
-rw-r--r-- root/root usr/include/llvm/ExecutionEngine/MCJIT.h
-rw-r--r-- root/root usr/include/llvm/ExecutionEngine/OProfileWrapper.h
-rw-r--r-- root/root usr/include/llvm/ExecutionEngine/ObjectBuffer.h
-rw-r--r-- root/root usr/include/llvm/ExecutionEngine/ObjectImage.h
-rw-r--r-- root/root usr/include/llvm/ExecutionEngine/RuntimeDyld.h
-rw-r--r-- root/root usr/include/llvm/Function.h
-rw-r--r-- root/root usr/include/llvm/GVMaterializer.h
-rw-r--r-- root/root usr/include/llvm/GlobalAlias.h
-rw-r--r-- root/root usr/include/llvm/GlobalValue.h
-rw-r--r-- root/root usr/include/llvm/GlobalVariable.h
-rw-r--r-- root/root usr/include/llvm/IRBuilder.h
-rw-r--r-- root/root usr/include/llvm/InitializePasses.h
-rw-r--r-- root/root usr/include/llvm/InlineAsm.h
-rw-r--r-- root/root usr/include/llvm/InstrTypes.h
@ -682,7 +735,8 @@ drwxr-xr-x root/root usr/include/llvm/ExecutionEngine/
-rw-r--r-- root/root usr/include/llvm/IntrinsicsARM.td
-rw-r--r-- root/root usr/include/llvm/IntrinsicsCellSPU.td
-rw-r--r-- root/root usr/include/llvm/IntrinsicsHexagon.td
-rw-r--r-- root/root usr/include/llvm/IntrinsicsPTX.td
-rw-r--r-- root/root usr/include/llvm/IntrinsicsMips.td
-rw-r--r-- root/root usr/include/llvm/IntrinsicsNVVM.td
-rw-r--r-- root/root usr/include/llvm/IntrinsicsPowerPC.td
-rw-r--r-- root/root usr/include/llvm/IntrinsicsX86.td
-rw-r--r-- root/root usr/include/llvm/IntrinsicsXCore.td
@ -708,6 +762,7 @@ drwxr-xr-x root/root usr/include/llvm/MC/
-rw-r--r-- root/root usr/include/llvm/MC/MCELFObjectWriter.h
-rw-r--r-- root/root usr/include/llvm/MC/MCELFSymbolFlags.h
-rw-r--r-- root/root usr/include/llvm/MC/MCExpr.h
-rw-r--r-- root/root usr/include/llvm/MC/MCFixedLenDisassembler.h
-rw-r--r-- root/root usr/include/llvm/MC/MCFixup.h
-rw-r--r-- root/root usr/include/llvm/MC/MCFixupKindInfo.h
-rw-r--r-- root/root usr/include/llvm/MC/MCInst.h
@ -731,6 +786,7 @@ drwxr-xr-x root/root usr/include/llvm/MC/MCParser/
-rw-r--r-- root/root usr/include/llvm/MC/MCParser/MCAsmParserExtension.h
-rw-r--r-- root/root usr/include/llvm/MC/MCParser/MCParsedAsmOperand.h
-rw-r--r-- root/root usr/include/llvm/MC/MCRegisterInfo.h
-rw-r--r-- root/root usr/include/llvm/MC/MCSchedule.h
-rw-r--r-- root/root usr/include/llvm/MC/MCSection.h
-rw-r--r-- root/root usr/include/llvm/MC/MCSectionCOFF.h
-rw-r--r-- root/root usr/include/llvm/MC/MCSectionELF.h
@ -746,6 +802,7 @@ drwxr-xr-x root/root usr/include/llvm/MC/MCParser/
-rw-r--r-- root/root usr/include/llvm/MC/MachineLocation.h
-rw-r--r-- root/root usr/include/llvm/MC/SectionKind.h
-rw-r--r-- root/root usr/include/llvm/MC/SubtargetFeature.h
-rw-r--r-- root/root usr/include/llvm/MDBuilder.h
-rw-r--r-- root/root usr/include/llvm/Metadata.h
-rw-r--r-- root/root usr/include/llvm/Module.h
drwxr-xr-x root/root usr/include/llvm/Object/
@ -758,6 +815,7 @@ drwxr-xr-x root/root usr/include/llvm/Object/
-rw-r--r-- root/root usr/include/llvm/Object/MachOFormat.h
-rw-r--r-- root/root usr/include/llvm/Object/MachOObject.h
-rw-r--r-- root/root usr/include/llvm/Object/ObjectFile.h
-rw-r--r-- root/root usr/include/llvm/Object/RelocVisitor.h
-rw-r--r-- root/root usr/include/llvm/OperandTraits.h
-rw-r--r-- root/root usr/include/llvm/Operator.h
-rw-r--r-- root/root usr/include/llvm/Pass.h
@ -799,6 +857,7 @@ drwxr-xr-x root/root usr/include/llvm/Support/
-rw-r--r-- root/root usr/include/llvm/Support/Errno.h
-rw-r--r-- root/root usr/include/llvm/Support/ErrorHandling.h
-rw-r--r-- root/root usr/include/llvm/Support/FEnv.h
-rw-r--r-- root/root usr/include/llvm/Support/FileOutputBuffer.h
-rw-r--r-- root/root usr/include/llvm/Support/FileSystem.h
-rw-r--r-- root/root usr/include/llvm/Support/FileUtilities.h
-rw-r--r-- root/root usr/include/llvm/Support/Format.h
@ -807,16 +866,17 @@ drwxr-xr-x root/root usr/include/llvm/Support/
-rw-r--r-- root/root usr/include/llvm/Support/GetElementPtrTypeIterator.h
-rw-r--r-- root/root usr/include/llvm/Support/GraphWriter.h
-rw-r--r-- root/root usr/include/llvm/Support/Host.h
-rw-r--r-- root/root usr/include/llvm/Support/IRBuilder.h
-rw-r--r-- root/root usr/include/llvm/Support/IRReader.h
-rw-r--r-- root/root usr/include/llvm/Support/IncludeFile.h
-rw-r--r-- root/root usr/include/llvm/Support/InstIterator.h
-rw-r--r-- root/root usr/include/llvm/Support/InstVisitor.h
-rw-r--r-- root/root usr/include/llvm/Support/IntegersSubset.h
-rw-r--r-- root/root usr/include/llvm/Support/IntegersSubsetMapping.h
-rw-r--r-- root/root usr/include/llvm/Support/LEB128.h
-rw-r--r-- root/root usr/include/llvm/Support/LICENSE.TXT
-rw-r--r-- root/root usr/include/llvm/Support/LeakDetector.h
-rw-r--r-- root/root usr/include/llvm/Support/Locale.h
-rw-r--r-- root/root usr/include/llvm/Support/LockFileManager.h
-rw-r--r-- root/root usr/include/llvm/Support/MDBuilder.h
-rw-r--r-- root/root usr/include/llvm/Support/MachO.h
-rw-r--r-- root/root usr/include/llvm/Support/ManagedStatic.h
-rw-r--r-- root/root usr/include/llvm/Support/MathExtras.h
@ -861,7 +921,6 @@ drwxr-xr-x root/root usr/include/llvm/Support/
-rw-r--r-- root/root usr/include/llvm/Support/TimeValue.h
-rw-r--r-- root/root usr/include/llvm/Support/Timer.h
-rw-r--r-- root/root usr/include/llvm/Support/ToolOutputFile.h
-rw-r--r-- root/root usr/include/llvm/Support/TypeBuilder.h
-rw-r--r-- root/root usr/include/llvm/Support/Valgrind.h
-rw-r--r-- root/root usr/include/llvm/Support/ValueHandle.h
-rw-r--r-- root/root usr/include/llvm/Support/Win64EH.h
@ -876,18 +935,17 @@ drwxr-xr-x root/root usr/include/llvm/TableGen/
-rw-r--r-- root/root usr/include/llvm/TableGen/Error.h
-rw-r--r-- root/root usr/include/llvm/TableGen/Main.h
-rw-r--r-- root/root usr/include/llvm/TableGen/Record.h
-rw-r--r-- root/root usr/include/llvm/TableGen/TableGenAction.h
-rw-r--r-- root/root usr/include/llvm/TableGen/StringMatcher.h
-rw-r--r-- root/root usr/include/llvm/TableGen/TableGenBackend.h
drwxr-xr-x root/root usr/include/llvm/Target/
-rw-r--r-- root/root usr/include/llvm/Target/Mangler.h
-rw-r--r-- root/root usr/include/llvm/Target/Target.td
-rw-r--r-- root/root usr/include/llvm/Target/TargetCallingConv.h
-rw-r--r-- root/root usr/include/llvm/Target/TargetCallingConv.td
-rw-r--r-- root/root usr/include/llvm/Target/TargetData.h
-rw-r--r-- root/root usr/include/llvm/Target/TargetELFWriterInfo.h
-rw-r--r-- root/root usr/include/llvm/Target/TargetFrameLowering.h
-rw-r--r-- root/root usr/include/llvm/Target/TargetInstrInfo.h
-rw-r--r-- root/root usr/include/llvm/Target/TargetIntrinsicInfo.h
-rw-r--r-- root/root usr/include/llvm/Target/TargetItinerary.td
-rw-r--r-- root/root usr/include/llvm/Target/TargetJITInfo.h
-rw-r--r-- root/root usr/include/llvm/Target/TargetLibraryInfo.h
-rw-r--r-- root/root usr/include/llvm/Target/TargetLowering.h
@ -900,6 +958,8 @@ drwxr-xr-x root/root usr/include/llvm/Target/
-rw-r--r-- root/root usr/include/llvm/Target/TargetSelectionDAG.td
-rw-r--r-- root/root usr/include/llvm/Target/TargetSelectionDAGInfo.h
-rw-r--r-- root/root usr/include/llvm/Target/TargetSubtargetInfo.h
-rw-r--r-- root/root usr/include/llvm/Target/TargetTransformImpl.h
-rw-r--r-- root/root usr/include/llvm/TargetTransformInfo.h
drwxr-xr-x root/root usr/include/llvm/Transforms/
-rw-r--r-- root/root usr/include/llvm/Transforms/IPO.h
drwxr-xr-x root/root usr/include/llvm/Transforms/IPO/
@ -911,20 +971,25 @@ drwxr-xr-x root/root usr/include/llvm/Transforms/Utils/
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/AddrModeMatcher.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/BasicBlockUtils.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/BuildLibCalls.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/BypassSlowDivision.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/Cloning.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/CmpInstAnalysis.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/FunctionUtils.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/CodeExtractor.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/IntegerDivision.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/Local.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/ModuleUtils.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/PromoteMemToReg.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/SSAUpdater.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/SimplifyIndVar.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/SimplifyLibCalls.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/UnrollLoop.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Utils/ValueMapper.h
-rw-r--r-- root/root usr/include/llvm/Transforms/Vectorize.h
-rw-r--r-- root/root usr/include/llvm/Type.h
-rw-r--r-- root/root usr/include/llvm/TypeBuilder.h
-rw-r--r-- root/root usr/include/llvm/TypeFinder.h
-rw-r--r-- root/root usr/include/llvm/Use.h
-rw-r--r-- root/root usr/include/llvm/User.h
-rw-r--r-- root/root usr/include/llvm/Value.h
@ -933,42 +998,49 @@ drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/BugpointPasses.so
-rwxr-xr-x root/root usr/lib/LLVMHello.so
drwxr-xr-x root/root usr/lib/clang/
drwxr-xr-x root/root usr/lib/clang/3.1/
drwxr-xr-x root/root usr/lib/clang/3.1/include/
-rw-r--r-- root/root usr/lib/clang/3.1/include/altivec.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/arm_neon.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/avx2intrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/avxintrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/bmi2intrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/bmiintrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/cpuid.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/emmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/float.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/fma4intrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/immintrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/iso646.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/limits.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/lzcntintrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/mm3dnow.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/mm_malloc.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/mmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/module.map
-rw-r--r-- root/root usr/lib/clang/3.1/include/nmmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/pmmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/popcntintrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/smmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/stdalign.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/stdarg.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/stdbool.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/stddef.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/stdint.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/tgmath.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/tmmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/unwind.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/varargs.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/wmmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/x86intrin.h
-rw-r--r-- root/root usr/lib/clang/3.1/include/xmmintrin.h
drwxr-xr-x root/root usr/lib/clang/3.2/
drwxr-xr-x root/root usr/lib/clang/3.2/include/
-rw-r--r-- root/root usr/lib/clang/3.2/include/__wmmintrin_aes.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/__wmmintrin_pclmul.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/altivec.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/ammintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/arm_neon.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/avx2intrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/avxintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/bmi2intrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/bmiintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/cpuid.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/emmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/f16cintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/float.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/fma4intrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/fmaintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/immintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/iso646.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/limits.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/lzcntintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/mm3dnow.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/mm_malloc.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/mmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/module.map
-rw-r--r-- root/root usr/lib/clang/3.2/include/nmmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/pmmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/popcntintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/rtmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/smmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/stdalign.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/stdarg.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/stdbool.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/stddef.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/stdint.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/tgmath.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/tmmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/unwind.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/varargs.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/wmmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/x86intrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/xmmintrin.h
-rw-r--r-- root/root usr/lib/clang/3.2/include/xopintrin.h
-rwxr-xr-x root/root usr/lib/libLLVMARMAsmParser.a
-rwxr-xr-x root/root usr/lib/libLLVMARMAsmPrinter.a
-rwxr-xr-x root/root usr/lib/libLLVMARMCodeGen.a
@ -1019,11 +1091,11 @@ drwxr-xr-x root/root usr/lib/clang/3.1/include/
-rwxr-xr-x root/root usr/lib/libLLVMMipsDesc.a
-rwxr-xr-x root/root usr/lib/libLLVMMipsDisassembler.a
-rwxr-xr-x root/root usr/lib/libLLVMMipsInfo.a
-rwxr-xr-x root/root usr/lib/libLLVMNVPTXAsmPrinter.a
-rwxr-xr-x root/root usr/lib/libLLVMNVPTXCodeGen.a
-rwxr-xr-x root/root usr/lib/libLLVMNVPTXDesc.a
-rwxr-xr-x root/root usr/lib/libLLVMNVPTXInfo.a
-rwxr-xr-x root/root usr/lib/libLLVMObject.a
-rwxr-xr-x root/root usr/lib/libLLVMPTXAsmPrinter.a
-rwxr-xr-x root/root usr/lib/libLLVMPTXCodeGen.a
-rwxr-xr-x root/root usr/lib/libLLVMPTXDesc.a
-rwxr-xr-x root/root usr/lib/libLLVMPTXInfo.a
-rwxr-xr-x root/root usr/lib/libLLVMPowerPCAsmPrinter.a
-rwxr-xr-x root/root usr/lib/libLLVMPowerPCCodeGen.a
-rwxr-xr-x root/root usr/lib/libLLVMPowerPCDesc.a
@ -1057,6 +1129,7 @@ drwxr-xr-x root/root usr/lib/clang/3.1/include/
-rwxr-xr-x root/root usr/lib/libclang.so
-rwxr-xr-x root/root usr/lib/libclangARCMigrate.a
-rwxr-xr-x root/root usr/lib/libclangAST.a
-rwxr-xr-x root/root usr/lib/libclangASTMatchers.a
-rwxr-xr-x root/root usr/lib/libclangAnalysis.a
-rwxr-xr-x root/root usr/lib/libclangBasic.a
-rwxr-xr-x root/root usr/lib/libclangCodeGen.a
@ -1066,7 +1139,8 @@ drwxr-xr-x root/root usr/lib/clang/3.1/include/
-rwxr-xr-x root/root usr/lib/libclangFrontendTool.a
-rwxr-xr-x root/root usr/lib/libclangLex.a
-rwxr-xr-x root/root usr/lib/libclangParse.a
-rwxr-xr-x root/root usr/lib/libclangRewrite.a
-rwxr-xr-x root/root usr/lib/libclangRewriteCore.a
-rwxr-xr-x root/root usr/lib/libclangRewriteFrontend.a
-rwxr-xr-x root/root usr/lib/libclangSema.a
-rwxr-xr-x root/root usr/lib/libclangSerialization.a
-rwxr-xr-x root/root usr/lib/libclangStaticAnalyzerCheckers.a
@ -1077,24 +1151,4 @@ drwxr-xr-x root/root usr/lib/clang/3.1/include/
-rwxr-xr-x root/root usr/lib/libprofile_rt.so
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/bugpoint.1.gz
-rw-r--r-- root/root usr/man/man1/clang.1.gz
-rw-r--r-- root/root usr/man/man1/lit.1.gz
-rw-r--r-- root/root usr/man/man1/llc.1.gz
-rw-r--r-- root/root usr/man/man1/lli.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-ar.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-as.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-bcanalyzer.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-config.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-cov.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-diff.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-dis.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-extract.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-ld.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-link.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-nm.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-prof.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-ranlib.1.gz
-rw-r--r-- root/root usr/man/man1/llvm-stress.1.gz
-rw-r--r-- root/root usr/man/man1/opt.1.gz
-rw-r--r-- root/root usr/man/man1/tblgen.1.gz

View File

@ -1,2 +1,2 @@
59bf2d3120a3805f27cafda3823caaf8 clang-3.1.src.tar.gz
16eaa7679f84113f65b12760fdfe4ee1 llvm-3.1.src.tar.gz
3896ef4334df08563b05d0848ba80582 clang-3.2.src.tar.gz
71610289bbc819e3e15fdd562809a2d7 llvm-3.2.src.tar.gz

View File

@ -4,7 +4,7 @@
# Packager: Tilman Sauerbeck, tilman at crux dot nu
name=llvm
version=3.1
version=3.2
release=1
source=(http://llvm.org/releases/$version/{$name,clang}-$version.src.tar.gz)

View File

@ -1 +1 @@
076a9f84d861d3f664a2878d5773ba78 php-5.4.9.tar.bz2
cb716b657a30570b9b468b9e7bc551a1 php-5.4.10.tar.bz2

View File

@ -4,7 +4,7 @@
# Depends on: apache libxml2
name=mod_php
version=5.4.9
version=5.4.10
release=1
source=(http://www.php.net/distributions/php-$version.tar.bz2)

View File

@ -1,2 +1,2 @@
076a9f84d861d3f664a2878d5773ba78 php-5.4.9.tar.bz2
cb716b657a30570b9b468b9e7bc551a1 php-5.4.10.tar.bz2
6297748058441ee6c6b88e429ee54ba1 php-fcgi

View File

@ -4,7 +4,7 @@
# Depends on: libpcre libxml2
name=php-fcgi
version=5.4.9
version=5.4.10
release=1
source=(http://www.php.net/distributions/php-$version.tar.bz2
php-fcgi)

View File

@ -1,2 +1,2 @@
076a9f84d861d3f664a2878d5773ba78 php-5.4.9.tar.bz2
cb716b657a30570b9b468b9e7bc551a1 php-5.4.10.tar.bz2
93be638b655e225b198d2a2ae69ca2fb php-fpm

View File

@ -4,7 +4,7 @@
# Depends on: libpcre libxml2
name=php-fpm
version=5.4.9
version=5.4.10
release=1
source=(http://www.php.net/distributions/php-$version.tar.bz2
php-fpm)

View File

@ -1 +1 @@
076a9f84d861d3f664a2878d5773ba78 php-5.4.9.tar.bz2
cb716b657a30570b9b468b9e7bc551a1 php-5.4.10.tar.bz2

View File

@ -4,7 +4,7 @@
# Depends on: mysql
name=php-mysql
version=5.4.9
version=5.4.10
release=1
source=(http://www.php.net/distributions/php-$version.tar.bz2)

View File

@ -1,2 +1,2 @@
683de3db60200bc38aa6e154aa925fa6 extensions.ini
076a9f84d861d3f664a2878d5773ba78 php-5.4.9.tar.bz2
cb716b657a30570b9b468b9e7bc551a1 php-5.4.10.tar.bz2

View File

@ -4,7 +4,7 @@
# Depends on: ncurses readline libpcre libxml2 curl db gdbm zip
name=php
version=5.4.9
version=5.4.10
release=1
source=(http://www.php.net/distributions/php-$version.tar.bz2
extensions.ini)

View File

@ -1,5 +1,5 @@
be543b65525f544386a2d8395ea19cdf aliases
9bbe0e2b86a8dae347630d7c30f34526 postfix-2.6-milter-header-checks-20090607-patch.gz
4fee7be8ce2c73e58b46a1a3eb253680 postfix-2.6.17.tar.gz
e365d1edd16578cfb308fe0f751d462b postfix-2.6.18.tar.gz
8bee559587e2ccbaf0aadd88b6ca339a postfix.patch
d18be5c17604f9c712a28339ff0f61cb postfix.rc

View File

@ -5,7 +5,7 @@
# Depends on: cyrus-sasl
name=postfix
version=2.6.17
version=2.6.18
release=2
source=(ftp://ftp.porcupine.org/mirrors/postfix-release/official/$name-$version.tar.gz \
ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-2.6-milter-header-checks-20090607-patch.gz

View File

@ -1 +1 @@
48fc7ef96672074f33085fe05e721bfa samhain_signed-3.0.8.tar.gz
8307f568a15a706192738ce9f3c72471 samhain_signed-3.0.9.tar.gz

View File

@ -3,7 +3,7 @@
# Maintainer: Juergen Daubert, jue at crux dot nu
name=samhain
version=3.0.8
version=3.0.9
release=1
source=(http://la-samhna.de/archive/${name}_signed-$version.tar.gz)

View File

@ -12,13 +12,13 @@ drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/wireshark
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libwireshark.la
lrwxrwxrwx root/root usr/lib/libwireshark.so -> libwireshark.so.2.0.3
lrwxrwxrwx root/root usr/lib/libwireshark.so.2 -> libwireshark.so.2.0.3
-rwxr-xr-x root/root usr/lib/libwireshark.so.2.0.3
lrwxrwxrwx root/root usr/lib/libwireshark.so -> libwireshark.so.2.0.4
lrwxrwxrwx root/root usr/lib/libwireshark.so.2 -> libwireshark.so.2.0.4
-rwxr-xr-x root/root usr/lib/libwireshark.so.2.0.4
-rwxr-xr-x root/root usr/lib/libwiretap.la
lrwxrwxrwx root/root usr/lib/libwiretap.so -> libwiretap.so.2.1.3
lrwxrwxrwx root/root usr/lib/libwiretap.so.2 -> libwiretap.so.2.1.3
-rwxr-xr-x root/root usr/lib/libwiretap.so.2.1.3
lrwxrwxrwx root/root usr/lib/libwiretap.so -> libwiretap.so.2.1.4
lrwxrwxrwx root/root usr/lib/libwiretap.so.2 -> libwiretap.so.2.1.4
-rwxr-xr-x root/root usr/lib/libwiretap.so.2.1.4
-rwxr-xr-x root/root usr/lib/libwsutil.la
lrwxrwxrwx root/root usr/lib/libwsutil.so -> libwsutil.so.2.0.0
lrwxrwxrwx root/root usr/lib/libwsutil.so.2 -> libwsutil.so.2.0.0

View File

@ -1 +1 @@
898b4c60e32efcd77ecf875a6ad07a92 wireshark-1.8.3.tar.bz2
ce22aa0fe7ecb5af39c93ff905c7d026 wireshark-1.8.4.tar.bz2

View File

@ -5,7 +5,7 @@
# Depends on: gtk libpcap libpcre
name=wireshark
version=1.8.3
version=1.8.4
release=1
source=(http://www.$name.org/download/src/all-versions/$name-$version.tar.bz2)

File diff suppressed because it is too large Load Diff

View File

@ -1,2 +1,2 @@
e8484468925cec8d9a84b8b04797e764 zsh-5.0.0.tar.bz2
fa5f0f2b64df667d17993d06bb11a7bc zsh-5.0.1.tar.bz2
d7b586ffa91bb63356ed0080699cef93 zsh-lovers.1

View File

@ -5,7 +5,7 @@
# Depends on: libpcre
name=zsh
version=5.0.0
version=5.0.1
release=1
source=(http://downloads.sourceforge.net/project/zsh/zsh/$version/zsh-$version.tar.bz2 \
zsh-lovers.1)