[arch-commits] Commit in supercollider/repos (4 files)
Evangelos Foutras
foutrelis at archlinux.org
Tue Sep 18 13:11:31 UTC 2018
Date: Tuesday, September 18, 2018 @ 13:11:31
Author: foutrelis
Revision: 383045
archrelease: copy trunk to community-staging-x86_64
Added:
supercollider/repos/community-staging-x86_64/
supercollider/repos/community-staging-x86_64/PKGBUILD
(from rev 383044, supercollider/trunk/PKGBUILD)
supercollider/repos/community-staging-x86_64/boost-1.67.patch
(from rev 383044, supercollider/trunk/boost-1.67.patch)
supercollider/repos/community-staging-x86_64/supercollider.install
(from rev 383044, supercollider/trunk/supercollider.install)
-----------------------+
PKGBUILD | 52 ++++++++++++++++++++++++++++++++++++++++++++++++
boost-1.67.patch | 12 +++++++++++
supercollider.install | 8 +++++++
3 files changed, 72 insertions(+)
Copied: supercollider/repos/community-staging-x86_64/PKGBUILD (from rev 383044, supercollider/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2018-09-18 13:11:31 UTC (rev 383045)
@@ -0,0 +1,52 @@
+# 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.3
+pkgrel=4
+pkgdesc="Environment and programming language for real time audio synthesis and algorithmic composition"
+arch=('x86_64')
+url="https://supercollider.github.io"
+license=('GPL3')
+groups=('pro-audio')
+depends=('boost-libs' 'fftw' 'jack' 'qt5-webkit' 'yaml-cpp')
+makedepends=('boost' 'cmake' 'emacs' 'qt5-tools')
+optdepends=('emacs: emacs interface'
+ 'gedit: gedit interface'
+ 'sc3-plugins: additional extension plugins for scsynth')
+source=("https://github.com/${pkgname}/${pkgname}/releases/download/Version-${pkgver}/${_name}-${pkgver}-Source-linux.tar.bz2"
+ 'boost-1.67.patch')
+install="${pkgname}.install"
+sha512sums=('5b0c29941907d5ca45c1676e34184664c03891051bba0ee50d9e8311400824054de7b6daba6d29fd875ff38f42ee9654504ea2f0b5bf0a36ae9605e6a79a0841'
+ '9980d77802f18fd56d2a13f24f070e81768d9111b2cc63e479a0e9b405a04aec28bc523e5d36aab0462af6a3831d64598470cdc6c3266431e2ca64aa427a6bf2')
+
+prepare() {
+ mv -v "${_name}-Source" "${pkgname}-${pkgver}"
+ cd "${pkgname}-${pkgver}"
+ patch -Np1 -i ../boost-1.67.patch
+ # requires out-of-tree build
+ mkdir -v bld
+ # make sure the system boost headers are used
+ rm -r external_libraries/boost
+}
+
+build() {
+ cd "${pkgname}-${pkgver}/bld"
+ cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DLIBSCSYNTH=ON \
+ -DFORTIFY=ON \
+ -DSYSTEM_BOOST=ON \
+ -DSYSTEM_YAMLCPP=ON \
+ -DSC_VIM=OFF
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}/bld"
+ make DESTDIR="${pkgdir}" install
+ install -t "${pkgdir}/usr/share/doc/${pkgname}/" \
+ -vDm 644 ../{AUTHORS,{CHANGELOG,README,README_LINUX}.md}
+}
Copied: supercollider/repos/community-staging-x86_64/boost-1.67.patch (from rev 383044, supercollider/trunk/boost-1.67.patch)
===================================================================
--- community-staging-x86_64/boost-1.67.patch (rev 0)
+++ community-staging-x86_64/boost-1.67.patch 2018-09-18 13:11:31 UTC (rev 383045)
@@ -0,0 +1,12 @@
+diff -upr supercollider-3.9.3.orig/server/supernova/utilities/time_tag.hpp supercollider-3.9.3/server/supernova/utilities/time_tag.hpp
+--- supercollider-3.9.3.orig/server/supernova/utilities/time_tag.hpp 2018-03-28 23:05:07.000000000 +0300
++++ supercollider-3.9.3/server/supernova/utilities/time_tag.hpp 2018-06-03 01:32:16.824417338 +0300
+@@ -230,7 +230,7 @@ public:
+ #ifdef BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG
+ time_duration offset = seconds(get_secs() - ntp_offset) + nanoseconds(get_nanoseconds());
+ #else
+- time_duration offset = seconds(get_secs() - ntp_offset) + microseconds(get_nanoseconds()/1000);
++ time_duration offset = seconds(get_secs() - ntp_offset) + microseconds(long(get_nanoseconds()/1000));
+ #endif
+ return ptime(base, offset);
+ }
Copied: supercollider/repos/community-staging-x86_64/supercollider.install (from rev 383044, supercollider/trunk/supercollider.install)
===================================================================
--- community-staging-x86_64/supercollider.install (rev 0)
+++ community-staging-x86_64/supercollider.install 2018-09-18 13:11:31 UTC (rev 383045)
@@ -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