[arch-commits] Commit in dmd/repos/community-x86_64 (6 files)
Dan Printzell
wild at archlinux.org
Fri Nov 3 12:11:35 UTC 2017
Date: Friday, November 3, 2017 @ 12:11:34
Author: wild
Revision: 265307
archrelease: copy trunk to community-x86_64
Added:
dmd/repos/community-x86_64/PKGBUILD
(from rev 265306, dmd/trunk/PKGBUILD)
dmd/repos/community-x86_64/dmd-doc.desktop
(from rev 265306, dmd/trunk/dmd-doc.desktop)
dmd/repos/community-x86_64/dmd.conf
(from rev 265306, 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 | 236 +++++++++++++++++++++++++++---------------------------
dmd-doc.desktop | 14 +--
dmd.conf | 10 +-
3 files changed, 130 insertions(+), 130 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2017-11-03 12:11:21 UTC (rev 265306)
+++ PKGBUILD 2017-11-03 12:11:34 UTC (rev 265307)
@@ -1,118 +0,0 @@
-# $Id$
-# Maintainer: Dan Printzell <arch at vild.io>
-# 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.076.1
-pkgrel=1
-epoch=1
-arch=('x86_64')
-url="http://www.dlang.org"
-makedepends=('git' 'dmd')
-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'
- '1d0b8fb6aadc80f6c5dfe7acf46fc17d2b3de24a0bf46e947352094bb21fef04'
- 'SKIP'
- '3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
- '19c9cd3670bdef7fbde88de36c459d940e6b7bacc2a5e48aefbfd1b2c1895e07')
-validpgpkeys=('AFC7DB45693D62BB472BF27BAB8FE924C2F7E724') # 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
-}
-
-build() {
- cd "$srcdir"/dmd
- make -f posix.mak RELEASE=1 PIC=1
-
- cd "$srcdir"/druntime
- make -f posix.mak DMD="$srcdir"/dmd/src/dmd RELEASE=1 PIC=1
-
- cd "$srcdir"/phobos
- make -f posix.mak DMD="$srcdir"/dmd/src/dmd RELEASE=1 PIC=1
-}
-
-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')
-
- install -Dm755 dmd/src/dmd "$pkgdir"/usr/bin/dmd
-
- mkdir -p "$pkgdir"/etc
- install -Dm644 dmd.conf "$pkgdir"/etc/dmd.conf
-
- mkdir -p "$pkgdir"/usr/share/man/man1
- mkdir -p "$pkgdir"/usr/share/man/man5
- cp -r dmd/docs/man/man1/* "$pkgdir"/usr/share/man/man1/
- cp -r dmd/docs/man/man5/* "$pkgdir"/usr/share/man/man5/
-
- install -Dm644 dmd/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')
-
- mkdir -p "$pkgdir"/usr/share/applications
- install -Dm644 dmd-doc.desktop "$pkgdir"/usr/share/applications/dmd-doc.desktop
-
- mkdir -p "$pkgdir"/usr/share/d/samples/
- cp -r dmd/samples/* "$pkgdir"/usr/share/d/samples/
-
- mkdir -p "$pkgdir"/usr/share/d/html
- cp -r dmd2/html/* "$pkgdir"/usr/share/d/html/
-
- install -Dm644 dmd/LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_libphobos() {
- pkgdesc="The Phobos standard library for D programming language"
- options=('staticlibs')
- 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
- install -Dm644 phobos/generated/linux/release/*/libphobos2.{a,so} "$pkgdir"/usr/lib/
- install -Dm644 phobos/LICENSE_1_0.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
- mkdir -p "$pkgdir"/usr/include/dlang/dmd
- cp -r phobos/{*.d,etc,std} "$pkgdir"/usr/include/dlang/dmd
- cp -r druntime/import/* "$pkgdir"/usr/include/dlang/dmd/
-
- find "$pkgdir"/usr -type f | xargs chmod 0644
-
- install -Dm644 druntime/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE-druntime
-}
Copied: dmd/repos/community-x86_64/PKGBUILD (from rev 265306, dmd/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2017-11-03 12:11:34 UTC (rev 265307)
@@ -0,0 +1,118 @@
+# $Id$
+# Maintainer: Dan Printzell <arch at vild.io>
+# 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.077.0
+pkgrel=1
+epoch=1
+arch=('x86_64')
+url="http://www.dlang.org"
+makedepends=('git' 'dmd')
+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'
+ '54471d7c5fdb73dd38cd8ab1d8ac4cb6b7aca0d0d18e7a9f38dcafcb242732f4'
+ 'SKIP'
+ '3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
+ '19c9cd3670bdef7fbde88de36c459d940e6b7bacc2a5e48aefbfd1b2c1895e07')
+validpgpkeys=('AFC7DB45693D62BB472BF27BAB8FE924C2F7E724') # 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
+}
+
+build() {
+ cd "$srcdir"/dmd
+ make -f posix.mak RELEASE=1 PIC=1
+
+ cd "$srcdir"/druntime
+ make -f posix.mak DMD="$srcdir"/dmd/src/dmd RELEASE=1 PIC=1
+
+ cd "$srcdir"/phobos
+ make -f posix.mak DMD="$srcdir"/dmd/src/dmd RELEASE=1 PIC=1
+}
+
+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')
+
+ install -Dm755 dmd/src/dmd "$pkgdir"/usr/bin/dmd
+
+ mkdir -p "$pkgdir"/etc
+ install -Dm644 dmd.conf "$pkgdir"/etc/dmd.conf
+
+ mkdir -p "$pkgdir"/usr/share/man/man1
+ mkdir -p "$pkgdir"/usr/share/man/man5
+ cp -r dmd/docs/man/man1/* "$pkgdir"/usr/share/man/man1/
+ cp -r dmd/docs/man/man5/* "$pkgdir"/usr/share/man/man5/
+
+ install -Dm644 dmd/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')
+
+ mkdir -p "$pkgdir"/usr/share/applications
+ install -Dm644 dmd-doc.desktop "$pkgdir"/usr/share/applications/dmd-doc.desktop
+
+ mkdir -p "$pkgdir"/usr/share/d/samples/
+ cp -r dmd/samples/* "$pkgdir"/usr/share/d/samples/
+
+ mkdir -p "$pkgdir"/usr/share/d/html
+ cp -r dmd2/html/* "$pkgdir"/usr/share/d/html/
+
+ install -Dm644 dmd/LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_libphobos() {
+ pkgdesc="The Phobos standard library for D programming language"
+ options=('staticlibs')
+ 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
+ install -Dm644 phobos/generated/linux/release/*/libphobos2.{a,so} "$pkgdir"/usr/lib/
+ install -Dm644 phobos/LICENSE_1_0.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+ mkdir -p "$pkgdir"/usr/include/dlang/dmd
+ cp -r phobos/{*.d,etc,std} "$pkgdir"/usr/include/dlang/dmd
+ cp -r druntime/import/* "$pkgdir"/usr/include/dlang/dmd/
+
+ find "$pkgdir"/usr -type f | xargs chmod 0644
+
+ install -Dm644 druntime/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE-druntime
+}
Deleted: dmd-doc.desktop
===================================================================
--- dmd-doc.desktop 2017-11-03 12:11:21 UTC (rev 265306)
+++ dmd-doc.desktop 2017-11-03 12:11:34 UTC (rev 265307)
@@ -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/language-reference.html
-Icon=dmd-doc
-Categories=Development;
Copied: dmd/repos/community-x86_64/dmd-doc.desktop (from rev 265306, dmd/trunk/dmd-doc.desktop)
===================================================================
--- dmd-doc.desktop (rev 0)
+++ dmd-doc.desktop 2017-11-03 12:11:34 UTC (rev 265307)
@@ -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/language-reference.html
+Icon=dmd-doc
+Categories=Development;
Deleted: dmd.conf
===================================================================
--- dmd.conf 2017-11-03 12:11:21 UTC (rev 265306)
+++ dmd.conf 2017-11-03 12:11:34 UTC (rev 265307)
@@ -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 265306, dmd/trunk/dmd.conf)
===================================================================
--- dmd.conf (rev 0)
+++ dmd.conf 2017-11-03 12:11:34 UTC (rev 265307)
@@ -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