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

Михаил Страшун dicebot at nymeria.archlinux.org
Wed Oct 2 11:26:53 UTC 2013


    Date: Wednesday, October 2, 2013 @ 13:26:53
  Author: dicebot
Revision: 97970

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

Added:
  dmd/repos/community-i686/PKGBUILD
    (from rev 97969, dmd/trunk/PKGBUILD)
  dmd/repos/community-i686/soname.diff
    (from rev 97969, dmd/trunk/soname.diff)
  dmd/repos/community-x86_64/PKGBUILD
    (from rev 97969, dmd/trunk/PKGBUILD)
  dmd/repos/community-x86_64/soname.diff
    (from rev 97969, dmd/trunk/soname.diff)
Deleted:
  dmd/repos/community-i686/PKGBUILD
  dmd/repos/community-i686/soname.diff
  dmd/repos/community-x86_64/PKGBUILD
  dmd/repos/community-x86_64/soname.diff

------------------------------+
 /PKGBUILD                    |  258 +++++++++++++++++++++++++++++++++++++++++
 /soname.diff                 |   30 ++++
 community-i686/PKGBUILD      |  128 --------------------
 community-i686/soname.diff   |   15 --
 community-x86_64/PKGBUILD    |  128 --------------------
 community-x86_64/soname.diff |   15 --
 6 files changed, 288 insertions(+), 286 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-10-02 11:25:51 UTC (rev 97969)
