summaryrefslogtreecommitdiffstats
path: root/abs
diff options
context:
space:
mode:
Diffstat (limited to 'abs')
-rw-r--r--abs/core-testing/lighttpd/PKGBUILD6
-rw-r--r--abs/core-testing/lighttpd/__changelog2
-rw-r--r--abs/core-testing/linhes-scripts/PKGBUILD8
-rw-r--r--abs/core-testing/linhes-scripts/dct700-cc.sh27
-rwxr-xr-xabs/core-testing/linhes-scripts/qip7100-cc.sh25
-rw-r--r--abs/core-testing/mysql/PKGBUILD8
-rw-r--r--abs/core-testing/mysql/__changelog5
-rw-r--r--abs/core-testing/mysql/my.cnf11
-rw-r--r--abs/core-testing/mythtv/stable-0.23/mythgallery/PKGBUILD2
-rwxr-xr-xabs/core-testing/mythtv/stable-0.23/mythtv/PKGBUILD2
-rwxr-xr-xabs/core-testing/system-templates/PKGBUILD2
-rw-r--r--abs/core-testing/system-templates/templates/transmit/motorola_qip7100/lircd.conf81
-rw-r--r--abs/extra-testing/mpgtx/PKGBUILD16
13 files changed, 181 insertions, 14 deletions
diff --git a/abs/core-testing/lighttpd/PKGBUILD b/abs/core-testing/lighttpd/PKGBUILD
index 0e43272..81019a6 100644
--- a/abs/core-testing/lighttpd/PKGBUILD
+++ b/abs/core-testing/lighttpd/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=lighttpd
pkgver=1.4.26
-pkgrel=12
+pkgrel=15
pkgdesc='a secure, fast, compliant and very flexible web-server'
license=('custom')
arch=('i686' 'x86_64')
@@ -16,12 +16,12 @@ optdepends=('libxml2: mod_webdav' \
'sqlite3: mod_webdav' \
'gdbm: mod_trigger_b4_dl' \
)
-backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd' 'etc/lighttpd/auth-inc.conf')
+backup=(etc/lighttpd/lighttpd.conf etc/logrotate.d/lighttpd etc/lighttpd/auth-inc.conf)
options=('!libtool' 'emptydirs')
source=("http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.bz2" \
'lighttpd.rc.d' 'lighttpd.logrotate.d' 'lighttpd.conf' 'auth-inc.conf' \
'openssl-0.9.8m.patch')
-install='lighttpd.install'
+#install='lighttpd.install'
build() {
cd $srcdir/$pkgname-$pkgver
diff --git a/abs/core-testing/lighttpd/__changelog b/abs/core-testing/lighttpd/__changelog
index 5c0a14f..edef05a 100644
--- a/abs/core-testing/lighttpd/__changelog
+++ b/abs/core-testing/lighttpd/__changelog
@@ -7,3 +7,5 @@ Added -e 's|"^/mythweb|"^/{1,2}mythweb|' \ to the sed command to work around lig
changed lightttpd.conf to user perl for .cgi (needed for monx)_
added 404 page
+
+bummped to version 13 to test redmine #690
diff --git a/abs/core-testing/linhes-scripts/PKGBUILD b/abs/core-testing/linhes-scripts/PKGBUILD
index ee22701..4694905 100644
--- a/abs/core-testing/linhes-scripts/PKGBUILD
+++ b/abs/core-testing/linhes-scripts/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=linhes-scripts
pkgver=1
-pkgrel=68
+pkgrel=69
pkgdesc="Various scripts that help to make LinHES, LinHES."
arch=('i686' 'x86_64')
license=('GPL2')
@@ -41,6 +41,8 @@ remove_php_mythvideo.sh
removecommercials.sh
system-cleanup.sh
myth2fuze
+dct700-cc.sh
+qip7100-cc.sh
)
build() {
@@ -83,4 +85,6 @@ md5sums=('f56985b2d602e11dc1e10d3e7848b2a5'
'87b0dc855181f98516acb18a7d551601'
'25c1baeb97a49656456ae33f7e7a9f06'
'2fb25aef03ffd1282414d8cca3df7056'
- '1b355d227dcd954960c677f5e4f2379d')
+ '1b355d227dcd954960c677f5e4f2379d'
+ 'df727c98350a64e2171c950bbefc9c5d'
+ '7b890e7044db38e8d439f67e398af206')
diff --git a/abs/core-testing/linhes-scripts/dct700-cc.sh b/abs/core-testing/linhes-scripts/dct700-cc.sh
new file mode 100644
index 0000000..c8d8cf6
--- /dev/null
+++ b/abs/core-testing/linhes-scripts/dct700-cc.sh
@@ -0,0 +1,27 @@
+#!/bin/bash
+#Script to control DCT 700/2524 on emitter #1 of CommandIR
+irsend set_transmitters 1
+REMOTE_NAME=DCT700
+cmd="$1"
+irsend -d /dev/lircd SEND_ONCE $REMOTE_NAME menu
+sleep 1
+irsend -d /dev/lircd SEND_ONCE $REMOTE_NAME exit
+sleep 1
+
+case $cmd in
+ [0-9]*)
+ for digit in $(echo $1 | sed -e 's/./& /g'); do
+ irsend -d /dev/lircd SEND_ONCE $REMOTE_NAME $digit
+ sleep .2
+ # If things work OK with sleep 1, try this for faster channel changes:
+ # sleep 0.3
+ done
+ irsend -d /dev/lircd SEND_ONCE $REMOTE_NAME ok
+sleep .3
+ irsend -d /dev/lircd SEND_ONCE $REMOTE_NAME exit
+ ;;
+
+ *)
+ irsend SEND_ONCE $REMOTE_NAME $cmd
+ ;;
+esac
diff --git a/abs/core-testing/linhes-scripts/qip7100-cc.sh b/abs/core-testing/linhes-scripts/qip7100-cc.sh
new file mode 100755
index 0000000..029e25c
--- /dev/null
+++ b/abs/core-testing/linhes-scripts/qip7100-cc.sh
@@ -0,0 +1,25 @@
+#!/bin/bash
+#Script to control DCT 700/2524 on emitter #1 of CommandIR
+irsend set_transmitters 2
+sleep .5
+#REMOTE_NAME=DCT2524
+REMOTE_NAME=Motorola_QIP6200-2
+cmd="$1"
+
+case $cmd in
+ [0-9]*)
+ for digit in $(echo $1 | sed -e 's/./& /g'); do
+ irsend -d /dev/lircd SEND_ONCE $REMOTE_NAME $digit
+ sleep .4
+ # If things work OK with sleep 1, try this for faster channel changes:
+ sleep 0.3
+ done
+ irsend -d /dev/lircd SEND_ONCE $REMOTE_NAME ok
+sleep .3
+ irsend -d /dev/lircd SEND_ONCE $REMOTE_NAME exit
+ ;;
+
+ *)
+ irsend SEND_ONCE $REMOTE_NAME $cmd
+ ;;
+esac
diff --git a/abs/core-testing/mysql/PKGBUILD b/abs/core-testing/mysql/PKGBUILD
index 11df8fb..c91ac41 100644
--- a/abs/core-testing/mysql/PKGBUILD
+++ b/abs/core-testing/mysql/PKGBUILD
@@ -3,7 +3,7 @@
# Contributor: judd <jvinet@zeroflux.org>
pkgname=mysql
pkgver=5.0.75
-pkgrel=3
+pkgrel=4
pkgdesc="A fast SQL database server"
arch=(i686 x86_64)
backup=(etc/my.cnf etc/conf.d/mysqld)
@@ -48,3 +48,9 @@ build() {
install -D -m644 ../mysqld.conf.d ${startdir}/pkg/etc/conf.d/mysqld
rm -f ${startdir}/pkg/usr/bin/mysql_config
}
+
+md5sums=('a234f0a60a7f8c290d9875cba3a2c5a2'
+ 'e892aac36cbeb57f0e003ec0936afb3b'
+ 'cfff3585dd70cde3ac1ce69e64008733'
+ '078f6e824d6097d558bcf7c16d508d92'
+ 'd81d1f51e9ee6941425a63456d07cb21')
diff --git a/abs/core-testing/mysql/__changelog b/abs/core-testing/mysql/__changelog
index 4fa7078..aa066aa 100644
--- a/abs/core-testing/mysql/__changelog
+++ b/abs/core-testing/mysql/__changelog
@@ -1,6 +1,11 @@
my.cnf
-enable networking
-datadir /data/srv/mysql
+-query_cache_size
+-tmp_table_size
+-max_heap_table_size
+-thread_cache_size
+-table_cache
mysqld
-redirect output to /dev/null
diff --git a/abs/core-testing/mysql/my.cnf b/abs/core-testing/mysql/my.cnf
index 7202fcd..e13331e 100644
--- a/abs/core-testing/mysql/my.cnf
+++ b/abs/core-testing/mysql/my.cnf
@@ -1,8 +1,4 @@
-# mysql config file for medium systems.
-#
-# This is for a system with little memory (32M - 64M) where MySQL plays
-# a important part and systems up to 128M where MySQL is used together with
-# other programs (like a web server)
+# mysql config file for LinHES.
#
# One can in this file use all long options that the program supports.
# If you want to know which options a program support, run the program
@@ -28,6 +24,11 @@ table_cache = 64
sort_buffer_size = 512K
net_buffer_length = 16K
myisam_sort_buffer_size = 8M
+query_cache_size = 8M
+tmp_table_size = 36M
+max_heap_table_size = 24M
+thread_cache_size = 4
+table_cache = 96
# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
diff --git a/abs/core-testing/mythtv/stable-0.23/mythgallery/PKGBUILD b/abs/core-testing/mythtv/stable-0.23/mythgallery/PKGBUILD
index 613c89f..12b81e4 100644
--- a/abs/core-testing/mythtv/stable-0.23/mythgallery/PKGBUILD
+++ b/abs/core-testing/mythtv/stable-0.23/mythgallery/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=mythgallery
pkgver=0.23
-pkgrel=4
+pkgrel=5
pkgdesc="Image gallery plugin for MythTV"
url="http://www.mythtv.org"
license="GPL"
diff --git a/abs/core-testing/mythtv/stable-0.23/mythtv/PKGBUILD b/abs/core-testing/mythtv/stable-0.23/mythtv/PKGBUILD
index 0af81c7..2e0863d 100755
--- a/abs/core-testing/mythtv/stable-0.23/mythtv/PKGBUILD
+++ b/abs/core-testing/mythtv/stable-0.23/mythtv/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=mythtv
pkgver=0.23
-pkgrel=20
+pkgrel=21
pkgdesc="A personal video recorder for Linux"
url="http://www.mythtv.org"
license="GPL"
diff --git a/abs/core-testing/system-templates/PKGBUILD b/abs/core-testing/system-templates/PKGBUILD
index 6e88b13..88e1835 100755
--- a/abs/core-testing/system-templates/PKGBUILD
+++ b/abs/core-testing/system-templates/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=system-templates
pkgver=1.0
-pkgrel=44
+pkgrel=45
conflicts=( )
pkgdesc="Templates used for system configuration"
depends=()
diff --git a/abs/core-testing/system-templates/templates/transmit/motorola_qip7100/lircd.conf b/abs/core-testing/system-templates/templates/transmit/motorola_qip7100/lircd.conf
new file mode 100644
index 0000000..4bd3cd4
--- /dev/null
+++ b/abs/core-testing/system-templates/templates/transmit/motorola_qip7100/lircd.conf
@@ -0,0 +1,81 @@
+#
+# this config file was automatically generated
+# using lirc-0.8.3-CVS-pvr150-2(default) on Sun Nov 16 20:41:54 2008
+#
+# contributed by Michael Hanson
+#
+# brand: Verizon (?)
+# model no. of remote control: Verizon FiOS Universal
+# Inside battery compartment has the following
+# information:
+# RC1445302/00B
+# 3139 238 16051 REV 2
+# MADE IN CHINA
+# CP02 50829 G 009840
+# devices being controlled by this remote: Motorola QIP6200-2
+#
+
+begin remote
+
+ name Motorola_QIP6200-2
+ bits 16
+ flags SPACE_ENC|CONST_LENGTH
+ eps 30
+ aeps 100
+
+ header 9028 4450
+ one 555 4433
+ zero 555 2181
+ ptrail 556
+ gap 99876
+ toggle_bit_mask 0x0
+
+ begin codes
+ power 0x5006
+ menu 0x9806
+ guide 0x0C0B
+ info 0xCC05
+ up 0x2C09
+ down 0xAC01
+ left 0x6C0E
+ right 0xEC06
+ ok 0x8807
+ exit 0x480B
+ options 0x4205
+ widgets 0xC209
+ ondemand 0x580A
+ favorites 0xA805
+ last 0xC803
+ fiostv 0x7C0F
+ ch+ 0xD00A
+ ch- 0x3002
+ previous 0x3C08
+ dvr 0xBC00
+ next 0xFC07
+ rewind 0x7808
+ play-pause 0xF800
+ fastforward 0xB804
+ stop 0x380C
+ record 0x8C03
+ 1 0x800F
+ 2 0x4007
+ 3 0xC00B
+ 4 0x2003
+ 5 0xA00D
+ 6 0x6005
+ 7 0xE009
+ 8 0x1001
+ 9 0x900E
+ 0 0x0000
+ * 0x2201
+ # 0x0203
+ yellow 0xE801
+ blue 0xE40E
+ red 0x1406
+ green 0x940A
+ av 0x280D
+ pip 0x4403
+ pip-change 0xC40D
+ end codes
+
+end remote
diff --git a/abs/extra-testing/mpgtx/PKGBUILD b/abs/extra-testing/mpgtx/PKGBUILD
new file mode 100644
index 0000000..1181564
--- /dev/null
+++ b/abs/extra-testing/mpgtx/PKGBUILD
@@ -0,0 +1,16 @@
+pkgname="mpgtx"
+pkgver="1.3.1"
+pkgrel=1
+arch=('i686')
+pkgdesc="mpgtx is a commandline MPEG audio/video/system file toolbox."
+url="http://mpgtx.sourceforge.net/"
+source=(http://downloads.sourceforge.net/project/mpgtx/mpgtx/$pkgver/mpgtx-$pkgver.tar.gz)
+md5sums=('d628060aa04ad3b40a175bf35f5167cf')
+
+build() {
+ cd $startdir/src/$pkgname-$pkgver
+ ./configure --prefix=/usr
+ make || return 1
+ make INSTALLDIR=$startdir/pkg/usr/bin MANDIR=$startdir/pkg/usr/man/man1 MANDIRDE=$startdir/usr/man/de/man1 install
+}
+