summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2018-03-14 23:04:17 -0300
committerDavid P <megver83@parabola.nu>2018-03-14 23:05:41 -0300
commit53ef21bb95e7c637ea0aad27c6c1d85ceaaf6845 (patch)
tree943714316d98cc6b0e0ad1c64be24d3bc4bcf832
parentbdb7c8b2c23ae20d838b1c46f5e6710905491b1e (diff)
downloadabslibre-53ef21bb95e7c637ea0aad27c6c1d85ceaaf6845.tar.gz
abslibre-53ef21bb95e7c637ea0aad27c6c1d85ceaaf6845.tar.bz2
abslibre-53ef21bb95e7c637ea0aad27c6c1d85ceaaf6845.zip
Removing [pcr] packages available in [community]
Excepting arduino, there's a thing about that that I don't remember My hack for discovering these pkgs: pacman -Sl pcr community | gawk '{ print $2 }' | sort | uniq -cd
-rw-r--r--pcr/csound-doc/PKGBUILD26
-rw-r--r--pcr/helm/PKGBUILD48
-rw-r--r--pcr/helm/sigemptyset.patch11
-rw-r--r--pcr/python2-vobject/PKGBUILD21
4 files changed, 0 insertions, 106 deletions
diff --git a/pcr/csound-doc/PKGBUILD b/pcr/csound-doc/PKGBUILD
deleted file mode 100644
index 4cfe4d3d3..000000000
--- a/pcr/csound-doc/PKGBUILD
+++ /dev/null
@@ -1,26 +0,0 @@
-# Maintainer (AUR): Ainola
-# Contributor (AUR): speps
-# Contributor (AUR): Bernardo Barros
-# Contributor (AUR): Lars Boettcher
-
-# parabola changes and rationale:
-# no changes.
-
-pkgname=csound-doc
-pkgver=6.10.0
-pkgrel=1
-pkgdesc="The Canonical Csound Reference Manual"
-url="http://csound.github.io"
-arch=('any')
-license=('LGPL' 'GPL')
-optdepends=('csound')
-# This is a hardcoded link because the devs change the naming convention often.
-source=("https://github.com/csound/csound/releases/download/6.10.0/Csound6.10.0_manual_html.zip")
-sha256sums=('1f3bc78e7826cc32b0fa43f73b60a9f8b2ee09c3c47118bcb9d5e8649b66dbcf')
-
-package() {
- install -d "$pkgdir/usr/share/doc/csound-doc/html"
- cp -a "$srcdir"/html/* "$pkgdir/usr/share/doc/csound-doc/html"
-
- find "$pkgdir" -type f -exec chmod 644 {} \;
-}
diff --git a/pcr/helm/PKGBUILD b/pcr/helm/PKGBUILD
deleted file mode 100644
index 5849b36d8..000000000
--- a/pcr/helm/PKGBUILD
+++ /dev/null
@@ -1,48 +0,0 @@
-# Maintainer (AUR): gato_lento <vukk.euob at gmail>
-# Based on helm-git PKGBUILD by: Christopher Arndt <aur -at- chrisarndt -dot- de>
-# Contributor: André Silva <emulatorman@hyperbola.info>
-
-# parabola changes and rationale:
-# - changed tarball name to reduce chance of collisions
-# - added missing depends: libxinerama jack libxcursor
-# - added patch to fix compile error against recent glibc
-
-pkgname='helm'
-pkgver=0.9.0
-pkgrel=3
-pkgdesc='a cross-platform, polyphonic synthesizer, available standalone and as an LV2 plugin'
-arch=('x86_64' 'i686' 'armv7h')
-url='http://tytel.org/helm/'
-license=('GPL')
-groups=('lv2-plugins')
-depends=('alsa-lib' 'freetype2' 'mesa' 'lv2' 'libxinerama' 'jack' 'libxcursor')
-conflicts=('helm-git')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mtytel/helm/archive/v${pkgver}.tar.gz"
- "sigemptyset.patch")
-sha256sums=('4004c11fd1d773cc2a12adb5336873bc86c5ecbd370b8da2820fed6ef5ec58ad'
- '66c442780c36b5a17c73be7f76b46ba9261e69591d15be4607c90214852b1454')
-
-prepare() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- patch -Np1 -i "$srcdir"/sigemptyset.patch
-
- for build in standalone/builds/linux builds/linux/VST builds/linux/LV2; do
- sed -i -e 's|JUCE_INCLUDE_PNGLIB_CODE=0|JUCE_INCLUDE_PNGLIB_CODE=1|g' \
- "${build}/Makefile"
- done
-}
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- CXXFLAGS="${CXXFLAGS} -DHAVE_LROUND -Wno-error"
- make PREFIX="/usr" standalone lv2
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- CXXFLAGS="${CXXFLAGS} -DHAVE_LROUND -Wno-error"
- make DESTDIR="$pkgdir" install_standalone install_lv2
-}
diff --git a/pcr/helm/sigemptyset.patch b/pcr/helm/sigemptyset.patch
deleted file mode 100644
index c0a843173..000000000
--- a/pcr/helm/sigemptyset.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c 2018-01-24 21:17:51.340789192 +0100
-+++ b/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c 2018-01-24 21:18:15.104457279 +0100
-@@ -247,7 +247,7 @@ void FLAC__cpu_info(FLAC__CPUInfo *info)
- #ifdef __ANDROID__
- sigemptyset (&sigill_sse.sa_mask);
- #else
-- __sigemptyset(&sigill_sse.sa_mask);
-+ sigemptyset(&sigill_sse.sa_mask);
- #endif
- sigill_sse.sa_flags = SA_SIGINFO | SA_RESETHAND; /* SA_RESETHAND just in case our SIGILL return jump breaks, so we don't get stuck in a loop */
- if(0 == sigaction(SIGILL, &sigill_sse, &sigill_save))
diff --git a/pcr/python2-vobject/PKGBUILD b/pcr/python2-vobject/PKGBUILD
deleted file mode 100644
index 46ea8477e..000000000
--- a/pcr/python2-vobject/PKGBUILD
+++ /dev/null
@@ -1,21 +0,0 @@
-# Maintainer (Arch): Carsten Feuls <archlinux@carstenfeuls.de>
-# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-
-pkgname=python2-vobject
-pkgver=0.9.4.1
-pkgrel=1
-pkgdesc='Module for parsing and generating vCard and vCalendar files'
-url='https://eventable.github.io/vobject/'
-license=('Apache')
-arch=('any')
-depends=('python2-dateutil' 'python2-pyicu')
-makedepends=('python2-distribute')
-source=("https://github.com/eventable/vobject/archive/${pkgver}.tar.gz")
-sha256sums=('accc36d227ce02f3b258e666d504745e21a149a33c307a8d32d9fd439d2f5efb')
-
-package() {
- cd "vobject-$pkgver"
- python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et: