pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
*-netbsd: Upgrade to SVN r. 324234
Module Name: pkgsrc-wip
Committed By: Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By: kamil
Date: Mon Feb 5 14:21:46 2018 +0100
Changeset: c6e92440bc4b5584b2b8ed641327e57ab207c9fa
Modified Files:
clang-netbsd/Makefile.common
compiler-rt-netbsd/Makefile
lldb-netbsd/Makefile
lldb-netbsd/distinfo
llvm-netbsd/Makefile.common
Removed Files:
lldb-netbsd/patches/patch-source_Plugins_Process_NetBSD_NativeProcessNetBSD.cpp
Log Message:
*-netbsd: Upgrade to SVN r. 324234
Local patch merged upstream:
Fix a crash in *NetBSD::Factory::Launch
https://reviews.llvm.org/D42868
Set version to 7.0.0.
Sponsored by <The NetBSD Foundation>
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=c6e92440bc4b5584b2b8ed641327e57ab207c9fa
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
clang-netbsd/Makefile.common | 2 +-
compiler-rt-netbsd/Makefile | 2 +-
lldb-netbsd/Makefile | 2 +-
lldb-netbsd/distinfo | 1 -
..._Plugins_Process_NetBSD_NativeProcessNetBSD.cpp | 24 ----------------------
llvm-netbsd/Makefile.common | 4 ++--
6 files changed, 5 insertions(+), 30 deletions(-)
diffs:
diff --git a/clang-netbsd/Makefile.common b/clang-netbsd/Makefile.common
index b3e4d295d2..43dc44ff2e 100644
--- a/clang-netbsd/Makefile.common
+++ b/clang-netbsd/Makefile.common
@@ -6,7 +6,7 @@ CATEGORIES= lang devel
SVN_REPOSITORIES= clang
SVN_REPO.clang= http://llvm.org/svn/llvm-project/cfe/trunk
-SVN_REVISION.clang= 323038
+SVN_REVISION.clang= 324234
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= http://clang.llvm.org/
diff --git a/compiler-rt-netbsd/Makefile b/compiler-rt-netbsd/Makefile
index 51d20d71d3..022661cfc7 100644
--- a/compiler-rt-netbsd/Makefile
+++ b/compiler-rt-netbsd/Makefile
@@ -5,7 +5,7 @@ CATEGORIES= lang devel
SVN_REPOSITORIES= compiler-rt
SVN_REPO.compiler-rt= http://llvm.org/svn/llvm-project/compiler-rt/trunk
-SVN_REVISION.compiler-rt= 324121
+SVN_REVISION.compiler-rt= 324234
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= http://compiler-rt.llvm.org/
diff --git a/lldb-netbsd/Makefile b/lldb-netbsd/Makefile
index f0978e327e..a743e8e9d4 100644
--- a/lldb-netbsd/Makefile
+++ b/lldb-netbsd/Makefile
@@ -5,7 +5,7 @@ CATEGORIES= lang devel
SVN_REPOSITORIES= lldb
SVN_REPO.lldb= http://llvm.org/svn/llvm-project/lldb/trunk
-SVN_REVISION.lldb= 324121
+SVN_REVISION.lldb= 324234
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= http://lldb.org/
diff --git a/lldb-netbsd/distinfo b/lldb-netbsd/distinfo
index d9acab13cf..462571b386 100644
--- a/lldb-netbsd/distinfo
+++ b/lldb-netbsd/distinfo
@@ -13,4 +13,3 @@ SHA1 (llvm-3.6.2.src.tar.xz) = 7a00257eb2bc9431e4c77c3a36b033072c54bc7e
RMD160 (llvm-3.6.2.src.tar.xz) = 521cbc5fe2925ea3c6e90c7a31f752a04045c972
Size (llvm-3.6.2.src.tar.xz) = 12802380 bytes
SHA1 (patch-source_Plugins_ObjectFile_ELF_ObjectFileELF.cpp) = b01ecef7dfe109d047663997452065cdc4242292
-SHA1 (patch-source_Plugins_Process_NetBSD_NativeProcessNetBSD.cpp) = 069a4eac81da83cabf55421e07e30453520eee62
diff --git a/lldb-netbsd/patches/patch-source_Plugins_Process_NetBSD_NativeProcessNetBSD.cpp b/lldb-netbsd/patches/patch-source_Plugins_Process_NetBSD_NativeProcessNetBSD.cpp
deleted file mode 100644
index 5d1df6f897..0000000000
--- a/lldb-netbsd/patches/patch-source_Plugins_Process_NetBSD_NativeProcessNetBSD.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD$
-
---- source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp.orig 2018-02-02 18:39:14.654259652 +0000
-+++ source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp
-@@ -111,7 +111,6 @@ NativeProcessNetBSD::Factory::Launch(Pro
-
- for (const auto &thread : process_up->m_threads)
- static_cast<NativeThreadNetBSD &>(*thread).SetStoppedBySignal(SIGSTOP);
-- process_up->SetState(StateType::eStateStopped);
-
- return std::move(process_up);
- }
-@@ -157,6 +156,11 @@ NativeProcessNetBSD::NativeProcessNetBSD
- m_sigchld_handle = mainloop.RegisterSignal(
- SIGCHLD, [this](MainLoopBase &) { SigchldHandler(); }, status);
- assert(m_sigchld_handle && status.Success());
-+
-+ SetState(StateType::eStateStopped, false);
-+
-+ // Proccess any signals we received before installing our handler
-+ SigchldHandler();
- }
-
- // Handles all waitpid events from the inferior process.
diff --git a/llvm-netbsd/Makefile.common b/llvm-netbsd/Makefile.common
index 67affdf34c..4f098610f7 100644
--- a/llvm-netbsd/Makefile.common
+++ b/llvm-netbsd/Makefile.common
@@ -13,13 +13,13 @@
# version in BUILDLINK_API_DEPENDS, as there is no backwards compatibility
#
-LLVM_VERSION= 6.0.0
+LLVM_VERSION= 7.0.0
CATEGORIES= lang devel
SVN_REPOSITORIES= llvm
SVN_REPO.llvm= http://llvm.org/svn/llvm-project/llvm/trunk
-SVN_REVISION.llvm= 320228
+SVN_REVISION.llvm= 324234
WRKSRC= ${WRKDIR}/llvm
Home |
Main Index |
Thread Index |
Old Index