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

Михаил Страшун dicebot at nymeria.archlinux.org
Mon Mar 3 00:09:56 UTC 2014


    Date: Monday, March 3, 2014 @ 01:09:56
  Author: dicebot
Revision: 106425

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

Added:
  gdc/repos/community-i686/PKGBUILD
    (from rev 106424, gdc/trunk/PKGBUILD)
  gdc/repos/community-i686/folders.diff
    (from rev 106424, gdc/trunk/folders.diff)
  gdc/repos/community-x86_64/PKGBUILD
    (from rev 106424, gdc/trunk/PKGBUILD)
  gdc/repos/community-x86_64/folders.diff
    (from rev 106424, gdc/trunk/folders.diff)
Deleted:
  gdc/repos/community-i686/PKGBUILD
  gdc/repos/community-i686/folders.diff
  gdc/repos/community-x86_64/PKGBUILD
  gdc/repos/community-x86_64/folders.diff

-------------------------------+
 /PKGBUILD                     |  230 ++++++++++++++++++++++++++++++++++++++++
 /folders.diff                 |   68 +++++++++++
 community-i686/PKGBUILD       |  105 ------------------
 community-i686/folders.diff   |   16 --
 community-x86_64/PKGBUILD     |  106 ------------------
 community-x86_64/folders.diff |   34 -----
 6 files changed, 298 insertions(+), 261 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-03-03 00:09:46 UTC (rev 106424)
