This commit is contained in:
parent
518bc6ae02
commit
09d5596d97
56
sbl.changes
56
sbl.changes
@ -1,18 +1,52 @@
|
||||
-------------------------------------------------------------------
|
||||
--------------------------------------------------------------------
|
||||
Sat Apr 26 14:32:40 CEST 2008 - marco@suse.de
|
||||
|
||||
- added brl-driver patch and brld patch from Klaus Knopper
|
||||
the patch added the missing init stuff for brl.x and brl.y
|
||||
it also removes some mutex lock/unlock in brld
|
||||
- improved the key-handling for some fhp-serial displays
|
||||
|
||||
--------------------------------------------------------------------
|
||||
Sun Apr 6 22:55:08 CEST 2008 - marco@suse.de
|
||||
|
||||
- added some checks to the brl-drivers
|
||||
check the return value of "write" to detect a disconnect
|
||||
- new init-sequence for fhp el-usb-displays
|
||||
- Fhp_usb/Fhp driver - use "select" in readbrl to wait for incoming data
|
||||
- fixed a possible memory-lack in Fhp_usb and Fhp
|
||||
- clear and reload the keymaps after sbl has reconnected to brld
|
||||
- some code cleanup in sbl
|
||||
- added some brl_fd checks to brld
|
||||
- brld - added mutexes to brl_ok to protect brl_dev and keybuf
|
||||
|
||||
--------------------------------------------------------------------
|
||||
Mon Mar 24 21:30:00 CET 2008 - Klaus Knopper knoppix@knopper.net
|
||||
|
||||
- make brld start with a configured but disconnected braille device
|
||||
- auto-reconnect in brld
|
||||
- change device drivers in order to always get geometry regardless
|
||||
of device open
|
||||
|
||||
--------------------------------------------------------------------
|
||||
Mon Mar 17 10:25:08 CET 2008 - marco@suse.de
|
||||
|
||||
- added suppot for kbdsniffd to sbl
|
||||
- added config variables to suse-blinux.conf
|
||||
- kbd_key and kbd_port
|
||||
- removed config variable brld_host (using only localhost)
|
||||
- keymaps - only kbdsniffon1 is used to enable sniffing mode
|
||||
- kbdsniffon2 and kbdsniffoff are not longer used
|
||||
- fixed a possilbe bug during brld reconnect
|
||||
- brld is now listening only on localhost not on all devices
|
||||
- using libbrld.so.1 instead of libbrld.so
|
||||
- using libspeechd.so.2 instead of libspeechd.so
|
||||
- sbl does not longer require brld at start-time
|
||||
|
||||
--------------------------------------------------------------------
|
||||
Thu Feb 28 17:38:51 CET 2008 - ro@suse.de
|
||||
|
||||
- add defattr to orca subpackage
|
||||
|
||||
--------------------------------------------------------------------
|
||||
Fri Feb 22 14:27:24 CET 2008 - marco@suse.de
|
||||
|
||||
- apply changes from schwab@suse.de (removed sa_restorer)
|
||||
|
||||
--------------------------------------------------------------------
|
||||
Fri Feb 22 14:01:55 CET 2008 - marco@suse.de
|
||||
|
||||
- fixed some build problems for x86_64 (using libdir instead of fixed pathnames)
|
||||
|
||||
--------------------------------------------------------------------
|
||||
Tue Feb 19 14:19:57 CET 2008 - marco@suse.de
|
||||
|
||||
|
51
sbl.spec
51
sbl.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package sbl (Version 3.1)
|
||||
# spec file for package sbl (Version 3.2.2)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
@ -13,11 +13,11 @@
|
||||
|
||||
Name: sbl
|
||||
BuildRequires: gcc-c++ glib2 glib2-devel orca python python-devel
|
||||
Version: 3.1
|
||||
Release: 9
|
||||
Version: 3.2.2
|
||||
Release: 1
|
||||
License: GPL v2 or later
|
||||
Group: Hardware/Other
|
||||
Source: sblsrc-3.1.tbz2
|
||||
Source: sblsrc-3.2.2.tbz2
|
||||
Summary: SuSE blinux
|
||||
PreReq: %insserv_prereq
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@ -33,6 +33,7 @@ Authors:
|
||||
marco@suse.de
|
||||
|
||||
%package orca
|
||||
License: GPL v2 or later
|
||||
Summary: SuSE blinux
|
||||
Group: Hardware/Other
|
||||
Requires: orca sbl
|
||||
@ -48,7 +49,7 @@ Authors:
|
||||
marco@suse.de
|
||||
|
||||
%prep
|
||||
%setup -n sblsrc-3.1
|
||||
%setup -n sblsrc-3.2.2
|
||||
#%patch -p2
|
||||
|
||||
%build
|
||||
@ -86,22 +87,50 @@ rm -rf $RPM_BUILD_ROOT
|
||||
/usr/sbin/sbl
|
||||
/usr/sbin/brld
|
||||
/usr/sbin/rcbrld
|
||||
%{_libdir}/libbrld.so
|
||||
%{_libdir}/libbrld.so.1
|
||||
%config /etc/init.d/sbl
|
||||
%config /etc/init.d/brld
|
||||
%config /etc/suse-blinux.conf
|
||||
|
||||
%files orca
|
||||
%defattr (-,root,root)
|
||||
%defattr (-,root,root,755)
|
||||
%{_libdir}/python2.5/site-packages/orca/brlmodule.so
|
||||
|
||||
%changelog
|
||||
* Sat Apr 26 2008 marco@suse.de
|
||||
- added brl-driver patch and brld patch from Klaus Knopper
|
||||
the patch added the missing init stuff for brl.x and brl.y
|
||||
it also removes some mutex lock/unlock in brld
|
||||
- improved the key-handling for some fhp-serial displays
|
||||
* Mon Apr 07 2008 marco@suse.de
|
||||
- added some checks to the brl-drivers
|
||||
check the return value of "write" to detect a disconnect
|
||||
- new init-sequence for fhp el-usb-displays
|
||||
- Fhp_usb/Fhp driver - use "select" in readbrl to wait for incoming data
|
||||
- fixed a possible memory-lack in Fhp_usb and Fhp
|
||||
- clear and reload the keymaps after sbl has reconnected to brld
|
||||
- some code cleanup in sbl
|
||||
- added some brl_fd checks to brld
|
||||
- brld - added mutexes to brl_ok to protect brl_dev and keybuf
|
||||
* Mon Mar 24 2008 Klaus Knopper knoppix@knopper.net
|
||||
- make brld start with a configured but disconnected braille device
|
||||
- auto-reconnect in brld
|
||||
- change device drivers in order to always get geometry regardless
|
||||
of device open
|
||||
* Mon Mar 17 2008 marco@suse.de
|
||||
- added suppot for kbdsniffd to sbl
|
||||
- added config variables to suse-blinux.conf
|
||||
- kbd_key and kbd_port
|
||||
- removed config variable brld_host (using only localhost)
|
||||
- keymaps - only kbdsniffon1 is used to enable sniffing mode
|
||||
- kbdsniffon2 and kbdsniffoff are not longer used
|
||||
- fixed a possilbe bug during brld reconnect
|
||||
- brld is now listening only on localhost not on all devices
|
||||
- using libbrld.so.1 instead of libbrld.so
|
||||
- using libspeechd.so.2 instead of libspeechd.so
|
||||
- sbl does not longer require brld at start-time
|
||||
* Thu Feb 28 2008 ro@suse.de
|
||||
- add defattr to orca subpackage
|
||||
* Fri Feb 22 2008 marco@suse.de
|
||||
- apply changes from schwab@suse.de (removed sa_restorer)
|
||||
* Fri Feb 22 2008 marco@suse.de
|
||||
- fixed some build problems for x86_64 (using libdir instead of fixed pathnames)
|
||||
* Tue Feb 19 2008 marco@suse.de
|
||||
- fixed a possible segfault in brld
|
||||
- use select instead of usleep to wait for a brlkey-event in the brl-thread
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f4374e06544ba32cd582a20dc1c59bc22472df82370898825714aa02cb1f4e0e
|
||||
size 270679
|
3
sblsrc-3.2.2.tbz2
Normal file
3
sblsrc-3.2.2.tbz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:51e7794b03d4c92e6690ad61e2d078143a7b317d9bfe814e31fe850224485116
|
||||
size 170452
|
Loading…
Reference in New Issue
Block a user