Re: [arch-general] [arch-dev-public] [signoff] ncurses-5.8-1
On Sun 27 Feb 2011 12:01 -0600, Dan McGee wrote:
On Sat, Feb 26, 2011 at 7:55 PM, Allan McRae <allan@archlinux.org> wrote:
On 27/02/11 10:40, Allan McRae wrote:
Major upstream update.
Test well. There is no soname bump, but experience tells me that some rebuilds will probably be required to fix minor issues.
I have rebuilt community/stfl to fix a crash (used by newsbeuter).
I will start a TODO list to keep track of packages that require moved with ncurses. If you do any rebuilds, please add the package to the list.
$ tig tig: Failed to create status window
I added it to the list (but didn't rebuild it).
Rebuild won't do it. tig wants to create zero sized windows which newwin() doesn't allow anymore. We could patch it with some arbitrary size which kind of works, but I emailed the developer to ask how he would deal with it.
[2011-02-27 16:04:26 -0500] Loui Chang:
Rebuild won't do it. tig wants to create zero sized windows which newwin() doesn't allow anymore. We could patch it with some arbitrary size which kind of works,
The oping program (from liboping in [community]) was doing the same, so I patched it like this: int width = 0; int height = 0; getmaxyx (stdscr, height, width); newwin (height, width, ..., ...); In fact, it was already using height before, only width was 0. -- Gaetan
On Sun, Feb 27, 2011 at 3:04 PM, Loui Chang <louipc.ist@gmail.com> wrote:
On Sun 27 Feb 2011 12:01 -0600, Dan McGee wrote:
On Sat, Feb 26, 2011 at 7:55 PM, Allan McRae <allan@archlinux.org> wrote:
On 27/02/11 10:40, Allan McRae wrote:
Major upstream update.
Test well. There is no soname bump, but experience tells me that some rebuilds will probably be required to fix minor issues.
I have rebuilt community/stfl to fix a crash (used by newsbeuter).
I will start a TODO list to keep track of packages that require moved with ncurses. If you do any rebuilds, please add the package to the list.
$ tig tig: Failed to create status window
I added it to the list (but didn't rebuild it).
Rebuild won't do it. tig wants to create zero sized windows which newwin() doesn't allow anymore. We could patch it with some arbitrary size which kind of works, but I emailed the developer to ask how he would deal with it.
Bagh! Thanks for looking into this and following up on the details, I appreciate it. -Dan
On Sun, 2011-02-27 at 17:06 -0600, Dan McGee wrote:
On Sun, Feb 27, 2011 at 3:04 PM, Loui Chang <louipc.ist@gmail.com> wrote:
On Sun 27 Feb 2011 12:01 -0600, Dan McGee wrote:
On Sat, Feb 26, 2011 at 7:55 PM, Allan McRae <allan@archlinux.org> wrote:
On 27/02/11 10:40, Allan McRae wrote:
Major upstream update.
Test well. There is no soname bump, but experience tells me that some rebuilds will probably be required to fix minor issues.
I have rebuilt community/stfl to fix a crash (used by newsbeuter).
I will start a TODO list to keep track of packages that require moved with ncurses. If you do any rebuilds, please add the package to the list.
$ tig tig: Failed to create status window
I added it to the list (but didn't rebuild it).
Rebuild won't do it. tig wants to create zero sized windows which newwin() doesn't allow anymore. We could patch it with some arbitrary size which kind of works, but I emailed the developer to ask how he would deal with it.
Bagh! Thanks for looking into this and following up on the details, I appreciate it.
-Dan
rtorrent is also broken, reported it upstream -- Jelle van der Waa
On 28/02/11 09:58, Jelle van der Waa wrote:
On Sun, 2011-02-27 at 17:06 -0600, Dan McGee wrote:
On Sun, Feb 27, 2011 at 3:04 PM, Loui Chang<louipc.ist@gmail.com> wrote:
On Sun 27 Feb 2011 12:01 -0600, Dan McGee wrote:
On Sat, Feb 26, 2011 at 7:55 PM, Allan McRae<allan@archlinux.org> wrote:
On 27/02/11 10:40, Allan McRae wrote:
Major upstream update.
Test well. There is no soname bump, but experience tells me that some rebuilds will probably be required to fix minor issues.
I have rebuilt community/stfl to fix a crash (used by newsbeuter).
I will start a TODO list to keep track of packages that require moved with ncurses. If you do any rebuilds, please add the package to the list.
$ tig tig: Failed to create status window
I added it to the list (but didn't rebuild it).
Rebuild won't do it. tig wants to create zero sized windows which newwin() doesn't allow anymore. We could patch it with some arbitrary size which kind of works, but I emailed the developer to ask how he would deal with it.
Bagh! Thanks for looking into this and following up on the details, I appreciate it.
-Dan
rtorrent is also broken, reported it upstream
It appears the rtorrent crash is also from setting windows sizes to zero. Here is a patch from a user: http://gbpaste.org/dMaa2 Allan
On Tue, Mar 1, 2011 at 2:11 PM, Allan McRae <allan@archlinux.org> wrote:
On 28/02/11 09:58, Jelle van der Waa wrote:
On Sun, 2011-02-27 at 17:06 -0600, Dan McGee wrote:
On Sun, Feb 27, 2011 at 3:04 PM, Loui Chang<louipc.ist@gmail.com> wrote:
On Sun 27 Feb 2011 12:01 -0600, Dan McGee wrote:
On Sat, Feb 26, 2011 at 7:55 PM, Allan McRae<allan@archlinux.org> wrote:
On 27/02/11 10:40, Allan McRae wrote: > > Major upstream update. > > Test well. There is no soname bump, but experience tells me that some > rebuilds will probably be required to fix minor issues. >
I have rebuilt community/stfl to fix a crash (used by newsbeuter).
I will start a TODO list to keep track of packages that require moved with ncurses. If you do any rebuilds, please add the package to the list.
$ tig tig: Failed to create status window
I added it to the list (but didn't rebuild it).
Rebuild won't do it. tig wants to create zero sized windows which newwin() doesn't allow anymore. We could patch it with some arbitrary size which kind of works, but I emailed the developer to ask how he would deal with it.
Bagh! Thanks for looking into this and following up on the details, I appreciate it.
-Dan
rtorrent is also broken, reported it upstream
It appears the rtorrent crash is also from setting windows sizes to zero. Here is a patch from a user: http://gbpaste.org/dMaa2
works on x86_64. thanks Allan.
On Tue, 2011-03-01 at 14:23 +0700, Emmanuel Benisty wrote:
On Tue, Mar 1, 2011 at 2:11 PM, Allan McRae <allan@archlinux.org> wrote:
On 28/02/11 09:58, Jelle van der Waa wrote:
On Sun, 2011-02-27 at 17:06 -0600, Dan McGee wrote:
On Sun, Feb 27, 2011 at 3:04 PM, Loui Chang<louipc.ist@gmail.com> wrote:
On Sun 27 Feb 2011 12:01 -0600, Dan McGee wrote:
On Sat, Feb 26, 2011 at 7:55 PM, Allan McRae<allan@archlinux.org> wrote: > > On 27/02/11 10:40, Allan McRae wrote: >> >> Major upstream update. >> >> Test well. There is no soname bump, but experience tells me that some >> rebuilds will probably be required to fix minor issues. >> > > I have rebuilt community/stfl to fix a crash (used by newsbeuter). > > I will start a TODO list to keep track of packages that require moved > with > ncurses. If you do any rebuilds, please add the package to the list.
$ tig tig: Failed to create status window
I added it to the list (but didn't rebuild it).
Rebuild won't do it. tig wants to create zero sized windows which newwin() doesn't allow anymore. We could patch it with some arbitrary size which kind of works, but I emailed the developer to ask how he would deal with it.
Bagh! Thanks for looking into this and following up on the details, I appreciate it.
-Dan
rtorrent is also broken, reported it upstream
It appears the rtorrent crash is also from setting windows sizes to zero. Here is a patch from a user: http://gbpaste.org/dMaa2
works on x86_64.
thanks Allan.
Another confirm that it works here, now trying to fix vifm, i will update rtorrent and push it to [testing] -- Jelle van der Waa
On Tue, 2011-03-01 at 22:31 +0100, Jelle van der Waa wrote:
On Tue, 2011-03-01 at 14:23 +0700, Emmanuel Benisty wrote:
On Tue, Mar 1, 2011 at 2:11 PM, Allan McRae <allan@archlinux.org> wrote:
On 28/02/11 09:58, Jelle van der Waa wrote:
On Sun, 2011-02-27 at 17:06 -0600, Dan McGee wrote:
On Sun, Feb 27, 2011 at 3:04 PM, Loui Chang<louipc.ist@gmail.com> wrote:
On Sun 27 Feb 2011 12:01 -0600, Dan McGee wrote: > > On Sat, Feb 26, 2011 at 7:55 PM, Allan McRae<allan@archlinux.org> > wrote: >> >> On 27/02/11 10:40, Allan McRae wrote: >>> >>> Major upstream update. >>> >>> Test well. There is no soname bump, but experience tells me that some >>> rebuilds will probably be required to fix minor issues. >>> >> >> I have rebuilt community/stfl to fix a crash (used by newsbeuter). >> >> I will start a TODO list to keep track of packages that require moved >> with >> ncurses. If you do any rebuilds, please add the package to the list. > > $ tig > tig: Failed to create status window > > I added it to the list (but didn't rebuild it).
Rebuild won't do it. tig wants to create zero sized windows which newwin() doesn't allow anymore. We could patch it with some arbitrary size which kind of works, but I emailed the developer to ask how he would deal with it.
Bagh! Thanks for looking into this and following up on the details, I appreciate it.
-Dan
rtorrent is also broken, reported it upstream
It appears the rtorrent crash is also from setting windows sizes to zero. Here is a patch from a user: http://gbpaste.org/dMaa2
works on x86_64.
thanks Allan.
Another confirm that it works here, now trying to fix vifm, i will update rtorrent and push it to [testing]
And patched vifm, thanks to falcondy too and `lorim. Not sure if the patch is really nice so I added it. -- Jelle van der Waa
On Tue, 2011-03-01 at 23:54 +0100, Jelle van der Waa wrote:
On Tue, 2011-03-01 at 22:31 +0100, Jelle van der Waa wrote:
On Tue, 2011-03-01 at 14:23 +0700, Emmanuel Benisty wrote:
On Tue, Mar 1, 2011 at 2:11 PM, Allan McRae <allan@archlinux.org> wrote:
On 28/02/11 09:58, Jelle van der Waa wrote:
On Sun, 2011-02-27 at 17:06 -0600, Dan McGee wrote:
On Sun, Feb 27, 2011 at 3:04 PM, Loui Chang<louipc.ist@gmail.com> wrote: > > On Sun 27 Feb 2011 12:01 -0600, Dan McGee wrote: >> >> On Sat, Feb 26, 2011 at 7:55 PM, Allan McRae<allan@archlinux.org> >> wrote: >>> >>> On 27/02/11 10:40, Allan McRae wrote: >>>> >>>> Major upstream update. >>>> >>>> Test well. There is no soname bump, but experience tells me that some >>>> rebuilds will probably be required to fix minor issues. >>>> >>> >>> I have rebuilt community/stfl to fix a crash (used by newsbeuter). >>> >>> I will start a TODO list to keep track of packages that require moved >>> with >>> ncurses. If you do any rebuilds, please add the package to the list. >> >> $ tig >> tig: Failed to create status window >> >> I added it to the list (but didn't rebuild it). > > Rebuild won't do it. tig wants to create zero sized windows which > newwin() doesn't allow anymore. We could patch it with some arbitrary > size which kind of works, but I emailed the developer to ask how he > would deal with it.
Bagh! Thanks for looking into this and following up on the details, I appreciate it.
-Dan
rtorrent is also broken, reported it upstream
It appears the rtorrent crash is also from setting windows sizes to zero. Here is a patch from a user: http://gbpaste.org/dMaa2
works on x86_64.
thanks Allan.
Another confirm that it works here, now trying to fix vifm, i will update rtorrent and push it to [testing]
And patched vifm, thanks to falcondy too and `lorim.
Not sure if the patch is really nice so I added it.
Hmm patch didn't get added, here is it again ;) -- Jelle van der Waa
On 02/03/11 09:54, Jelle van der Waa wrote:
On Tue, 2011-03-01 at 23:54 +0100, Jelle van der Waa wrote:
On Tue, 2011-03-01 at 22:31 +0100, Jelle van der Waa wrote:
On Tue, 2011-03-01 at 14:23 +0700, Emmanuel Benisty wrote:
On Tue, Mar 1, 2011 at 2:11 PM, Allan McRae<allan@archlinux.org> wrote:
On 28/02/11 09:58, Jelle van der Waa wrote:
On Sun, 2011-02-27 at 17:06 -0600, Dan McGee wrote: > > On Sun, Feb 27, 2011 at 3:04 PM, Loui Chang<louipc.ist@gmail.com> wrote: >> >> On Sun 27 Feb 2011 12:01 -0600, Dan McGee wrote: >>> >>> On Sat, Feb 26, 2011 at 7:55 PM, Allan McRae<allan@archlinux.org> >>> wrote: >>>> >>>> On 27/02/11 10:40, Allan McRae wrote: >>>>> >>>>> Major upstream update. >>>>> >>>>> Test well. There is no soname bump, but experience tells me that some >>>>> rebuilds will probably be required to fix minor issues. >>>>> >>>> >>>> I have rebuilt community/stfl to fix a crash (used by newsbeuter). >>>> >>>> I will start a TODO list to keep track of packages that require moved >>>> with >>>> ncurses. If you do any rebuilds, please add the package to the list. >>> >>> $ tig >>> tig: Failed to create status window >>> >>> I added it to the list (but didn't rebuild it). >> >> Rebuild won't do it. tig wants to create zero sized windows which >> newwin() doesn't allow anymore. We could patch it with some arbitrary >> size which kind of works, but I emailed the developer to ask how he >> would deal with it. > > Bagh! Thanks for looking into this and following up on the details, I > appreciate it. > > -Dan
rtorrent is also broken, reported it upstream
It appears the rtorrent crash is also from setting windows sizes to zero. Here is a patch from a user: http://gbpaste.org/dMaa2
works on x86_64.
thanks Allan.
Another confirm that it works here, now trying to fix vifm, i will update rtorrent and push it to [testing]
And patched vifm, thanks to falcondy too and `lorim.
Not sure if the patch is really nice so I added it.
Hmm patch didn't get added, here is it again ;)
Attachments do not work around here...
participants (6)
-
Allan McRae
-
Dan McGee
-
Emmanuel Benisty
-
Gaetan Bisson
-
Jelle van der Waa
-
Loui Chang