[arch-commits] Commit in ldc/repos (8 files)

Antonio Rojas arojas at archlinux.org
Sat Jul 8 10:49:57 UTC 2017


    Date: Saturday, July 8, 2017 @ 10:49:56
  Author: arojas
Revision: 243320

archrelease: copy trunk to community-i686, community-x86_64

Added:
  ldc/repos/community-i686/PKGBUILD
    (from rev 243319, ldc/trunk/PKGBUILD)
  ldc/repos/community-i686/ldc2.conf
    (from rev 243319, ldc/trunk/ldc2.conf)
  ldc/repos/community-x86_64/PKGBUILD
    (from rev 243319, ldc/trunk/PKGBUILD)
  ldc/repos/community-x86_64/ldc2.conf
    (from rev 243319, ldc/trunk/ldc2.conf)
Deleted:
  ldc/repos/community-i686/PKGBUILD
  ldc/repos/community-i686/ldc2.conf
  ldc/repos/community-x86_64/PKGBUILD
  ldc/repos/community-x86_64/ldc2.conf

----------------------------+
 /PKGBUILD                  |  164 +++++++++++++++++++++++++++++++++++++++++++
 /ldc2.conf                 |   36 +++++++++
 community-i686/PKGBUILD    |   84 ----------------------
 community-i686/ldc2.conf   |   18 ----
 community-x86_64/PKGBUILD  |   84 ----------------------
 community-x86_64/ldc2.conf |   18 ----
 6 files changed, 200 insertions(+), 204 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-07-08 10:49:27 UTC (rev 243319)
+++ community-i686/PKGBUILD	2017-07-08 10:49:56 UTC (rev 243320)
@@ -1,84 +0,0 @@
-# $Id$
-# 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.2.0
-epoch=1
-pkgrel=3
-pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D runtime and libphobos2"
-arch=('i686' 'x86_64')
-url="https://github.com/ldc-developers/ldc"
-license=('BSD')
-makedepends=('cmake' 'llvm' 'dmd' 'libconfig')
-source=("https://github.com/ldc-developers/ldc/releases/download/v$pkgver/ldc-$pkgver-src.tar.gz"
-        "ldc2.conf"
-       )
-sha256sums=('910e8a670f0fadcaf64403c924091d6debf7ad29e203808f5f2b6899217e6f2b'
-            '2ef3b1090e25187305f18ce6fbbbc45527dcbb33570afbe30e177790813948db')
-
-build() {
-    mkdir -p $srcdir/tmp_install_dir
-    cd ldc-$pkgver-src
-
-    mkdir -p build && cd build
-
-    # workaround for wrong ld flag format generated by cmake:
-    export LDFLAGS="-L-O1 -L--sort-common -L--as-needed -L-z -Lrelro"
-
-    cmake \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_SKIP_RPATH=ON \
-    -DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
-    -DBUILD_SHARED_LIBS=ON \
-    ..
-    make 
-    make install DESTDIR=$srcdir/tmp_install_dir
-}
-
-package_ldc() {
-    depends=('liblphobos' 'libconfig' 'llvm-libs')
-    backup=("etc/ldc2.conf")
-    provides=("d-compiler")
-
-    cd tmp_install_dir
-
-    # binaries
-    install -D -m755 ./usr/bin/ldmd2 $pkgdir/usr/bin/ldmd
-    ln -s /usr/bin/ldmd $pkgdir/usr/bin/ldmd2
-    install -D -m755 ./usr/bin/ldc2 $pkgdir/usr/bin/ldc
-    ln -s /usr/bin/ldc $pkgdir/usr/bin/ldc2
-
-    # supplementaries
-    install -D -m644 $srcdir/ldc-$pkgver-src/bash_completion.d/ldc2 $pkgdir/usr/share/bash-completion/completions/ldc
-
-    # licenses
-    install -D -m644 $srcdir/ldc-$pkgver-src/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE    
-
-    # default configuration files
-    install -D -m644 $srcdir/ldc2.conf $pkgdir/etc/ldc2.conf
-}
-
-package_liblphobos() {
-    provides=("d-runtime" "d-stdlib")
-    replaces=("liblphobos-devel")
-    conflicts=("liblphobos-devel")
-    depends=("curl")
-
-    # licenses
-    install -D -m644 $srcdir/ldc-$pkgver-src/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE    
-
-    cd tmp_install_dir
-
-    # libraries
-    install -D -m644 ./usr/lib/libphobos2-ldc.so $pkgdir/usr/lib/liblphobos2.so
-    install -D -m644 ./usr/lib/libdruntime-ldc.so $pkgdir/usr/lib/libldruntime.so
-    install -D -m644 ./usr/lib/libphobos2-ldc-debug.so $pkgdir/usr/lib/liblphobos2-debug.so
-    install -D -m644 ./usr/lib/libdruntime-ldc-debug.so $pkgdir/usr/lib/libldruntime-debug.so
-
-    # imports
-    mkdir -p $pkgdir/usr/include/dlang
-    cp -r ./usr/include/dlang/ldc $pkgdir/usr/include/dlang/ldc
-}

