Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
372cc4e0f8
!31 [sync] PR-26: fix locale files installation
From: @openeuler-sync-bot 
Reviewed-by: @dillon_chen 
Signed-off-by: @dillon_chen
2024-12-06 06:06:49 +00:00
Funda Wang
181503669c fix locale files installation
(cherry picked from commit f4141e7fa69a5b5f1beb6c3b27d61c9fb0d4d6c0)
2024-12-06 13:45:51 +08:00
openeuler-ci-bot
b668594b36
!21 fix license
From: @yangl777 
Reviewed-by: @dillon_chen 
Signed-off-by: @dillon_chen
2024-08-07 08:50:27 +00:00
yangl777
97d3cf0647 fix license 2024-08-01 07:17:25 +00:00
openeuler-ci-bot
0c67ec64a9
!20 Revert "Update newt to 0.52.24"
From: @yangl777 
Reviewed-by: @overweight 
Signed-off-by: @overweight
2024-02-04 09:29:14 +00:00
yangl777
a4d3d5b8b7 Revert "Update newt to 0.52.24"
This reverts commit d146329cb03a189beae86e8088b333e7fa7cdc34.
2024-02-01 07:47:16 +00:00
openeuler-ci-bot
d9b4599876
!19 Update newt to 0.52.24
From: @vicoloa 
Reviewed-by: @dillon_chen 
Signed-off-by: @dillon_chen
2023-12-06 09:02:32 +00:00
Vicoloa
d146329cb0 Update newt to 0.52.24 2023-12-06 15:40:15 +08:00
openeuler-ci-bot
2a54ece3a4
!12 update newt version to 0.52.23
From: @yangl777 
Reviewed-by: @yanan-rock 
Signed-off-by: @yanan-rock
2023-02-01 03:20:26 +00:00
yangl777
df3210d48e update newt version to 0.52.23 2023-02-01 01:45:22 +00:00
4 changed files with 34 additions and 91 deletions

View File

@ -1,73 +0,0 @@
From 638f672ce619abe322306c9f1f422dc988978e57 Mon Sep 17 00:00:00 2001
From: Miroslav Lichvar <mlichvar@redhat.com>
Date: Oct 01 2019 17:13:55 +0000
Subject: fix warnings about never-read values
Conflict: NA
Reference: https://pagure.io/newt/c/638f672ce619abe322306c9f1f422dc988978e57.patch
---
diff --git a/grid.c b/grid.c
index 5b4b120..6f79ce4 100644
--- a/grid.c
+++ b/grid.c
@@ -158,7 +158,6 @@ static void shuffleGrid(newtGrid grid, int left, int top, int set) {
thisTop = top;
for (row = 0; row < grid->rows; row++) {
- i = 0;
thisLeft = left;
for (col = 0; col < grid->cols; col++) {
field = &grid->fields[col][row];
diff --git a/listbox.c b/listbox.c
index 6177c07..aae4f83 100644
--- a/listbox.c
+++ b/listbox.c
@@ -758,7 +758,7 @@ static void listboxDestroy(newtComponent co) {
struct listbox * li = co->data;
struct items * item, * nextitem;
- nextitem = item = li->boxItems;
+ item = li->boxItems;
while (item != NULL) {
nextitem = item->next;
diff --git a/newt.c b/newt.c
index 0a6ca91..c1dd916 100644
--- a/newt.c
+++ b/newt.c
@@ -873,8 +873,6 @@ void newtPopWindowNoRefresh(void) {
if (currentWindow == NULL)
return;
- row = col = 0;
-
row = currentWindow->top - 1;
col = currentWindow->left - 2;
if (row < 0)
diff --git a/whiptail.c b/whiptail.c
index 7932d8b..627f1ee 100644
--- a/whiptail.c
+++ b/whiptail.c
@@ -346,7 +346,7 @@ int main(int argc, const char ** argv) {
int fullButtons = 0;
int outputfd = 2;
int topLeft = 0;
- FILE *output = stderr;
+ FILE *output;
char * result;
char ** selections, ** next;
char * title = NULL;
diff --git a/windows.c b/windows.c
index f1381ae..29566a6 100644
--- a/windows.c
+++ b/windows.c
@@ -220,7 +220,6 @@ int newtWinEntries(char * title, char * text, int suggestedWidth, int flexDown,
for (numItems = 0; items[numItems].text; numItems++);
- buttonName = button1;
va_start(args, button1);
for (buttonName = button1; buttonName; buttonName = va_arg(args, char *))
++totalButtons;

Binary file not shown.

BIN
newt-0.52.23.tar.gz Normal file

Binary file not shown.

View File

@ -1,15 +1,13 @@
Name: newt
Version: 0.52.21
Release: 7
Version: 0.52.23
Release: 3
Summary: A library for text mode user interfaces
License: LGPLv2
License: LGPL-2.0-only
URL: https://pagure.io/newt
Source: https://pagure.io/releases/newt/newt-%{version}.tar.gz
Patch0: backport-fix-warnings-about-never-read-values.patch
BuildRequires: gcc popt-devel python3-devel slang-devel
BuildRequires: docbook-utils lynx
BuildRequires: docbook-utils lynx make
Provides: snack = %{version}-%{release}
Obsoletes: %{name}-static
@ -51,45 +49,63 @@ providing a python API for creating text mode interfaces.
%build
%configure --without-tcl
%make_build all
chmod 0644 peanuts.py popcorn.py
docbook2txt tutorial.sgml
%install
%make_install
chmod 0755 peanuts.py popcorn.py
docbook2txt tutorial.sgml
%delete_la_and_a
%find_lang %{name}
%check
make test
%make_build test
%ldconfig_scriptlets
%files
%defattr(-,root,root)
%files -f %{name}.lang
%doc AUTHORS README
%license COPYING
%{_bindir}/*
%{_datadir}/locale
%{_libdir}/libnewt.so.*
%files devel
%defattr(-,root,root)
%{_includedir}/newt*
%{_libdir}/libnewt.so
%{_libdir}/libnewt.a
%{_libdir}/pkgconfig/*
%files -n python3-newt
%defattr(-,root,root)
%doc peanuts.py popcorn.py
%{python3_sitearch}/*.*
%{python3_sitearch}/__pycache__/*.py*
%files help
%defattr(-,root,root)
%doc tutorial.* CHANGES
%{_mandir}/man1/whiptail.1*
%changelog
* Thu Dec 05 2024 Funda Wang <fundawang@yeah.net> - 0.52.23-3
- fix locale files installation
* Thu Aug 01 2024 yanglu <yanglu72@h-partners.com> - 0.52.23-2
- Type:bugfix
- Id:NA
- SUG:NA
- DESC:fix license
* Thu Feb 01 2024 yanglu <yanglu72@h-partners.com> - 0.52.23-1
- Type:requirement
- Id:NA
- SUG:NA
- DESC:Revert update newt version to 0.52.24
* Wed Dec 06 2023 Vicoloa <lvkun@uniontech.com> - 0.52.24-1
- Update newt version to 0.52.24
* Tue Jan 31 2023 yanglu <yanglu72@h-partners.com> - 0.52.23-1
- Type:requirement
- Id:NA
- SUG:NA
- DESC:update newt version to 0.52.23
* Thu Oct 20 2022 yanglu <yanglu72@h-partners.com> - 0.52.21-7
- Type:bugfix
- Id:NA