+++ community-i686/PKGBUILD	2013-10-02 11:26:53 UTC (rev 97970)
@@ -1,128 +0,0 @@
-# $Id: PKGBUILD 96324 2013-08-25 17:11:08Z dicebot $
-# Maintainer: 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' 'libphobos-devel' 'libphobos' 'dtools')
-groups=('dlang' 'dlang-dmd')
-pkgbase=dmd
-pkgver=2.063.2
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://www.dlang.org"
-makedepends=('git' 'gcc' 'make')
-source=("git+http://github.com/D-Programming-Language/dmd.git#tag=v$pkgver"
-        "git+http://github.com/D-Programming-Language/druntime.git#tag=v$pkgver"
-        "git+http://github.com/D-Programming-Language/phobos.git#tag=v$pkgver"
-        "git+http://github.com/D-Programming-Language/tools#tag=v$pkgver" 
-        "soname.diff")
-sha1sums=('SKIP'
-          'SKIP'
-          'SKIP'
-          'SKIP'
-          '5a2198e8a024e1e6494034da569f0df18fabcf9d')
-
-[[ $CARCH == "x86_64" ]] && _archbits="64"
-[[ $CARCH == "i686" ]] && _archbits="32"
-
-build() {
-    cd $srcdir/dmd/src
-    make -f posix.mak MODEL=$_archbits RELEASE=1
-
-    cd $srcdir/druntime
-    make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
-
-    cd $srcdir/phobos
-    # will be in upstream in next release but making naming change as early as possible
-    git apply $srcdir/soname.diff
-    make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
-
-    cd $srcdir/tools
-
-    # rdmd is used to buil others
-    $srcdir/dmd/src/dmd -I../druntime/import -I../phobos -L-L../phobos/generated/linux/release/$_archbits/ -od. -ofdtools-rdmd rdmd.d
-
-    for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
-        ./dtools-rdmd --compiler=$srcdir/dmd/src/dmd --build-only -I../druntime/import -I../phobos -L-L../phobos/generated/linux/release/$_archbits/ -od. -ofdtools-`basename $tool` $tool.d
-    done
-}
-
-package_dmd() {
-    pkgdesc="The D programming language reference compiler"
-    backup=('etc/dmd.conf')
-    depends=('gcc')
-    optdepends=('dtools: collection of useful utilities for development in D' 'libphobos-devel: standard library, development package')
-    provides=("d-compiler=$pkgver")
-    license=('custom')
-    backup=('etc/dmd.conf')
-
-    install -Dm755 $srcdir/dmd/src/dmd $pkgdir/usr/bin/dmd
-
-    mkdir -p $pkgdir/etc
-    echo -e "[Environment]\nDFLAGS=-I/usr/include/dlang/dmd -I/usr/include/dlang/dmd/druntime/import -L-L/usr/lib -L-L/usr/lib32 -L--no-warn-search-mismatch -L--export-dynamic" > $pkgdir/etc/dmd.conf
-
-    install -Dm644 $srcdir/dmd/docs/man/man1/dmd.1 $pkgdir/usr/share/man/man1/dmd.1
-    install -Dm644 $srcdir/dmd/docs/man/man1/dmd.conf.5 $pkgdir/usr/share/man/man5/dmd.conf.5
-
-    install -Dm644 $srcdir/dmd/src/backendlicense.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-backend
-    install -Dm644 $srcdir/dmd/src/gpl.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-frontend.1
-    install -Dm644 $srcdir/dmd/src/artistic.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-frontend.2
-    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
-
-    mkdir -p $pkgdir/usr/share/d/samples/
-    cp -r $srcdir/dmd/samples/* $pkgdir/usr/share/d/samples/
-
-    find $pkgdir/usr -type f | xargs chmod 0644
-    chmod 755 $pkgdir/usr/bin/*
-}
-
-package_libphobos-devel() {
-    pkgdesc="The Phobos standard library for D programming language. Modules and static library."
-    depends=("dmd")
-    license=("custom")
-
-    install -Dm644 $srcdir/phobos/generated/linux/release/$_archbits/libphobos2.a $pkgdir/usr/lib/libphobos2.a
-
-    mkdir -p $pkgdir/usr/include/dlang/dmd
-    cp -r $srcdir/phobos/{*.d,etc,std} $pkgdir/usr/include/dlang/dmd
-
-    mkdir -p $pkgdir/usr/include/dlang/dmd/druntime
-    cp -r $srcdir/druntime/import $pkgdir/usr/include/dlang/dmd/druntime
-
-    find $pkgdir/usr -type f | xargs chmod 0644
-
-    install -Dm644 $srcdir/druntime/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
-    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
-}
-
-package_libphobos() {
-    pkgdesc="The Phobos standard library for D programming language."
-    depends=("curl")
-    license=("custom")
-
-    install -Dm644 $srcdir/phobos/generated/linux/release/$_archbits/libphobos2.so $pkgdir/usr/lib/libphobos2.so
-    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_dtools() {
-    pkgdesc="Ancilliary tools for the D programming language compiler"
-    depends=("curl")
-    license=("custom")
-
-    cd $srcdir/tools
-
-    mkdir -p $pkgdir/usr/bin
-    for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
-        install -m755 -t $pkgdir/usr/bin $pkgname-$tool
-    done
-
-    cd $pkgdir
-    ln -s dtools-rdmd usr/bin/rdmd
-    ln -s dtools-dustmite usr/bin/dustmite
-
-    # same Boost license as Phobos
-    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt usr/share/licenses/$pkgname/LICENSE-phobos
-}

Copied: dmd/repos/community-i686/PKGBUILD (from rev 97969, dmd/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-10-02 11:26:53 UTC (rev 97970)
@@ -0,0 +1,129 @@
+# $Id$
+# Maintainer: 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' 'libphobos-devel' 'libphobos' 'dtools')
+groups=('dlang' 'dlang-dmd')
+pkgbase=dmd
+pkgver=2.063.2
+pkgrel=3
+arch=('i686' 'x86_64')
+url="http://www.dlang.org"
+makedepends=('git' 'gcc' 'make')
+source=("git+http://github.com/D-Programming-Language/dmd.git#tag=v$pkgver"
+        "git+http://github.com/D-Programming-Language/druntime.git#tag=v$pkgver"
+        "git+http://github.com/D-Programming-Language/phobos.git#tag=v$pkgver"
+        "git+http://github.com/D-Programming-Language/tools#tag=v$pkgver" 
+        "soname.diff")
+sha1sums=('SKIP'
+          'SKIP'
+          'SKIP'
+          'SKIP'
+          '5a2198e8a024e1e6494034da569f0df18fabcf9d')
+
+[[ $CARCH == "x86_64" ]] && _archbits="64"
+[[ $CARCH == "i686" ]] && _archbits="32"
+
+build() {
+    cd $srcdir/dmd/src
+    make -f posix.mak MODEL=$_archbits RELEASE=1
+
+    cd $srcdir/druntime
+    make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
+
+    cd $srcdir/phobos
+    # will be in upstream in next release but making naming change as early as possible
+    git apply $srcdir/soname.diff
+    make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
+
+    cd $srcdir/tools
+
+    # rdmd is used to buil others
+    $srcdir/dmd/src/dmd -I../druntime/import -I../phobos -L-L../phobos/generated/linux/release/$_archbits/ -od. -ofdtools-rdmd rdmd.d
+
+    for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
+        ./dtools-rdmd --compiler=$srcdir/dmd/src/dmd --build-only -I../druntime/import -I../phobos -L-L../phobos/generated/linux/release/$_archbits/ -od. -ofdtools-`basename $tool` $tool.d
+    done
+}
+
+package_dmd() {
+    pkgdesc="The D programming language reference compiler"
+    backup=('etc/dmd.conf')
+    depends=('gcc')
+    optdepends=('dtools: collection of useful utilities for development in D' 'libphobos-devel: standard library, development package')
+    provides=("d-compiler=$pkgver")
+    license=('custom')
+    backup=('etc/dmd.conf')
+
+    install -Dm755 $srcdir/dmd/src/dmd $pkgdir/usr/bin/dmd
+
+    mkdir -p $pkgdir/etc
+    echo -e "[Environment]\nDFLAGS=-I/usr/include/dlang/dmd -I/usr/include/dlang/dmd/druntime/import -L-L/usr/lib -L-L/usr/lib32 -L--no-warn-search-mismatch -L--export-dynamic" > $pkgdir/etc/dmd.conf
+
+    install -Dm644 $srcdir/dmd/docs/man/man1/dmd.1 $pkgdir/usr/share/man/man1/dmd.1
+    install -Dm644 $srcdir/dmd/docs/man/man1/dmd.conf.5 $pkgdir/usr/share/man/man5/dmd.conf.5
+
+    install -Dm644 $srcdir/dmd/src/backendlicense.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-backend
+    install -Dm644 $srcdir/dmd/src/gpl.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-frontend.1
+    install -Dm644 $srcdir/dmd/src/artistic.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-frontend.2
+    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
+
+    mkdir -p $pkgdir/usr/share/d/samples/
+    cp -r $srcdir/dmd/samples/* $pkgdir/usr/share/d/samples/
+
+    find $pkgdir/usr -type f | xargs chmod 0644
+    chmod 755 $pkgdir/usr/bin/*
+}
+
+package_libphobos-devel() {
+    pkgdesc="The Phobos standard library for D programming language. Modules and static library."
+    depends=("dmd")
+    provides=("d-runtime=$pkgver" "d-stdlib=$pkgver")
+    license=("custom")
+
+    install -Dm644 $srcdir/phobos/generated/linux/release/$_archbits/libphobos2.a $pkgdir/usr/lib/libphobos2.a
+
+    mkdir -p $pkgdir/usr/include/dlang/dmd
+    cp -r $srcdir/phobos/{*.d,etc,std} $pkgdir/usr/include/dlang/dmd
+
+    mkdir -p $pkgdir/usr/include/dlang/dmd/druntime
+    cp -r $srcdir/druntime/import $pkgdir/usr/include/dlang/dmd/druntime
+
+    find $pkgdir/usr -type f | xargs chmod 0644
+
+    install -Dm644 $srcdir/druntime/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
+    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
+}
+
+package_libphobos() {
+    pkgdesc="The Phobos standard library for D programming language."
+    depends=("curl")
+    license=("custom")
+
+    install -Dm644 $srcdir/phobos/generated/linux/release/$_archbits/libphobos2.so $pkgdir/usr/lib/libphobos2.so
+    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_dtools() {
+    pkgdesc="Ancilliary tools for the D programming language compiler"
+    depends=("curl")
+    license=("custom")
+
+    cd $srcdir/tools
+
+    mkdir -p $pkgdir/usr/bin
+    for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
+        install -m755 -t $pkgdir/usr/bin $pkgname-$tool
+    done
+
+    cd $pkgdir
+    ln -s dtools-rdmd usr/bin/rdmd
+    ln -s dtools-dustmite usr/bin/dustmite
+
+    # same Boost license as Phobos
+    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt usr/share/licenses/$pkgname/LICENSE-phobos
+}

Deleted: community-i686/soname.diff
===================================================================
--- community-i686/soname.diff	2013-10-02 11:25:51 UTC (rev 97969)
+++ community-i686/soname.diff	2013-10-02 11:26:53 UTC (rev 97970)
@@ -1,15 +0,0 @@
-diff --git a/posix.mak b/posix.mak
-index 8fd953e..3776bb4 100644
---- a/posix.mak
-+++ b/posix.mak
-@@ -153,8 +153,8 @@ DDOC=$(DMD)
- VERSION=../dmd/VERSION
- 
- # Set SONAME, the name of the shared library.
--# The awk script will produce the last 2 digits of the version string, i.e. 2.063 produces 63
--SONAME = libphobos2.so.0.$(shell awk -F. '{ print $$NF + 0 }' $(VERSION))
-+# The awk script will return the second group without leading zeros of the version string, i.e. 2.063.2 produces 63
-+SONAME = libphobos2.so.0.$(shell awk -F. '{ print $$2 + 0 }' $(VERSION))
- 
- # Set LIB, the ultimate target
- ifeq (,$(findstring win,$(OS)))

Copied: dmd/repos/community-i686/soname.diff (from rev 97969, dmd/trunk/soname.diff)
===================================================================
--- community-i686/soname.diff	                        (rev 0)
+++ community-i686/soname.diff	2013-10-02 11:26:53 UTC (rev 97970)
@@ -0,0 +1,15 @@
+diff --git a/posix.mak b/posix.mak
+index 8fd953e..3776bb4 100644
+--- a/posix.mak
++++ b/posix.mak
+@@ -153,8 +153,8 @@ DDOC=$(DMD)
+ VERSION=../dmd/VERSION
+ 
+ # Set SONAME, the name of the shared library.
+-# The awk script will produce the last 2 digits of the version string, i.e. 2.063 produces 63
+-SONAME = libphobos2.so.0.$(shell awk -F. '{ print $$NF + 0 }' $(VERSION))
++# The awk script will return the second group without leading zeros of the version string, i.e. 2.063.2 produces 63
++SONAME = libphobos2.so.0.$(shell awk -F. '{ print $$2 + 0 }' $(VERSION))
+ 
+ # Set LIB, the ultimate target
+ ifeq (,$(findstring win,$(OS)))

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-10-02 11:25:51 UTC (rev 97969)
+++ community-x86_64/PKGBUILD	2013-10-02 11:26:53 UTC (rev 97970)
@@ -1,128 +0,0 @@
-# $Id: PKGBUILD 96324 2013-08-25 17:11:08Z dicebot $
-# Maintainer: 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' 'libphobos-devel' 'libphobos' 'dtools')
-groups=('dlang' 'dlang-dmd')
-pkgbase=dmd
-pkgver=2.063.2
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://www.dlang.org"
-makedepends=('git' 'gcc' 'make')
-source=("git+http://github.com/D-Programming-Language/dmd.git#tag=v$pkgver"
-        "git+http://github.com/D-Programming-Language/druntime.git#tag=v$pkgver"
-        "git+http://github.com/D-Programming-Language/phobos.git#tag=v$pkgver"
-        "git+http://github.com/D-Programming-Language/tools#tag=v$pkgver" 
-        "soname.diff")
-sha1sums=('SKIP'
-          'SKIP'
-          'SKIP'
-          'SKIP'
-          '5a2198e8a024e1e6494034da569f0df18fabcf9d')
-
-[[ $CARCH == "x86_64" ]] && _archbits="64"
-[[ $CARCH == "i686" ]] && _archbits="32"
-
-build() {
-    cd $srcdir/dmd/src
-    make -f posix.mak MODEL=$_archbits RELEASE=1
-
-    cd $srcdir/druntime
-    make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
-
-    cd $srcdir/phobos
-    # will be in upstream in next release but making naming change as early as possible
-    git apply $srcdir/soname.diff
-    make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
-
-    cd $srcdir/tools
-
-    # rdmd is used to buil others
-    $srcdir/dmd/src/dmd -I../druntime/import -I../phobos -L-L../phobos/generated/linux/release/$_archbits/ -od. -ofdtools-rdmd rdmd.d
-
-    for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
-        ./dtools-rdmd --compiler=$srcdir/dmd/src/dmd --build-only -I../druntime/import -I../phobos -L-L../phobos/generated/linux/release/$_archbits/ -od. -ofdtools-`basename $tool` $tool.d
-    done
-}
-
-package_dmd() {
-    pkgdesc="The D programming language reference compiler"
-    backup=('etc/dmd.conf')
-    depends=('gcc')
-    optdepends=('dtools: collection of useful utilities for development in D' 'libphobos-devel: standard library, development package')
-    provides=("d-compiler=$pkgver")
-    license=('custom')
-    backup=('etc/dmd.conf')
-
-    install -Dm755 $srcdir/dmd/src/dmd $pkgdir/usr/bin/dmd
-
-    mkdir -p $pkgdir/etc
-    echo -e "[Environment]\nDFLAGS=-I/usr/include/dlang/dmd -I/usr/include/dlang/dmd/druntime/import -L-L/usr/lib -L-L/usr/lib32 -L--no-warn-search-mismatch -L--export-dynamic" > $pkgdir/etc/dmd.conf
-
-    install -Dm644 $srcdir/dmd/docs/man/man1/dmd.1 $pkgdir/usr/share/man/man1/dmd.1
-    install -Dm644 $srcdir/dmd/docs/man/man1/dmd.conf.5 $pkgdir/usr/share/man/man5/dmd.conf.5
-
-    install -Dm644 $srcdir/dmd/src/backendlicense.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-backend
-    install -Dm644 $srcdir/dmd/src/gpl.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-frontend.1
-    install -Dm644 $srcdir/dmd/src/artistic.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-frontend.2
-    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
-
-    mkdir -p $pkgdir/usr/share/d/samples/
-    cp -r $srcdir/dmd/samples/* $pkgdir/usr/share/d/samples/
-
-    find $pkgdir/usr -type f | xargs chmod 0644
-    chmod 755 $pkgdir/usr/bin/*
-}
-
-package_libphobos-devel() {
-    pkgdesc="The Phobos standard library for D programming language. Modules and static library."
-    depends=("dmd")
-    license=("custom")
-
-    install -Dm644 $srcdir/phobos/generated/linux/release/$_archbits/libphobos2.a $pkgdir/usr/lib/libphobos2.a
-
-    mkdir -p $pkgdir/usr/include/dlang/dmd
-    cp -r $srcdir/phobos/{*.d,etc,std} $pkgdir/usr/include/dlang/dmd
-
-    mkdir -p $pkgdir/usr/include/dlang/dmd/druntime
-    cp -r $srcdir/druntime/import $pkgdir/usr/include/dlang/dmd/druntime
-
-    find $pkgdir/usr -type f | xargs chmod 0644
-
-    install -Dm644 $srcdir/druntime/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
-    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
-}
-
-package_libphobos() {
-    pkgdesc="The Phobos standard library for D programming language."
-    depends=("curl")
-    license=("custom")
-
-    install -Dm644 $srcdir/phobos/generated/linux/release/$_archbits/libphobos2.so $pkgdir/usr/lib/libphobos2.so
-    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_dtools() {
-    pkgdesc="Ancilliary tools for the D programming language compiler"
-    depends=("curl")
-    license=("custom")
-
-    cd $srcdir/tools
-
-    mkdir -p $pkgdir/usr/bin
-    for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
-        install -m755 -t $pkgdir/usr/bin $pkgname-$tool
-    done
-
-    cd $pkgdir
-    ln -s dtools-rdmd usr/bin/rdmd
-    ln -s dtools-dustmite usr/bin/dustmite
-
-    # same Boost license as Phobos
-    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt usr/share/licenses/$pkgname/LICENSE-phobos
-}

Copied: dmd/repos/community-x86_64/PKGBUILD (from rev 97969, dmd/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-10-02 11:26:53 UTC (rev 97970)
@@ -0,0 +1,129 @@
+# $Id$
+# Maintainer: 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' 'libphobos-devel' 'libphobos' 'dtools')
+groups=('dlang' 'dlang-dmd')
+pkgbase=dmd
+pkgver=2.063.2
+pkgrel=3
+arch=('i686' 'x86_64')
+url="http://www.dlang.org"
+makedepends=('git' 'gcc' 'make')
+source=("git+http://github.com/D-Programming-Language/dmd.git#tag=v$pkgver"
+        "git+http://github.com/D-Programming-Language/druntime.git#tag=v$pkgver"
+        "git+http://github.com/D-Programming-Language/phobos.git#tag=v$pkgver"
+        "git+http://github.com/D-Programming-Language/tools#tag=v$pkgver" 
+        "soname.diff")
+sha1sums=('SKIP'
+          'SKIP'
+          'SKIP'
+          'SKIP'
+          '5a2198e8a024e1e6494034da569f0df18fabcf9d')
+
+[[ $CARCH == "x86_64" ]] && _archbits="64"
+[[ $CARCH == "i686" ]] && _archbits="32"
+
+build() {
+    cd $srcdir/dmd/src
+    make -f posix.mak MODEL=$_archbits RELEASE=1
+
+    cd $srcdir/druntime
+    make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
+
+    cd $srcdir/phobos
+    # will be in upstream in next release but making naming change as early as possible
+    git apply $srcdir/soname.diff
+    make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
+
+    cd $srcdir/tools
+
+    # rdmd is used to buil others
+    $srcdir/dmd/src/dmd -I../druntime/import -I../phobos -L-L../phobos/generated/linux/release/$_archbits/ -od. -ofdtools-rdmd rdmd.d
+
+    for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
+        ./dtools-rdmd --compiler=$srcdir/dmd/src/dmd --build-only -I../druntime/import -I../phobos -L-L../phobos/generated/linux/release/$_archbits/ -od. -ofdtools-`basename $tool` $tool.d
+    done
+}
+
+package_dmd() {
+    pkgdesc="The D programming language reference compiler"
+    backup=('etc/dmd.conf')
+    depends=('gcc')
+    optdepends=('dtools: collection of useful utilities for development in D' 'libphobos-devel: standard library, development package')
+    provides=("d-compiler=$pkgver")
+    license=('custom')
+    backup=('etc/dmd.conf')
+
+    install -Dm755 $srcdir/dmd/src/dmd $pkgdir/usr/bin/dmd
+
+    mkdir -p $pkgdir/etc
+    echo -e "[Environment]\nDFLAGS=-I/usr/include/dlang/dmd -I/usr/include/dlang/dmd/druntime/import -L-L/usr/lib -L-L/usr/lib32 -L--no-warn-search-mismatch -L--export-dynamic" > $pkgdir/etc/dmd.conf
+
+    install -Dm644 $srcdir/dmd/docs/man/man1/dmd.1 $pkgdir/usr/share/man/man1/dmd.1
+    install -Dm644 $srcdir/dmd/docs/man/man1/dmd.conf.5 $pkgdir/usr/share/man/man5/dmd.conf.5
+
+    install -Dm644 $srcdir/dmd/src/backendlicense.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-backend
+    install -Dm644 $srcdir/dmd/src/gpl.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-frontend.1
+    install -Dm644 $srcdir/dmd/src/artistic.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-frontend.2
+    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
+
+    mkdir -p $pkgdir/usr/share/d/samples/
+    cp -r $srcdir/dmd/samples/* $pkgdir/usr/share/d/samples/
+
+    find $pkgdir/usr -type f | xargs chmod 0644
+    chmod 755 $pkgdir/usr/bin/*
+}
+
+package_libphobos-devel() {
+    pkgdesc="The Phobos standard library for D programming language. Modules and static library."
+    depends=("dmd")
+    provides=("d-runtime=$pkgver" "d-stdlib=$pkgver")
+    license=("custom")
+
+    install -Dm644 $srcdir/phobos/generated/linux/release/$_archbits/libphobos2.a $pkgdir/usr/lib/libphobos2.a
+
+    mkdir -p $pkgdir/usr/include/dlang/dmd
+    cp -r $srcdir/phobos/{*.d,etc,std} $pkgdir/usr/include/dlang/dmd
+
+    mkdir -p $pkgdir/usr/include/dlang/dmd/druntime
+    cp -r $srcdir/druntime/import $pkgdir/usr/include/dlang/dmd/druntime
+
+    find $pkgdir/usr -type f | xargs chmod 0644
+
+    install -Dm644 $srcdir/druntime/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
+    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
+}
+
+package_libphobos() {
+    pkgdesc="The Phobos standard library for D programming language."
+    depends=("curl")
+    license=("custom")
+
+    install -Dm644 $srcdir/phobos/generated/linux/release/$_archbits/libphobos2.so $pkgdir/usr/lib/libphobos2.so
+    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_dtools() {
+    pkgdesc="Ancilliary tools for the D programming language compiler"
+    depends=("curl")
+    license=("custom")
+
+    cd $srcdir/tools
+
+    mkdir -p $pkgdir/usr/bin
+    for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
+        install -m755 -t $pkgdir/usr/bin $pkgname-$tool
+    done
+
+    cd $pkgdir
+    ln -s dtools-rdmd usr/bin/rdmd
+    ln -s dtools-dustmite usr/bin/dustmite
+
+    # same Boost license as Phobos
+    install -Dm644 $srcdir/phobos/LICENSE_1_0.txt usr/share/licenses/$pkgname/LICENSE-phobos
+}

Deleted: community-x86_64/soname.diff
===================================================================
--- community-x86_64/soname.diff	2013-10-02 11:25:51 UTC (rev 97969)
+++ community-x86_64/soname.diff	2013-10-02 11:26:53 UTC (rev 97970)
@@ -1,15 +0,0 @@
-diff --git a/posix.mak b/posix.mak
-index 8fd953e..3776bb4 100644
---- a/posix.mak
-+++ b/posix.mak
-@@ -153,8 +153,8 @@ DDOC=$(DMD)
- VERSION=../dmd/VERSION
- 
- # Set SONAME, the name of the shared library.
--# The awk script will produce the last 2 digits of the version string, i.e. 2.063 produces 63
--SONAME = libphobos2.so.0.$(shell awk -F. '{ print $$NF + 0 }' $(VERSION))
-+# The awk script will return the second group without leading zeros of the version string, i.e. 2.063.2 produces 63
-+SONAME = libphobos2.so.0.$(shell awk -F. '{ print $$2 + 0 }' $(VERSION))
- 
- # Set LIB, the ultimate target
- ifeq (,$(findstring win,$(OS)))

Copied: dmd/repos/community-x86_64/soname.diff (from rev 97969, dmd/trunk/soname.diff)
===================================================================
--- community-x86_64/soname.diff	                        (rev 0)
+++ community-x86_64/soname.diff	2013-10-02 11:26:53 UTC (rev 97970)
@@ -0,0 +1,15 @@
+diff --git a/posix.mak b/posix.mak
+index 8fd953e..3776bb4 100644
+--- a/posix.mak
++++ b/posix.mak
+@@ -153,8 +153,8 @@ DDOC=$(DMD)
+ VERSION=../dmd/VERSION
+ 
+ # Set SONAME, the name of the shared library.
+-# The awk script will produce the last 2 digits of the version string, i.e. 2.063 produces 63
+-SONAME = libphobos2.so.0.$(shell awk -F. '{ print $$NF + 0 }' $(VERSION))
++# The awk script will return the second group without leading zeros of the version string, i.e. 2.063.2 produces 63
++SONAME = libphobos2.so.0.$(shell awk -F. '{ print $$2 + 0 }' $(VERSION))
+ 
+ # Set LIB, the ultimate target
+ ifeq (,$(findstring win,$(OS)))




More information about the arch-commits mailing list