summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-04-03 03:33:25 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-04-03 03:33:25 +0000
commit86953d17fbdfc3b8b89878f1ec5f911568657761 (patch)
treed834021be55372f5c1856313c775edffc414d3d3 /pcr
parentc667b77b6719baf541fff1a3e0a855d1ca7c6433 (diff)
Thu Apr 3 03:29:12 UTC 2014
Diffstat (limited to 'pcr')
-rw-r--r--pcr/command-not-found/PKGBUILD32
-rw-r--r--pcr/hiredis/ChangeLog14
-rw-r--r--pcr/hiredis/PKGBUILD43
-rw-r--r--pcr/hiredis/hiredis-fix-tests.patch11
-rw-r--r--pcr/nginx-passenger/logrotate9
-rw-r--r--pcr/nginx-passenger/nginx.install17
-rw-r--r--pcr/nginx-passenger/service14
-rw-r--r--pcr/qt-at-spi-git/PKGBUILD44
-rw-r--r--pcr/rfc5766-turn-server/ChangeLog89
-rw-r--r--pcr/rfc5766-turn-server/PKGBUILD59
-rw-r--r--pcr/rfc5766-turn-server/turnserver.install17
-rw-r--r--pcr/rfc5766-turn-server/turnserver.service11
-rw-r--r--pcr/rfc5766-turn-server/turnserver.tmpfiles.d1
13 files changed, 0 insertions, 361 deletions
diff --git a/pcr/command-not-found/PKGBUILD b/pcr/command-not-found/PKGBUILD
deleted file mode 100644
index 60aaa4fd5..000000000
--- a/pcr/command-not-found/PKGBUILD
+++ /dev/null
@@ -1,32 +0,0 @@
-# Maintainer: Aurelien Desbrieres <aurelien@cwb.io>
-# Contributor: Diogo Leal <estranho@diogoleal.com>
-# Contributor: Luke Shumaker <lukeshu@sbcglobal.net>
-# Contributor: Matthias Maennich <arch@maennich.net>
-
-pkgname=command-not-found
-pkgver=0.4.5
-pkgrel=2
-pkgdesc="In case a command could not be found this utility searches for packages containing this or a similar command (bash,zsh)."
-arch=('i686' 'x86_64')
-url="http://github.com/metti/command-not-found"
-license=('GPL3')
-depends=('boost-libs' 'tdb' 'libarchive' 'wget')
-makedepends=('boost' 'cmake')
-install='install'
-
-source=("https://repo.parabolagnulinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz")
-md5sums=('cceea11367dd1847f08c94212f380ea5')
-
-mksource=("$pkgname-$pkgver::git+https://github.com/metti/$pkgname.git#tag=v${pkgver}")
-mkmd5sums=('SKIP')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX="" src
- make
-}
-
-package(){
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
-}
diff --git a/pcr/hiredis/ChangeLog b/pcr/hiredis/ChangeLog
deleted file mode 100644
index b804e1b67..000000000
--- a/pcr/hiredis/ChangeLog
+++ /dev/null
@@ -1,14 +0,0 @@
-2013-12-11 Vladimir Tsanev <tsachev@gamil.com>
-
- * 0.11.0-3 :
- Tests enabled thanks to Massimiliano Torromeo.
-
-2013-11-23 Vladimir Tsanev <tsachev@gamil.com>
-
- * 0.11.0-2 :
- added i686 arch.
-
-2013-06-07 Vladimir Tsanev <tsachev@gamil.com>
-
- * 0.11.0-1 :
- Initial PKGBUILD.
diff --git a/pcr/hiredis/PKGBUILD b/pcr/hiredis/PKGBUILD
deleted file mode 100644
index a6ad20868..000000000
--- a/pcr/hiredis/PKGBUILD
+++ /dev/null
@@ -1,43 +0,0 @@
-# Maintainer: orphan
-# Contributor: Nicolás Reynolds <fauno@kiwwwi.com.ar>
-# Contributor: Luke Shumaker <lukeshu@sbcglobal.net>
-# Maintainer (AUR): Vladimir Tsanev <tsachev@gmail.com>
-# Contributor (AUR): Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
-
-pkgname=hiredis
-pkgver=0.11.0
-pkgrel=3
-pkgdesc='Minimalistic C client library for Redis'
-arch=('x86_64' 'i686')
-url="https://github.com/redis/hiredis/"
-license=('BSD3')
-depends=('glibc')
-checkdepends=('redis')
-changelog='ChangeLog'
-source=($pkgname-$pkgver.tar.gz::https://codeload.github.com/redis/$pkgname/tar.gz/v$pkgver
- hiredis-fix-tests.patch)
-md5sums=('e2ac29509823ccc96990b6fe765b5d46'
- 'ddcc73042a8ec278aca6cc2b2d26bc03')
-
-prepare() {
- cd "$srcdir/$pkgname-$pkgver"
- patch -Np1 -i ../hiredis-fix-tests.patch
-}
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- make
-}
-
-check() {
- cd "$srcdir/$pkgname-$pkgver"
- sed -r 's|echo \\|echo -e \\|' -i Makefile
- make check
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make PREFIX="$pkgdir/usr" install
-
- install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
diff --git a/pcr/hiredis/hiredis-fix-tests.patch b/pcr/hiredis/hiredis-fix-tests.patch
deleted file mode 100644
index 51e49bf71..000000000
--- a/pcr/hiredis/hiredis-fix-tests.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -ru hiredis-0.11.0.orig/test.c hiredis-0.11.0/test.c
---- hiredis-0.11.0.orig/test.c 2012-08-28 02:55:52.000000000 -0400
-+++ hiredis-0.11.0/test.c 2014-03-02 17:49:24.396739767 -0500
-@@ -286,6 +286,7 @@
- c = redisConnect((char*)"idontexist.local", 6379);
- test_cond(c->err == REDIS_ERR_OTHER &&
- (strcmp(c->errstr,"Name or service not known") == 0 ||
-+ strcmp(c->errstr,"Temporary failure in name resolution") == 0 ||
- strcmp(c->errstr,"Can't resolve: idontexist.local") == 0));
- redisFree(c);
-
diff --git a/pcr/nginx-passenger/logrotate b/pcr/nginx-passenger/logrotate
deleted file mode 100644
index e0fa9ec4c..000000000
--- a/pcr/nginx-passenger/logrotate
+++ /dev/null
@@ -1,9 +0,0 @@
-/var/log/nginx/*log {
- missingok
- create 640 http log
- sharedscripts
- compress
- postrotate
- test ! -r /var/run/nginx.pid || kill -USR1 `cat /var/run/nginx.pid`
- endscript
-}
diff --git a/pcr/nginx-passenger/nginx.install b/pcr/nginx-passenger/nginx.install
deleted file mode 100644
index dfad9a034..000000000
--- a/pcr/nginx-passenger/nginx.install
+++ /dev/null
@@ -1,17 +0,0 @@
-post_upgrade() {
- if (( $(vercmp $2 1.2.7-4) <= 0 )); then
- chmod 750 var/log/nginx
- chown http:log var/log/nginx
- fi
- if (( $(vercmp $2 1.2.1-2) <= 0 )); then
- echo ' >>> Since 1.2.1-2 several changes has been made in package:'
- echo ' - *.conf files have been moved to /etc/nginx'
- echo ' - /etc/conf.d/nginx has been removed'
- echo ' Main configuration file is set to /etc/nginx/nginx.conf'
- echo ' - access.log and error.log can be found in /var/log/nginx by default'
- echo ' - bundled *.html files have been moved to /usr/share/nginx/html'
- echo ' - /etc/nginx/{html,logs} symbolic links and *.default files have been removed'
- fi
-}
-
-# vim:set ts=4 sw=4 et:
diff --git a/pcr/nginx-passenger/service b/pcr/nginx-passenger/service
deleted file mode 100644
index 29d3aa877..000000000
--- a/pcr/nginx-passenger/service
+++ /dev/null
@@ -1,14 +0,0 @@
-[Unit]
-Description=A high performance web server and a reverse proxy server
-After=syslog.target network.target
-
-[Service]
-Type=forking
-PIDFile=/run/nginx.pid
-ExecStartPre=/usr/bin/nginx -t -q -g 'pid /run/nginx.pid; daemon on; master_process on;'
-ExecStart=/usr/bin/nginx -g 'pid /run/nginx.pid; daemon on; master_process on;'
-ExecReload=/usr/bin/nginx -g 'pid /run/nginx.pid; daemon on; master_process on;' -s reload
-ExecStop=/usr/bin/nginx -g 'pid /run/nginx.pid;' -s quit
-
-[Install]
-WantedBy=multi-user.target
diff --git a/pcr/qt-at-spi-git/PKGBUILD b/pcr/qt-at-spi-git/PKGBUILD
deleted file mode 100644
index fb42af603..000000000
--- a/pcr/qt-at-spi-git/PKGBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
-# Maintainer (AUR): Kyle <kyle@gmx.ca>
-
-_pkgname=qt-at-spi
-pkgname=$_pkgname-git
-_pkgver=0.3.1
-pkgver=2013.02.08
-#_gitver="tag=v$pkgver"
-_gitver="commit=adb0b04d129132dcfa289184eba5b122bfd1ca52"
-pkgdesc="A Qt plugin that bridges the QAccessible API’s to the AT-SPI 2 protocol, giving blind and visually impaired users access to qt applications"
-url="http://projects.kde.org/qtatspi"
-license=('LGPL')
-
-provides=("$_pkgname=$_pkgver")
-
-pkgrel=2
-arch=('i686' 'x86_64')
-depends=('at-spi2-core' 'qt4>=4.8' 'kdelibs>=4.8')
-makedepends=('cmake' 'automoc4')
-
-source=("https://repo.parabolagnulinux.org/other/$_pkgname/$pkgname-$pkgver.tar.gz" 'qt-accessibility.sh')
-md5sums=('688accf9c2f517a526885733aad821a4'
- 'f0c8551ed54f5d4e5daf7ddac9189aaa')
-
-mkdepends=('git')
-mksource=("$pkgname-$pkgver::git://anongit.kde.org/qtatspi#$_gitver")
-mkmd5sums=('SKIP')
-mksource() {
- cd "$srcdir/$pkgname-$pkgver"
- rm -f examples/tabbar/{simple,tabbar}
-}
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- cmake .
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir/" install
-
- install -D -m755 "$srcdir/qt-accessibility.sh" "$pkgdir/etc/profile.d/qt-accessibility.sh"
-}
diff --git a/pcr/rfc5766-turn-server/ChangeLog b/pcr/rfc5766-turn-server/ChangeLog
deleted file mode 100644
index fd52b6d89..000000000
--- a/pcr/rfc5766-turn-server/ChangeLog
+++ /dev/null
@@ -1,89 +0,0 @@
-2014-02-24 Vladimir Tsanev <tsachev@gmail.com>
- * 3.2.2.8-1 :
- New upstream release.
-2014-02-18 Vladimir Tsanev <tsachev@gmail.com>
- * 3.2.2.7-1 :
- New upstream release.
-
-2014-02-12 Vladimir Tsanev <tsachev@gmail.com>
- * 3.2.2.6-1 :
- New upstream release.
-
-2014-02-04 Vladimir Tsanev <tsachev@gmail.com>
- * 3.2.2.5-1 :
- New upstream release and PKGBUILD cleanup.
-
-2014-01-31 Vladimir Tsanev <tsachev@gmail.com>
- * 3.2.2.4-1 :
- New upstream release. New download site.
-
-2013-12-11 Vladimir Tsanev <tsachev@gamil.com>
- * 3.1.2.2-1 :
- New upstream release.
-
-2013-11-23 Vladimir Tsanev <tsachev@gamil.com>
- * 3.0.0.0-1 :
- New upstream release.
-
-2013-10-22 Vladimir Tsanev <tsachev@gamil.com>
- * 2.6.6.0-1 :
- New upstream release. --disable-rpath flag added to configure
-
-2013-10-16 Vladimir Tsanev <tsachev@gamil.com>
- * 2.6.5.2-1 :
- New upstream release.
-
-2013-09-07 Vladimir Tsanev <tsachev@gamil.com>
- * 2.6.2.1-1 :
- New upstream release.
- Trivial PKGBUILD fixes.
-
-2013-08-09 Vladimir Tsanev <tsachev@gamil.com>
- * 2.6.1.4-1 :
- New upstream release.
-
-2013-08-09 Vladimir Tsanev <tsachev@gamil.com>
- * 2.6.1.1-1 :
- New upstream release.
-
-2013-07-19 Vladimir Tsanev <tsachev@gamil.com>
- * 2.5.1.2-1 :
- New upstream release.
-
-2013-07-19 Vladimir Tsanev <tsachev@gamil.com>
- * 2.1.1.1-1 :
- New upstream release.
-
-2013-07-16 Vladimir Tsanev <tsachev@gamil.com>
- * 2.0.0.0-1 :
- New upstream release.
-
-2013-06-24 Vladimir Tsanev <tsachev@gamil.com>
- * 1.8.7.0-2 :
- More packaging cleanup.
-
- * 1.8.7.0-1 :
- New upstream release and package cleanup.
-
-2013-06-12 Vladimir Tsanev <tsachev@gamil.com>
-
- * 1.8.6.3-1 :
- Upstream release.
-
-2013-06-07 Vladimir Tsanev <tsachev@gamil.com>
-
- * 1.8.6.1-3 :
- 'postgresql-libs' 'libmysqlclient' and 'hiredis' cannot be optional.
-
-2013-06-06 Vladimir Tsanev <tsachev@gamil.com>
-
- * 1.8.6.1-2 :
- Added systemd service. Fixed redis support.
-
- * 1.8.6.1-1 :
- New upstream release.
-
-2013-06-05 Vladimir Tsanev <tsachev@gamil.com>
-
- * 1.8.6.0-1 :
- Initial package created.
diff --git a/pcr/rfc5766-turn-server/PKGBUILD b/pcr/rfc5766-turn-server/PKGBUILD
deleted file mode 100644
index fc14b4a76..000000000
--- a/pcr/rfc5766-turn-server/PKGBUILD
+++ /dev/null
@@ -1,59 +0,0 @@
-# Maintainer: orphan
-# Contributor: Nicolás Reynolds <fauno@kiwwwi.com.ar>
-# Contributor: Luke Shumaker <lukeshu@sbcglobal.net>
-# Contributor: Michał Masłowski <mtjm@mtjm.eu>
-# Maintainer (AUR): Vladimir Tsanev <tsachev@gmail.com>
-
-pkgname=rfc5766-turn-server
-_portname=turnserver
-pkgver=3.2.2.8
-pkgrel=1
-pkgdesc="STUN and TURN Relay Server for VoIP and WebRTC"
-arch=('i686' 'x86_64' 'mips64el')
-url="http://code.google.com/p/rfc5766-turn-server/"
-license=('BSD3')
-depends=('libevent' 'postgresql-libs' 'libmysqlclient' 'hiredis')
-install="$_portname.install"
-backup=("etc/turnserver.conf" "etc/turnuserdb.conf")
-changelog='ChangeLog'
-source=(http://$_portname.open-sys.org/downloads/v$pkgver/$_portname-$pkgver.tar.gz $_portname.service $_portname.tmpfiles.d)
-md5sums=('c16ff9ced1ba0797fbd16a66161dca2c'
- 'bf568b614a17ee439e831b8f8aa7236a'
- 'aa7bf422a9dfba7febb56dc172feb1cf')
-sha1sums=('0faa1514f6819827f3ad0cffe2dc7bc6eef257cc'
- '0c5b348e793bd52ce0ee38d420b26c9b2a2e2ca5'
- '445e9982549d7ed018bc1fb6176a730313ae3d26')
-
-build() {
- cd "$srcdir/$_portname-$pkgver"
-
- ./configure --prefix=/usr --manprefix=/usr/share --examplesdir="/usr/share/$_portname/examples" --disable-rpath
- make
-}
-
-check() {
- cd "$srcdir/$_portname-$pkgver"
- make check
-}
-
-package() {
- cd "$srcdir/$_portname-$pkgver"
- make DESTDIR="$pkgdir" install
-
- chmod 644 "$pkgdir/usr/lib/libturnclient.a"
-
- mv "$pkgdir/usr/etc" "$pkgdir/etc"
- local file
- for file in "$pkgdir/etc"/*.default; do
- mv "$file" "${file%.default}"
- chmod 644 "${file%.default}"
- done
- sed -e '/^#log-file=\/var\/tmp\/turn.log$/c log-file=\/var\/log\/turnserver\/turn.log' \
- -e '/^#pidfile="\/var\/run\/turnserver.pid"$/c pidfile="\/var\/run\/turnserver\/turnserver.pid"' \
- -i "$pkgdir/etc/turnserver.conf"
-
- install -Dm644 "../$_portname.service" "$pkgdir/usr/lib/systemd/system/$_portname.service"
- install -Dm644 "../$_portname.tmpfiles.d" "$pkgdir/usr/lib/tmpfiles.d/$_portname.conf"
-
- install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
diff --git a/pcr/rfc5766-turn-server/turnserver.install b/pcr/rfc5766-turn-server/turnserver.install
deleted file mode 100644
index 84f31ca7f..000000000
--- a/pcr/rfc5766-turn-server/turnserver.install
+++ /dev/null
@@ -1,17 +0,0 @@
-post_install() {
- id turnserver &>/dev/null || \
- useradd -g daemon -M -s /usr/bin/false turnserver
-
- install -dm 755 "/var/log/turnserver"
- chown -R turnserver:daemon /var/log/turnserver
-
- systemd-tmpfiles --create turnserver.conf
-}
-
-post_upgrade() {
- post_install
-}
-
-pre_remove() {
- userdel turnserver
-}
diff --git a/pcr/rfc5766-turn-server/turnserver.service b/pcr/rfc5766-turn-server/turnserver.service
deleted file mode 100644
index 8e267b2e0..000000000
--- a/pcr/rfc5766-turn-server/turnserver.service
+++ /dev/null
@@ -1,11 +0,0 @@
-[Unit]
-Description=STUN and TURN Relay Server for VoIP and WebRTC
-After=network.target
-
-[Service]
-Type=forking
-User=turnserver
-ExecStart=/usr/bin/turnserver -c /etc/turnserver.conf -o -v
-
-[Install]
-WantedBy=multi-user.target
diff --git a/pcr/rfc5766-turn-server/turnserver.tmpfiles.d b/pcr/rfc5766-turn-server/turnserver.tmpfiles.d
deleted file mode 100644
index ec1a89758..000000000
--- a/pcr/rfc5766-turn-server/turnserver.tmpfiles.d
+++ /dev/null
@@ -1 +0,0 @@
-d /run/turnserver 0755 turnserver daemon -