[arch-commits] Commit in pd/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-11-16 Thread David Runge via arch-commits
Date: Monday, November 16, 2020 @ 17:12:36
  Author: dvzrv
Revision: 755406

archrelease: copy trunk to community-x86_64

Added:
  pd/repos/community-x86_64/PKGBUILD
(from rev 755405, pd/trunk/PKGBUILD)
Deleted:
  pd/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  190 ++---
 1 file changed, 95 insertions(+), 95 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-16 17:12:30 UTC (rev 755405)
+++ PKGBUILD2020-11-16 17:12:36 UTC (rev 755406)
@@ -1,95 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: TDY 
-# Contributor: Shinlun Hsieh 
-
-_resolutions=( 16 32 48 64 96 128 256 512 1024 )
-_name=pure-data
-pkgname=pd
-pkgver=0.51.2
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('x86_64')
-url="http://msp.ucsd.edu/software.html";
-license=('BSD')
-groups=('pro-audio')
-depends=('glibc' 'hicolor-icon-theme'  'tk')
-makedepends=('alsa-lib' 'fftw' 'gendesk' 'inkscape' 'jack' 'portaudio'
-'portmidi')
-provides=('puredata')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/archive/${_ver}.tar.gz";
-
"${pkgname}-${pkgver}.svg::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/masters/icon.svg";
-
"${pkgname}-${pkgver}-icon-LICENSE.txt::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/LICENSE.txt";)
-sha512sums=('d60564d1b74267905c703ee4ebca2b516e50ed4ac63357437b820e84d0de21996d2a93d5237d365a57e234308c21b6fb9a6a168289edf4d26a7efa5a2e91b7bd'
-
'8d8b274e159bd4cc6a83d5d9d5019b106a74fa61943b36e2a56336b9c3c2c1b1092ce7f79f5264eb69ca43a9360404b800df338b2ad738ca3c237a8ae3c9c41d'
-
'dfc919b56ffc8020ffa4e9b16677a6a710f78a73b22d5bb418414f3196a5cbbe5d6cc9cfbf1389811129f219cb21c0eafdfa6dd90e172d73db2452e5c3fd4f5c')
-b2sums=('a850bfcf181faf1c6da32708d321223c78c6b290adbc63c05016a03d183d0f700425748ed63d50a7cad6392e7c1833ce03da039816b83c047286cec977a92a86'
-
'04f131540fd7ae9b4547a081df61a5a98265c6c9b283587aeda976834d9bbb4486cd30470d5bfb37b6f760d13705074c71cfeb1a9843613e93f3d1e0ca198af9'
-
'c3fabeeb8e5c45716fbf5d3e6338b41d5adc0fbefb385e3b42d94c732522e99a4045c88e8b8e2e16a72fc5795dbc0933f07078d0eba80b76fb274450c7518dc7')
-
-prepare() {
-  mv -v "${_name}-${_ver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-  # XDG desktop files
-  gendesk -n \
-  --pkgname ${pkgname} \
-  --pkgdesc "${pkgdesc}" \
-  --exec ${pkgname} \
-  --name "Pure Data" \
-  --categories "AudioVideo;Audio"
-  for _res in ${_resolutions[@]}; do
-inkscape -o "pd-${_res}.png" \
- -w "${_res}" \
- -h "${_res}" \
- "../${pkgname}-${pkgver}.svg"
-  done
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-fftw \
-  --enable-jack \
-  --enable-portaudio \
-  --enable-portmidi \
-  --disable-oss \
-  --without-local-portaudio \
-  --without-local-portmidi
-  make
-}
-
-package() {
-  depends+=('libasound.so' 'libfftw3f.so' 'libjack.so' 'libportaudio.so'
-  'libportmidi.so')
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # licenses
-  install -vDm 644 LICENSE.txt \
--t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 ../${pkgname}-${pkgver}-icon-LICENSE.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/icon-LICENSE.txt"
-
-  # desktop file
-  install -vDm 644 "${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications/"
-  # icons
-  install -vDm 644 "${pkgname}-32.png" \
-"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  install -vDm 644 "${srcdir}/${pkgname}-${pkgver}.svg" \
-"${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
-  for _res in ${_resolutions[@]}; do
-install -vDm 644 "${pkgname}-${_res}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/apps/${pkgname}.png"
-  done
-  # readme
-  install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # fix broken symlink
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  rm -v "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ln -sv "/usr/bin/${pkgname}" "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-}

Copied: pd/repos/community-x86_64/PKGBUILD (from rev 755405, pd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-16 17:12:36 UTC (rev 755406)
@@ -0,0 +1,95 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: TDY 
+# Contributor: Shinlun Hsieh 
+
+_resolutions=( 16 32 48 64 96 128 2

[arch-commits] Commit in pd/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-09-09 Thread David Runge via arch-commits
Date: Wednesday, September 9, 2020 @ 13:46:10
  Author: dvzrv
Revision: 701602

archrelease: copy trunk to community-x86_64

Added:
  pd/repos/community-x86_64/PKGBUILD
(from rev 701601, pd/trunk/PKGBUILD)
Deleted:
  pd/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  190 ++---
 1 file changed, 95 insertions(+), 95 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 13:44:58 UTC (rev 701601)
+++ PKGBUILD2020-09-09 13:46:10 UTC (rev 701602)
@@ -1,95 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: TDY 
-# Contributor: Shinlun Hsieh 
-
-_resolutions=( 16 32 48 64 96 128 256 512 1024 )
-_name=pure-data
-pkgname=pd
-pkgver=0.51.1
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('x86_64')
-url="http://msp.ucsd.edu/software.html";
-license=('BSD')
-groups=('pro-audio')
-depends=('glibc' 'hicolor-icon-theme'  'tk')
-makedepends=('alsa-lib' 'fftw' 'gendesk' 'inkscape' 'jack' 'portaudio'
-'portmidi')
-provides=('puredata')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/archive/${_ver}.tar.gz";
-
"${pkgname}-${pkgver}.svg::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/masters/icon.svg";
-
"${pkgname}-${pkgver}-icon-LICENSE.txt::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/LICENSE.txt";)
-sha512sums=('c9f49074bc9fb716ef53a8a8c7fd850454daf498b30b6495736ba8f3f6d7f4ccdb4449d824a262f17fa7fee3fe38c151586fa5cfe67b4e1bf67c4b9bb7dd50c2'
-
'8d8b274e159bd4cc6a83d5d9d5019b106a74fa61943b36e2a56336b9c3c2c1b1092ce7f79f5264eb69ca43a9360404b800df338b2ad738ca3c237a8ae3c9c41d'
-
'dfc919b56ffc8020ffa4e9b16677a6a710f78a73b22d5bb418414f3196a5cbbe5d6cc9cfbf1389811129f219cb21c0eafdfa6dd90e172d73db2452e5c3fd4f5c')
-b2sums=('cd301b867228836556a07ad16f0aa3ed68ab5bfd9c685d354bdc735db6db993cd0592a9719ea0d782129bb8caab24dd1f3fdfba95f743a9f5c0e22e76f3ec9e1'
-
'04f131540fd7ae9b4547a081df61a5a98265c6c9b283587aeda976834d9bbb4486cd30470d5bfb37b6f760d13705074c71cfeb1a9843613e93f3d1e0ca198af9'
-
'c3fabeeb8e5c45716fbf5d3e6338b41d5adc0fbefb385e3b42d94c732522e99a4045c88e8b8e2e16a72fc5795dbc0933f07078d0eba80b76fb274450c7518dc7')
-
-prepare() {
-  mv -v "${_name}-${_ver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-  # XDG desktop files
-  gendesk -n \
-  --pkgname ${pkgname} \
-  --pkgdesc "${pkgdesc}" \
-  --exec ${pkgname} \
-  --name "Pure Data" \
-  --categories "AudioVideo;Audio"
-  for _res in ${_resolutions[@]}; do
-inkscape -o "pd-${_res}.png" \
- -w "${_res}" \
- -h "${_res}" \
- "../${pkgname}-${pkgver}.svg"
-  done
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-fftw \
-  --enable-jack \
-  --enable-portaudio \
-  --enable-portmidi \
-  --disable-oss \
-  --without-local-portaudio \
-  --without-local-portmidi
-  make
-}
-
-package() {
-  depends+=('libasound.so' 'libfftw3f.so' 'libjack.so' 'libportaudio.so'
-  'libportmidi.so')
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # licenses
-  install -vDm 644 LICENSE.txt \
--t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 ../${pkgname}-${pkgver}-icon-LICENSE.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/icon-LICENSE.txt"
-
-  # desktop file
-  install -vDm 644 "${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications/"
-  # icons
-  install -vDm 644 "${pkgname}-32.png" \
-"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  install -vDm 644 "${srcdir}/${pkgname}-${pkgver}.svg" \
-"${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
-  for _res in ${_resolutions[@]}; do
-install -vDm 644 "${pkgname}-${_res}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/apps/${pkgname}.png"
-  done
-  # readme
-  install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # fix broken symlink
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  rm -v "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ln -sv "/usr/bin/${pkgname}" "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-}

Copied: pd/repos/community-x86_64/PKGBUILD (from rev 701601, pd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 13:46:10 UTC (rev 701602)
@@ -0,0 +1,95 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: TDY 
+# Contributor: Shinlun Hsieh 
+
+_resolutions=( 16 32 48 64 96 12

[arch-commits] Commit in pd/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-08-16 Thread David Runge via arch-commits
Date: Sunday, August 16, 2020 @ 11:14:41
  Author: dvzrv
Revision: 681496

archrelease: copy trunk to community-x86_64

Added:
  pd/repos/community-x86_64/PKGBUILD
(from rev 681495, pd/trunk/PKGBUILD)
Deleted:
  pd/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  187 ++---
 1 file changed, 95 insertions(+), 92 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-16 11:14:36 UTC (rev 681495)
+++ PKGBUILD2020-08-16 11:14:41 UTC (rev 681496)
@@ -1,92 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: TDY 
-# Contributor: Shinlun Hsieh 
-
-_resolutions=( 16 32 48 64 96 128 256 512 1024 )
-_name=pure-data
-pkgname=pd
-pkgver=0.51.0
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('x86_64')
-url="http://msp.ucsd.edu/software.html";
-license=('BSD')
-groups=('pro-audio')
-depends=('glibc' 'hicolor-icon-theme'  'tk')
-makedepends=('alsa-lib' 'fftw' 'gendesk' 'inkscape' 'jack' 'portaudio'
-'portmidi')
-provides=('puredata')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/archive/${_ver}.tar.gz";
-
"${pkgname}-${pkgver}.svg::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/masters/icon.svg";
-
"${pkgname}-${pkgver}-icon-LICENSE.txt::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/LICENSE.txt";)
-sha512sums=('c110b4ee40166551a9672360e1cce647b8ebbde45501d53aa9b96ffdc458e70de564f9055a3c132302f38763f545e36f197cebb61daceafc23032fddea37a9ae'
-
'8d8b274e159bd4cc6a83d5d9d5019b106a74fa61943b36e2a56336b9c3c2c1b1092ce7f79f5264eb69ca43a9360404b800df338b2ad738ca3c237a8ae3c9c41d'
-
'dfc919b56ffc8020ffa4e9b16677a6a710f78a73b22d5bb418414f3196a5cbbe5d6cc9cfbf1389811129f219cb21c0eafdfa6dd90e172d73db2452e5c3fd4f5c')
-
-prepare() {
-  mv -v "${_name}-${_ver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-  # XDG desktop files
-  gendesk -n \
-  --pkgname ${pkgname} \
-  --pkgdesc "${pkgdesc}" \
-  --exec ${pkgname} \
-  --name "Pure Data" \
-  --categories "AudioVideo;Audio"
-  for _res in ${_resolutions[@]}; do
-inkscape -o "pd-${_res}.png" \
- -w "${_res}" \
- -h "${_res}" \
- "../${pkgname}-${pkgver}.svg"
-  done
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-fftw \
-  --enable-jack \
-  --enable-portaudio \
-  --enable-portmidi \
-  --disable-oss \
-  --without-local-portaudio \
-  --without-local-portmidi
-  make
-}
-
-package() {
-  depends+=('libasound.so' 'libfftw3f.so' 'libjack.so' 'libportaudio.so'
-  'libportmidi.so')
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # licenses
-  install -vDm 644 LICENSE.txt \
--t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 ../${pkgname}-${pkgver}-icon-LICENSE.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/icon-LICENSE.txt"
-
-  # desktop file
-  install -vDm 644 "${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications/"
-  # icons
-  install -vDm 644 "${pkgname}-32.png" \
-"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  install -vDm 644 "${srcdir}/${pkgname}-${pkgver}.svg" \
-"${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
-  for _res in ${_resolutions[@]}; do
-install -vDm 644 "${pkgname}-${_res}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/apps/${pkgname}.png"
-  done
-  # readme
-  install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # fix broken symlink
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  rm -v "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ln -sv "/usr/bin/${pkgname}" "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-}

Copied: pd/repos/community-x86_64/PKGBUILD (from rev 681495, pd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-16 11:14:41 UTC (rev 681496)
@@ -0,0 +1,95 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: TDY 
+# Contributor: Shinlun Hsieh 
+
+_resolutions=( 16 32 48 64 96 128 256 512 1024 )
+_name=pure-data
+pkgname=pd
+pkgver=0.51.1
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('x86_64')
+url="http://msp.ucsd.edu/software.html";
+license=('BSD')
+groups=('pro-audio')
+depends=('glibc' 'hicolor-icon-theme'  'tk')
+makedepends=('alsa-lib' 'fftw' 'gendesk' 'inkscape' 'jack' 'portaudio'
+'portmidi')
+provides=('puredata')
+sou

[arch-commits] Commit in pd/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-06-06 Thread David Runge via arch-commits
Date: Saturday, June 6, 2020 @ 12:59:06
  Author: dvzrv
Revision: 639483

archrelease: copy trunk to community-x86_64

Added:
  pd/repos/community-x86_64/PKGBUILD
(from rev 639482, pd/trunk/PKGBUILD)
Deleted:
  pd/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  184 ++---
 1 file changed, 92 insertions(+), 92 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-06 12:58:54 UTC (rev 639482)
+++ PKGBUILD2020-06-06 12:59:06 UTC (rev 639483)
@@ -1,92 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: TDY 
-# Contributor: Shinlun Hsieh 
-
-_resolutions=( 16 32 48 64 96 128 256 512 1024 )
-_name=pure-data
-pkgname=pd
-pkgver=0.50.2
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=3
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('x86_64')
-url="http://msp.ucsd.edu/software.html";
-license=('BSD')
-groups=('pro-audio')
-depends=('glibc' 'hicolor-icon-theme'  'tk')
-makedepends=('alsa-lib' 'fftw' 'gendesk' 'inkscape' 'jack' 'portaudio'
-'portmidi')
-provides=('puredata')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/archive/${_ver}.tar.gz";
-
"${pkgname}-${pkgver}.svg::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/masters/icon.svg";
-
"${pkgname}-${pkgver}-icon-LICENSE.txt::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/LICENSE.txt";)
-sha512sums=('a999831071aedb65678b544cf859cc3e06e2f57d151e9d9da572c669d229f7bf886d7d03f876a93b0f2b69851d3b2971ed9fba74df0083032880f058dddf74f0'
-
'8d8b274e159bd4cc6a83d5d9d5019b106a74fa61943b36e2a56336b9c3c2c1b1092ce7f79f5264eb69ca43a9360404b800df338b2ad738ca3c237a8ae3c9c41d'
-
'dfc919b56ffc8020ffa4e9b16677a6a710f78a73b22d5bb418414f3196a5cbbe5d6cc9cfbf1389811129f219cb21c0eafdfa6dd90e172d73db2452e5c3fd4f5c')
-
-prepare() {
-  mv -v "${_name}-${_ver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-  # XDG desktop files
-  gendesk -n \
-  --pkgname ${pkgname} \
-  --pkgdesc "${pkgdesc}" \
-  --exec ${pkgname} \
-  --name "Pure Data" \
-  --categories "AudioVideo;Audio"
-  for _res in ${_resolutions[@]}; do
-inkscape -o "pd-${_res}.png" \
- -w "${_res}" \
- -h "${_res}" \
- "../${pkgname}-${pkgver}.svg"
-  done
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-fftw \
-  --enable-jack \
-  --enable-portaudio \
-  --enable-portmidi \
-  --disable-oss \
-  --without-local-portaudio \
-  --without-local-portmidi
-  make
-}
-
-package() {
-  depends+=('libasound.so' 'libfftw3f.so' 'libjack.so' 'libportaudio.so'
-  'libportmidi.so')
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # licenses
-  install -vDm 644 LICENSE.txt \
--t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 ../${pkgname}-${pkgver}-icon-LICENSE.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/icon-LICENSE.txt"
-
-  # desktop file
-  install -vDm 644 "${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications/"
-  # icons
-  install -vDm 644 "${pkgname}-32.png" \
-"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  install -vDm 644 "${srcdir}/${pkgname}-${pkgver}.svg" \
-"${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
-  for _res in ${_resolutions[@]}; do
-install -vDm 644 "${pkgname}-${_res}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/apps/${pkgname}.png"
-  done
-  # readme
-  install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # fix broken symlink
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  rm -v "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ln -sv "/usr/bin/${pkgname}" "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-}

Copied: pd/repos/community-x86_64/PKGBUILD (from rev 639482, pd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-06 12:59:06 UTC (rev 639483)
@@ -0,0 +1,92 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: TDY 
+# Contributor: Shinlun Hsieh 
+
+_resolutions=( 16 32 48 64 96 128 256 512 1024 )
+_name=pure-data
+pkgname=pd
+pkgver=0.51.0
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('x86_64')
+url="http://msp.ucsd.edu/software.html";
+license=('BSD')
+groups=('pro-audio')
+depends=('glibc' 'hicolor-icon-theme'  'tk')
+makedepends=('alsa-lib' 'fftw' 'gendesk' 'inkscape' 'jack' 'portaudio'
+'portmidi')
+provides=('puredata')
+sour

[arch-commits] Commit in pd/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-05-09 Thread David Runge via arch-commits
Date: Saturday, May 9, 2020 @ 19:21:43
  Author: dvzrv
Revision: 626058

archrelease: copy trunk to community-x86_64

Added:
  pd/repos/community-x86_64/PKGBUILD
(from rev 626057, pd/trunk/PKGBUILD)
Deleted:
  pd/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  182 ++---
 1 file changed, 92 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-09 19:21:30 UTC (rev 626057)
+++ PKGBUILD2020-05-09 19:21:43 UTC (rev 626058)
@@ -1,90 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: TDY 
-# Contributor: Shinlun Hsieh 
-
-_resolutions=( 16 32 48 64 96 128 256 512 1024 )
-_name=pure-data
-pkgname=pd
-pkgver=0.50.2
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=2
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('x86_64')
-url="http://msp.ucsd.edu/software.html";
-license=('BSD')
-groups=('pro-audio')
-depends=('alsa-lib' 'fftw' 'glibc' 'hicolor-icon-theme' 'libjack.so'
-'libportaudio.so' 'libportmidi.so' 'tk')
-makedepends=('gendesk' 'inkscape')
-provides=('puredata')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/archive/${_ver}.tar.gz";
-
"${pkgname}-${pkgver}.svg::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/masters/icon.svg";
-
"${pkgname}-${pkgver}-icon-LICENSE.txt::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/LICENSE.txt";)
-sha512sums=('a999831071aedb65678b544cf859cc3e06e2f57d151e9d9da572c669d229f7bf886d7d03f876a93b0f2b69851d3b2971ed9fba74df0083032880f058dddf74f0'
-
'8d8b274e159bd4cc6a83d5d9d5019b106a74fa61943b36e2a56336b9c3c2c1b1092ce7f79f5264eb69ca43a9360404b800df338b2ad738ca3c237a8ae3c9c41d'
-
'dfc919b56ffc8020ffa4e9b16677a6a710f78a73b22d5bb418414f3196a5cbbe5d6cc9cfbf1389811129f219cb21c0eafdfa6dd90e172d73db2452e5c3fd4f5c')
-
-prepare() {
-  mv -v "${_name}-${_ver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-  # XDG desktop files
-  gendesk -n \
-  --pkgname ${pkgname} \
-  --pkgdesc "${pkgdesc}" \
-  --exec ${pkgname} \
-  --name "Pure Data" \
-  --categories "AudioVideo;Audio"
-  for _res in ${_resolutions[@]}; do
-inkscape -z -e "pd-${_res}.png" \
- -w "${_res}" \
- -h "${_res}" \
- "../${pkgname}-${pkgver}.svg"
-  done
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-fftw \
-  --enable-jack \
-  --enable-portaudio \
-  --enable-portmidi \
-  --disable-oss \
-  --without-local-portaudio \
-  --without-local-portmidi
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # licenses
-  install -vDm 644 LICENSE.txt \
--t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 ../${pkgname}-${pkgver}-icon-LICENSE.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/icon-LICENSE.txt"
-
-  # desktop file
-  install -vDm 644 "${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications/"
-  # icons
-  install -vDm 644 "${pkgname}-32.png" \
-"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  install -vDm 644 "${srcdir}/${pkgname}-${pkgver}.svg" \
-"${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
-  for _res in ${_resolutions[@]}; do
-install -vDm 644 "${pkgname}-${_res}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/apps/${pkgname}.png"
-  done
-  # readme
-  install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # fix broken symlink
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  rm -v "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ln -sv "/usr/bin/${pkgname}" "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-}

Copied: pd/repos/community-x86_64/PKGBUILD (from rev 626057, pd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-09 19:21:43 UTC (rev 626058)
@@ -0,0 +1,92 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: TDY 
+# Contributor: Shinlun Hsieh 
+
+_resolutions=( 16 32 48 64 96 128 256 512 1024 )
+_name=pure-data
+pkgname=pd
+pkgver=0.50.2
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=3
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('x86_64')
+url="http://msp.ucsd.edu/software.html";
+license=('BSD')
+groups=('pro-audio')
+depends=('glibc' 'hicolor-icon-theme'  'tk')
+makedepends=('alsa-lib' 'fftw' 'gendesk' 'inkscape' 'jack' 'portaudio'
+'portmidi')
+provides=('puredata')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/arc

[arch-commits] Commit in pd/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-01-16 Thread David Runge via arch-commits
Date: Friday, January 17, 2020 @ 01:06:21
  Author: dvzrv
Revision: 552810

archrelease: copy trunk to community-x86_64

Added:
  pd/repos/community-x86_64/PKGBUILD
(from rev 552809, pd/trunk/PKGBUILD)
Deleted:
  pd/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  180 ++---
 1 file changed, 90 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-17 01:06:12 UTC (rev 552809)
+++ PKGBUILD2020-01-17 01:06:21 UTC (rev 552810)
@@ -1,90 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: TDY 
-# Contributor: Shinlun Hsieh 
-
-_resolutions=( 16 32 48 64 96 128 256 512 1024 )
-_name=pure-data
-pkgname=pd
-pkgver=0.50.2
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('x86_64')
-url="http://msp.ucsd.edu/software.html";
-license=('BSD')
-groups=('pro-audio')
-depends=('alsa-lib' 'fftw' 'glibc' 'hicolor-icon-theme' 'jack' 'portaudio' 
'tk')
-makedepends=('gendesk' 'inkscape' 'portmidi')
-optdepends=('portmidi: for alternative portmidi support')
-provides=('puredata')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/archive/${_ver}.tar.gz";
-
"${pkgname}-${pkgver}.svg::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/masters/icon.svg";
-
"${pkgname}-${pkgver}-icon-LICENSE.txt::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/LICENSE.txt";)
-sha512sums=('a999831071aedb65678b544cf859cc3e06e2f57d151e9d9da572c669d229f7bf886d7d03f876a93b0f2b69851d3b2971ed9fba74df0083032880f058dddf74f0'
-
'8d8b274e159bd4cc6a83d5d9d5019b106a74fa61943b36e2a56336b9c3c2c1b1092ce7f79f5264eb69ca43a9360404b800df338b2ad738ca3c237a8ae3c9c41d'
-
'dfc919b56ffc8020ffa4e9b16677a6a710f78a73b22d5bb418414f3196a5cbbe5d6cc9cfbf1389811129f219cb21c0eafdfa6dd90e172d73db2452e5c3fd4f5c')
-
-prepare() {
-  mv -v "${_name}-${_ver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-  # XDG desktop files
-  gendesk -n \
-  --pkgname ${pkgname} \
-  --pkgdesc "${pkgdesc}" \
-  --exec ${pkgname} \
-  --name "Pure Data" \
-  --categories "AudioVideo;Audio"
-  for _res in ${_resolutions[@]}; do
-inkscape -z -e "pd-${_res}.png" \
- -w "${_res}" \
- -h "${_res}" \
- "../${pkgname}-${pkgver}.svg"
-  done
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-fftw \
-  --enable-jack \
-  --enable-portaudio \
-  --enable-portmidi \
-  --disable-oss \
-  --without-local-portaudio \
-  --without-local-portmidi
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # licenses
-  install -vDm 644 LICENSE.txt \
--t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 ../${pkgname}-${pkgver}-icon-LICENSE.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/icon-LICENSE.txt"
-
-  # desktop file
-  install -vDm 644 "${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications/"
-  # icons
-  install -vDm 644 "${pkgname}-32.png" \
-"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  install -vDm 644 "${srcdir}/${pkgname}-${pkgver}.svg" \
-"${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
-  for _res in ${_resolutions[@]}; do
-install -vDm 644 "${pkgname}-${_res}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/apps/${pkgname}.png"
-  done
-  # readme
-  install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # fix broken symlink
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  rm -v "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ln -sv "/usr/bin/${pkgname}" "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-}

Copied: pd/repos/community-x86_64/PKGBUILD (from rev 552809, pd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-17 01:06:21 UTC (rev 552810)
@@ -0,0 +1,90 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: TDY 
+# Contributor: Shinlun Hsieh 
+
+_resolutions=( 16 32 48 64 96 128 256 512 1024 )
+_name=pure-data
+pkgname=pd
+pkgver=0.50.2
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=2
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('x86_64')
+url="http://msp.ucsd.edu/software.html";
+license=('BSD')
+groups=('pro-audio')
+depends=('alsa-lib' 'fftw' 'glibc' 'hicolor-icon-theme' 'libjack.so'
+'libportaudio.so' 'libportmidi.so' 'tk')
+makedepends=('gendesk' 'inkscape')
+provides=('puredata')
+source=("${pkgname}

[arch-commits] Commit in pd/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-10-06 Thread David Runge via arch-commits
Date: Sunday, October 6, 2019 @ 20:48:09
  Author: dvzrv
Revision: 513664

archrelease: copy trunk to community-x86_64

Added:
  pd/repos/community-x86_64/PKGBUILD
(from rev 513663, pd/trunk/PKGBUILD)
Deleted:
  pd/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  180 ++---
 1 file changed, 90 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-06 20:48:03 UTC (rev 513663)
+++ PKGBUILD2019-10-06 20:48:09 UTC (rev 513664)
@@ -1,90 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: TDY 
-# Contributor: Shinlun Hsieh 
-
-_resolutions=( 16 32 48 64 96 128 256 512 1024 )
-_name=pure-data
-pkgname=pd
-pkgver=0.50.1
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('x86_64')
-url="http://msp.ucsd.edu/software.html";
-license=('BSD')
-groups=('pro-audio')
-depends=('alsa-lib' 'fftw' 'glibc' 'hicolor-icon-theme' 'jack' 'portaudio' 
'tk')
-makedepends=('gendesk' 'inkscape' 'portmidi')
-optdepends=('portmidi: for alternative portmidi support')
-provides=('puredata')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/archive/${_ver}.tar.gz";
-
"${pkgname}-${pkgver}.svg::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/masters/icon.svg";
-
"${pkgname}-${pkgver}-icon-LICENSE.txt::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/LICENSE.txt";)
-sha512sums=('afa9e54584306288154474d502976c9458968e3c4e6bd6a63cae08a9e16fd585b8b83ab88d7fc63f480434ba0f42de0392b8c25727cee18f2778ddb86b661eda'
-
'8d8b274e159bd4cc6a83d5d9d5019b106a74fa61943b36e2a56336b9c3c2c1b1092ce7f79f5264eb69ca43a9360404b800df338b2ad738ca3c237a8ae3c9c41d'
-
'dfc919b56ffc8020ffa4e9b16677a6a710f78a73b22d5bb418414f3196a5cbbe5d6cc9cfbf1389811129f219cb21c0eafdfa6dd90e172d73db2452e5c3fd4f5c')
-
-prepare() {
-  mv -v "${_name}-${_ver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-  # XDG desktop files
-  gendesk -n \
-  --pkgname ${pkgname} \
-  --pkgdesc "${pkgdesc}" \
-  --exec ${pkgname} \
-  --name "Pure Data" \
-  --categories "AudioVideo;Audio"
-  for _res in ${_resolutions[@]}; do
-inkscape -z -e "pd-${_res}.png" \
- -w "${_res}" \
- -h "${_res}" \
- "../${pkgname}-${pkgver}.svg"
-  done
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-fftw \
-  --enable-jack \
-  --enable-portaudio \
-  --enable-portmidi \
-  --disable-oss \
-  --without-local-portaudio \
-  --without-local-portmidi
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # licenses
-  install -vDm 644 LICENSE.txt \
--t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 ../${pkgname}-${pkgver}-icon-LICENSE.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/icon-LICENSE.txt"
-
-  # desktop file
-  install -vDm 644 "${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications/"
-  # icons
-  install -vDm 644 "${pkgname}-32.png" \
-"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  install -vDm 644 "${srcdir}/${pkgname}-${pkgver}.svg" \
-"${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
-  for _res in ${_resolutions[@]}; do
-install -vDm 644 "${pkgname}-${_res}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/apps/${pkgname}.png"
-  done
-  # readme
-  install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # fix broken symlink
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  rm -v "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ln -sv "/usr/bin/${pkgname}" "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-}

Copied: pd/repos/community-x86_64/PKGBUILD (from rev 513663, pd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-06 20:48:09 UTC (rev 513664)
@@ -0,0 +1,90 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: TDY 
+# Contributor: Shinlun Hsieh 
+
+_resolutions=( 16 32 48 64 96 128 256 512 1024 )
+_name=pure-data
+pkgname=pd
+pkgver=0.50.2
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('x86_64')
+url="http://msp.ucsd.edu/software.html";
+license=('BSD')
+groups=('pro-audio')
+depends=('alsa-lib' 'fftw' 'glibc' 'hicolor-icon-theme' 'jack' 'portaudio' 
'tk')
+makedepends=('gendesk' 'inkscape' 'portmidi')
+optdepends=('portmidi: for alternative portmidi support')
+pr

[arch-commits] Commit in pd/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-09-25 Thread David Runge via arch-commits
Date: Wednesday, September 25, 2019 @ 18:14:49
  Author: dvzrv
Revision: 511760

archrelease: copy trunk to community-x86_64

Added:
  pd/repos/community-x86_64/PKGBUILD
(from rev 511759, pd/trunk/PKGBUILD)
Deleted:
  pd/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  179 ++---
 1 file changed, 90 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-25 18:14:44 UTC (rev 511759)
+++ PKGBUILD2019-09-25 18:14:49 UTC (rev 511760)
@@ -1,89 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: TDY 
-# Contributor: Shinlun Hsieh 
-
-_resolutions=( 16 32 48 64 96 128 256 512 1024 )
-_name=pure-data
-pkgname=pd
-pkgver=0.50.0
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('x86_64')
-url="http://msp.ucsd.edu/software.html";
-license=('BSD')
-groups=('pro-audio')
-depends=('fftw' 'hicolor-icon-theme' 'portaudio' 'tk')
-makedepends=('gendesk' 'inkscape' 'portmidi')
-optdepends=('portmidi: for alternative portmidi support')
-provides=('puredata')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/archive/${_ver}.tar.gz";
-
"${pkgname}-${pkgver}.svg::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/masters/icon.svg";
-
"${pkgname}-${pkgver}-icon-LICENSE.txt::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/LICENSE.txt";)
-sha512sums=('0478f00bb929c9b6814c972e25b32a9e293b112d4a58d9a9e10abccff481c2d5870ba1cc8e9906bf0bfd2f3ef1b71e17f8a9828975714b37af6aa22ea00122a2'
-
'8d8b274e159bd4cc6a83d5d9d5019b106a74fa61943b36e2a56336b9c3c2c1b1092ce7f79f5264eb69ca43a9360404b800df338b2ad738ca3c237a8ae3c9c41d'
-
'dfc919b56ffc8020ffa4e9b16677a6a710f78a73b22d5bb418414f3196a5cbbe5d6cc9cfbf1389811129f219cb21c0eafdfa6dd90e172d73db2452e5c3fd4f5c')
-
-prepare() {
-  mv -v "${_name}-${_ver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-  # XDG desktop files
-  gendesk -n \
-  --pkgname ${pkgname} \
-  --pkgdesc "${pkgdesc}" \
-  --exec ${pkgname} \
-  --name "Pure Data" \
-  --categories "AudioVideo;Audio"
-  for _res in ${_resolutions[@]}; do
-inkscape -z -e "pd-${_res}.png" \
- -w "${_res}" \
- -h "${_res}" \
- "../${pkgname}-${pkgver}.svg"
-  done
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-fftw \
-  --enable-jack \
-  --enable-portaudio \
-  --enable-portmidi \
-  --without-local-portaudio \
-  --without-local-portmidi
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # licenses
-  install -vDm 644 LICENSE.txt \
--t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 ../${pkgname}-${pkgver}-icon-LICENSE.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/icon-LICENSE.txt"
-
-  # desktop file
-  install -vDm 644 "${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications/"
-  # icons
-  install -vDm 644 "${pkgname}-32.png" \
-"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  install -vDm 644 "${srcdir}/${pkgname}-${pkgver}.svg" \
-"${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
-  for _res in ${_resolutions[@]}; do
-install -vDm 644 "${pkgname}-${_res}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/apps/${pkgname}.png"
-  done
-  # readme
-  install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # fix broken symlink
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  rm -v "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ln -sv "/usr/bin/${pkgname}" "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-}

Copied: pd/repos/community-x86_64/PKGBUILD (from rev 511759, pd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-25 18:14:49 UTC (rev 511760)
@@ -0,0 +1,90 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: TDY 
+# Contributor: Shinlun Hsieh 
+
+_resolutions=( 16 32 48 64 96 128 256 512 1024 )
+_name=pure-data
+pkgname=pd
+pkgver=0.50.1
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('x86_64')
+url="http://msp.ucsd.edu/software.html";
+license=('BSD')
+groups=('pro-audio')
+depends=('alsa-lib' 'fftw' 'glibc' 'hicolor-icon-theme' 'jack' 'portaudio' 
'tk')
+makedepends=('gendesk' 'inkscape' 'portmidi')
+optdepends=('portmidi: for alternative portmidi support')
+provides=('puredata')
+source=("${pkgname}-${pkgver}.t

[arch-commits] Commit in pd/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-08-20 Thread David Runge via arch-commits
Date: Tuesday, August 20, 2019 @ 10:49:52
  Author: dvzrv
Revision: 500271

archrelease: copy trunk to community-x86_64

Added:
  pd/repos/community-x86_64/PKGBUILD
(from rev 500270, pd/trunk/PKGBUILD)
Deleted:
  pd/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  173 +++--
 1 file changed, 89 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 10:49:47 UTC (rev 500270)
+++ PKGBUILD2019-08-20 10:49:52 UTC (rev 500271)
@@ -1,84 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: TDY 
-# Contributor: Shinlun Hsieh 
-
-_resolutions=( 16 32 48 64 96 128 256 512 1024 )
-_name=pure-data
-pkgname=pd
-pkgver=0.49.1
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('x86_64')
-url="http://msp.ucsd.edu/software.html";
-license=('BSD')
-groups=('pro-audio')
-depends=('fftw' 'hicolor-icon-theme' 'portaudio' 'tk')
-makedepends=('gendesk' 'inkscape' 'portmidi')
-optdepends=('portmidi: for alternative portmidi support')
-provides=('puredata')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/archive/${_ver}.tar.gz";
-
"${pkgname}.svg::https://raw.githubusercontent.com/pure-data/pd-icon/master/masters/icon.svg";)
-sha512sums=('c2dd4eadc622b1a626095cad95ce7e34be569414671af5938b339665526545174cf7abb77bf49943f617a93b3fae54fc890df46f1b9f73cb93b13a36db490fd7'
-
'3c88122e0bdbdda73d47a688de7264f4cf86537b981dfabcbc646fc621189612bd0ae4804ba962d533072df85faddb9a77daf3eb7c6ef8ea46c22e3216bf0d74')
-
-prepare() {
-  mv -v "${_name}-${_ver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-  # XDG desktop files
-  gendesk -n \
-  --pkgname ${pkgname} \
-  --pkgdesc "${pkgdesc}" \
-  --exec ${pkgname} \
-  --name "Pure Data" \
-  --categories "AudioVideo;Audio"
-  for _res in ${_resolutions[@]}; do
-inkscape -z -e "pd-${_res}.png" \
- -w "${_res}" \
- -h "${_res}" \
- "../${pkgname}.svg"
-  done
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-fftw \
-  --enable-jack \
-  --enable-portaudio \
-  --enable-portmidi \
-  --without-local-portaudio \
-  --without-local-portmidi
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # license
-  install -vDm 644 LICENSE.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  # desktop file
-  install -vDm 644 "${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications/"
-  # icons
-  install -vDm 644 "${pkgname}-32.png" \
-"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  install -vDm 644 "${srcdir}/${pkgname}.svg" \
--t "${pkgdir}/usr/share/icons/hicolor/scalable/apps"
-  for _res in ${_resolutions[@]}; do
-install -vDm 644 "${pkgname}-${_res}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/apps/${pkgname}.png"
-  done
-  # readme
-  install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # fix broken symlink
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  rm -v "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ln -sv "/usr/bin/${pkgname}" "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-}

Copied: pd/repos/community-x86_64/PKGBUILD (from rev 500270, pd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 10:49:52 UTC (rev 500271)
@@ -0,0 +1,89 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: TDY 
+# Contributor: Shinlun Hsieh 
+
+_resolutions=( 16 32 48 64 96 128 256 512 1024 )
+_name=pure-data
+pkgname=pd
+pkgver=0.50.0
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('x86_64')
+url="http://msp.ucsd.edu/software.html";
+license=('BSD')
+groups=('pro-audio')
+depends=('fftw' 'hicolor-icon-theme' 'portaudio' 'tk')
+makedepends=('gendesk' 'inkscape' 'portmidi')
+optdepends=('portmidi: for alternative portmidi support')
+provides=('puredata')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/archive/${_ver}.tar.gz";
+
"${pkgname}-${pkgver}.svg::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/masters/icon.svg";
+
"${pkgname}-${pkgver}-icon-LICENSE.txt::https://raw.githubusercontent.com/pure-data/pd-icon/9e4f117ade0bc1da951981128998ad82fff83b0c/LICENSE.txt";)
+sha512sums=('0478f00bb929c9b6814c972e25b32a9e293b112d4a58d9a9e10abccff481c2d5870ba1cc8e9906bf0bfd2f3ef1b71e17f8a9828975714b37af6aa22ea00122a2'
+

[arch-commits] Commit in pd/repos/community-x86_64 (PKGBUILD PKGBUILD pd.png)

2019-08-08 Thread David Runge via arch-commits
Date: Friday, August 9, 2019 @ 05:50:52
  Author: dvzrv
Revision: 498388

archrelease: copy trunk to community-x86_64

Added:
  pd/repos/community-x86_64/PKGBUILD
(from rev 498387, pd/trunk/PKGBUILD)
Deleted:
  pd/repos/community-x86_64/PKGBUILD
  pd/repos/community-x86_64/pd.png

--+
 PKGBUILD |  155 +
 1 file changed, 84 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-09 05:50:47 UTC (rev 498387)
+++ PKGBUILD2019-08-09 05:50:52 UTC (rev 498388)
@@ -1,71 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: TDY 
-# Contributor: Shinlun Hsieh 
-
-pkgname=pd
-pkgver=0.49.0
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=1
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('x86_64')
-url="http://msp.ucsd.edu/software.html";
-license=('custom:BSD')
-groups=('pro-audio')
-depends=('fftw' 'portaudio' 'tk')
-makedepends=('gendesk' 'portmidi')
-optdepends=('portmidi: for alternative portmidi support')
-provides=('puredata')
-source=("http://msp.ucsd.edu/Software/${pkgname}-${_ver}.src.tar.gz";
-"${pkgname}.png")
-sha512sums=('5a8e606d2e1b62bc65903c7a30c6339f0f9acc676290d233bcb8ed87a817c7c3ff63207779f5e0d9caa231ad988770e5c2225921c2a616df661b3960b2c72480'
-
'61300b58f10018b0bd28424ac00d1b8158f8ace9855742e19e48c98f915cabcade6c6041460aa795005c0fb6abc93e7116fc6d00116c9fe6c85c162d')
-
-prepare() {
-  mv -v "${pkgname}-${_ver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-  # XDG desktop files
-  gendesk -n \
-  --pkgname ${pkgname} \
-  --pkgdesc "${pkgdesc}" \
-  --exec ${pkgname} \
-  --name "Pure Data" \
-  --categories "AudioVideo;Audio"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --enable-alsa \
-  --enable-fftw \
-  --enable-jack \
-  --enable-portaudio \
-  --enable-portmidi \
-  --without-local-portaudio \
-  --without-local-portmidi
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # license
-  install -vDm 644 LICENSE.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  # desktop file
-  install -vDm 644 "${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications/"
-  # icon from puredata.info
-  # https://puredata.info/Members/claudiusmaximus/icons/index_html/
-  install -vDm 644 "${srcdir}/${pkgname}.png" \
--t "${pkgdir}/usr/share/pixmaps/"
-  # readme
-  install -vDm 644 README.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # fix broken symlink
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  rm -v "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ln -sv "/usr/bin/${pkgname}" "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-  ls -lah "${pkgdir}/usr/lib/${pkgname}/bin/${pkgname}"
-}

Copied: pd/repos/community-x86_64/PKGBUILD (from rev 498387, pd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-09 05:50:52 UTC (rev 498388)
@@ -0,0 +1,84 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: TDY 
+# Contributor: Shinlun Hsieh 
+
+_resolutions=( 16 32 48 64 96 128 256 512 1024 )
+_name=pure-data
+pkgname=pd
+pkgver=0.49.1
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('x86_64')
+url="http://msp.ucsd.edu/software.html";
+license=('BSD')
+groups=('pro-audio')
+depends=('fftw' 'hicolor-icon-theme' 'portaudio' 'tk')
+makedepends=('gendesk' 'inkscape' 'portmidi')
+optdepends=('portmidi: for alternative portmidi support')
+provides=('puredata')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pure-data/pure-data/archive/${_ver}.tar.gz";
+
"${pkgname}.svg::https://raw.githubusercontent.com/pure-data/pd-icon/master/masters/icon.svg";)
+sha512sums=('c2dd4eadc622b1a626095cad95ce7e34be569414671af5938b339665526545174cf7abb77bf49943f617a93b3fae54fc890df46f1b9f73cb93b13a36db490fd7'
+
'3c88122e0bdbdda73d47a688de7264f4cf86537b981dfabcbc646fc621189612bd0ae4804ba962d533072df85faddb9a77daf3eb7c6ef8ea46c22e3216bf0d74')
+
+prepare() {
+  mv -v "${_name}-${_ver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  autoreconf -vfi
+  # XDG desktop files
+  gendesk -n \
+  --pkgname ${pkgname} \
+  --pkgdesc "${pkgdesc}" \
+  --exec ${pkgname} \
+  --name "Pure Data" \
+  --categories "AudioVideo;Audio"
+  for _res in ${_resolutions[@]}; do
+inkscape -z -e "pd-${_res}.png" \
+ -w "${_res}" \
+ -h "${_res}" \
+ "../${pkgname}.svg"
+  done
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+  --enable-alsa