Copied: ldc/repos/community-i686/PKGBUILD (from rev 243319, ldc/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-07-08 10:49:56 UTC (rev 243320)
@@ -0,0 +1,82 @@
+# $Id$
+# 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.3.0
+epoch=1
+pkgrel=1
+pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D runtime and libphobos2"
+arch=('i686' 'x86_64')
+url="https://github.com/ldc-developers/ldc"
+license=('BSD')
+makedepends=('cmake' 'llvm' 'dmd')
+source=("https://github.com/ldc-developers/ldc/releases/download/v$pkgver/ldc-$pkgver-src.tar.gz"
+        "ldc2.conf"
+       )
+sha256sums=('efe31a639bcb44e1f5b752da21713376d9410a01279fecc8aab8572065a3050b'
+            '2ef3b1090e25187305f18ce6fbbbc45527dcbb33570afbe30e177790813948db')
+
+build() {
+    mkdir -p $srcdir/tmp_install_dir
+    cd ldc-$pkgver-src
+
+    mkdir -p build && cd build
+
+    # workaround for wrong ld flag format generated by cmake:
+    export LDFLAGS="-L-O1 -L--sort-common -L--as-needed -L-z -Lrelro"
+
+    cmake \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_SKIP_RPATH=ON \
+    -DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
+    -DBUILD_SHARED_LIBS=ON \
+    ..
+    make 
+    make install DESTDIR=$srcdir/tmp_install_dir
+}
+
+package_ldc() {
+    depends=('liblphobos' 'llvm-libs')
+    backup=('etc/ldc2.conf')
+    provides=('d-compiler')
+
+    cd tmp_install_dir
+
+    # binaries
+    install -D -m755 ./usr/bin/ldmd2 $pkgdir/usr/bin/ldmd
+    ln -s /usr/bin/ldmd $pkgdir/usr/bin/ldmd2
+    install -D -m755 ./usr/bin/ldc2 $pkgdir/usr/bin/ldc
+    ln -s /usr/bin/ldc $pkgdir/usr/bin/ldc2
+
+    # supplementaries
+    install -D -m644 $srcdir/ldc-$pkgver-src/bash_completion.d/ldc2 $pkgdir/usr/share/bash-completion/completions/ldc
+
+    # licenses
+    install -D -m644 $srcdir/ldc-$pkgver-src/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE    
+
+    # default configuration files
+    install -D -m644 $srcdir/ldc2.conf $pkgdir/etc/ldc2.conf
+}
+
+package_liblphobos() {
+    provides=('d-runtime' 'd-stdlib')
+    depends=('curl')
+
+    # licenses
+    install -D -m644 $srcdir/ldc-$pkgver-src/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE    
+
+    cd tmp_install_dir
+
+    # libraries
+    install -D -m644 ./usr/lib/libphobos2-ldc.so $pkgdir/usr/lib/liblphobos2.so
+    install -D -m644 ./usr/lib/libdruntime-ldc.so $pkgdir/usr/lib/libldruntime.so
+    install -D -m644 ./usr/lib/libphobos2-ldc-debug.so $pkgdir/usr/lib/liblphobos2-debug.so
+    install -D -m644 ./usr/lib/libdruntime-ldc-debug.so $pkgdir/usr/lib/libldruntime-debug.so
+
+    # imports
+    mkdir -p $pkgdir/usr/include/dlang
+    cp -r ./usr/include/dlang/ldc $pkgdir/usr/include/dlang/ldc
+}

Deleted: community-i686/ldc2.conf
===================================================================
--- community-i686/ldc2.conf	2017-07-08 10:49:27 UTC (rev 243319)
+++ community-i686/ldc2.conf	2017-07-08 10:49:56 UTC (rev 243320)
@@ -1,18 +0,0 @@
-// This configuration file uses libconfig.
-// See http://www.hyperrealm.com/libconfig/ for syntax details.
-
-// The default group is required
-default:
-{
-    // 'switches' holds array of string that are appends to the command line
-    // arguments before they are parsed.
-    switches = [
-        "-I/usr/include/dlang/ldc/ldc",
-        "-I/usr/include/dlang/ldc",
-        "-L-L/usr/lib", 
-        "-L-L/usr/lib32",
-        "-L--no-warn-search-mismatch",
-        "-defaultlib=lphobos2,ldruntime",
-        "-debuglib=lphobos2-debug,ldruntime-debug"
-    ];
-};

Copied: ldc/repos/community-i686/ldc2.conf (from rev 243319, ldc/trunk/ldc2.conf)
===================================================================
--- community-i686/ldc2.conf	                        (rev 0)
+++ community-i686/ldc2.conf	2017-07-08 10:49:56 UTC (rev 243320)
@@ -0,0 +1,18 @@
+// This configuration file uses libconfig.
+// See http://www.hyperrealm.com/libconfig/ for syntax details.
+
+// The default group is required
+default:
+{
+    // 'switches' holds array of string that are appends to the command line
+    // arguments before they are parsed.
+    switches = [
+        "-I/usr/include/dlang/ldc/ldc",
+        "-I/usr/include/dlang/ldc",
+        "-L-L/usr/lib", 
+        "-L-L/usr/lib32",
+        "-L--no-warn-search-mismatch",
+        "-defaultlib=lphobos2,ldruntime",
+        "-debuglib=lphobos2-debug,ldruntime-debug"
+    ];
+};

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-07-08 10:49:27 UTC (rev 243319)
+++ community-x86_64/PKGBUILD	2017-07-08 10:49:56 UTC (rev 243320)
@@ -1,84 +0,0 @@
-# $Id$
-# 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.2.0
-epoch=1
-pkgrel=3
-pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D runtime and libphobos2"
-arch=('i686' 'x86_64')
-url="https://github.com/ldc-developers/ldc"
-license=('BSD')
-makedepends=('cmake' 'llvm' 'dmd' 'libconfig')
-source=("https://github.com/ldc-developers/ldc/releases/download/v$pkgver/ldc-$pkgver-src.tar.gz"
-        "ldc2.conf"
-       )
-sha256sums=('910e8a670f0fadcaf64403c924091d6debf7ad29e203808f5f2b6899217e6f2b'
-            '2ef3b1090e25187305f18ce6fbbbc45527dcbb33570afbe30e177790813948db')
-
-build() {
-    mkdir -p $srcdir/tmp_install_dir
-    cd ldc-$pkgver-src
-
-    mkdir -p build && cd build
-
-    # workaround for wrong ld flag format generated by cmake:
-    export LDFLAGS="-L-O1 -L--sort-common -L--as-needed -L-z -Lrelro"
-
-    cmake \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_SKIP_RPATH=ON \
-    -DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
-    -DBUILD_SHARED_LIBS=ON \
-    ..
-    make 
-    make install DESTDIR=$srcdir/tmp_install_dir
-}
-
-package_ldc() {
-    depends=('liblphobos' 'libconfig' 'llvm-libs')
-    backup=("etc/ldc2.conf")
-    provides=("d-compiler")
-
-    cd tmp_install_dir
-
-    # binaries
-    install -D -m755 ./usr/bin/ldmd2 $pkgdir/usr/bin/ldmd
-    ln -s /usr/bin/ldmd $pkgdir/usr/bin/ldmd2
-    install -D -m755 ./usr/bin/ldc2 $pkgdir/usr/bin/ldc
-    ln -s /usr/bin/ldc $pkgdir/usr/bin/ldc2
-
-    # supplementaries
-    install -D -m644 $srcdir/ldc-$pkgver-src/bash_completion.d/ldc2 $pkgdir/usr/share/bash-completion/completions/ldc
-
-    # licenses
-    install -D -m644 $srcdir/ldc-$pkgver-src/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE    
-
-    # default configuration files
-    install -D -m644 $srcdir/ldc2.conf $pkgdir/etc/ldc2.conf
-}
-
-package_liblphobos() {
-    provides=("d-runtime" "d-stdlib")
-    replaces=("liblphobos-devel")
-    conflicts=("liblphobos-devel")
-    depends=("curl")
-
-    # licenses
-    install -D -m644 $srcdir/ldc-$pkgver-src/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE    
-
-    cd tmp_install_dir
-
-    # libraries
-    install -D -m644 ./usr/lib/libphobos2-ldc.so $pkgdir/usr/lib/liblphobos2.so
-    install -D -m644 ./usr/lib/libdruntime-ldc.so $pkgdir/usr/lib/libldruntime.so
-    install -D -m644 ./usr/lib/libphobos2-ldc-debug.so $pkgdir/usr/lib/liblphobos2-debug.so
-    install -D -m644 ./usr/lib/libdruntime-ldc-debug.so $pkgdir/usr/lib/libldruntime-debug.so
-
-    # imports
-    mkdir -p $pkgdir/usr/include/dlang
-    cp -r ./usr/include/dlang/ldc $pkgdir/usr/include/dlang/ldc
-}

Copied: ldc/repos/community-x86_64/PKGBUILD (from rev 243319, ldc/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-07-08 10:49:56 UTC (rev 243320)
@@ -0,0 +1,82 @@
+# $Id$
+# 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.3.0
+epoch=1
+pkgrel=1
+pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D runtime and libphobos2"
+arch=('i686' 'x86_64')
+url="https://github.com/ldc-developers/ldc"
+license=('BSD')
+makedepends=('cmake' 'llvm' 'dmd')
+source=("https://github.com/ldc-developers/ldc/releases/download/v$pkgver/ldc-$pkgver-src.tar.gz"
+        "ldc2.conf"
+       )
+sha256sums=('efe31a639bcb44e1f5b752da21713376d9410a01279fecc8aab8572065a3050b'
+            '2ef3b1090e25187305f18ce6fbbbc45527dcbb33570afbe30e177790813948db')
+
+build() {
+    mkdir -p $srcdir/tmp_install_dir
+    cd ldc-$pkgver-src
+
+    mkdir -p build && cd build
+
+    # workaround for wrong ld flag format generated by cmake:
+    export LDFLAGS="-L-O1 -L--sort-common -L--as-needed -L-z -Lrelro"
+
+    cmake \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_SKIP_RPATH=ON \
+    -DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
+    -DBUILD_SHARED_LIBS=ON \
+    ..
+    make 
+    make install DESTDIR=$srcdir/tmp_install_dir
+}
+
+package_ldc() {
+    depends=('liblphobos' 'llvm-libs')
+    backup=('etc/ldc2.conf')
+    provides=('d-compiler')
+
+    cd tmp_install_dir
+
+    # binaries
+    install -D -m755 ./usr/bin/ldmd2 $pkgdir/usr/bin/ldmd
+    ln -s /usr/bin/ldmd $pkgdir/usr/bin/ldmd2
+    install -D -m755 ./usr/bin/ldc2 $pkgdir/usr/bin/ldc
+    ln -s /usr/bin/ldc $pkgdir/usr/bin/ldc2
+
+    # supplementaries
+    install -D -m644 $srcdir/ldc-$pkgver-src/bash_completion.d/ldc2 $pkgdir/usr/share/bash-completion/completions/ldc
+
+    # licenses
+    install -D -m644 $srcdir/ldc-$pkgver-src/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE    
+
+    # default configuration files
+    install -D -m644 $srcdir/ldc2.conf $pkgdir/etc/ldc2.conf
+}
+
+package_liblphobos() {
+    provides=('d-runtime' 'd-stdlib')
+    depends=('curl')
+
+    # licenses
+    install -D -m644 $srcdir/ldc-$pkgver-src/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE    
+
+    cd tmp_install_dir
+
+    # libraries
+    install -D -m644 ./usr/lib/libphobos2-ldc.so $pkgdir/usr/lib/liblphobos2.so
+    install -D -m644 ./usr/lib/libdruntime-ldc.so $pkgdir/usr/lib/libldruntime.so
+    install -D -m644 ./usr/lib/libphobos2-ldc-debug.so $pkgdir/usr/lib/liblphobos2-debug.so
+    install -D -m644 ./usr/lib/libdruntime-ldc-debug.so $pkgdir/usr/lib/libldruntime-debug.so
+
+    # imports
+    mkdir -p $pkgdir/usr/include/dlang
+    cp -r ./usr/include/dlang/ldc $pkgdir/usr/include/dlang/ldc
+}

Deleted: community-x86_64/ldc2.conf
===================================================================
--- community-x86_64/ldc2.conf	2017-07-08 10:49:27 UTC (rev 243319)
+++ community-x86_64/ldc2.conf	2017-07-08 10:49:56 UTC (rev 243320)
@@ -1,18 +0,0 @@
-// This configuration file uses libconfig.
-// See http://www.hyperrealm.com/libconfig/ for syntax details.
-
-// The default group is required
-default:
-{
-    // 'switches' holds array of string that are appends to the command line
-    // arguments before they are parsed.
-    switches = [
-        "-I/usr/include/dlang/ldc/ldc",
-        "-I/usr/include/dlang/ldc",
-        "-L-L/usr/lib", 
-        "-L-L/usr/lib32",
-        "-L--no-warn-search-mismatch",
-        "-defaultlib=lphobos2,ldruntime",
-        "-debuglib=lphobos2-debug,ldruntime-debug"
-    ];
-};

Copied: ldc/repos/community-x86_64/ldc2.conf (from rev 243319, ldc/trunk/ldc2.conf)
===================================================================
--- community-x86_64/ldc2.conf	                        (rev 0)
+++ community-x86_64/ldc2.conf	2017-07-08 10:49:56 UTC (rev 243320)
@@ -0,0 +1,18 @@
+// This configuration file uses libconfig.
+// See http://www.hyperrealm.com/libconfig/ for syntax details.
+
+// The default group is required
+default:
+{
+    // 'switches' holds array of string that are appends to the command line
+    // arguments before they are parsed.
+    switches = [
+        "-I/usr/include/dlang/ldc/ldc",
+        "-I/usr/include/dlang/ldc",
+        "-L-L/usr/lib", 
+        "-L-L/usr/lib32",
+        "-L--no-warn-search-mismatch",
+        "-defaultlib=lphobos2,ldruntime",
+        "-debuglib=lphobos2-debug,ldruntime-debug"
+    ];
+};



More information about the arch-commits mailing list