[arch-commits] Commit in dmd/repos (4 files)
Sven-Hendrik Haase
svenstaro at nymeria.archlinux.org
Tue Jun 4 04:28:38 UTC 2013
Date: Tuesday, June 4, 2013 @ 06:28:38
Author: svenstaro
Revision: 92327
archrelease: copy trunk to community-i686, community-x86_64
Added:
dmd/repos/community-i686/PKGBUILD
(from rev 92326, dmd/trunk/PKGBUILD)
dmd/repos/community-x86_64/PKGBUILD
(from rev 92326, dmd/trunk/PKGBUILD)
Deleted:
dmd/repos/community-i686/PKGBUILD
dmd/repos/community-x86_64/PKGBUILD
---------------------------+
/PKGBUILD | 212 ++++++++++++++++++++++++++++++++++++++++++++
community-i686/PKGBUILD | 90 ------------------
community-x86_64/PKGBUILD | 90 ------------------
3 files changed, 212 insertions(+), 180 deletions(-)
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2013-06-04 04:28:27 UTC (rev 92326)
+++ community-i686/PKGBUILD 2013-06-04 04:28:38 UTC (rev 92327)
@@ -1,90 +0,0 @@
-# $Id$
-# Maintainer: 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')
-pkgbase=dmd
-pkgver=2.062
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.digitalmars.com/d/2.0/"
-#source=(http://ftp.digitalmars.com/$pkgname.$pkgver.zip
-source=(http://downloads.dlang.org.s3-website-us-east-1.amazonaws.com/releases/2013/dmd.${pkgver}.zip
- tools-${pkgver}.tar.gz::https://github.com/D-Programming-Language/tools/tarball/v${pkgver})
-license=('custom')
-md5sums=('fd2211206532ab41a8aef764a9225d3c'
- '2e301d06071fb24c7c2d504c8ddbbc39')
-
-[[ $CARCH == "x86_64" ]] && _archbits="64"
-[[ $CARCH == "i686" ]] && _archbits="32"
-
-build() {
- cd $srcdir/dmd2/src/
-
- echo "$pkgver" > VERSION # Fix specific release bug of 2.062
- cd dmd
- make -f posix.mak MODEL=$_archbits
-
- cd ../druntime
- make -f posix.mak MODEL=$_archbits DMD=../dmd/dmd
-
- cd ../phobos
- make -f posix.mak MODEL=$_archbits DMD=../dmd/dmd
-
- # Building rdmd ourselves breaks in dmd 2.059
- #cd $srcdir/D-Programming-Language-tools-*
- #$srcdir/dmd2/src/dmd/dmd -I$srcdir/dmd2/src/druntime/import/ -I$srcdir/dmd2/src/phobos -L-L$srcdir/dmd2/src/phobos/generated/linux/release/$_archbits/ rdmd.d
-}
-
-package_dmd() {
- pkgdesc="The Digital Mars D compiler"
- backup=('etc/dmd.conf')
- depends=('libphobos' 'gcc')
-
- install -Dm755 $srcdir/dmd2/src/dmd/dmd $pkgdir/usr/bin/dmd
-
- mkdir -p $pkgdir/etc
- echo -e "[Environment]\nDFLAGS=-I/usr/include/d -I/usr/include/d/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/dmd2/man/man1/dmd.1 $pkgdir/usr/share/man/man1/dmd.1
- install -Dm644 $srcdir/dmd2/man/man1/rdmd.1 $pkgdir/usr/share/man/man1/rdmd.1
- install -Dm644 $srcdir/dmd2/man/man1/dmd.conf.5 $pkgdir/usr/share/man/man5/dmd.conf.5
-
- install -Dm644 $srcdir/dmd2/license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
- mkdir -p $pkgdir/usr/share/d/samples/
- cp -r $srcdir/dmd2/samples/d/* $pkgdir/usr/share/d/samples/
-
- find $pkgdir/usr -type f | xargs chmod 0644
- chmod 755 $pkgdir/usr/bin/*
-
- install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/ddemangle $pkgdir/usr/bin/ddemangle
- install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/dman $pkgdir/usr/bin/dman
- install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/dumpobj $pkgdir/usr/bin/dumpobj
- install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/obj2asm $pkgdir/usr/bin/obj2asm
- install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/rdmd $pkgdir/usr/bin/rdmd
- #install -Dm755 $srcdir/D-Programming-Language-tools-*/rdmd $pkgdir/usr/bin/rdmd
-}
-
-package_libphobos() {
- pkgdesc="The phobos D standard library for DMD"
- install -Dm644 $srcdir/dmd2/src/druntime/lib/libdruntime-linux${_archbits}.a $pkgdir/usr/lib/libdruntime.a
- install -Dm644 $srcdir/dmd2/src/phobos/generated/linux/release/$_archbits/libphobos2.a $pkgdir/usr/lib/libphobos2.a
-
- mkdir -p $pkgdir/usr/include/d
- cp -r $srcdir/dmd2/src/phobos/{*.d,etc,std} $pkgdir/usr/include/d
-
- mkdir -p $pkgdir/usr/include/d/druntime
- cp -r $srcdir/dmd2/src/druntime/import $pkgdir/usr/include/d/druntime
-
- mkdir -p $pkgdir/usr/share/doc/d/
- cp -r $srcdir/dmd2/html $pkgdir/usr/share/doc/d/
-
- find $pkgdir/usr -type f | xargs chmod 0644
-
- install -Dm644 $srcdir/dmd2/src/druntime/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
Copied: dmd/repos/community-i686/PKGBUILD (from rev 92326, dmd/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-06-04 04:28:38 UTC (rev 92327)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: 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' 'tools')
+pkgbase=dmd
+pkgver=2.063.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://www.dlang.org"
+makedepends=('git')
+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")
+sha1sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP')
+
+[[ $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
+ make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
+
+ cd $srcdir/tools
+ for tool in rdmd.d ddemangle.d catdoc.d detab.d tolf.d dget.d; do
+ $srcdir/dmd/src/dmd -I../druntime/import -I../phobos -L-L../phobos/generated/linux/release/$_archbits/ $tool
+ done
+}
+
+package_dmd() {
+ pkgdesc="The D programming language reference compiler"
+ backup=('etc/dmd.conf')
+ depends=('gcc')
+ provides=("d-compiler=$pkgver")
+ license=('custom')
+
+ install -Dm755 $srcdir/dmd/src/dmd $pkgdir/usr/bin/dmd
+
+ mkdir -p $pkgdir/etc
+ echo -e "[Environment]\nDFLAGS=-I/usr/include/d -I/usr/include/d/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
+
+ 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/*
+
+ # No longer available, because not source code is provided and those are not mandatory.
+ # Please get those from http://dlang.org if absolutely needed.
+
+ # install -Dm755 $srcdir/dmd/linux/bin${_archbits}/dumpobj $pkgdir/usr/bin/dumpobj
+ # install -Dm755 $srcdir/dmd/linux/bin${_archbits}/obj2asm $pkgdir/usr/bin/obj2asm
+}
+
+# Will be packaged separately once GDC/LDC will be able to compile phobos and pass test suite.
+# For now only dependency is relaxed
+package_libphobos() {
+ depends=("d-compiler>=$pkgver" "curl")
+ pkgdesc="The Phobos standard library for D programming language"
+ license=("boost")
+ install -Dm644 $srcdir/phobos/generated/linux/release/$_archbits/libphobos2.a $pkgdir/usr/lib/libphobos2.a
+ install -Dm644 $srcdir/phobos/generated/linux/release/$_archbits/libphobos2.so $pkgdir/usr/lib/libphobos2.so
+
+ mkdir -p $pkgdir/usr/include/d
+ cp -r $srcdir/phobos/{*.d,etc,std} $pkgdir/usr/include/d
+
+ mkdir -p $pkgdir/usr/include/d/druntime
+ cp -r $srcdir/druntime/import $pkgdir/usr/include/d/druntime
+
+ mkdir -p $pkgdir/usr/share/doc/d/
+
+ 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_tools() {
+ pkgdesc="Ancilliary tools for the D programming language compiler"
+ license=("boost")
+ depends=("curl")
+
+ cd $srcdir/tools
+ mkdir -p $pkgdir/usr/bin
+ install -m755 -t $pkgdir/usr/bin rdmd ddemangle catdoc detab tolf dget
+}
Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD 2013-06-04 04:28:27 UTC (rev 92326)
+++ community-x86_64/PKGBUILD 2013-06-04 04:28:38 UTC (rev 92327)
@@ -1,90 +0,0 @@
-# $Id$
-# Maintainer: 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')
-pkgbase=dmd
-pkgver=2.062
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.digitalmars.com/d/2.0/"
-#source=(http://ftp.digitalmars.com/$pkgname.$pkgver.zip
-source=(http://downloads.dlang.org.s3-website-us-east-1.amazonaws.com/releases/2013/dmd.${pkgver}.zip
- tools-${pkgver}.tar.gz::https://github.com/D-Programming-Language/tools/tarball/v${pkgver})
-license=('custom')
-md5sums=('fd2211206532ab41a8aef764a9225d3c'
- '2e301d06071fb24c7c2d504c8ddbbc39')
-
-[[ $CARCH == "x86_64" ]] && _archbits="64"
-[[ $CARCH == "i686" ]] && _archbits="32"
-
-build() {
- cd $srcdir/dmd2/src/
-
- echo "$pkgver" > VERSION # Fix specific release bug of 2.062
- cd dmd
- make -f posix.mak MODEL=$_archbits
-
- cd ../druntime
- make -f posix.mak MODEL=$_archbits DMD=../dmd/dmd
-
- cd ../phobos
- make -f posix.mak MODEL=$_archbits DMD=../dmd/dmd
-
- # Building rdmd ourselves breaks in dmd 2.059
- #cd $srcdir/D-Programming-Language-tools-*
- #$srcdir/dmd2/src/dmd/dmd -I$srcdir/dmd2/src/druntime/import/ -I$srcdir/dmd2/src/phobos -L-L$srcdir/dmd2/src/phobos/generated/linux/release/$_archbits/ rdmd.d
-}
-
-package_dmd() {
- pkgdesc="The Digital Mars D compiler"
- backup=('etc/dmd.conf')
- depends=('libphobos' 'gcc')
-
- install -Dm755 $srcdir/dmd2/src/dmd/dmd $pkgdir/usr/bin/dmd
-
- mkdir -p $pkgdir/etc
- echo -e "[Environment]\nDFLAGS=-I/usr/include/d -I/usr/include/d/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/dmd2/man/man1/dmd.1 $pkgdir/usr/share/man/man1/dmd.1
- install -Dm644 $srcdir/dmd2/man/man1/rdmd.1 $pkgdir/usr/share/man/man1/rdmd.1
- install -Dm644 $srcdir/dmd2/man/man1/dmd.conf.5 $pkgdir/usr/share/man/man5/dmd.conf.5
-
- install -Dm644 $srcdir/dmd2/license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
- mkdir -p $pkgdir/usr/share/d/samples/
- cp -r $srcdir/dmd2/samples/d/* $pkgdir/usr/share/d/samples/
-
- find $pkgdir/usr -type f | xargs chmod 0644
- chmod 755 $pkgdir/usr/bin/*
-
- install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/ddemangle $pkgdir/usr/bin/ddemangle
- install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/dman $pkgdir/usr/bin/dman
- install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/dumpobj $pkgdir/usr/bin/dumpobj
- install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/obj2asm $pkgdir/usr/bin/obj2asm
- install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/rdmd $pkgdir/usr/bin/rdmd
- #install -Dm755 $srcdir/D-Programming-Language-tools-*/rdmd $pkgdir/usr/bin/rdmd
-}
-
-package_libphobos() {
- pkgdesc="The phobos D standard library for DMD"
- install -Dm644 $srcdir/dmd2/src/druntime/lib/libdruntime-linux${_archbits}.a $pkgdir/usr/lib/libdruntime.a
- install -Dm644 $srcdir/dmd2/src/phobos/generated/linux/release/$_archbits/libphobos2.a $pkgdir/usr/lib/libphobos2.a
-
- mkdir -p $pkgdir/usr/include/d
- cp -r $srcdir/dmd2/src/phobos/{*.d,etc,std} $pkgdir/usr/include/d
-
- mkdir -p $pkgdir/usr/include/d/druntime
- cp -r $srcdir/dmd2/src/druntime/import $pkgdir/usr/include/d/druntime
-
- mkdir -p $pkgdir/usr/share/doc/d/
- cp -r $srcdir/dmd2/html $pkgdir/usr/share/doc/d/
-
- find $pkgdir/usr -type f | xargs chmod 0644
-
- install -Dm644 $srcdir/dmd2/src/druntime/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
Copied: dmd/repos/community-x86_64/PKGBUILD (from rev 92326, dmd/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2013-06-04 04:28:38 UTC (rev 92327)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: 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' 'tools')
+pkgbase=dmd
+pkgver=2.063.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://www.dlang.org"
+makedepends=('git')
+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")
+sha1sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP')
+
+[[ $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
+ make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
+
+ cd $srcdir/tools
+ for tool in rdmd.d ddemangle.d catdoc.d detab.d tolf.d dget.d; do
+ $srcdir/dmd/src/dmd -I../druntime/import -I../phobos -L-L../phobos/generated/linux/release/$_archbits/ $tool
+ done
+}
+
+package_dmd() {
+ pkgdesc="The D programming language reference compiler"
+ backup=('etc/dmd.conf')
+ depends=('gcc')
+ provides=("d-compiler=$pkgver")
+ license=('custom')
+
+ install -Dm755 $srcdir/dmd/src/dmd $pkgdir/usr/bin/dmd
+
+ mkdir -p $pkgdir/etc
+ echo -e "[Environment]\nDFLAGS=-I/usr/include/d -I/usr/include/d/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
+
+ 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/*
+
+ # No longer available, because not source code is provided and those are not mandatory.
+ # Please get those from http://dlang.org if absolutely needed.
+
+ # install -Dm755 $srcdir/dmd/linux/bin${_archbits}/dumpobj $pkgdir/usr/bin/dumpobj
+ # install -Dm755 $srcdir/dmd/linux/bin${_archbits}/obj2asm $pkgdir/usr/bin/obj2asm
+}
+
+# Will be packaged separately once GDC/LDC will be able to compile phobos and pass test suite.
+# For now only dependency is relaxed
+package_libphobos() {
+ depends=("d-compiler>=$pkgver" "curl")
+ pkgdesc="The Phobos standard library for D programming language"
+ license=("boost")
+ install -Dm644 $srcdir/phobos/generated/linux/release/$_archbits/libphobos2.a $pkgdir/usr/lib/libphobos2.a
+ install -Dm644 $srcdir/phobos/generated/linux/release/$_archbits/libphobos2.so $pkgdir/usr/lib/libphobos2.so
+
+ mkdir -p $pkgdir/usr/include/d
+ cp -r $srcdir/phobos/{*.d,etc,std} $pkgdir/usr/include/d
+
+ mkdir -p $pkgdir/usr/include/d/druntime
+ cp -r $srcdir/druntime/import $pkgdir/usr/include/d/druntime
+
+ mkdir -p $pkgdir/usr/share/doc/d/
+
+ 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_tools() {
+ pkgdesc="Ancilliary tools for the D programming language compiler"
+ license=("boost")
+ depends=("curl")
+
+ cd $srcdir/tools
+ mkdir -p $pkgdir/usr/bin
+ install -m755 -t $pkgdir/usr/bin rdmd ddemangle catdoc detab tolf dget
+}
More information about the arch-commits
mailing list