forked from pool/dialog
Accepting request 210955 from home:posophe:branches:Base:System
- Update to version 1.2-20130928 + fix a regression in gauge widget from 1.2-20130928 changes; dlg_reallocate_gauge() failed when no --title option was given - Changes from 1.2-20130923 + fix samples/inputbox6-utf8, which had depended unnecessarily on bash. + improve memory caching for wide-character manipulation in gauge widget + add dlg_reallocate_gauge + updated configure macros to use msys changes from ncurses. + update config.guess, config.sub - Changes from 1.2-20130902 + modify makefile rule to make the ".png" filenames created by groff predictable. + add option --help-tags to allow scripts to get the item's tag field consistently from help- and help-item button results rather than getting the item's text for the latter + correct manpage discussion of DIALOG_ITEM_HELP versus --item-help, as well as --help-button return status + correct limit used for --hline option + do not print empty "[]" if a --hline option was given with an empty value + miscellaneous configure script fixes/updates. In particular, add option --with-shared which builds shared libraries without a libtool dependency. + add FreeBSD port-files for test-builds. + update lt.po, add fa.po from http://translationproject.org/latest/dialog/ + update config.guess, config.sub - Changes from 1.2-20130523 + modify ifdef in arrows.c to work around packages which use the wide-character ncursesw headers with the ncurses library + correct workaround for xterm alternate-screen to work with/without the fix made in ncurses that makes putp() always write to the standard output (Debian #708829). + improve limit-checks for checklist, in case the dialog is resized + add --last-key option ( Debian #697607). - Changes from 2013/03/15 + update zh_TW.po, add an.po from http://translationproject.org/latest/dialog/ - Remove dialog-libs.patch; fixed on upstream release OBS-URL: https://build.opensuse.org/request/show/210955 OBS-URL: https://build.opensuse.org/package/show/Base:System/dialog?expand=0&rev=25
This commit is contained in:
parent
ad5c1f227f
commit
7bcb93c38e
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1fb4ea11ceba8f105c2c6b48186bf715d98a144a738653627d7bf2bd12e21034
|
|
||||||
size 431584
|
|
3
dialog-1.2-20130928.tgz
Normal file
3
dialog-1.2-20130928.tgz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6fcf8daa50335e4d08da9f4f5ea5e1025efe84c3a719a56e871eb83ed0fd2b4c
|
||||||
|
size 451567
|
@ -1,18 +0,0 @@
|
|||||||
Index: dialog-1.2-20121230/makefile.in
|
|
||||||
===================================================================
|
|
||||||
--- dialog-1.2-20121230.orig/makefile.in
|
|
||||||
+++ dialog-1.2-20121230/makefile.in
|
|
||||||
@@ -179,11 +179,11 @@ dialog$o \
|
|
||||||
$(OBJECTS) : $(srcdir)/dialog.h $(srcdir)/dlg_keys.h dlg_config.h VERSION
|
|
||||||
|
|
||||||
$(LIB) : $(LIB_OBJECT)
|
|
||||||
- $(LIBTOOL_CREATE) $(LIB) $(LIB_OBJECT)
|
|
||||||
+ $(LIBTOOL_CREATE) $(LIB) $(LIB_OBJECT) $(LIBS)
|
|
||||||
$(RANLIB) $@
|
|
||||||
|
|
||||||
$(PROG)$x : $(LIB) dialog$o @INTLDIR_MAKE@ @INTLLIBS@
|
|
||||||
- $(LINK) -o $@ dialog$o -L. -l@PACKAGE@ $(LDFLAGS) $(LIBS)
|
|
||||||
+ $(LINK) -o $@ dialog$o -L. -l@PACKAGE@ $(LDFLAGS)
|
|
||||||
|
|
||||||
clean \
|
|
||||||
distclean \
|
|
@ -1,3 +1,47 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 12 23:36:02 UTC 2013 - p.drouand@gmail.com
|
||||||
|
|
||||||
|
- Update to version 1.2-20130928
|
||||||
|
+ fix a regression in gauge widget from 1.2-20130928 changes;
|
||||||
|
dlg_reallocate_gauge() failed when no --title option was given
|
||||||
|
- Changes from 1.2-20130923
|
||||||
|
+ fix samples/inputbox6-utf8, which had depended unnecessarily on bash.
|
||||||
|
+ improve memory caching for wide-character manipulation in gauge
|
||||||
|
widget
|
||||||
|
+ add dlg_reallocate_gauge
|
||||||
|
+ updated configure macros to use msys changes from ncurses.
|
||||||
|
+ update config.guess, config.sub
|
||||||
|
- Changes from 1.2-20130902
|
||||||
|
+ modify makefile rule to make the ".png" filenames created by groff
|
||||||
|
predictable.
|
||||||
|
+ add option --help-tags to allow scripts to get the item's tag field
|
||||||
|
consistently from help- and help-item button results rather than
|
||||||
|
getting the item's text for the latter
|
||||||
|
+ correct manpage discussion of DIALOG_ITEM_HELP versus --item-help,
|
||||||
|
as well as --help-button return status
|
||||||
|
+ correct limit used for --hline option
|
||||||
|
+ do not print empty "[]" if a --hline option was given with an empty
|
||||||
|
value
|
||||||
|
+ miscellaneous configure script fixes/updates. In particular, add
|
||||||
|
option --with-shared which builds shared libraries without a libtool
|
||||||
|
dependency.
|
||||||
|
+ add FreeBSD port-files for test-builds.
|
||||||
|
+ update lt.po, add fa.po from
|
||||||
|
http://translationproject.org/latest/dialog/
|
||||||
|
+ update config.guess, config.sub
|
||||||
|
- Changes from 1.2-20130523
|
||||||
|
+ modify ifdef in arrows.c to work around packages which use the
|
||||||
|
wide-character ncursesw headers with the ncurses library
|
||||||
|
+ correct workaround for xterm alternate-screen to work with/without
|
||||||
|
the fix made in ncurses that makes putp() always write to the
|
||||||
|
standard output (Debian #708829).
|
||||||
|
+ improve limit-checks for checklist, in case the dialog is resized
|
||||||
|
+ add --last-key option ( Debian #697607).
|
||||||
|
- Changes from 2013/03/15
|
||||||
|
+ update zh_TW.po, add an.po from
|
||||||
|
http://translationproject.org/latest/dialog/
|
||||||
|
- Remove dialog-libs.patch; fixed on upstream release
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 21 13:56:57 UTC 2013 - werner@suse.de
|
Fri Jun 21 13:56:57 UTC 2013 - werner@suse.de
|
||||||
|
|
||||||
|
@ -15,12 +15,11 @@
|
|||||||
# 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 20121230
|
%define src_date 20130928
|
||||||
%define somajor 11
|
%define somajor 11
|
||||||
Summary: Menus and Input Boxes for Shell Scripts
|
Summary: Menus and Input Boxes for Shell Scripts
|
||||||
License: LGPL-2.1
|
License: LGPL-2.1
|
||||||
@ -30,7 +29,6 @@ Source1: dialog.rc
|
|||||||
Source2: dialog.ko.po.bz2
|
Source2: dialog.ko.po.bz2
|
||||||
# PATCH-FIX-OPENSUSE : fix shadow during resizing terminal
|
# PATCH-FIX-OPENSUSE : fix shadow during resizing terminal
|
||||||
Patch0: dialog-1.2-20121230.dif
|
Patch0: dialog-1.2-20121230.dif
|
||||||
Patch1: dialog-libs.patch
|
|
||||||
Patch2: dialog-gcc-warnings.patch
|
Patch2: dialog-gcc-warnings.patch
|
||||||
Requires: terminfo-base
|
Requires: terminfo-base
|
||||||
Suggests: terminfo
|
Suggests: terminfo
|
||||||
@ -69,7 +67,6 @@ Examples of using menus and dialog boxes in shell scripts.
|
|||||||
%setup -n %{name}-%{version}-%{src_date}
|
%setup -n %{name}-%{version}-%{src_date}
|
||||||
bzcat %{S:2} > po/ko.po
|
bzcat %{S:2} > po/ko.po
|
||||||
%patch0 -p0
|
%patch0 -p0
|
||||||
%patch1 -p1
|
|
||||||
%patch2 -p1
|
%patch2 -p1
|
||||||
chmod -x samples/*
|
chmod -x samples/*
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user