From da445990808834fb67745d3e7d98675c111a0749 Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Wed, 22 Jul 2020 22:46:22 +0000 Subject: [PATCH] lldb: 10.0.0 -> 10.0.1 --- lldb/.signature | 6 +++--- lldb/Pkgfile | 21 +++++++++------------ 2 files changed, 12 insertions(+), 15 deletions(-) diff --git a/lldb/.signature b/lldb/.signature index 603a14fbe..2663c1ea2 100644 --- a/lldb/.signature +++ b/lldb/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF30Y3lf6q0uZrik0j8ZDM8L2y1Z+GhPi4bZWhse7FkMrFHT1Fp0Y+n/jhe5lwTFIDsqhDsCY+sGV0kDHtR4aPXQI= -SHA256 (Pkgfile) = a7eb1e2eb5c51140f5267c3bcfbe89ab6682d770e099f773d49ebfdad8701e21 +RWSagIOpLGJF3ywrKL/+G0x1rRYB/pRj0f3bKA8R22F0/1urNXj4QSdA8d1IweRTga3jyMewyISCBqq1L6SsNxkJ8z/npMJfZgw= +SHA256 (Pkgfile) = 612cb4513e9e03282a23d99a73ce9d7d7e31d15a38b1074362e02a2328f745c6 SHA256 (.footprint) = 1108e5231a936f3f6f0c6bb922e22b865580e928658b88faa510e63548491d2e -SHA256 (lldb-10.0.0.src.tar.xz) = dd1ffcb42ed033f5167089ec4c6ebe84fbca1db4a9eaebf5c614af09d89eb135 +SHA256 (lldb-10.0.1.src.tar.xz) = 07abe87c25876aa306e73127330f5f37d270b6b082d50cc679e31b4fc02a3714 diff --git a/lldb/Pkgfile b/lldb/Pkgfile index 574e2569d..52d5be245 100644 --- a/lldb/Pkgfile +++ b/lldb/Pkgfile @@ -4,24 +4,21 @@ # Depends on: clang python3-six swig name=lldb -version=10.0.0 -release=2 +version=10.0.1 +release=1 source=(https://github.com/llvm/llvm-project/releases/download/llvmorg-$version/lldb-$version.src.tar.xz) build() { - cd $name-$version.src - mkdir build - cd build - cmake .. \ - -GNinja \ + cmake -S$name-$version.src -Bbuild -GNinja \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLLVM_LINK_LLVM_DYLIB=ON \ -DPYTHON_EXECUTABLE=/usr/bin/python3 \ -DLLDB_USE_SYSTEM_SIX=1 - ninja - DESTDIR=$PKG ninja install - python3 -m compileall $PKG - python3 -O -m compileall $PKG - python3 -OO -m compileall $PKG + cmake --build build + DESTDIR=$PKG cmake --install build + + python3 -m compileall -d $name-$version.src $PKG + python3 -O -m compileall -d $name-$version.src $PKG + python3 -OO -m compileall -d $name-$version.src $PKG }