forked from pool/dialog
Accepting request 374949 from Base:System
1 OBS-URL: https://build.opensuse.org/request/show/374949 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/dialog?expand=0&rev=32
This commit is contained in:
commit
d1de33f2ed
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c4e61ec5768701683dd4b5b2ebd8a31e6289fa6a1f5801e4b481085650698c05
|
||||
size 498181
|
@ -1,8 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.4.10 (GNU/Linux)
|
||||
Comment: See http://invisible-island.net/public/public.html for info
|
||||
|
||||
iEYEABECAAYFAlX/zMsACgkQcCNT4PfkjtuiXACcD7MpAxXuGvUCOD41xJMtT3YE
|
||||
kU0An1P0Bv6xdjjAHck+1KXxKn6ZFhKh
|
||||
=8Wb0
|
||||
-----END PGP SIGNATURE-----
|
3
dialog-1.3-20160209.tgz
Normal file
3
dialog-1.3-20160209.tgz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0314f7f2195edc58e7567a024dc1d658c2f8ea732796d8fa4b4927df49803f87
|
||||
size 499300
|
8
dialog-1.3-20160209.tgz.asc
Normal file
8
dialog-1.3-20160209.tgz.asc
Normal file
@ -0,0 +1,8 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.4.12 (GNU/Linux)
|
||||
Comment: See http://invisible-island.net/public/public.html for info
|
||||
|
||||
iEYEABECAAYFAla6mIwACgkQcCNT4PfkjtvkVACdFGQNeJXKJHJJNr2KSqNgp8q5
|
||||
jHsAoIPP5gkbOask860IcO9/wPmy6hQ9
|
||||
=FNld
|
||||
-----END PGP SIGNATURE-----
|
@ -1,7 +1,7 @@
|
||||
Index: dialog-1.2-20150920/dialog.h
|
||||
Index: dialog-1.3-20160209/dialog.h
|
||||
===================================================================
|
||||
--- dialog-1.2-20150920.orig/dialog.h
|
||||
+++ dialog-1.2-20150920/dialog.h
|
||||
--- dialog-1.3-20160209.orig/dialog.h
|
||||
+++ dialog-1.3-20160209/dialog.h
|
||||
@@ -43,6 +43,23 @@
|
||||
#include <string.h>
|
||||
#include <signal.h> /* fork() etc. */
|
||||
|
@ -1,3 +1,35 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 11 15:49:32 UTC 2016 - mpluskal@suse.com
|
||||
|
||||
- Update to 1.3-20160209
|
||||
* modify editbox widget to add a trailing newline if the text
|
||||
has none to ensure the last line is not ignored (report by
|
||||
Florent Rougon).
|
||||
* change mouse initialization to look for button-presses rather
|
||||
than button-clicks, for better response.
|
||||
* modify dump_curses_key() to show mouse-coding in readable form.
|
||||
* correct mapping of mouse-clicks on the day-grid in calendar
|
||||
widget when "--week-start" is used to set the start of the week
|
||||
(report by Stefan Vogtner).
|
||||
* integrated changes from Stefan Vogtner:
|
||||
* use Gregorian algorithm for leap year
|
||||
* use mktime if available; calendar was written just as it became
|
||||
standard.
|
||||
- Changes for version 1.3
|
||||
* correct --infobox documentation, which said it shows an OK
|
||||
button.
|
||||
* fix a couple of place in test-scripts which referred to
|
||||
$SIG_TRAP rather than $SIG_QUIT
|
||||
* reorganize dialog.3, to use subsections for generating navigation
|
||||
pane, using man2html
|
||||
* add "--week-start" option for calendar widget (prompted by
|
||||
discussion with Stefan Vogtner).
|
||||
* add a limit-check in editbox.c to ensure that mouse-clicks
|
||||
outside the filled-in text area do not access past the end of
|
||||
the array (report by Stefan Vogtner).
|
||||
* update configure macros from ncurses changes.
|
||||
* update config.guess, config.sub
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 28 11:43:11 UTC 2015 - mpluskal@suse.com
|
||||
|
||||
|
17
dialog.spec
17
dialog.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package dialog
|
||||
#
|
||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -16,10 +16,10 @@
|
||||
#
|
||||
|
||||
|
||||
%define src_date 20150920
|
||||
%define somajor 12
|
||||
%define src_date 20160209
|
||||
%define somajor 13
|
||||
Name: dialog
|
||||
Version: 1.2
|
||||
Version: 1.3
|
||||
Release: 0
|
||||
Summary: Menus and Input Boxes for Shell Scripts
|
||||
License: LGPL-2.1
|
||||
@ -103,10 +103,10 @@ make %{?_smp_mflags}
|
||||
%install
|
||||
# libtool seems to be broken in shell function func_lalib_unsafe_p()
|
||||
exec 0</dev/null
|
||||
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
||||
make %{?_smp_mflags} DESTDIR=%{buildroot} install
|
||||
|
||||
rm -rf %{buildroot}%{_libdir}/.libs
|
||||
find %{buildroot}%{_libdir} -type f -name "*.la" -delete -print
|
||||
find %{buildroot} -type f -name "*.la" -delete -print
|
||||
find %{buildroot}%{_libdir} -name '*.a' -type f -delete -print
|
||||
|
||||
rm -rf %{buildroot}%{_datadir}/locale/mg/ # Malagasy (Malayalam??)
|
||||
@ -117,7 +117,6 @@ install -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/dialogrc
|
||||
%find_lang %{name}
|
||||
|
||||
%post -n libdialog%{somajor} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libdialog%{somajor} -p /sbin/ldconfig
|
||||
|
||||
%files -f %{name}.lang
|
||||
@ -125,7 +124,7 @@ install -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/dialogrc
|
||||
%doc CHANGES README VERSION COPYING
|
||||
%config(noreplace) %{_sysconfdir}/dialogrc
|
||||
%{_bindir}/dialog
|
||||
%{_mandir}/man1/dialog.1.gz
|
||||
%{_mandir}/man1/dialog.1%{ext_man}
|
||||
|
||||
%files -n libdialog%{somajor}
|
||||
%defattr(-,root,root)
|
||||
@ -136,7 +135,7 @@ install -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/dialogrc
|
||||
%{_bindir}/dialog-config
|
||||
%{_libdir}/libdialog.so
|
||||
%{_includedir}/dialog/
|
||||
%{_mandir}/man3/dialog.3.gz
|
||||
%{_mandir}/man3/dialog.3%{ext_man}
|
||||
|
||||
%files examples
|
||||
%defattr(-,root,root)
|
||||
|
Loading…
Reference in New Issue
Block a user