pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

lldb-git: Drop local patches (sent upstream)



Module Name:	pkgsrc-wip
Committed By:	Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By:	kamil
Date:		Sun Jan 29 23:11:49 2017 +0100
Changeset:	ce4ec571b152a710595fb6a16285481c297819c7

Modified Files:
	lldb-git/distinfo
Removed Files:
	lldb-git/patches/patch-tools_lldb-mi_MICmnBase.cpp
	lldb-git/patches/patch-tools_lldb-mi_MICmnBase.h
	lldb-git/patches/patch-tools_lldb-mi_MIDriver.cpp
	lldb-git/patches/patch-tools_lldb-mi_MIUtilString.cpp
	lldb-git/patches/patch-tools_lldb-mi_MIUtilString.h

Log Message:
lldb-git: Drop local patches (sent upstream)

Soon no longer needed.

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=ce4ec571b152a710595fb6a16285481c297819c7

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 lldb-git/distinfo                                     |  5 -----
 lldb-git/patches/patch-tools_lldb-mi_MICmnBase.cpp    | 13 -------------
 lldb-git/patches/patch-tools_lldb-mi_MICmnBase.h      | 13 -------------
 lldb-git/patches/patch-tools_lldb-mi_MIDriver.cpp     | 13 -------------
 lldb-git/patches/patch-tools_lldb-mi_MIUtilString.cpp | 13 -------------
 lldb-git/patches/patch-tools_lldb-mi_MIUtilString.h   | 13 -------------
 6 files changed, 70 deletions(-)

diffs:
diff --git a/lldb-git/distinfo b/lldb-git/distinfo
index a4de524..7931384 100644
--- a/lldb-git/distinfo
+++ b/lldb-git/distinfo
@@ -12,8 +12,3 @@ Size (libcxx-3.6.2.src.tar.xz) = 944020 bytes
 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-tools_lldb-mi_MICmnBase.cpp) = 851c82ac61e1241018755fbd7236af00379ac986
-SHA1 (patch-tools_lldb-mi_MICmnBase.h) = f550d5e10bcf02fb46472733acdbb820791f22e5
-SHA1 (patch-tools_lldb-mi_MIDriver.cpp) = bf1b5399e82bcfe54d6d852f64ed155328f2064d
-SHA1 (patch-tools_lldb-mi_MIUtilString.cpp) = 200d9712753b5559da79c2e16fa0889fea1e9432
-SHA1 (patch-tools_lldb-mi_MIUtilString.h) = 7e7befec383f88502a97aec509ba39477efde37d
diff --git a/lldb-git/patches/patch-tools_lldb-mi_MICmnBase.cpp b/lldb-git/patches/patch-tools_lldb-mi_MICmnBase.cpp
deleted file mode 100644
index f30ad21..0000000
--- a/lldb-git/patches/patch-tools_lldb-mi_MICmnBase.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD$
-
---- tools/lldb-mi/MICmnBase.cpp.orig	2016-09-10 17:36:23.000000000 +0000
-+++ tools/lldb-mi/MICmnBase.cpp
-@@ -122,7 +122,7 @@ void CMICmnBase::ClrErrorDescription() c
- // Return:  None.
- // Throws:  None.
- //--
--void CMICmnBase::SetErrorDescriptionn(const CMIUtilString vFormat, ...) const {
-+void CMICmnBase::SetErrorDescriptionn(const char *vFormat, ...) const {
-   va_list args;
-   va_start(args, vFormat);
-   CMIUtilString strResult = CMIUtilString::FormatValist(vFormat, args);
diff --git a/lldb-git/patches/patch-tools_lldb-mi_MICmnBase.h b/lldb-git/patches/patch-tools_lldb-mi_MICmnBase.h
deleted file mode 100644
index 6212245..0000000
--- a/lldb-git/patches/patch-tools_lldb-mi_MICmnBase.h
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD$
-
---- tools/lldb-mi/MICmnBase.h.orig	2016-09-10 17:36:23.000000000 +0000
-+++ tools/lldb-mi/MICmnBase.h
-@@ -28,7 +28,7 @@ public:
-   bool HaveErrorDescription() const;
-   const CMIUtilString &GetErrorDescription() const;
-   void SetErrorDescription(const CMIUtilString &vrTxt) const;
--  void SetErrorDescriptionn(const CMIUtilString vFormat, ...) const;
-+  void SetErrorDescriptionn(const char *vFormat, ...) const;
-   void SetErrorDescriptionNoLog(const CMIUtilString &vrTxt) const;
-   void ClrErrorDescription() const;
- 
diff --git a/lldb-git/patches/patch-tools_lldb-mi_MIDriver.cpp b/lldb-git/patches/patch-tools_lldb-mi_MIDriver.cpp
deleted file mode 100644
index a96e7fa..0000000
--- a/lldb-git/patches/patch-tools_lldb-mi_MIDriver.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD$
-
---- tools/lldb-mi/MIDriver.cpp.orig	2016-09-10 17:36:23.000000000 +0000
-+++ tools/lldb-mi/MIDriver.cpp
-@@ -509,7 +509,7 @@ bool CMIDriver::StartWorkerThreads() {
-     const CMIUtilString errMsg = CMIUtilString::Format(
-         MIRSRC(IDS_THREADMGR_ERR_THREAD_FAIL_CREATE),
-         CMICmnThreadMgrStd::Instance().GetErrorDescription().c_str());
--    SetErrorDescriptionn(errMsg);
-+    SetErrorDescriptionn(errMsg.c_str());
-     return MIstatus::failure;
-   }
- 
diff --git a/lldb-git/patches/patch-tools_lldb-mi_MIUtilString.cpp b/lldb-git/patches/patch-tools_lldb-mi_MIUtilString.cpp
deleted file mode 100644
index 2df0237..0000000
--- a/lldb-git/patches/patch-tools_lldb-mi_MIUtilString.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD$
-
---- tools/lldb-mi/MIUtilString.cpp.orig	2016-09-10 17:36:23.000000000 +0000
-+++ tools/lldb-mi/MIUtilString.cpp
-@@ -156,7 +156,7 @@ CMIUtilString CMIUtilString::FormatPriv(
- // Return:  CMIUtilString - Number of splits found in the string data.
- // Throws:  None.
- //--
--CMIUtilString CMIUtilString::Format(const CMIUtilString vFormating, ...) {
-+CMIUtilString CMIUtilString::Format(const char *vFormating, ...) {
-   va_list args;
-   va_start(args, vFormating);
-   CMIUtilString strResult = CMIUtilString::FormatPriv(vFormating, args);
diff --git a/lldb-git/patches/patch-tools_lldb-mi_MIUtilString.h b/lldb-git/patches/patch-tools_lldb-mi_MIUtilString.h
deleted file mode 100644
index c352662..0000000
--- a/lldb-git/patches/patch-tools_lldb-mi_MIUtilString.h
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD$
-
---- tools/lldb-mi/MIUtilString.h.orig	2016-09-10 17:36:23.000000000 +0000
-+++ tools/lldb-mi/MIUtilString.h
-@@ -30,7 +30,7 @@ public:
- 
-   // Static method:
- public:
--  static CMIUtilString Format(const CMIUtilString vFormating, ...);
-+  static CMIUtilString Format(const char *vFormating, ...);
-   static CMIUtilString FormatBinary(const MIuint64 vnDecimal);
-   static CMIUtilString FormatValist(const CMIUtilString &vrFormating,
-                                     va_list vArgs);


Home | Main Index | Thread Index | Old Index