aboutsummaryrefslogtreecommitdiff
path: root/contrib/dialog/package
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2013-06-17 10:28:55 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2013-06-17 10:28:55 +0000
commit2a3e3873a1e4cd958f2b0f85d3b10cfa40575d30 (patch)
tree9f45a4b095479f9ca544ff3abb716d5aefc15eb1 /contrib/dialog/package
parentc8789c34fd1f02cffc3c0adffa305172e6ec25b5 (diff)
parentc1ba58ff2b09604bd03d15a844fb5c09e2e38ef6 (diff)
downloadsrc-2a3e3873a1e4cd958f2b0f85d3b10cfa40575d30.tar.gz
src-2a3e3873a1e4cd958f2b0f85d3b10cfa40575d30.zip
Update dialog to 1.2-20130523
Level up WARNS
Notes
Notes: svn path=/head/; revision=251843
Diffstat (limited to 'contrib/dialog/package')
-rw-r--r--contrib/dialog/package/debian/changelog55
-rw-r--r--contrib/dialog/package/dialog.spec14
2 files changed, 66 insertions, 3 deletions
diff --git a/contrib/dialog/package/debian/changelog b/contrib/dialog/package/debian/changelog
index 51d497e6936a..7c0de2a7e393 100644
--- a/contrib/dialog/package/debian/changelog
+++ b/contrib/dialog/package/debian/changelog
@@ -1,3 +1,58 @@
+cdialog (20130523) unstable; urgency=low
+
+ * minor fixes
+
+ -- Thomas E. Dickey <dickey@invisible-island.net> Thu, 23 May 2013 19:25:01 -0400
+
+cdialog (20130315) unstable; urgency=low
+
+ * minor fixes
+
+ -- Thomas E. Dickey <dickey@invisible-island.net> Fri, 15 Mar 2013 04:41:20 -0400
+
+cdialog (20121230) unstable; urgency=low
+
+ * new widgets
+ * coverity fixes
+ * configure-script updates
+
+ -- Thomas E. Dickey <dickey@invisible-island.net> Sat, 06 Oct 2012 09:19:29 -0400
+
+cdialog (20120706) unstable; urgency=high
+
+ * fix regression in msgbox (ArchLinux #30574)
+
+ -- Thomas E. Dickey <dickey@invisible-island.net> Fri, 06 Jul 2012 12:52:46 -0400
+
+cdialog (20120703) unstable; urgency=low
+
+ * minor fixes
+ * add --default-button
+
+ -- Thomas E. Dickey <dickey@invisible-island.net> Sat, 30 Jun 2012 10:41:05 -0400
+
+cdialog (20120215) unstable; urgency=low
+
+ * minor fixes
+
+ -- Thomas E. Dickey <dickey@invisible-island.net> Wed, 15 Feb 2012 19:40:32 -0500
+
+cdialog (20111020) unstable; urgency=high
+
+ * fix regression in menubox.c logic for inputmenu vs menu.
+
+ -- Thomas E. Dickey <dickey@invisible-island.net> Wed, 19 Oct 2011 19:17:40 -0400
+
+cdialog (20111018) unstable; urgency=high
+
+ * improve color configurability
+ * misc bug-fixes.
+ * various improvements to tracing.
+ * remove an incorrect free() call in dlg_free_gauge()
+ * fix missing trailing null from dlg_align_columns
+
+ -- Thomas E. Dickey <dickey@invisible-island.net> Wed, 07 Sep 2011 20:04:04 -0400
+
cdialog (20110707) unstable; urgency=high
* fix a regression in dlg_getc() from 20110630 changes.
diff --git a/contrib/dialog/package/dialog.spec b/contrib/dialog/package/dialog.spec
index f5df49460be7..07ec13150857 100644
--- a/contrib/dialog/package/dialog.spec
+++ b/contrib/dialog/package/dialog.spec
@@ -1,9 +1,9 @@
Summary: dialog - display dialog boxes from shell scripts
%define AppProgram dialog
-%define AppVersion 1.1
-%define AppRelease 20110707
+%define AppVersion 1.2
+%define AppRelease 20130523
%define ActualProg c%{AppProgram}
-# $XTermId: dialog.spec,v 1.24 2011/07/07 22:10:02 tom Exp $
+# $XTermId: dialog.spec,v 1.50 2013/05/24 00:13:31 tom Exp $
Name: %{ActualProg}
Version: %{AppVersion}
Release: %{AppRelease}
@@ -28,6 +28,8 @@ compiled into dialog):
This package installs as "cdialog" to avoid conflict with other packages.
%prep
+%define debug_package %{nil}
+
%setup -q -n %{AppProgram}-%{AppVersion}-%{AppRelease}
%build
@@ -53,8 +55,11 @@ make
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
make install-full DESTDIR=$RPM_BUILD_ROOT
+libtool --finish %{_libdir}
strip $RPM_BUILD_ROOT%{_bindir}/%{ActualProg}
+chmod 755 $RPM_BUILD_ROOT%{_libdir}/lib%{ActualProg}.so.*.*.*
+rm -f $RPM_BUILD_ROOT%{_libdir}/lib%{ActualProg}.la
%clean
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
@@ -75,5 +80,8 @@ strip $RPM_BUILD_ROOT%{_bindir}/%{ActualProg}
%changelog
# each patch should add its ChangeLog entries here
+* Tue Oct 18 2011 Thomas Dickey
+- add executable permissions for shared libraries, discard ".la" file.
+
* Thu Dec 30 2010 Thomas Dickey
- initial version