commit minicom for openSUSE:Factory

2020-06-09 Thread root
Hello community,

here is the log from the commit of package minicom for openSUSE:Factory checked 
in at 2020-06-10 00:48:37

Comparing /work/SRC/openSUSE:Factory/minicom (Old)
 and  /work/SRC/openSUSE:Factory/.minicom.new.3606 (New)


Package is "minicom"

Wed Jun 10 00:48:37 2020 rev:41 rq:812780 version:2.7.1

Changes:

--- /work/SRC/openSUSE:Factory/minicom/minicom.changes  2017-04-19 
18:11:40.454640506 +0200
+++ /work/SRC/openSUSE:Factory/.minicom.new.3606/minicom.changes
2020-06-10 00:48:43.338993040 +0200
@@ -1,0 +2,9 @@
+Tue Jun  9 03:11:04 UTC 2020 - Simon Lees 
+
+- Fix some unneccesary global defenitions to fix build failures with
+  gcc10.
+  * fix-upstream-gcc10-build1.patch
+  * fix-upstream-gcc10-build2.patch
+  * fix-upstream-gcc10-build3.patch
+
+---

New:

  fix-upstream-gcc10-build1.patch
  fix-upstream-gcc10-build2.patch
  fix-upstream-gcc10-build3.patch



Other differences:
--
++ minicom.spec ++
--- /var/tmp/diff_new_pack.zOE45z/_old  2020-06-10 00:48:44.106995049 +0200
+++ /var/tmp/diff_new_pack.zOE45z/_new  2020-06-10 00:48:44.110995059 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package minicom
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -20,9 +20,9 @@
 Version:2.7.1
 Release:0
 Summary:A Terminal Program
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Hardware/Modem
-Url:http://alioth.debian.org/projects/minicom/
+URL:http://alioth.debian.org/projects/minicom/
 Source0:
https://alioth.debian.org/frs/download.php/latestfile/3/%{name}-%{version}.tar.gz
 Patch0: minicom-2.2-defaults.diff
 Patch2: 03norzsz.diff
@@ -30,6 +30,9 @@
 Patch5: minicom-2.4-norootsetup.diff
 # PATCH-FIX-UPSTREAM increase permitted length of serial device (bnc#707860)
 Patch6: minicom-2.5-serial_device_path_length.patch
+Patch7: fix-upstream-gcc10-build1.patch
+Patch8: fix-upstream-gcc10-build2.patch
+Patch9: fix-upstream-gcc10-build3.patch
 BuildRequires:  ckermit
 BuildRequires:  gettext-devel
 BuildRequires:  lockdev-devel
@@ -57,6 +60,9 @@
 %patch4
 %patch5 -p1
 %patch6 -p1
+%patch7 -p1
+%patch8 -p1
+%patch9 -p1
 
 %build
 export CFLAGS="%{optflags} $(ncursesw6-config --cflags)"

++ fix-upstream-gcc10-build1.patch ++
>From db269bba2a68fde03f5df45ac8372a8f1248ca96 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ond=C5=99ej=20Lyson=C4=9Bk?= 
Date: Mon, 3 Feb 2020 16:04:54 +0100
Subject: [PATCH] Drop superfluous global variable definitions

The file minicom.c, by including the minicom.h header, already defines
the global variables 'dial_user' and 'dial_pass'. The object file
minicom.o is always linked to dial.o. Thus the definitions in dial.c
can be dropped.

This fixes linking with gcc 10 which uses -fno-common by default,
disallowing multiple global variable definitions.
---
 src/dial.c | 2 --
 1 file changed, 2 deletions(-)

