lldb: 10.0.0 -> 10.0.1

This commit is contained in:
Tim Biermann 2020-07-22 22:46:22 +00:00
parent 788c2c7357
commit da44599080
2 changed files with 12 additions and 15 deletions

View File

@ -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

View File

@ -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
}