forked from pool/dialog
Accepting request 289326 from Base:System
- Hack around bug in libtool as it seems to be broken in shell function func_lalib_unsafe_p() as this does only work if a file descriptor 0 exists. - Update to version 1.2-20150225 + modify gauge widget to keep from erasing a second gauge widget, e.g., via the "--and-widget" option. This is a cosmetic change to match behavior of dialog 1.0 (report by Jason Orendorf). + add configure option "--with-man2html" + add configure options for versioned symbols, from ongoing work on ncurses. + update configure macros, e.g., for shared libraries - Changes from 1.2- 20150125 + suppress highlighting of character which denotes an abbreviation or shortcut for the OK/Cancel and other buttons for these widgets, which use abbreviations for the list shown on the screen: buildlist, checklist/radiobox, menubox, treeview (Debian #775295). + add grid up/left and down/right bindings in editbox.c as synonyms for field prev and next, respectively when handling the OK/Cancel buttons (Debian #775294). OBS-URL: https://build.opensuse.org/request/show/289326 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/dialog?expand=0&rev=29
This commit is contained in:
commit
845a93f2a7
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d054766fba3dac828851f1c9852e5992eb824fd0a0dd26d87ee517242027bafc
|
|
||||||
size 455139
|
|
3
dialog-1.2-20150225.tgz
Normal file
3
dialog-1.2-20150225.tgz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6844b13a7a1fea568a8d5bb3004e1af90888cd4a5e8c2ded2c38f34fcc7397ff
|
||||||
|
size 473318
|
@ -1,3 +1,30 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 5 08:05:24 UTC 2015 - werner@suse.de
|
||||||
|
|
||||||
|
- Hack around bug in libtool as it seems to be broken in shell
|
||||||
|
function func_lalib_unsafe_p() as this does only work if a
|
||||||
|
file descriptor 0 exists.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 4 14:26:46 UTC 2015 - werner@suse.de
|
||||||
|
|
||||||
|
- Update to version 1.2-20150225
|
||||||
|
+ modify gauge widget to keep from erasing a second gauge widget, e.g.,
|
||||||
|
via the "--and-widget" option. This is a cosmetic change to match
|
||||||
|
behavior of dialog 1.0 (report by Jason Orendorf).
|
||||||
|
+ add configure option "--with-man2html"
|
||||||
|
+ add configure options for versioned symbols, from ongoing work on
|
||||||
|
ncurses.
|
||||||
|
+ update configure macros, e.g., for shared libraries
|
||||||
|
- Changes from 1.2- 20150125
|
||||||
|
+ suppress highlighting of character which denotes an abbreviation or
|
||||||
|
shortcut for the OK/Cancel and other buttons for these widgets, which
|
||||||
|
use abbreviations for the list shown on the screen: buildlist,
|
||||||
|
checklist/radiobox, menubox, treeview (Debian #775295).
|
||||||
|
+ add grid up/left and down/right bindings in editbox.c as synonyms for
|
||||||
|
field prev and next, respectively when handling the OK/Cancel buttons
|
||||||
|
(Debian #775294).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jan 4 19:05:54 UTC 2015 - p.drouand@gmail.com
|
Sun Jan 4 19:05:54 UTC 2015 - p.drouand@gmail.com
|
||||||
|
|
||||||
|
10
dialog.spec
10
dialog.spec
@ -15,12 +15,13 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: dialog
|
Name: dialog
|
||||||
Url: http://invisible-island.net/dialog/
|
Url: http://invisible-island.net/dialog/
|
||||||
Version: 1.2
|
Version: 1.2
|
||||||
Release: 0
|
Release: 0
|
||||||
%define src_date 20140911
|
%define src_date 20150225
|
||||||
%define somajor 11
|
%define somajor 12
|
||||||
Summary: Menus and Input Boxes for Shell Scripts
|
Summary: Menus and Input Boxes for Shell Scripts
|
||||||
License: LGPL-2.1
|
License: LGPL-2.1
|
||||||
Group: Development/Tools/Other
|
Group: Development/Tools/Other
|
||||||
@ -68,7 +69,6 @@ Examples of using menus and dialog boxes in shell scripts.
|
|||||||
bzcat %{S:2} > po/ko.po
|
bzcat %{S:2} > po/ko.po
|
||||||
%patch0 -p0
|
%patch0 -p0
|
||||||
%patch2 -p1
|
%patch2 -p1
|
||||||
chmod -x samples/*
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
CC=gcc
|
CC=gcc
|
||||||
@ -93,9 +93,13 @@ chmod -x samples/*
|
|||||||
--disable-rpath-hack \
|
--disable-rpath-hack \
|
||||||
--includedir=%{_includedir}/dialog
|
--includedir=%{_includedir}/dialog
|
||||||
|
|
||||||
|
# libtool seems to be broken in shell function func_lalib_unsafe_p()
|
||||||
|
exec 0</dev/null
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
# libtool seems to be broken in shell function func_lalib_unsafe_p()
|
||||||
|
exec 0</dev/null
|
||||||
make DESTDIR=%{buildroot} install
|
make DESTDIR=%{buildroot} install
|
||||||
|
|
||||||
find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
|
find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
|
||||||
|
Loading…
Reference in New Issue
Block a user