[arch-commits] Commit in ldc/repos/community-testing-x86_64 (PKGBUILD PKGBUILD)
Filipe Laíns
ffy00 at archlinux.org
Tue Aug 27 12:01:34 UTC 2019
Date: Tuesday, August 27, 2019 @ 12:01:34
Author: ffy00
Revision: 502771
archrelease: copy trunk to community-testing-x86_64
Added:
ldc/repos/community-testing-x86_64/PKGBUILD
(from rev 502770, ldc/trunk/PKGBUILD)
Deleted:
ldc/repos/community-testing-x86_64/PKGBUILD
----------+
PKGBUILD | 216 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 108 insertions(+), 108 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2019-08-27 12:01:28 UTC (rev 502770)
+++ PKGBUILD 2019-08-27 12:01:34 UTC (rev 502771)
@@ -1,108 +0,0 @@
-# Maintainer:
-# Contributor: Mihails Strasuns <public at dicebot.lv>
-# Contributor: Sven-Hendrik Haase <sh at lutzhaase.com>
-
-pkgname=('ldc' 'liblphobos')
-groups=('dlang' 'dlang-ldc')
-pkgver=1.17.0
-_pkgcommit=67d5ff27cb8e5f14017f9fe4af431b64ec82075e
-_dversion=2.087.1
-_clangversion=8.0.1 # related to where ldc2 looks for compiler-rt sanitizers
-epoch=2
-pkgrel=2
-pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D runtime and libphobos2"
-arch=('x86_64')
-url="https://github.com/ldc-developers/ldc"
-license=('BSD')
-makedepends=('git' 'cmake' 'llvm' 'ldc')
-
-source=(
- "git+https://github.com/ldc-developers/ldc#commit=$_pkgcommit"
- "git+https://github.com/ldc-developers/druntime.git#tag=ldc-v$pkgver"
- "git+https://github.com/ldc-developers/phobos.git#tag=ldc-v$pkgver"
- "git+https://github.com/ldc-developers/dmd-testsuite.git#tag=ldc-v$pkgver"
-)
-
-sha256sums=('SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP')
-
-prepare() {
- cd "$srcdir/ldc"
-
- git submodule init
- git config submodule.druntime.url "$srcdir/druntime"
- git config submodule.phobos.url "$srcdir/phobos"
- git config submodule.tests/d2/dmd-testsuite.url "$srcdir/dmd-testsuite"
- git submodule update
-
- # Set version used for path construction in getFullClangCompilerRTLibPath()
- sed -i "s/ldc::llvm_version_base/\"$_clangversion\"/" driver/linker-gcc.cpp
-}
-
-build() {
- cd "$srcdir/ldc"
-
- mkdir -p build && cd build
-
- cmake \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_SKIP_RPATH=ON \
- -DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
- -DBUILD_SHARED_LIBS=BOTH \
- -DBUILD_LTO_LIBS=ON \
- -DLDC_WITH_LLD=OFF \
- -DD_COMPILER_FLAGS="-link-defaultlib-shared=false -linker=gold -flto=full" \
- -DADDITIONAL_DEFAULT_LDC_SWITCHES="\"-link-defaultlib-shared\"" \
- ..
- make
-}
-
-check() {
- cd "$srcdir/ldc/build"
- make all-test-runners
-}
-
-package_ldc() {
- depends=('liblphobos' 'llvm-libs' 'gcc' 'compiler-rt')
- backup=('etc/ldc2.conf')
- provides=("d-compiler=$_dversion")
-
- cd "$srcdir/ldc/build"
- make install DESTDIR="$pkgdir"
-
- # move bash-completion
- mkdir -p "$pkgdir/usr/share/bash-completion/completions/"
- mv "$pkgdir/etc/bash_completion.d/ldc2" "$pkgdir/usr/share/bash-completion/completions/"
- rm -rf "$pkgdir/etc/bash_completion.d"
-
- # remove liblphobos files
- rm -rf "$pkgdir/usr/include"
- rm -rf "$pkgdir/usr/lib"
-
- # symlinks
- ln -s /usr/share/bash-completion/completions/ldc2 "$pkgdir/usr/share/bash-completion/completions/ldc"
- ln -s /usr/bin/ldc2 "$pkgdir/usr/bin/ldc"
- ln -s /usr/bin/ldmd2 "$pkgdir/usr/bin/ldmd"
-
- # licenses
- install -D -m644 "$srcdir/ldc/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_liblphobos() {
- provides=('d-runtime' 'd-stdlib')
- depends=('curl')
- options=('staticlibs')
-
- cd "$srcdir/ldc/build"
- make install DESTDIR="$pkgdir"
-
- # remove ldc files
- rm -rf "$pkgdir/usr/bin/"
- rm -rf "$pkgdir/etc/"
-
- # licenses
- install -D -m644 "$srcdir/ldc/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
Copied: ldc/repos/community-testing-x86_64/PKGBUILD (from rev 502770, ldc/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2019-08-27 12:01:34 UTC (rev 502771)
@@ -0,0 +1,108 @@
+# Maintainer:
+# Contributor: Mihails Strasuns <public at dicebot.lv>
+# Contributor: Sven-Hendrik Haase <sh at lutzhaase.com>
+
+pkgname=('ldc' 'liblphobos')
+groups=('dlang' 'dlang-ldc')
+pkgver=1.17.0
+_pkgcommit=67d5ff27cb8e5f14017f9fe4af431b64ec82075e
+_dversion=2.087.1
+_clangversion=8.0.1 # related to where ldc2 looks for compiler-rt sanitizers
+epoch=2
+pkgrel=2
+pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D runtime and libphobos2"
+arch=('x86_64')
+url="https://github.com/ldc-developers/ldc"
+license=('BSD')
+makedepends=('git' 'cmake' 'llvm' 'ldc')
+
+source=(
+ "git+https://github.com/ldc-developers/ldc#commit=$_pkgcommit"
+ "git+https://github.com/ldc-developers/druntime.git#tag=ldc-v$pkgver"
+ "git+https://github.com/ldc-developers/phobos.git#tag=ldc-v$pkgver"
+ "git+https://github.com/ldc-developers/dmd-testsuite.git#tag=ldc-v$pkgver"
+)
+
+sha256sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP')
+
+prepare() {
+ cd "$srcdir/ldc"
+
+ git submodule init
+ git config submodule.druntime.url "$srcdir/druntime"
+ git config submodule.phobos.url "$srcdir/phobos"
+ git config submodule.tests/d2/dmd-testsuite.url "$srcdir/dmd-testsuite"
+ git submodule update
+
+ # Set version used for path construction in getFullClangCompilerRTLibPath()
+ sed -i "s/ldc::llvm_version_base/\"$_clangversion\"/" driver/linker-gcc.cpp
+}
+
+build() {
+ cd "$srcdir/ldc"
+
+ mkdir -p build && cd build
+
+ cmake \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_SKIP_RPATH=ON \
+ -DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
+ -DBUILD_SHARED_LIBS=BOTH \
+ -DBUILD_LTO_LIBS=ON \
+ -DLDC_WITH_LLD=OFF \
+ -DD_COMPILER_FLAGS="-link-defaultlib-shared=false -linker=gold -flto=full" \
+ -DADDITIONAL_DEFAULT_LDC_SWITCHES="\"-link-defaultlib-shared\"" \
+ ..
+ make
+}
+
+check() {
+ cd "$srcdir/ldc/build"
+ make all-test-runners
+}
+
+package_ldc() {
+ depends=('liblphobos' 'llvm-libs' 'gcc' 'compiler-rt')
+ backup=('etc/ldc2.conf')
+ provides=("d-compiler=$_dversion")
+
+ cd "$srcdir/ldc/build"
+ make install DESTDIR="$pkgdir"
+
+ # move bash-completion
+ mkdir -p "$pkgdir/usr/share/bash-completion/completions/"
+ mv "$pkgdir/etc/bash_completion.d/ldc2" "$pkgdir/usr/share/bash-completion/completions/"
+ rm -rf "$pkgdir/etc/bash_completion.d"
+
+ # remove liblphobos files
+ rm -rf "$pkgdir/usr/include"
+ rm -rf "$pkgdir/usr/lib"
+
+ # symlinks
+ ln -s /usr/share/bash-completion/completions/ldc2 "$pkgdir/usr/share/bash-completion/completions/ldc"
+ ln -s /usr/bin/ldc2 "$pkgdir/usr/bin/ldc"
+ ln -s /usr/bin/ldmd2 "$pkgdir/usr/bin/ldmd"
+
+ # licenses
+ install -D -m644 "$srcdir/ldc/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_liblphobos() {
+ provides=('d-runtime' 'd-stdlib')
+ depends=('curl')
+ options=('staticlibs')
+
+ cd "$srcdir/ldc/build"
+ make install DESTDIR="$pkgdir"
+
+ # remove ldc files
+ rm -rf "$pkgdir/usr/bin/"
+ rm -rf "$pkgdir/etc/"
+
+ # licenses
+ install -D -m644 "$srcdir/ldc/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
More information about the arch-commits
mailing list