Index: minicom-2.7.1/src/dial.c
===
--- minicom-2.7.1.orig/src/dial.c
+++ minicom-2.7.1/src/dial.c
@@ -137,7 +137,7 @@ struct dver {
 /* Forward declaration */
 static void writedialdir(void);
 
-#define dialentno(di, no) ((struct dialent *)((char *)(di) + ((no) * 
sizeof(struct dialent  
+#define dialentno(di, no) ((struct dialent *)((char *)(di) + ((no) * 
sizeof(struct dialent
 
 static struct dialent *dialents;
 static struct dialent *d_man;
@@ -146,8 +146,6 @@ static int newtype;
 /* Access to ".dialdir" denied? */
 static int dendd = 0;
 static char *tagged;
-char *dial_user;
-char *dial_pass;
 
 /* Change the baud rate.  Treat all characters in the given array as if
  * they were key presses within the comm parameters dialog (C-A P) and
@@ -1370,7 +1368,7 @@ static void prdir(WIN *dialw, int top, i
 if (d == (struct dialent *)0)
   break;
 mc_wprintf(dialw, fmt, f+1+top, (d->flags & FL_TAG) ? '>' : ' ',
-d->name, d->number, d->lastdate, d->lasttime, 
+d->name, d->number, d->lastdate, d->lasttime,
 d->count, d->script);
   }
   dirflush = 1;
@@ -1480,7 +1478,7 @@ static void dial_entry(struct dialent *d
   /* Now that everything 

commit minicom for openSUSE:Factory

2017-03-12 Thread root
Hello community,

here is the log from the commit of package minicom for openSUSE:Factory checked 
in at 2017-03-12 20:01:33

Comparing /work/SRC/openSUSE:Factory/minicom (Old)
 and  /work/SRC/openSUSE:Factory/.minicom.new (New)


Package is "minicom"

Sun Mar 12 20:01:33 2017 rev:39 rq:477093 version:2.7

Changes:

--- /work/SRC/openSUSE:Factory/minicom/minicom.changes  2015-03-18 
13:04:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.minicom.new/minicom.changes 2017-03-12 
20:01:34.198387994 +0100
@@ -1,0 +2,5 @@
+Wed Oct 26 14:20:42 CEST 2016 - ku...@suse.de
+
+- Add PreReq for group uucp
+
+---



Other differences:
--
++ minicom.spec ++
--- /var/tmp/diff_new_pack.ZneZmv/_old  2017-03-12 20:01:34.938283299 +0100
+++ /var/tmp/diff_new_pack.ZneZmv/_new  2017-03-12 20:01:34.938283299 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package minicom
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -37,6 +37,7 @@
 BuildRequires:  pkg-config
 Requires:   ckermit
 Requires:   rzsz
+Requires(pre):  group(uucp)
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 




commit minicom for openSUSE:Factory

2015-03-18 Thread h_root
Hello community,

here is the log from the commit of package minicom for openSUSE:Factory checked 
in at 2015-03-18 13:03:58

Comparing /work/SRC/openSUSE:Factory/minicom (Old)
 and  /work/SRC/openSUSE:Factory/.minicom.new (New)


Package is "minicom"

Changes:

--- /work/SRC/openSUSE:Factory/minicom/minicom.changes  2014-01-16 
15:12:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.minicom.new/minicom.changes 2015-03-18 
13:04:00.0 +0100
@@ -1,0 +2,7 @@
+Fri Mar 13 12:30:20 UTC 2015 - tchva...@suse.com
+
+- Split language to subpackage
+- Remove check phase, it is empty just saying there is nothing to be done
+- Use name and version macros in Source path
+
+---



Other differences:
--
++ minicom.spec ++
--- /var/tmp/diff_new_pack.7Br3jg/_old  2015-03-18 13:04:01.0 +0100
+++ /var/tmp/diff_new_pack.7Br3jg/_new  2015-03-18 13:04:01.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package minicom
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -23,7 +23,7 @@
 License:GPL-2.0+
 Group:  Hardware/Modem
 Url:http://alioth.debian.org/projects/minicom/
-Source0:
https://alioth.debian.org/frs/download.php/latestfile/3/minicom-2.7.tar.gz
+Source0:
https://alioth.debian.org/frs/download.php/latestfile/3/%{name}-%{version}.tar.gz
 Patch0: minicom-2.2-defaults.diff
 Patch2: 03norzsz.diff
 Patch4: minicom-2.3-no-build-date.patch
@@ -37,6 +37,7 @@
 BuildRequires:  pkg-config
 Requires:   ckermit
 Requires:   rzsz
+Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -46,6 +47,8 @@
 If you want to access your modem with minicom, you have to be a member
 of the uucp group.
 
+%lang_package
+
 %prep
 %setup -q
 %patch0
@@ -57,7 +60,8 @@
 %build
 export CFLAGS="%{optflags} $(ncursesw6-config --cflags)"
 export LDFLAGS="$(ncursesw6-config --libs)"
-%configure --disable-rpath \
+%configure \
+--disable-rpath \
--enable-music \
--enable-dfl-baud=57600 \
--enable-dfl-port=/dev/modem \
@@ -65,14 +69,11 @@
--enable-cfg-dir=%{_sysconfdir}
 make %{?_smp_mflags}
 
-%check
-make check %{?_smp_mflags}
-
 %install
 make DESTDIR=%{buildroot} install %{?_smp_mflags}
 %find_lang %{name}
 
-%files -f %{name}.lang
+%files
 %defattr(644,root,root,755)
 %doc doc/minicom.FAQ AUTHORS COPYING NEWS README
 %attr(0755,root,root) %{_bindir}/ascii-xfr
@@ -84,4 +85,7 @@
 %{_mandir}/man1/xminicom.1.gz
 %{_mandir}/man1/runscript.1.gz
 
+%files lang -f %{name}.lang
+%defattr(-,root,root)
+
 %changelog

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit minicom for openSUSE:Factory

2014-01-16 Thread h_root
Hello community,

here is the log from the commit of package minicom for openSUSE:Factory checked 
in at 2014-01-16 15:12:06

Comparing /work/SRC/openSUSE:Factory/minicom (Old)
 and  /work/SRC/openSUSE:Factory/.minicom.new (New)


Package is "minicom"

Changes:

--- /work/SRC/openSUSE:Factory/minicom/minicom.changes  2013-12-22 
19:36:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.minicom.new/minicom.changes 2014-01-16 
15:12:07.0 +0100
@@ -1,0 +2,15 @@
+Tue Jan 14 09:13:13 UTC 2014 - dmuel...@suse.com
+
+- fix Source url 
+
+---
+Thu Jan  2 11:12:46 UTC 2014 - vci...@suse.com
+
+- update to 2.7
+  * Configurable status line via -F option, see manpage for a listing
+of format specifier.
+  * Improve display of device name in status line.
+  * Script: Binary transmission feature via "!<"
+  * Fixes.
+
+---

Old:

  minicom-2.6.2.tar.gz

New:

  minicom-2.7.tar.gz



Other differences:
--
++ minicom.spec ++
--- /var/tmp/diff_new_pack.zLwKXP/_old  2014-01-16 15:12:08.0 +0100
+++ /var/tmp/diff_new_pack.zLwKXP/_new  2014-01-16 15:12:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package minicom
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   minicom
-Version:2.6.2
+Version:2.7
 Release:0
 Summary:A Terminal Program
 License:GPL-2.0+
 Group:  Hardware/Modem
 Url:http://alioth.debian.org/projects/minicom/
-Source0:
https://alioth.debian.org/frs/download.php/file/3869/%{name}-%{version}.tar.gz
+Source0:
https://alioth.debian.org/frs/download.php/latestfile/3/minicom-2.7.tar.gz
 Patch0: minicom-2.2-defaults.diff
 Patch2: 03norzsz.diff
 Patch4: minicom-2.3-no-build-date.patch

++ minicom-2.6.2.tar.gz -> minicom-2.7.tar.gz ++
 40042 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit minicom for openSUSE:Factory

2013-12-22 Thread h_root
Hello community,

here is the log from the commit of package minicom for openSUSE:Factory checked 
in at 2013-12-22 19:36:32

Comparing /work/SRC/openSUSE:Factory/minicom (Old)
 and  /work/SRC/openSUSE:Factory/.minicom.new (New)


Package is "minicom"

Changes:

--- /work/SRC/openSUSE:Factory/minicom/minicom.changes  2013-01-03 
13:54:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.minicom.new/minicom.changes 2013-12-22 
19:36:33.0 +0100
@@ -1,0 +2,15 @@
+Wed Dec 18 09:58:51 UTC 2013 - mvysko...@suse.com
+
+- update to 2.6.2
+ * Alternative hex output (to be improved)
+ * Print creation date of serial device file (if < 20 hrs), useful for
+   identifying just plugged in USB-Serial adapters 
+ * Support ':' (colon) in device path names. Note, that this changes old
+   behaviour which used ':' as a device path delimiter.
+ * Several language updates.
+- refreshed/rebased patches
+  * minicom-2.3-no-build-date.patch
+  * minicom-2.4-norootsetup.diff
+  * minicom-2.5-serial_device_path_length.patch
+
+---

Old:

  minicom-2.6.1.tar.gz

New:

  minicom-2.6.2.tar.gz



Other differences:
--
++ minicom.spec ++
--- /var/tmp/diff_new_pack.LriJvu/_old  2013-12-22 19:36:34.0 +0100
+++ /var/tmp/diff_new_pack.LriJvu/_new  2013-12-22 19:36:34.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package minicom
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,26 +17,26 @@
 
 
 Name:   minicom
-BuildRequires:  ckermit
-BuildRequires:  gettext-devel
-BuildRequires:  lockdev-devel
-BuildRequires:  ncurses-devel
-BuildRequires:  pkg-config
-Url:http://alioth.debian.org/projects/minicom/
-Requires:   ckermit
-Requires:   rzsz
-Version:2.6.1
+Version:2.6.2
 Release:0
 Summary:A Terminal Program
 License:GPL-2.0+
 Group:  Hardware/Modem
-Source: %{name}-%{version}.tar.gz
+Url:http://alioth.debian.org/projects/minicom/
+Source0:
https://alioth.debian.org/frs/download.php/file/3869/%{name}-%{version}.tar.gz
 Patch0: minicom-2.2-defaults.diff
 Patch2: 03norzsz.diff
 Patch4: minicom-2.3-no-build-date.patch
 Patch5: minicom-2.4-norootsetup.diff
 # PATCH-FIX-UPSTREAM increase permitted length of serial device (bnc#707860) 
 Patch6: minicom-2.5-serial_device_path_length.patch
+BuildRequires:  ckermit
+BuildRequires:  gettext-devel
+BuildRequires:  lockdev-devel
+BuildRequires:  ncurses-devel
+BuildRequires:  pkg-config
+Requires:   ckermit
+Requires:   rzsz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -46,7 +46,6 @@
 If you want to access your modem with minicom, you have to be a member
 of the uucp group.
 
-
 %prep
 %setup -q
 %patch0
@@ -56,7 +55,7 @@
 %patch6 -p1
 
 %build
-export CFLAGS="%optflags $(ncursesw6-config --cflags)"
+export CFLAGS="%{optflags} $(ncursesw6-config --cflags)"
 export LDFLAGS="$(ncursesw6-config --libs)"
 %configure --disable-rpath \
--enable-music \
@@ -64,25 +63,22 @@
--enable-dfl-port=/dev/modem \
--enable-socket \
--enable-cfg-dir=%{_sysconfdir}
-%{__make} %{?_smp_mflags}
+make %{?_smp_mflags}
 
 %check
-make check
+make check %{?_smp_mflags}
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT install
-%find_lang %name
-
-%clean
-rm -rf $RPM_BUILD_ROOT
+make DESTDIR=%{buildroot} install %{?_smp_mflags}
+%find_lang %{name}
 
-%files -f %name.lang
+%files -f %{name}.lang
 %defattr(644,root,root,755)
 %doc doc/minicom.FAQ AUTHORS COPYING NEWS README
-%attr(0755,root,root) /usr/bin/ascii-xfr
-%attr(0755,root,uucp) /usr/bin/minicom
-%attr(0755,root,root) /usr/bin/runscript
-%attr(0755,root,root) /usr/bin/xminicom
+%attr(0755,root,root) %{_bindir}/ascii-xfr
+%attr(0755,root,uucp) %{_bindir}/minicom
+%attr(0755,root,root) %{_bindir}/runscript
+%attr(0755,root,root) %{_bindir}/xminicom
 %{_mandir}/man1/ascii-xfr.1.gz
 %{_mandir}/man1/minicom.1.gz
 %{_mandir}/man1/xminicom.1.gz

++ minicom-2.3-no-build-date.patch ++
--- /var/tmp/diff_new_pack.LriJvu/_old  2013-12-22 19:36:34.0 +0100
+++ /var/tmp/diff_new_pack.LriJvu/_new  2013-12-22 19:36:34.0 +0100
@@ -2,7 +2,7 @@
 ===
 --- src/minicom.c.orig
 +++ src/minicom.c
-@@ -1085,9 +1085,6 @@ int main(int argc, char **argv)
+@@ -1157,9 +1157,6 @@ int main(int argc, char **argv)
switch

commit minicom for openSUSE:Factory

2013-01-03 Thread h_root
Hello community,

here is the log from the commit of package minicom for openSUSE:Factory checked 
in at 2013-01-03 13:46:05

Comparing /work/SRC/openSUSE:Factory/minicom (Old)
 and  /work/SRC/openSUSE:Factory/.minicom.new (New)


Package is "minicom", Maintainer is "dlova...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/minicom/minicom.changes  2012-09-15 
17:29:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.minicom.new/minicom.changes 2013-01-03 
13:46:07.0 +0100
@@ -1,0 +2,6 @@
+Fri Dec 28 01:31:32 UTC 2012 - crrodrig...@opensuse.org
+
+- configure wants "ckermit" present during build and at runtime.
+- Prefer ncurses6w.
+
+---



Other differences:
--
++ minicom.spec ++
--- /var/tmp/diff_new_pack.VPgWO3/_old  2013-01-03 13:46:07.0 +0100
+++ /var/tmp/diff_new_pack.VPgWO3/_new  2013-01-03 13:46:07.0 +0100
@@ -17,11 +17,13 @@
 
 
 Name:   minicom
+BuildRequires:  ckermit
 BuildRequires:  gettext-devel
 BuildRequires:  lockdev-devel
 BuildRequires:  ncurses-devel
 BuildRequires:  pkg-config
 Url:http://alioth.debian.org/projects/minicom/
+Requires:   ckermit
 Requires:   rzsz
 Version:2.6.1
 Release:0
@@ -54,6 +56,8 @@
 %patch6 -p1
 
 %build
+export CFLAGS="%optflags $(ncursesw6-config --cflags)"
+export LDFLAGS="$(ncursesw6-config --libs)"
 %configure --disable-rpath \
--enable-music \
--enable-dfl-baud=57600 \

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit minicom for openSUSE:Factory

2012-09-15 Thread h_root
Hello community,

here is the log from the commit of package minicom for openSUSE:Factory checked 
in at 2012-09-15 17:29:04

Comparing /work/SRC/openSUSE:Factory/minicom (Old)
 and  /work/SRC/openSUSE:Factory/.minicom.new (New)


Package is "minicom", Maintainer is "dlova...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/minicom/minicom.changes  2012-05-31 
17:07:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.minicom.new/minicom.changes 2012-09-15 
17:29:07.0 +0200
@@ -1,0 +2,11 @@
+Wed May 30 19:54:13 UTC 2012 - sweet_...@gmx.de
+
+- remove not needed minicom-2.3-ncurses.patch to get rid of
+  automake dependency
+- update to 2.6.1
+  * src/main.c, src/minicom.c: iconv: Handle the case that iconv
+did not convert anything. Reported by Mike Crowe, Debian #659351.
+  * src/main.c: ETIME -> ETIMEDOUT as ETIME is not available on BSDs
+  * src/main.c: Fix invalid memory used, reported by Larry Baker
+
+---

Old:

  automake-1.12.patch
  minicom-2.3-ncurses.patch
  minicom-2.6.tar.gz

New:

  minicom-2.6.1.tar.gz



Other differences:
--
++ minicom.spec ++
--- /var/tmp/diff_new_pack.zGtSYI/_old  2012-09-15 17:29:08.0 +0200
+++ /var/tmp/diff_new_pack.zGtSYI/_new  2012-09-15 17:29:08.0 +0200
@@ -17,27 +17,24 @@
 
 
 Name:   minicom
-BuildRequires:  automake
 BuildRequires:  gettext-devel
 BuildRequires:  lockdev-devel
 BuildRequires:  ncurses-devel
 BuildRequires:  pkg-config
 Url:http://alioth.debian.org/projects/minicom/
 Requires:   rzsz
-Version:2.6
+Version:2.6.1
 Release:0
 Summary:A Terminal Program
 License:GPL-2.0+
 Group:  Hardware/Modem
 Source: %{name}-%{version}.tar.gz
 Patch0: minicom-2.2-defaults.diff
-Patch1: minicom-2.3-ncurses.patch
 Patch2: 03norzsz.diff
 Patch4: minicom-2.3-no-build-date.patch
 Patch5: minicom-2.4-norootsetup.diff
 # PATCH-FIX-UPSTREAM increase permitted length of serial device (bnc#707860) 
 Patch6: minicom-2.5-serial_device_path_length.patch
-Patch7: automake-1.12.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -51,15 +48,12 @@
 %prep
 %setup -q
 %patch0
-%patch1
 %patch2 -p1
 %patch4
 %patch5 -p1
 %patch6 -p1
-%patch7 -p1
 
 %build
-autoreconf --force --install
 %configure --disable-rpath \
--enable-music \
--enable-dfl-baud=57600 \

++ minicom-2.6.tar.gz -> minicom-2.6.1.tar.gz ++
 5509 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit minicom for openSUSE:Factory

2012-05-31 Thread h_root
Hello community,

here is the log from the commit of package minicom for openSUSE:Factory checked 
in at 2012-05-31 17:07:09

Comparing /work/SRC/openSUSE:Factory/minicom (Old)
 and  /work/SRC/openSUSE:Factory/.minicom.new (New)


Package is "minicom", Maintainer is "dlova...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/minicom/minicom.changes  2012-01-04 
07:25:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.minicom.new/minicom.changes 2012-05-31 
17:07:24.0 +0200
@@ -1,0 +2,6 @@
+Tue May 29 12:31:16 UTC 2012 - pu...@suse.com
+
+- fix build with automake-1.12
+  - add: automake-1.12.patch
+
+---

New:

  automake-1.12.patch



Other differences:
--
++ minicom.spec ++
--- /var/tmp/diff_new_pack.F3iDXc/_old  2012-05-31 17:07:26.0 +0200
+++ /var/tmp/diff_new_pack.F3iDXc/_new  2012-05-31 17:07:26.0 +0200
@@ -37,6 +37,7 @@
 Patch5: minicom-2.4-norootsetup.diff
 # PATCH-FIX-UPSTREAM increase permitted length of serial device (bnc#707860) 
 Patch6: minicom-2.5-serial_device_path_length.patch
+Patch7: automake-1.12.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -55,6 +56,7 @@
 %patch4
 %patch5 -p1
 %patch6 -p1
+%patch7 -p1
 
 %build
 autoreconf --force --install

++ automake-1.12.patch ++
Index: minicom-2.6/configure.in
===
--- minicom-2.6.orig/configure.in
+++ minicom-2.6/configure.in
@@ -191,7 +191,6 @@ AC_CHECK_HEADERS(stdarg.h varargs.h term
 
 dnl Checks for typedefs, structures, and compiler characteristics.
 AC_C_CONST
-AM_C_PROTOTYPES
 AC_TYPE_UID_T
 AC_TYPE_MODE_T
 AC_TYPE_PID_T
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit minicom for openSUSE:Factory

2012-01-03 Thread h_root
Hello community,

here is the log from the commit of package minicom for openSUSE:Factory checked 
in at 2012-01-04 07:25:12

Comparing /work/SRC/openSUSE:Factory/minicom (Old)
 and  /work/SRC/openSUSE:Factory/.minicom.new (New)


Package is "minicom", Maintainer is "vci...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/minicom/minicom.changes  2011-12-25 
17:36:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.minicom.new/minicom.changes 2012-01-04 
07:25:13.0 +0100
@@ -1,0 +2,13 @@
+Mon Jan  2 14:08:30 UTC 2012 - vci...@suse.cz
+
+- update to 2.6
+  * Add possibility to add delay after every character transmission.
+  * Fix build issues on Mac OS X.
+  * Stop providing default modem init and reset strings (still available when
+editing).
+  * Added possibility for timestamps in output, added by minicom
+  * Added lockdev support.
+  * Added new dialdir format that is supposed to be interoperable between 32
+and 64 bits archs.
+
+---

Old:

  minicom-2.4-lockdev.diff
  minicom-2.5.tar.bz2

New:

  minicom-2.6.tar.gz



Other differences:
--
++ minicom.spec ++
--- /var/tmp/diff_new_pack.jf9r49/_old  2012-01-04 07:25:14.0 +0100
+++ /var/tmp/diff_new_pack.jf9r49/_new  2012-01-04 07:25:14.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package minicom
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   minicom
 BuildRequires:  automake
 BuildRequires:  gettext-devel
@@ -22,17 +23,16 @@
 BuildRequires:  ncurses-devel
 BuildRequires:  pkg-config
 Url:http://alioth.debian.org/projects/minicom/
-License:GPL-2.0+
-Group:  Hardware/Modem
 Requires:   rzsz
-Version:2.5
+Version:2.6
 Release:0
 Summary:A Terminal Program
-Source: %{name}-%{version}.tar.bz2
+License:GPL-2.0+
+Group:  Hardware/Modem
+Source: %{name}-%{version}.tar.gz
 Patch0: minicom-2.2-defaults.diff
 Patch1: minicom-2.3-ncurses.patch
 Patch2: 03norzsz.diff
-Patch3: minicom-2.4-lockdev.diff
 Patch4: minicom-2.3-no-build-date.patch
 Patch5: minicom-2.4-norootsetup.diff
 # PATCH-FIX-UPSTREAM increase permitted length of serial device (bnc#707860) 
@@ -52,7 +52,6 @@
 %patch0
 %patch1
 %patch2 -p1
-%patch3 -p1
 %patch4
 %patch5 -p1
 %patch6 -p1

++ minicom-2.5-serial_device_path_length.patch ++
--- /var/tmp/diff_new_pack.jf9r49/_old  2012-01-04 07:25:14.0 +0100
+++ /var/tmp/diff_new_pack.jf9r49/_new  2012-01-04 07:25:14.0 +0100
@@ -1,7 +1,7 @@
-Index: minicom-2.5/src/configsym.h
+Index: minicom-2.6/src/configsym.h
 ===
 minicom-2.5.orig/src/configsym.h   2009-12-12 16:47:47.0 +0100
-+++ minicom-2.5/src/configsym.h2011-10-18 13:49:43.821824410 +0200
+--- minicom-2.6.orig/src/configsym.h   2009-12-12 16:47:47.0 +0100
 minicom-2.6/src/configsym.h2012-01-02 14:40:58.920461552 +0100
 @@ -35,7 +35,7 @@
   * jl  10.02.2000 parameter P_STOPB
   */
@@ -11,16 +11,16 @@
  
  struct pars {
/* value is first, so that (char *)mpars[0] == mpars[0].value */
-Index: minicom-2.5/src/config.c
+Index: minicom-2.6/src/config.c
 ===
 minicom-2.5.orig/src/config.c  2011-10-18 13:49:43.0 +0200
-+++ minicom-2.5/src/config.c   2011-10-18 13:56:20.248476067 +0200
-@@ -561,7 +561,7 @@
+--- minicom-2.6.orig/src/config.c  2012-01-02 14:40:33.0 +0100
 minicom-2.6/src/config.c   2012-01-02 14:42:03.866345727 +0100
+@@ -563,7 +563,7 @@
  mc_wclose(w, 1);
  return;
case 'A':
--pgets(w, mbslen (serial_device) + 1, 0, P_PORT, 64, 64);
-+pgets(w, mbslen (serial_device) + 1, 0, P_PORT, PARS_VAL_LEN, 
PARS_VAL_LEN);
+-pgets(w, mbslen (serial_device) + 1, 0, P_PORT, 64, 64, 1);
++pgets(w, mbslen (serial_device) + 1, 0, P_PORT, PARS_VAL_LEN, 
PARS_VAL_LEN, 1);
  break;
case 'B':
- pgets(w, mbslen (lockfile_location) + 1, 1, P_LOCK, 64, 64);
+ pgets(w, mbslen (lockfile_location) + 1, 1, P_LOCK, 64, 64, 1);

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.or

commit minicom for openSUSE:Factory

2011-12-25 Thread h_root
Hello community,

here is the log from the commit of package minicom for openSUSE:Factory checked 
in at 2011-12-25 17:36:39

Comparing /work/SRC/openSUSE:Factory/minicom (Old)
 and  /work/SRC/openSUSE:Factory/.minicom.new (New)


Package is "minicom", Maintainer is "vci...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/minicom/minicom.changes  2011-10-20 
14:08:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.minicom.new/minicom.changes 2011-12-25 
17:36:51.0 +0100
@@ -1,0 +2,5 @@
+Thu Dec  1 11:22:01 UTC 2011 - co...@suse.com
+
+- add automake as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ minicom.spec ++
--- /var/tmp/diff_new_pack.HF0ZdN/_old  2011-12-25 17:36:52.0 +0100
+++ /var/tmp/diff_new_pack.HF0ZdN/_new  2011-12-25 17:36:52.0 +0100
@@ -15,18 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   minicom
-BuildRequires:  gettext-devel ncurses-devel
-BuildRequires:  lockdev-devel pkg-config
+BuildRequires:  automake
+BuildRequires:  gettext-devel
+BuildRequires:  lockdev-devel
+BuildRequires:  ncurses-devel
+BuildRequires:  pkg-config
 Url:http://alioth.debian.org/projects/minicom/
-License:GPLv2+
+License:GPL-2.0+
 Group:  Hardware/Modem
 Requires:   rzsz
 Version:2.5
-Release:9
+Release:0
 Summary:A Terminal Program
 Source: %{name}-%{version}.tar.bz2
 Patch0: minicom-2.2-defaults.diff

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit minicom for openSUSE:Factory

2011-08-24 Thread h_root

Hello community,

here is the log from the commit of package minicom for openSUSE:Factory
checked in at Wed Aug 24 15:51:33 CEST 2011.




--- minicom/minicom.changes 2011-07-26 11:27:09.0 +0200
+++ /mounts/work_src_done/STABLE/minicom/minicom.changes2011-08-24 
11:48:56.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 24 09:44:30 UTC 2011 - lnus...@suse.de
+
+- fix lockdev suppport (bnc#713330)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ minicom.spec ++
--- /var/tmp/diff_new_pack.opaeEY/_old  2011-08-24 15:50:52.0 +0200
+++ /var/tmp/diff_new_pack.opaeEY/_new  2011-08-24 15:50:52.0 +0200
@@ -26,7 +26,7 @@
 Group:  Hardware/Modem
 Requires:   rzsz
 Version:2.5
-Release:7
+Release:9
 Summary:A Terminal Program
 Source: %{name}-%{version}.tar.bz2
 Patch0: minicom-2.2-defaults.diff

++ minicom-2.4-lockdev.diff ++
--- /var/tmp/diff_new_pack.opaeEY/_old  2011-08-24 15:50:52.0 +0200
+++ /var/tmp/diff_new_pack.opaeEY/_new  2011-08-24 15:50:52.0 +0200
@@ -2,7 +2,7 @@
 ===
 --- minicom-2.5.orig/src/main.c
 +++ minicom-2.5/src/main.c
-@@ -164,6 +164,20 @@ int open_term(int doinit, int show_win_o
+@@ -164,6 +164,18 @@ int open_term(int doinit, int show_win_o
int s_errno;
  #endif
  
@@ -14,29 +14,29 @@
 +}
 +#endif
 +
-+  lockfile[0] = 0;
 +  if (portfd_is_socket)
 +goto nolock;
 +
 +#if !HAVE_LOCKDEV
-+
/* First see if the lock file directory is present. */
if (P_LOCK[0] && stat(P_LOCK, &stt) == 0) {
  
-@@ -211,10 +225,12 @@ int open_term(int doinit, int show_win_o
+@@ -211,10 +223,12 @@ int open_term(int doinit, int show_win_o
return -1;
  }
}
 +#endif
  
-   if (doinit > 0)
- lockfile_create();
+-  if (doinit > 0)
+-lockfile_create();
++  if (doinit > 0 && lockfile_create() != 0)
++return -1;
  
 +nolock:
/* Run a special program to disable callin if needed. */
  if (doinit > 0 && P_CALLOUT[0]) {
if (fastsystem(P_CALLOUT, NULL, NULL, NULL) < 0) {
-@@ -232,11 +248,7 @@ int open_term(int doinit, int show_win_o
+@@ -232,11 +246,7 @@ int open_term(int doinit, int show_win_o
  signal(SIGALRM, get_alrm);
  alarm(4);
  #ifdef USE_SOCKET
@@ -53,12 +53,13 @@
 ===
 --- minicom-2.5.orig/src/minicom.c
 +++ minicom-2.5/src/minicom.c
-@@ -1570,7 +1570,7 @@ dirty_goto:
+@@ -1569,8 +1569,7 @@ dirty_goto:
+   mc_wclose(st, 0);
mc_wclose(stdwin, 1);
keyboard(KUNINSTALL, 0);
-   if (lockfile[0])
+-  if (lockfile[0])
 -unlink(lockfile);
-+ttyunlock(lockfile);
++  lockfile_remove();
close(portfd);
  
if (quit != NORESET && P_CALLIN[0])
@@ -66,45 +67,56 @@
 ===
 --- minicom-2.5.orig/src/minicom.h
 +++ minicom-2.5/src/minicom.h
-@@ -35,6 +35,12 @@
+@@ -35,6 +35,10 @@
  
  #include 
  
 +#if HAVE_LOCKDEV
 +#include 
-+#else
-+#define ttyunlock(x) unlink(x)
 +#endif
 +
  #ifdef USE_SOCKET
  #include 
  #include 
-@@ -82,7 +88,7 @@ EXTERN int tempst;   /* Status line is tem
- EXTERN int escape;/* Escape code. */
- EXTERN int disable_online_time; /* disable online time display */
- 
--EXTERN char lockfile[128]; /* UUCP lock file of terminal */
-+EXTERN char lockfile[1024]; /* UUCP lock file of terminal */
- EXTERN char homedir[256];  /* Home directory of user */
- EXTERN char logfname[PARS_VAL_LEN]; /* Name of the logfile */
- EXTERN char username[16];  /* Who is using minicom? */
+@@ -294,7 +298,7 @@ extern int io_pending, pendingkeys;
+ void domacros(void);
+ 
+ 
+-void lockfile_create(void);
++int lockfile_create(void);
+ void lockfile_remove(void);
+ 
+ 
 Index: minicom-2.5/src/updown.c
 ===
 --- minicom-2.5.orig/src/updown.c
 +++ minicom-2.5/src/updown.c
-@@ -457,17 +457,28 @@ void updown(int what, int nr)
+@@ -29,6 +29,8 @@
+ #include 
+ #endif
+ 
++#include 
++
+ #include "port.h"
+ #include "minicom.h"
+ #include "intl.h"
+@@ -457,16 +459,31 @@ void updown(int what, int nr)
  
  void lockfile_remove(void)
  {
 +  if (portfd_is_socket)
 +return;
 +
++#if !HAVE_LOCKDEV
if (lockfile[0])
--unlink(lockfile);
-+ttyunlock(lockfile);
+ unlink(lockfile);
++#else
++  ttyunlock(dial_tty);
++#endif
  }
  
- void lockfile_create(void)
+-void lockfile_create(void)
++int lockfile_create(void)
  {
 -  int fd, n;
 +  int n;
@@ -114,21 +126,28 @@
 +#endif
 +
 +  if (portfd_is_socket)
-+return;
++return 0;
  
++#if !HAVE_LOCKDEV
if (!lockfile[0])
- return;
+-return;
++return 0;
  
-+#if !HAVE_LOCKDEV
n = umask(022);
/* Create lockfile compatib

commit minicom for openSUSE:Factory

2011-07-27 Thread h_root

Hello community,

here is the log from the commit of package minicom for openSUSE:Factory
checked in at Wed Jul 27 12:19:21 CEST 2011.




--- minicom/minicom.changes 2011-01-31 12:55:51.0 +0100
+++ /mounts/work_src_done/STABLE/minicom/minicom.changes2011-07-26 
11:27:09.0 +0200
@@ -1,0 +2,5 @@
+Tue Jul 26 09:24:27 UTC 2011 - vci...@novell.com
+
+- increased size of parameter buffers (bnc#707860) 
+
+---

calling whatdependson for head-i586


New:

  minicom-2.5-increase-parameter-buffers.patch



Other differences:
--
++ minicom.spec ++
--- /var/tmp/diff_new_pack.jogl1c/_old  2011-07-27 12:08:26.0 +0200
+++ /var/tmp/diff_new_pack.jogl1c/_new  2011-07-27 12:08:26.0 +0200
@@ -26,7 +26,7 @@
 Group:  Hardware/Modem
 Requires:   rzsz
 Version:2.5
-Release:1
+Release:7
 Summary:A Terminal Program
 Source: %{name}-%{version}.tar.bz2
 Patch0: minicom-2.2-defaults.diff
@@ -35,6 +35,8 @@
 Patch3: minicom-2.4-lockdev.diff
 Patch4: minicom-2.3-no-build-date.patch
 Patch5: minicom-2.4-norootsetup.diff
+# PATCH-FIX-UPSTREAM increased size of parameter buffers (bnc#707860) 
+Patch6: minicom-2.5-increase-parameter-buffers.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -45,13 +47,6 @@
 of the uucp group.
 
 
-
-Authors:
-
-Miquel van Smoorenburg 
-Jukka Lahtinen 
-Adam Lackorzynski 
-
 %prep
 %setup -q
 %patch0
@@ -60,6 +55,7 @@
 %patch3 -p1
 %patch4
 %patch5 -p1
+%patch6 -p1
 
 %build
 autoreconf --force --install

++ minicom-2.4-norootsetup.diff ++
--- /var/tmp/diff_new_pack.jogl1c/_old  2011-07-27 12:08:26.0 +0200
+++ /var/tmp/diff_new_pack.jogl1c/_new  2011-07-27 12:08:26.0 +0200
@@ -1,8 +1,8 @@
 save to ~/.minirc if not root
-Index: minicom-2.4/src/config.c
+Index: minicom-2.5/src/config.c
 ===
 minicom-2.4.orig/src/config.c
-+++ minicom-2.4/src/config.c
+--- minicom-2.5.orig/src/config.c
 minicom-2.5/src/config.c
 @@ -1234,7 +1234,7 @@ void vdodflsave(void)
  int dodflsave(void)
  {
@@ -12,7 +12,7 @@
  
if ((fp = fopen(fname, "w")) == NULL) {
  werror(_("Cannot write to %s"), fname);
-@@ -1287,6 +1287,7 @@ static void donamsave(void)
+@@ -1289,6 +1289,7 @@ static void donamsave(void)
s = input(_("Give name to save this configuration?"), ifile);
if (s != (char *)0 && *s != 0) {
  snprintf(parfile, sizeof(parfile), "%s/minirc.%s", CONFDIR, s);

++ minicom-2.5-increase-parameter-buffers.patch ++
Index: minicom-2.5/src/configsym.h
===
--- minicom-2.5.orig/src/configsym.h
+++ minicom-2.5/src/configsym.h
@@ -35,7 +35,7 @@
  * jl  10.02.2000 parameter P_STOPB
  */
 
-#define PARS_VAL_LEN 64
+#define PARS_VAL_LEN 256
 
 struct pars {
   /* value is first, so that (char *)mpars[0] == mpars[0].value */





Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org