+++ community-i686/PKGBUILD	2014-03-03 00:09:56 UTC (rev 106425)
@@ -1,105 +0,0 @@
-# Maintainer: Mihails Strasuns <public at dicebot.lv>
-# Contributor: Moritz Maxeiner <moritz at ucworks.org>
-# Contributor: Jerome Berger <jeberger at free.fr>
-# Contributor: Jesus Alvarez <jeezusjr at gmail.com>
-
-pkgname=('gdc' 'libgphobos-devel')
-pkgver=4.8.2
-pkgrel=4
-arch=('i686' 'x86_64')
-url="https://github.com/D-Programming-GDC/GDC"
-license=('GPL')
-makedepends=('binutils>=2.23' 'git' 'gcc' 'make' 'perl' 'cloog' 'automake')
-options=('!emptydirs' '!buildflags')
-_snapshot=4.8-20130725
-source=(ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
-        gdc::git://github.com/D-Programming-GDC/GDC.git#branch=gdc-4.8
-        folders.diff)
-sha256sums=('e4e2202b15f8ba323f88c65de0e4190b0630a4b2e70b0653526b31e946877ead'
-            'SKIP'
-            '805d1130394e3ff18ae7043e111fe2ea045a7da6f290d298a670f9e2c35ba533')
-
-groups=('dlang' 'dlang-gdc')
-conflicts=('gdc1-bin' 'gdc1-hg' 'gdc-git')
-
-prepare()
-{
-    cd $srcdir/gcc-$_snapshot
-
-    # Do not run fixincludes
-    sed -i 's@\./fixinc\.sh at -c true@' gcc/Makefile.in
-
-    echo $pkgver > gcc/BASE-VER
-
-    # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
-    sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
-
-    cd $srcdir/gdc
-    git apply $srcdir/folders.diff # fix gdc_include_path
-    ./setup-gcc.sh ../gcc-$_snapshot
-
-    mkdir $srcdir/gcc-build
-}
-
-
-build()
-{
-    cd ${srcdir}/gcc-build
-
-    ${srcdir}/gcc-$_snapshot/configure --prefix=/usr \
-        --libdir=/usr/lib --libexecdir=/usr/lib \
-        --mandir=/usr/share/man --infodir=/usr/share/info \
-        --with-bugurl=https://bugs.archlinux.org/ \
-        --enable-languages=d \
-        --enable-shared --enable-threads=posix \
-        --with-system-zlib --enable-__cxa_atexit \
-        --disable-libunwind-exceptions --enable-clocale=gnu \
-        --disable-libstdcxx-pch \
-        --enable-gnu-unique-object --enable-linker-build-id \
-        --enable-cloog-backend=isl --disable-cloog-version-check \
-        --enable-lto --enable-gold --enable-ld=default \
-        --enable-plugin --with-plugin-ld=ld.gold \
-        --with-linker-hash-style=gnu --disable-install-libiberty \
-        --disable-multilib --disable-libssp --disable-werror \
-        --disable-nls --disable-bootstrap \
-        --disable-libgomp --disable-libmudflap --disable-libquadmath
-
-    make 
-}
-
-package_gdc()
-{
-    depends=('gcc' 'binutils')
-    optdepends=('libgphobos-devel: D standard library, GDC version')
-    provides=("d-compiler")
-    pkgdesc="Compiler for D programming language which uses gcc backend (2.064.2 frontend version)"
- 
-    install -D -m755 $srcdir/gcc-build/gcc/gdc $pkgdir/usr/bin/gdc
-    install -D -m755 $srcdir/gcc-build/gcc/cc1d $pkgdir/usr/lib/gcc/$CHOST/$pkgver/cc1d
-}
-
-package_libgphobos-devel()
-{
-    pkgdesc="Standard library for D programming language, GDC port"
-    provides=("d-runtime" "d-stdlib")
-    options=("staticlibs")
-    depends=('gdc')
-
-    # druntime
-    install -D $srcdir/gdc/libphobos/libdruntime/object.di $pkgdir/usr/include/dlang/gdc/$pkgver/object.di
-    cp -r $srcdir/gdc/libphobos/libdruntime/core $pkgdir/usr/include/dlang/gdc/$pkgver/core
-    cp -r $srcdir/gdc/libphobos/libdruntime/gcc $pkgdir/usr/include/dlang/gdc/$pkgver/gcc
-
-    # workaround for auto-generated libbacktrace issue
-	# script needs to be re-written to first call normal gcc instalaltion targets to
-	# avoid such problems in future
-	cp $srcdir/gcc-build/$CHOST/libphobos/libdruntime/gcc/libbacktrace.d $pkgdir/usr/include/dlang/gdc/$pkgver/gcc
-	rm $pkgdir/usr/include/dlang/gdc/$pkgver/gcc/libbacktrace.d.in
-
-    # phobos
-    cp $srcdir/gdc/libphobos/src/crc32.d ${pkgdir}/usr/include/dlang/gdc/$pkgver/crc32.d
-    cp -r $srcdir/gdc/libphobos/src/std ${pkgdir}/usr/include/dlang/gdc/$pkgver/std
-    cp -r $srcdir/gdc/libphobos/src/etc ${pkgdir}/usr/include/dlang/gdc/$pkgver/etc
-
-    install -D -m644 $srcdir/gcc-build/$CHOST/libphobos/src/libgphobos2.a $pkgdir/usr/lib/libgphobos2.a
-}

