[arch-commits] Commit in dmd/repos/community-x86_64 (6 files)

Dan Printzell wild at archlinux.org
Mon Jun 15 17:24:26 UTC 2020


    Date: Monday, June 15, 2020 @ 17:24:26
  Author: wild
Revision: 645380

archrelease: copy trunk to community-x86_64

Added:
  dmd/repos/community-x86_64/PKGBUILD
    (from rev 645379, dmd/trunk/PKGBUILD)
  dmd/repos/community-x86_64/dmd-doc.desktop
    (from rev 645379, dmd/trunk/dmd-doc.desktop)
  dmd/repos/community-x86_64/dmd.conf
    (from rev 645379, dmd/trunk/dmd.conf)
Deleted:
  dmd/repos/community-x86_64/PKGBUILD
  dmd/repos/community-x86_64/dmd-doc.desktop
  dmd/repos/community-x86_64/dmd.conf

-----------------+
 PKGBUILD        |  272 +++++++++++++++++++++++++++---------------------------
 dmd-doc.desktop |   14 +-
 dmd.conf        |   10 -
 3 files changed, 148 insertions(+), 148 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-06-15 17:24:17 UTC (rev 645379)
+++ PKGBUILD	2020-06-15 17:24:26 UTC (rev 645380)
@@ -1,136 +0,0 @@
-# Maintainer: Dan Printzell <arch at vild.io>
-# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
-# Contributor: Mihails Strasunse <public at dicebot.lv>
-# Contributor: Sven-Hendrik Haase <sh at lutzhaase.com>
-# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Anders Bergh <anders1 at gmail.com>
-# Contributor: Alexander Fehr <pizzapunk gmail com
-
-pkgname=('dmd' 'dmd-docs' 'libphobos')
-pkgdesc='D programming language compiler and standard library'
-groups=('dlang' 'dlang-dmd')
-pkgbase=dmd
-pkgver=2.092.0
-pkgrel=1
-epoch=1
-arch=('x86_64')
-url='https://www.dlang.org'
-makedepends=('git' 'ldc')
-source=("git+https://github.com/dlang/dmd.git#tag=v$pkgver"
-        "git+https://github.com/dlang/druntime.git#tag=v$pkgver"
-        "git+https://github.com/dlang/phobos.git#tag=v$pkgver"
-        "http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz"
-        "http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz.sig"
-        'dmd.conf'
-        'dmd-doc.desktop')
-sha256sums=('SKIP'
-            'SKIP'
-            'SKIP'
-            '3068663e4383230817dadb532fca3ab44a42333726247283949c554268be7462'
-            'SKIP'
-            '3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
-            '4b7b8722b3fa11082f0f332397b1b66c85b30ce773c43c3fedcba5768a1484b1')
-# Key from https://dlang.org/gpg_keys.html
-validpgpkeys=('F46A10D0AB44C3D15DD65797BCDD73FFC3EB6146') # Martin Nowak <code at dawg.eu>
-noextract=("dmd.$pkgver.linux.tar.xz")
-
-prepare() {
-    # We only want to extract the docs & samples, not the prebuild executables
-    tar xfJ "dmd.$pkgver.linux.tar.xz" dmd2/html
-
-    # Make sure the version is not -dirty
-    sed -i "s/\.git/.nope/" "$srcdir"/dmd/src/build.d
-
-    # Add $LDFLAGS and $CXXFLAGS to the compilation
-    # '-link-defaultlib-shared=false' statically links dmd to liblphobos
-    _dflags=$(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed "s/,/ -L=/g")
-    sed -i "s/--called-from-make/& CXXFLAGS=\"$CXXFLAGS\" DFLAGS='-link-defaultlib-shared=false $(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed "s/,/ -L=/g") -flto=full'/" "$srcdir"/dmd/src/posix.mak
-}
-
-build() {
-    cd "$srcdir"/dmd
-    make -f posix.mak BUILD=release ENABLE_RELEASE=1 PIC=1 ENABLE_LTO=1 HOST_DMD=ldmd2
-
-    cd "$srcdir"/druntime
-    make -f posix.mak DMD="$srcdir"/dmd/generated/linux/release/*/dmd BUILD=release ENABLE_RELEASE=1 PIC=1
-
-    cd "$srcdir"/phobos
-    make -f posix.mak DMD="$srcdir"/dmd/generated/linux/release/*/dmd BUILD=release ENABLE_RELEASE=1 PIC=1
-
-    # This requires object.d to compile, thus need to be after druntime is built
-    cd "$srcdir"/dmd
-    make -C docs DMD=ldmd2
-}
-
-package_dmd() {
-    pkgdesc="The D programming language reference compiler"
-    backup=('etc/dmd.conf')
-    depends=('gcc' 'libphobos')
-    optdepends=(
-        'dtools: collection of useful utilities for development in D'
-        'gcc-multilib: to cross-compile 32-bit applications'
-        'dmd-docs: documentation and sample code for D'
-    )
-    provides=("d-compiler=$pkgver")
-    license=('Boost')
-
-    cd "$srcdir"/dmd
-
-    install -Dm755 "$srcdir"/dmd/generated/linux/release/*/dmd "$pkgdir"/usr/bin/dmd
-
-    mkdir -p "$pkgdir"/etc
-    install -Dm644 "$srcdir"/dmd.conf "$pkgdir"/etc/dmd.conf
-
-    mkdir -p "$pkgdir"/usr/share/man/man1
-    mkdir -p "$pkgdir"/usr/share/man/man5
-    cp generated/docs/man/man1/dmd.1 "$pkgdir"/usr/share/man/man1/
-    cp -r generated/docs/man/man5/* "$pkgdir"/usr/share/man/man5/
-
-    install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-    find "$pkgdir"/usr -type f | xargs chmod 0644
-    chmod 755 "$pkgdir"/usr/bin/*
-}
-
-package_dmd-docs() {
-    pkgdesc="Documentation and sample code for D programming language"
-    depends=('dmd')
-    license=('Boost')
-
-    cd "$srcdir"/dmd
-
-    mkdir -p "$pkgdir"/usr/share/applications
-    install -Dm644 "$srcdir"/dmd-doc.desktop "$pkgdir"/usr/share/applications/dmd-doc.desktop
-
-    mkdir -p "$pkgdir"/usr/share/d/samples/
-    cp -r samples/* "$pkgdir"/usr/share/d/samples/
-
-    mkdir -p "$pkgdir"/usr/share/d/html
-    cp -r "$srcdir"/dmd2/html/* "$pkgdir"/usr/share/d/html/
-
-    install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_libphobos() {
-    pkgdesc="The Phobos standard library for D programming language"
-    options=('staticlibs' '!strip')
-    depends=('gcc-libs')
-    conflicts=('libphobos-devel')
-    provides=("d-runtime=$pkgver" "d-stdlib=$pkgver" "libphobos-devel=$pkgver")
-    replaces=('libphobos-devel')
-    license=('Boost')
-
-    mkdir -p "$pkgdir"/usr/lib
-    cp -P $(find "$srcdir"/{druntime,phobos}/generated/linux/release/ \( -iname "*.a" -a \! -iname "*.so.a" \) -o \( -iname "*.so*" -a \! -iname "*.o" -a \! -iname "*.a" \) ) "$pkgdir"/usr/lib
-
-    mkdir -p "$pkgdir"/usr/include/dlang/dmd
-    cp -r "$srcdir"/phobos/{*.d,etc,std} "$pkgdir"/usr/include/dlang/dmd
-    cp -r "$srcdir"/druntime/import/* "$pkgdir"/usr/include/dlang/dmd/
-
-    find "$pkgdir"/usr -type f | xargs chmod 0644
-
-    install -Dm644 "$srcdir"/druntime/LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE-druntime
-    install -Dm644 "$srcdir"/phobos/LICENSE_1_0.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: dmd/repos/community-x86_64/PKGBUILD (from rev 645379, dmd/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-06-15 17:24:26 UTC (rev 645380)
@@ -0,0 +1,136 @@
+# Maintainer: Dan Printzell <arch at vild.io>
+# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
+# Contributor: Mihails Strasunse <public at dicebot.lv>
+# Contributor: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Anders Bergh <anders1 at gmail.com>
+# Contributor: Alexander Fehr <pizzapunk gmail com>
+
+pkgname=('dmd' 'dmd-docs' 'libphobos')
+pkgdesc='D programming language compiler and standard library'
+groups=('dlang' 'dlang-dmd')
+pkgbase=dmd
+pkgver=2.092.1
+pkgrel=1
+epoch=1
+arch=('x86_64')
+url='https://www.dlang.org'
+makedepends=('git' 'ldc')
+source=("git+https://github.com/dlang/dmd.git#tag=v$pkgver"
+        "git+https://github.com/dlang/druntime.git#tag=v$pkgver"
+        "git+https://github.com/dlang/phobos.git#tag=v$pkgver"
+        "http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz"
+        "http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz.sig"
+        'dmd.conf'
+        'dmd-doc.desktop')
+sha256sums=('SKIP'
+            'SKIP'
+            'SKIP'
+            '4d49529f57e7394e4e8bfbed0ae7b899bebe4cfe04e787097591c985103c7d8e'
+            'SKIP'
+            '3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
+            '4b7b8722b3fa11082f0f332397b1b66c85b30ce773c43c3fedcba5768a1484b1')
+# Key from https://dlang.org/gpg_keys.html
+validpgpkeys=('F46A10D0AB44C3D15DD65797BCDD73FFC3EB6146') # Martin Nowak <code at dawg.eu>
+noextract=("dmd.$pkgver.linux.tar.xz")
+
+prepare() {
+    # We only want to extract the docs & samples, not the prebuild executables
+    tar xfJ "dmd.$pkgver.linux.tar.xz" dmd2/html
+
+    # Make sure the version is not -dirty
+    sed -i "s/\.git/.nope/" "$srcdir"/dmd/src/build.d
+
+    # Add $LDFLAGS and $CXXFLAGS to the compilation
+    # '-link-defaultlib-shared=false' statically links dmd to liblphobos
+    _dflags=$(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed "s/,/ -L=/g")
+    sed -i "s/--called-from-make/& CXXFLAGS=\"$CXXFLAGS\" DFLAGS='-link-defaultlib-shared=false $(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed "s/,/ -L=/g") -flto=full'/" "$srcdir"/dmd/src/posix.mak
+}
+
+build() {
+    cd "$srcdir"/dmd
+    make -f posix.mak BUILD=release ENABLE_RELEASE=1 PIC=1 ENABLE_LTO=1 HOST_DMD=ldmd2
+
+    cd "$srcdir"/druntime
+    make -f posix.mak DMD="$srcdir"/dmd/generated/linux/release/*/dmd BUILD=release ENABLE_RELEASE=1 PIC=1
+
+    cd "$srcdir"/phobos
+    make -f posix.mak DMD="$srcdir"/dmd/generated/linux/release/*/dmd BUILD=release ENABLE_RELEASE=1 PIC=1
+
+    # This requires object.d to compile, thus need to be after druntime is built
+    cd "$srcdir"/dmd
+    make -C docs DMD=ldmd2
+}
+
+package_dmd() {
+    pkgdesc="The D programming language reference compiler"
+    backup=('etc/dmd.conf')
+    depends=('gcc' 'libphobos')
+    optdepends=(
+        'dtools: collection of useful utilities for development in D'
+        'gcc-multilib: to cross-compile 32-bit applications'
+        'dmd-docs: documentation and sample code for D'
+    )
+    provides=("d-compiler=$pkgver")
+    license=('Boost')
+
+    cd "$srcdir"/dmd
+
+    install -Dm755 "$srcdir"/dmd/generated/linux/release/*/dmd "$pkgdir"/usr/bin/dmd
+
+    mkdir -p "$pkgdir"/etc
+    install -Dm644 "$srcdir"/dmd.conf "$pkgdir"/etc/dmd.conf
+
+    mkdir -p "$pkgdir"/usr/share/man/man1
+    mkdir -p "$pkgdir"/usr/share/man/man5
+    cp generated/docs/man/man1/dmd.1 "$pkgdir"/usr/share/man/man1/
+    cp -r generated/docs/man/man5/* "$pkgdir"/usr/share/man/man5/
+
+    install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+    find "$pkgdir"/usr -type f | xargs chmod 0644
+    chmod 755 "$pkgdir"/usr/bin/*
+}
+
+package_dmd-docs() {
+    pkgdesc="Documentation and sample code for D programming language"
+    depends=('dmd')
+    license=('Boost')
+
+    cd "$srcdir"/dmd
+
+    mkdir -p "$pkgdir"/usr/share/applications
+    install -Dm644 "$srcdir"/dmd-doc.desktop "$pkgdir"/usr/share/applications/dmd-doc.desktop
+
+    mkdir -p "$pkgdir"/usr/share/d/samples/
+    cp -r samples/* "$pkgdir"/usr/share/d/samples/
+
+    mkdir -p "$pkgdir"/usr/share/d/html
+    cp -r "$srcdir"/dmd2/html/* "$pkgdir"/usr/share/d/html/
+
+    install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_libphobos() {
+    pkgdesc="The Phobos standard library for D programming language"
+    options=('staticlibs' '!strip')
+    depends=('gcc-libs')
+    conflicts=('libphobos-devel')
+    provides=("d-runtime=$pkgver" "d-stdlib=$pkgver" "libphobos-devel=$pkgver")
+    replaces=('libphobos-devel')
+    license=('Boost')
+
+    mkdir -p "$pkgdir"/usr/lib
+    cp -P $(find "$srcdir"/{druntime,phobos}/generated/linux/release/ \( -iname "*.a" -a \! -iname "*.so.a" \) -o \( -iname "*.so*" -a \! -iname "*.o" -a \! -iname "*.a" \) ) "$pkgdir"/usr/lib
+
+    mkdir -p "$pkgdir"/usr/include/dlang/dmd
+    cp -r "$srcdir"/phobos/{*.d,etc,std} "$pkgdir"/usr/include/dlang/dmd
+    cp -r "$srcdir"/druntime/import/* "$pkgdir"/usr/include/dlang/dmd/
+
+    find "$pkgdir"/usr -type f | xargs chmod 0644
+
+    install -Dm644 "$srcdir"/druntime/LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE-druntime
+    install -Dm644 "$srcdir"/phobos/LICENSE_1_0.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+

Deleted: dmd-doc.desktop
===================================================================
--- dmd-doc.desktop	2020-06-15 17:24:17 UTC (rev 645379)
+++ dmd-doc.desktop	2020-06-15 17:24:26 UTC (rev 645380)
@@ -1,7 +0,0 @@
-[Desktop Entry]
-Type=Application
-Name=dmd/phobos documentation
-Comment=dmd compiler and phobos library documentation
-Exec=xdg-open /usr/share/d/html/d/spec/intro.html
-Icon=dmd-doc
-Categories=Development;

Copied: dmd/repos/community-x86_64/dmd-doc.desktop (from rev 645379, dmd/trunk/dmd-doc.desktop)
===================================================================
--- dmd-doc.desktop	                        (rev 0)
+++ dmd-doc.desktop	2020-06-15 17:24:26 UTC (rev 645380)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Type=Application
+Name=dmd/phobos documentation
+Comment=dmd compiler and phobos library documentation
+Exec=xdg-open /usr/share/d/html/d/spec/intro.html
+Icon=dmd-doc
+Categories=Development;

Deleted: dmd.conf
===================================================================
--- dmd.conf	2020-06-15 17:24:17 UTC (rev 645379)
+++ dmd.conf	2020-06-15 17:24:26 UTC (rev 645380)
@@ -1,5 +0,0 @@
-[Environment32]
-DFLAGS=-I/usr/include/dlang/dmd -L-L/usr/lib32 -L--export-dynamic -fPIC
-
-[Environment64]
-DFLAGS=-I/usr/include/dlang/dmd -L-L/usr/lib -L--export-dynamic -fPIC

Copied: dmd/repos/community-x86_64/dmd.conf (from rev 645379, dmd/trunk/dmd.conf)
===================================================================
--- dmd.conf	                        (rev 0)
+++ dmd.conf	2020-06-15 17:24:26 UTC (rev 645380)
@@ -0,0 +1,5 @@
+[Environment32]
+DFLAGS=-I/usr/include/dlang/dmd -L-L/usr/lib32 -L--export-dynamic -fPIC
+
+[Environment64]
+DFLAGS=-I/usr/include/dlang/dmd -L-L/usr/lib -L--export-dynamic -fPIC



More information about the arch-commits mailing list