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

Dan Printzell wild at gemini.archlinux.org
Fri Apr 15 15:58:48 UTC 2022


    Date: Friday, April 15, 2022 @ 15:58:47
  Author: wild
Revision: 1186580

archrelease: copy trunk to community-x86_64

Added:
  dmd/repos/community-x86_64/PKGBUILD
    (from rev 1186579, dmd/trunk/PKGBUILD)
  dmd/repos/community-x86_64/dmd-doc.desktop
    (from rev 1186579, dmd/trunk/dmd-doc.desktop)
  dmd/repos/community-x86_64/dmd.conf
    (from rev 1186579, 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        |  274 +++++++++++++++++++++++++++---------------------------
 dmd-doc.desktop |   14 +-
 dmd.conf        |   10 -
 3 files changed, 149 insertions(+), 149 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-04-15 15:58:41 UTC (rev 1186579)
+++ PKGBUILD	2022-04-15 15:58:47 UTC (rev 1186580)
@@ -1,137 +0,0 @@
-# Maintainer: Dan Printzell <wild at archlinux.org>
-# 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.099.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'
-            'd4c0fced16bbc3abfe158d3f24536a6272fa3d0c2091687b3bb1e9333d03b5a6'
-            '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
-}
-
-build() {
-    export DFLAGS="-link-defaultlib-shared=false $(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed -e "s/,/ -L=/g" -e "s/-flto=auto/--flto=full/")"
-    export HOST_DMD=ldmd2
-
-    cd "$srcdir"/dmd
-    # Make the build tool. Instructions from src/posix.mak
-    mkdir generated
-    $HOST_DMD -ofgenerated/build -g src/build.d -release -O
-    # Actually build dmd
-    generated/build BUILD=release HOST_DMD="$HOST_DMD" CXX="c++" ENABLE_RELEASE=1 DFLAGS="$DFLAGS" dmd -v $MAKEFLAGS
-
-    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=$HOST_DMD
-}
-
-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 1186579, dmd/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-04-15 15:58:47 UTC (rev 1186580)
@@ -0,0 +1,137 @@
+# Maintainer: Dan Printzell <wild at archlinux.org>
+# 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.099.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'
+            '1ceb799d2b0eb87929ecc63e1cfbb59a1d16c217ffe446779eead40965233334'
+            'SKIP'
+            '3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
+            '4b7b8722b3fa11082f0f332397b1b66c85b30ce773c43c3fedcba5768a1484b1')
+# Key from https://dlang.org/gpg_keys.html
+validpgpkeys=('F8A26D5D7572ECA06EC7973182C52E37A8BC8393') # 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
+}
+
+build() {
+    export DFLAGS="-link-defaultlib-shared=false $(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed -e "s/,/ -L=/g" -e "s/-flto=auto/--flto=full/")"
+    export HOST_DMD=ldmd2
+
+    cd "$srcdir"/dmd
+    # Make the build tool. Instructions from src/posix.mak
+    mkdir generated
+    $HOST_DMD -ofgenerated/build -g src/build.d -release -O
+    # Actually build dmd
+    generated/build BUILD=release HOST_DMD="$HOST_DMD" CXX="c++" ENABLE_RELEASE=1 DFLAGS="$DFLAGS" dmd -v $MAKEFLAGS
+
+    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=$HOST_DMD
+}
+
+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	2022-04-15 15:58:41 UTC (rev 1186579)
+++ dmd-doc.desktop	2022-04-15 15:58:47 UTC (rev 1186580)
@@ -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 1186579, dmd/trunk/dmd-doc.desktop)
===================================================================
--- dmd-doc.desktop	                        (rev 0)
+++ dmd-doc.desktop	2022-04-15 15:58:47 UTC (rev 1186580)
@@ -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	2022-04-15 15:58:41 UTC (rev 1186579)
+++ dmd.conf	2022-04-15 15:58:47 UTC (rev 1186580)
@@ -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 1186579, dmd/trunk/dmd.conf)
===================================================================
--- dmd.conf	                        (rev 0)
+++ dmd.conf	2022-04-15 15:58:47 UTC (rev 1186580)
@@ -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