Copied: gdc/repos/community-i686/PKGBUILD (from rev 106424, gdc/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-03-03 00:09:56 UTC (rev 106425)
@@ -0,0 +1,115 @@
+# Maintainer: Mihails Strasuns <public at dicebot.lv>
+# Contributor: Moritz Maxeiner <moritz at ucworks.org>
+# Contributor: Jerome Berger <jeberger at free.fr>
+# Contributor: Jesus Alvarez <jeezusjr at gmail.com>
+
+pkgname=('gdc' 'libgphobos-devel')
+pkgver=4.8.2
+pkgrel=7
+arch=('i686' 'x86_64')
+url="https://github.com/D-Programming-GDC/GDC"
+license=('GPL')
+makedepends=('binutils>=2.23' 'git' 'gcc' 'make' 'perl' 'cloog' 'automake')
+options=('!emptydirs' '!buildflags')
+_snapshot=4.8-20130725
+source=(
+    "ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2"
+    "gdc::git://github.com/D-Programming-GDC/GDC.git#branch=gdc-4.8"
+    "git+https://github.com/D-Programming-GDC/GDMD.git"
+    "folders.diff"
+)
+sha256sums=(
+    'e4e2202b15f8ba323f88c65de0e4190b0630a4b2e70b0653526b31e946877ead'
+    'SKIP'
+    'SKIP'
+    '82f1ba0825164a74660bd5008d8f3acae1bacc3271c86475efc1601fe0da73c4'
+)
+
+groups=('dlang' 'dlang-gdc')
+conflicts=('gdc1-bin' 'gdc1-hg' 'gdc-git')
+
+prepare()
+{
+    cd $srcdir/gcc-$_snapshot
+
+    # Do not run fixincludes
+    sed -i 's@\./fixinc\.sh at -c true@' gcc/Makefile.in
+
+    echo $pkgver > gcc/BASE-VER
+
+    # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
+    sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
+
+    cd $srcdir/gdc
+    git apply $srcdir/folders.diff # fix gdc_include_path
+    ./setup-gcc.sh ../gcc-$_snapshot
+
+    mkdir $srcdir/gcc-build
+}
+
+
+build()
+{
+    cd ${srcdir}/gcc-build
+
+    ${srcdir}/gcc-$_snapshot/configure --prefix=/usr \
+        --libdir=/usr/lib --libexecdir=/usr/lib \
+        --mandir=/usr/share/man --infodir=/usr/share/info \
+        --with-bugurl=https://bugs.archlinux.org/ \
+        --enable-languages=d \
+        --enable-shared --enable-threads=posix \
+        --with-system-zlib --enable-__cxa_atexit \
+        --disable-libunwind-exceptions --enable-clocale=gnu \
+        --disable-libstdcxx-pch --disable-libssp \
+        --enable-gnu-unique-object --enable-linker-build-id \
+        --enable-cloog-backend=isl --disable-cloog-version-check \
+        --enable-lto --enable-gold --enable-plugin --enable-ld=default \
+        --enable-install-libiberty --with-plugin-ld=ld.gold \
+        --with-linker-hash-style=gnu \
+        --disable-multilib --disable-werror \
+        --disable-nls --disable-bootstrap \
+        --disable-libgomp --disable-libmudflap --disable-libquadmath \
+        --enable-checking=release
+
+    make 
+}
+
+package_gdc()
+{
+    depends=('gcc' 'perl' 'binutils' 'libgphobos-devel')
+    provides=("d-compiler")
+    pkgdesc="Compiler for D programming language which uses gcc backend (2.064.2 frontend version)"
+ 
+    install -D -m755 $srcdir/gcc-build/gcc/gdc $pkgdir/usr/bin/gdc
+    install -D -m755 $srcdir/gcc-build/gcc/cc1d $pkgdir/usr/lib/gcc/$CHOST/$pkgver/cc1d
+
+    # tools
+    install -D -m755 $srcdir/GDMD/dmd-script $pkgdir/usr/bin/gdmd
+    install -D -m644 $srcdir/GDMD/dmd-script.1 $pkgdir/usr/share/man/man1/gdmd.1
+}
+
+package_libgphobos-devel()
+{
+    pkgdesc="Standard library for D programming language, GDC port"
+    provides=("d-runtime" "d-stdlib")
+    options=("staticlibs")
+
+    # druntime
+    install -D $srcdir/gdc/libphobos/libdruntime/object.di $pkgdir/usr/include/dlang/gdc/object.di
+    install -D $srcdir/gdc/libphobos/libdruntime/__entrypoint.di ${pkgdir}/usr/include/dlang/gdc/__entrypoint.di
+    cp -r $srcdir/gdc/libphobos/libdruntime/core $pkgdir/usr/include/dlang/gdc/core
+    cp -r $srcdir/gdc/libphobos/libdruntime/gcc $pkgdir/usr/include/dlang/gdc/gcc
+
+    # workaround for auto-generated libbacktrace issue
+	# script needs to be re-written to first call normal gcc instalaltion targets to
+	# avoid such problems in future
+	cp $srcdir/gcc-build/$CHOST/libphobos/libdruntime/gcc/libbacktrace.d $pkgdir/usr/include/dlang/gdc/gcc/
+	rm $pkgdir/usr/include/dlang/gdc/gcc/libbacktrace.d.in
+
+    # phobos
+    cp $srcdir/gdc/libphobos/src/crc32.d ${pkgdir}/usr/include/dlang/gdc/
+    cp -r $srcdir/gdc/libphobos/src/std ${pkgdir}/usr/include/dlang/gdc/std
+    cp -r $srcdir/gdc/libphobos/src/etc ${pkgdir}/usr/include/dlang/gdc/etc
+
+    install -D -m644 $srcdir/gcc-build/$CHOST/libphobos/src/libgphobos2.a $pkgdir/usr/lib/libgphobos2.a
+}

Deleted: community-i686/folders.diff
===================================================================
--- community-i686/folders.diff	2014-03-03 00:09:46 UTC (rev 106424)
+++ community-i686/folders.diff	2014-03-03 00:09:56 UTC (rev 106425)
@@ -1,16 +0,0 @@
-diff --git a/libphobos/configure.ac b/libphobos/configure.ac
-index 69dfc35..89b8136 100644
---- a/libphobos/configure.ac
-+++ b/libphobos/configure.ac
-@@ -215,9 +215,9 @@ dnl (# Default case for install directory for include files.) and on
- # will have to modify gcc/configure.ac ..
- # For now, basic workaround for cross compilers ..
- if test "${host}" != "${target}"; then
--    gdc_include_dir='${libdir}/gcc/${host_alias}'/${d_gcc_ver}/include/d
-+    gdc_include_dir='${libdir}/gcc/${host_alias}'/${d_gcc_ver}/include/dlang
- else
--    gdc_include_dir='${prefix}'/include/d/${d_gcc_ver}
-+    gdc_include_dir='${prefix}'/include/dlang/gcc
- fi
- AC_SUBST(gdc_include_dir)
- AC_ARG_WITH([cross-host],

Copied: gdc/repos/community-i686/folders.diff (from rev 106424, gdc/trunk/folders.diff)
===================================================================
--- community-i686/folders.diff	                        (rev 0)
+++ community-i686/folders.diff	2014-03-03 00:09:56 UTC (rev 106425)
@@ -0,0 +1,34 @@
+diff --git a/libphobos/configure.ac b/libphobos/configure.ac
+index 51d9b86..6ff04f1 100644
+--- a/libphobos/configure.ac
++++ b/libphobos/configure.ac
+@@ -239,9 +239,9 @@ else
+ fi
+ 
+ if test "${gdc_host}" != "${gdc_target}"; then
+-    gdc_include_dir='${libdir}/gcc/${host_alias}'/${d_gcc_ver}/include/d
++    gdc_include_dir='${libdir}/gcc/${host_alias}'/${d_gcc_ver}/include/dlang
+ else
+-    gdc_include_dir='${prefix}'/include/d/${d_gcc_ver}
++    gdc_include_dir='${prefix}'/include/dlang/gdc
+ fi
+ AC_SUBST(gdc_include_dir)
+ AC_ARG_WITH([cross-host],
+
+diff --git a/gcc/d/Make-lang.in b/gcc/d/Make-lang.in
+index 17e5c45..8a656b1 100644
+--- a/gcc/d/Make-lang.in
++++ b/gcc/d/Make-lang.in
+@@ -25,10 +25,10 @@ D_TARGET_INSTALL_NAME = $(target_alias)-$(shell echo gdc|sed '$(program_transfor
+ 
+ # This should be configured
+ ifeq ($(host), $(target))
+-  D_include_dir = `echo $(exec_prefix) | sed -e 's|^$(prefix)||' -e 's|/[^/]*|/..|g'`/include/d/$(version)
++  D_include_dir = `echo $(exec_prefix) | sed -e 's|^$(prefix)||' -e 's|/[^/]*|/..|g'`/include/dlang/gdc
+   gcc_d_include_dir = $(libsubdir)/$(unlibsubdir)/..$(D_include_dir)
+ else
+-  gcc_d_include_dir = $(libsubdir)/include/d
++  gcc_d_include_dir = $(libsubdir)/include/dlang/gdc
+ endif
+
+

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-03-03 00:09:46 UTC (rev 106424)
+++ community-x86_64/PKGBUILD	2014-03-03 00:09:56 UTC (rev 106425)
@@ -1,106 +0,0 @@
-# Maintainer: Mihails Strasuns <public at dicebot.lv>
-# Contributor: Moritz Maxeiner <moritz at ucworks.org>
-# Contributor: Jerome Berger <jeberger at free.fr>
-# Contributor: Jesus Alvarez <jeezusjr at gmail.com>
-
-pkgname=('gdc' 'libgphobos-devel')
-pkgver=4.8.2
-pkgrel=5
-arch=('i686' 'x86_64')
-url="https://github.com/D-Programming-GDC/GDC"
-license=('GPL')
-makedepends=('binutils>=2.23' 'git' 'gcc' 'make' 'perl' 'cloog' 'automake')
-options=('!emptydirs' '!buildflags')
-_snapshot=4.8-20130725
-source=(ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
-        gdc::git://github.com/D-Programming-GDC/GDC.git#branch=gdc-4.8
-        folders.diff)
-sha256sums=('e4e2202b15f8ba323f88c65de0e4190b0630a4b2e70b0653526b31e946877ead'
-            'SKIP'
-            '82f1ba0825164a74660bd5008d8f3acae1bacc3271c86475efc1601fe0da73c4')
-
-groups=('dlang' 'dlang-gdc')
-conflicts=('gdc1-bin' 'gdc1-hg' 'gdc-git')
-
-prepare()
-{
-    cd $srcdir/gcc-$_snapshot
-
-    # Do not run fixincludes
-    sed -i 's@\./fixinc\.sh at -c true@' gcc/Makefile.in
-
-    echo $pkgver > gcc/BASE-VER
-
-    # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
-    sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
-
-    cd $srcdir/gdc
-    git apply $srcdir/folders.diff # fix gdc_include_path
-    ./setup-gcc.sh ../gcc-$_snapshot
-
-    mkdir $srcdir/gcc-build
-}
-
-
-build()
-{
-    cd ${srcdir}/gcc-build
-
-    ${srcdir}/gcc-$_snapshot/configure --prefix=/usr \
-        --libdir=/usr/lib --libexecdir=/usr/lib \
-        --mandir=/usr/share/man --infodir=/usr/share/info \
-        --with-bugurl=https://bugs.archlinux.org/ \
-        --enable-languages=d \
-        --enable-shared --enable-threads=posix \
-        --with-system-zlib --enable-__cxa_atexit \
-        --disable-libunwind-exceptions --enable-clocale=gnu \
-        --disable-libstdcxx-pch \
-        --enable-gnu-unique-object --enable-linker-build-id \
-        --enable-cloog-backend=isl --disable-cloog-version-check \
-        --enable-lto --enable-gold --enable-ld=default \
-        --enable-plugin --with-plugin-ld=ld.gold \
-        --with-linker-hash-style=gnu --disable-install-libiberty \
-        --disable-multilib --disable-libssp --disable-werror \
-        --disable-nls --disable-bootstrap \
-        --disable-libgomp --disable-libmudflap --disable-libquadmath
-
-    make 
-}
-
-package_gdc()
-{
-    depends=('gcc' 'binutils')
-    optdepends=('libgphobos-devel: D standard library, GDC version')
-    provides=("d-compiler")
-    pkgdesc="Compiler for D programming language which uses gcc backend (2.064.2 frontend version)"
- 
-    install -D -m755 $srcdir/gcc-build/gcc/gdc $pkgdir/usr/bin/gdc
-    install -D -m755 $srcdir/gcc-build/gcc/cc1d $pkgdir/usr/lib/gcc/$CHOST/$pkgver/cc1d
-}
-
-package_libgphobos-devel()
-{
-    pkgdesc="Standard library for D programming language, GDC port"
-    provides=("d-runtime" "d-stdlib")
-    options=("staticlibs")
-    depends=('gdc')
-
-    # druntime
-    install -D $srcdir/gdc/libphobos/libdruntime/object.di $pkgdir/usr/include/dlang/gdc/object.di
-    install -D $srcdir/gdc/libphobos/libdruntime/__entrypoint.di ${pkgdir}/usr/include/dlang/gdc/__entrypoint.di
-    cp -r $srcdir/gdc/libphobos/libdruntime/core $pkgdir/usr/include/dlang/gdc/core
-    cp -r $srcdir/gdc/libphobos/libdruntime/gcc $pkgdir/usr/include/dlang/gdc/gcc
-
-    # workaround for auto-generated libbacktrace issue
-	# script needs to be re-written to first call normal gcc instalaltion targets to
-	# avoid such problems in future
-	cp $srcdir/gcc-build/$CHOST/libphobos/libdruntime/gcc/libbacktrace.d $pkgdir/usr/include/dlang/gdc/gcc/
-	rm $pkgdir/usr/include/dlang/gdc/gcc/libbacktrace.d.in
-
-    # phobos
-    cp $srcdir/gdc/libphobos/src/crc32.d ${pkgdir}/usr/include/dlang/gdc/
-    cp -r $srcdir/gdc/libphobos/src/std ${pkgdir}/usr/include/dlang/gdc/std
-    cp -r $srcdir/gdc/libphobos/src/etc ${pkgdir}/usr/include/dlang/gdc/etc
-
-    install -D -m644 $srcdir/gcc-build/$CHOST/libphobos/src/libgphobos2.a $pkgdir/usr/lib/libgphobos2.a
-}

Copied: gdc/repos/community-x86_64/PKGBUILD (from rev 106424, gdc/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-03-03 00:09:56 UTC (rev 106425)
@@ -0,0 +1,115 @@
+# Maintainer: Mihails Strasuns <public at dicebot.lv>
+# Contributor: Moritz Maxeiner <moritz at ucworks.org>
+# Contributor: Jerome Berger <jeberger at free.fr>
+# Contributor: Jesus Alvarez <jeezusjr at gmail.com>
+
+pkgname=('gdc' 'libgphobos-devel')
+pkgver=4.8.2
+pkgrel=7
+arch=('i686' 'x86_64')
+url="https://github.com/D-Programming-GDC/GDC"
+license=('GPL')
+makedepends=('binutils>=2.23' 'git' 'gcc' 'make' 'perl' 'cloog' 'automake')
+options=('!emptydirs' '!buildflags')
+_snapshot=4.8-20130725
+source=(
+    "ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2"
+    "gdc::git://github.com/D-Programming-GDC/GDC.git#branch=gdc-4.8"
+    "git+https://github.com/D-Programming-GDC/GDMD.git"
+    "folders.diff"
+)
+sha256sums=(
+    'e4e2202b15f8ba323f88c65de0e4190b0630a4b2e70b0653526b31e946877ead'
+    'SKIP'
+    'SKIP'
+    '82f1ba0825164a74660bd5008d8f3acae1bacc3271c86475efc1601fe0da73c4'
+)
+
+groups=('dlang' 'dlang-gdc')
+conflicts=('gdc1-bin' 'gdc1-hg' 'gdc-git')
+
+prepare()
+{
+    cd $srcdir/gcc-$_snapshot
+
+    # Do not run fixincludes
+    sed -i 's@\./fixinc\.sh at -c true@' gcc/Makefile.in
+
+    echo $pkgver > gcc/BASE-VER
+
+    # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
+    sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
+
+    cd $srcdir/gdc
+    git apply $srcdir/folders.diff # fix gdc_include_path
+    ./setup-gcc.sh ../gcc-$_snapshot
+
+    mkdir $srcdir/gcc-build
+}
+
+
+build()
+{
+    cd ${srcdir}/gcc-build
+
+    ${srcdir}/gcc-$_snapshot/configure --prefix=/usr \
+        --libdir=/usr/lib --libexecdir=/usr/lib \
+        --mandir=/usr/share/man --infodir=/usr/share/info \
+        --with-bugurl=https://bugs.archlinux.org/ \
+        --enable-languages=d \
+        --enable-shared --enable-threads=posix \
+        --with-system-zlib --enable-__cxa_atexit \
+        --disable-libunwind-exceptions --enable-clocale=gnu \
+        --disable-libstdcxx-pch --disable-libssp \
+        --enable-gnu-unique-object --enable-linker-build-id \
+        --enable-cloog-backend=isl --disable-cloog-version-check \
+        --enable-lto --enable-gold --enable-plugin --enable-ld=default \
+        --enable-install-libiberty --with-plugin-ld=ld.gold \
+        --with-linker-hash-style=gnu \
+        --disable-multilib --disable-werror \
+        --disable-nls --disable-bootstrap \
+        --disable-libgomp --disable-libmudflap --disable-libquadmath \
+        --enable-checking=release
+
+    make 
+}
+
+package_gdc()
+{
+    depends=('gcc' 'perl' 'binutils' 'libgphobos-devel')
+    provides=("d-compiler")
+    pkgdesc="Compiler for D programming language which uses gcc backend (2.064.2 frontend version)"
+ 
+    install -D -m755 $srcdir/gcc-build/gcc/gdc $pkgdir/usr/bin/gdc
+    install -D -m755 $srcdir/gcc-build/gcc/cc1d $pkgdir/usr/lib/gcc/$CHOST/$pkgver/cc1d
+
+    # tools
+    install -D -m755 $srcdir/GDMD/dmd-script $pkgdir/usr/bin/gdmd
+    install -D -m644 $srcdir/GDMD/dmd-script.1 $pkgdir/usr/share/man/man1/gdmd.1
+}
+
+package_libgphobos-devel()
+{
+    pkgdesc="Standard library for D programming language, GDC port"
+    provides=("d-runtime" "d-stdlib")
+    options=("staticlibs")
+
+    # druntime
+    install -D $srcdir/gdc/libphobos/libdruntime/object.di $pkgdir/usr/include/dlang/gdc/object.di
+    install -D $srcdir/gdc/libphobos/libdruntime/__entrypoint.di ${pkgdir}/usr/include/dlang/gdc/__entrypoint.di
+    cp -r $srcdir/gdc/libphobos/libdruntime/core $pkgdir/usr/include/dlang/gdc/core
+    cp -r $srcdir/gdc/libphobos/libdruntime/gcc $pkgdir/usr/include/dlang/gdc/gcc
+
+    # workaround for auto-generated libbacktrace issue
+	# script needs to be re-written to first call normal gcc instalaltion targets to
+	# avoid such problems in future
+	cp $srcdir/gcc-build/$CHOST/libphobos/libdruntime/gcc/libbacktrace.d $pkgdir/usr/include/dlang/gdc/gcc/
+	rm $pkgdir/usr/include/dlang/gdc/gcc/libbacktrace.d.in
+
+    # phobos
+    cp $srcdir/gdc/libphobos/src/crc32.d ${pkgdir}/usr/include/dlang/gdc/
+    cp -r $srcdir/gdc/libphobos/src/std ${pkgdir}/usr/include/dlang/gdc/std
+    cp -r $srcdir/gdc/libphobos/src/etc ${pkgdir}/usr/include/dlang/gdc/etc
+
+    install -D -m644 $srcdir/gcc-build/$CHOST/libphobos/src/libgphobos2.a $pkgdir/usr/lib/libgphobos2.a
+}

Deleted: community-x86_64/folders.diff
===================================================================
--- community-x86_64/folders.diff	2014-03-03 00:09:46 UTC (rev 106424)
+++ community-x86_64/folders.diff	2014-03-03 00:09:56 UTC (rev 106425)
@@ -1,34 +0,0 @@
-diff --git a/libphobos/configure.ac b/libphobos/configure.ac
-index 51d9b86..6ff04f1 100644
---- a/libphobos/configure.ac
-+++ b/libphobos/configure.ac
-@@ -239,9 +239,9 @@ else
- fi
- 
- if test "${gdc_host}" != "${gdc_target}"; then
--    gdc_include_dir='${libdir}/gcc/${host_alias}'/${d_gcc_ver}/include/d
-+    gdc_include_dir='${libdir}/gcc/${host_alias}'/${d_gcc_ver}/include/dlang
- else
--    gdc_include_dir='${prefix}'/include/d/${d_gcc_ver}
-+    gdc_include_dir='${prefix}'/include/dlang/gdc
- fi
- AC_SUBST(gdc_include_dir)
- AC_ARG_WITH([cross-host],
-
-diff --git a/gcc/d/Make-lang.in b/gcc/d/Make-lang.in
-index 17e5c45..8a656b1 100644
---- a/gcc/d/Make-lang.in
-+++ b/gcc/d/Make-lang.in
-@@ -25,10 +25,10 @@ D_TARGET_INSTALL_NAME = $(target_alias)-$(shell echo gdc|sed '$(program_transfor
- 
- # This should be configured
- ifeq ($(host), $(target))
--  D_include_dir = `echo $(exec_prefix) | sed -e 's|^$(prefix)||' -e 's|/[^/]*|/..|g'`/include/d/$(version)
-+  D_include_dir = `echo $(exec_prefix) | sed -e 's|^$(prefix)||' -e 's|/[^/]*|/..|g'`/include/dlang/gdc
-   gcc_d_include_dir = $(libsubdir)/$(unlibsubdir)/..$(D_include_dir)
- else
--  gcc_d_include_dir = $(libsubdir)/include/d
-+  gcc_d_include_dir = $(libsubdir)/include/dlang/gdc
- endif
-
-

Copied: gdc/repos/community-x86_64/folders.diff (from rev 106424, gdc/trunk/folders.diff)
===================================================================
--- community-x86_64/folders.diff	                        (rev 0)
+++ community-x86_64/folders.diff	2014-03-03 00:09:56 UTC (rev 106425)
@@ -0,0 +1,34 @@
+diff --git a/libphobos/configure.ac b/libphobos/configure.ac
+index 51d9b86..6ff04f1 100644
+--- a/libphobos/configure.ac
++++ b/libphobos/configure.ac
+@@ -239,9 +239,9 @@ else
+ fi
+ 
+ if test "${gdc_host}" != "${gdc_target}"; then
+-    gdc_include_dir='${libdir}/gcc/${host_alias}'/${d_gcc_ver}/include/d
++    gdc_include_dir='${libdir}/gcc/${host_alias}'/${d_gcc_ver}/include/dlang
+ else
+-    gdc_include_dir='${prefix}'/include/d/${d_gcc_ver}
++    gdc_include_dir='${prefix}'/include/dlang/gdc
+ fi
+ AC_SUBST(gdc_include_dir)
+ AC_ARG_WITH([cross-host],
+
+diff --git a/gcc/d/Make-lang.in b/gcc/d/Make-lang.in
+index 17e5c45..8a656b1 100644
+--- a/gcc/d/Make-lang.in
++++ b/gcc/d/Make-lang.in
+@@ -25,10 +25,10 @@ D_TARGET_INSTALL_NAME = $(target_alias)-$(shell echo gdc|sed '$(program_transfor
+ 
+ # This should be configured
+ ifeq ($(host), $(target))
+-  D_include_dir = `echo $(exec_prefix) | sed -e 's|^$(prefix)||' -e 's|/[^/]*|/..|g'`/include/d/$(version)
++  D_include_dir = `echo $(exec_prefix) | sed -e 's|^$(prefix)||' -e 's|/[^/]*|/..|g'`/include/dlang/gdc
+   gcc_d_include_dir = $(libsubdir)/$(unlibsubdir)/..$(D_include_dir)
+ else
+-  gcc_d_include_dir = $(libsubdir)/include/d
++  gcc_d_include_dir = $(libsubdir)/include/dlang/gdc
+ endif
+
+




More information about the arch-commits mailing list