[arch-commits] Commit in supercollider/repos/community-x86_64 (5 files)

David Runge dvzrv at archlinux.org
Thu Mar 8 22:09:37 UTC 2018


    Date: Thursday, March 8, 2018 @ 22:09:36
  Author: dvzrv
Revision: 304994

archrelease: copy trunk to community-x86_64

Added:
  supercollider/repos/community-x86_64/PKGBUILD
    (from rev 304993, supercollider/trunk/PKGBUILD)
  supercollider/repos/community-x86_64/supercollider.install
    (from rev 304993, supercollider/trunk/supercollider.install)
Deleted:
  supercollider/repos/community-x86_64/PKGBUILD
  supercollider/repos/community-x86_64/gcc7-bind-functional.patch
  supercollider/repos/community-x86_64/supercollider.install

----------------------------+
 PKGBUILD                   |   93 ++++++++++++++++++++++---------------------
 gcc7-bind-functional.patch |   20 ---------
 supercollider.install      |   16 +++----
 3 files changed, 56 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-03-08 22:05:37 UTC (rev 304993)
+++ PKGBUILD	2018-03-08 22:09:36 UTC (rev 304994)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: David Runge <dave at sleepmap.de>
-# Contributor: speps <speps at aur dot archlinux dot org>
-# Contributor: osc <farid at archlinux-br.org>
-
-_name=SuperCollider
-pkgname=supercollider
-pkgver=3.9.0
-pkgrel=1
-pkgdesc="An environment and programming language for real time audio synthesis and algorithmic composition"
-arch=('x86_64')
-url="https://supercollider.github.io"
-license=('GPL3')
-depends=('boost-libs' 'fftw' 'jack' 'qt5-webkit')
-makedepends=('boost' 'cmake' 'emacs' 'qt5-tools')
-optdepends=('emacs: emacs interface'
-'gedit: gedit interface')
-source=("https://github.com/${pkgname}/${pkgname}/releases/download/Version-${pkgver}/${_name}-${pkgver}-Source-linux.tar.bz2")
-install="${pkgname}.install"
-sha512sums=('52274ce0c5e604e44f844e77bb7245d6829c49a002ac0c383c3d150f48c60bd79b8f0481cd629e13544d6a01f2c5fd05d92d24d2c24602df2bf798cff94c0b0f')
-
-prepare() {
-  cd "${_name}-Source"
-  # requires out-of-tree build
-  [ -d bld ] || mkdir bld && cd bld
-}
-
-build() {
-  cd "${_name}-Source/bld"
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
-           -DCMAKE_BUILD_TYPE=Release \
-           -DLIBSCSYNTH=ON \
-           -DSC_VIM=OFF
-  make
-}
-
-package() {
-  cd "${_name}-Source/bld"
-  make DESTDIR="${pkgdir}" install
-  cd ..
-  install -Dm644 AUTHORS ${pkgdir}/usr/share/doc/${pkgname}/AUTHORS
-  install -Dm644 CHANGELOG.md ${pkgdir}/usr/share/doc/${pkgname}/CHANGELOG.md
-  install -Dm644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
-  install -Dm644 README_LINUX.md ${pkgdir}/usr/share/doc/${pkgname}/README_LINUX.md
-}

Copied: supercollider/repos/community-x86_64/PKGBUILD (from rev 304993, supercollider/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-03-08 22:09:36 UTC (rev 304994)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: David Runge <dave at sleepmap.de>
+# Contributor: speps <speps at aur dot archlinux dot org>
+# Contributor: osc <farid at archlinux-br.org>
+
+_name=SuperCollider
+pkgname=supercollider
+pkgver=3.9.1
+pkgrel=2
+pkgdesc="An environment and programming language for real time audio synthesis and algorithmic composition"
+arch=('x86_64')
+url="https://supercollider.github.io"
+license=('GPL3')
+depends=('boost-libs' 'fftw' 'jack' 'qt5-webkit')
+makedepends=('boost' 'cmake' 'emacs' 'qt5-tools')
+optdepends=('emacs: emacs interface'
+            'gedit: gedit interface')
+source=("https://github.com/${pkgname}/${pkgname}/releases/download/Version-${pkgver}/${_name}-${pkgver}-Source-linux.tar.bz2")
+install="${pkgname}.install"
+sha512sums=('cd18f250f53c576a6636b98f2c53d0a2d58e885b37b2612d227a7e8043e14b2840e34a32bcfa69a04da56cc9ef96a1e5aa1cd8de15e54db65ace665a1dd0770b')
+
+prepare() {
+  mv -v "${_name}-Source" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  # requires out-of-tree build
+  mkdir -v bld
+}
+
+build() {
+  cd "${pkgname}-${pkgver}/bld"
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
+           -DCMAKE_BUILD_TYPE=Release \
+           -DLIBSCSYNTH=ON \
+           -DFORTIFY=ON \
+           -DSC_VIM=OFF
+# cmake broken for system libraries:
+# https://github.com/supercollider/supercollider/issues/3513
+#           -DSYSTEM_BOOST=ON \
+#           -DSYSTEM_YAMLCPP=ON \
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}/bld"
+  make DESTDIR="${pkgdir}" install
+  install -t "${pkgdir}/usr/share/doc/${pkgname}/" \
+    -vDm644 ../{AUTHORS,{CHANGELOG,README,README_LINUX}.md}
+}

Deleted: gcc7-bind-functional.patch
===================================================================
--- gcc7-bind-functional.patch	2018-03-08 22:05:37 UTC (rev 304993)
+++ gcc7-bind-functional.patch	2018-03-08 22:09:36 UTC (rev 304994)
@@ -1,20 +0,0 @@
---- server/plugins/DiskIO_UGens.cpp	2016-08-22 10:12:21.000000000 +0200
-+++ server/plugins/DiskIO_UGens.cpp.fix	2017-12-06 23:45:39.043242894 +0100
-@@ -27,6 +27,7 @@
- #include <sndfile.h>
- 
- #include <atomic>
-+#include <functional>
- #include <new>
- #include <SC_Lock.h>
- 
---- lang/LangPrimSource/PyrSerialPrim.cpp	2016-08-22 10:12:21.000000000 +0200
-+++ lang/LangPrimSource/PyrSerialPrim.cpp.fix	2017-12-07 00:06:12.756776492 +0100
-@@ -27,6 +27,7 @@
- 
- #include <errno.h>
- #include <fcntl.h>
-+#include <functional>
- #include <stdint.h>
- #include <stdio.h>
- #include <stdlib.h>

Deleted: supercollider.install
===================================================================
--- supercollider.install	2018-03-08 22:05:37 UTC (rev 304993)
+++ supercollider.install	2018-03-08 22:09:36 UTC (rev 304994)
@@ -1,8 +0,0 @@
-post_install () {
-  echo "The vim plugin 'SCVim' is now developed separately: https://github.com/supercollider/scvim"
-  echo "Until a package is provided, please use the install methods mentioned in the link."
-}
-
-post_upgrade () {
-  post_install
-}

Copied: supercollider/repos/community-x86_64/supercollider.install (from rev 304993, supercollider/trunk/supercollider.install)
===================================================================
--- supercollider.install	                        (rev 0)
+++ supercollider.install	2018-03-08 22:09:36 UTC (rev 304994)
@@ -0,0 +1,8 @@
+post_install () {
+  echo "The vim plugin 'SCVim' is now developed separately: https://github.com/supercollider/scvim"
+  echo "Until a package is provided, please use the install methods mentioned in the link."
+}
+
+post_upgrade () {
+  post_install
+}



More information about the arch-commits mailing list