Re: update games/brogue

2024-05-06 Thread Anton Konyahin
On 02/05, Thomas Frohwein wrote: > On Fri, Apr 19, 2024 at 10:07:28PM +0200, Solene Rapenne wrote: > > this updates brogue to latest version, it introduces a quick game > > mode > > > > the Recordings.c patch isn't needed, upstream is now casting the > > variable to unsigned long long instead of

Re: [new] brogue-1.12

2023-05-14 Thread Anton Konyahin
One more ping for games/brogue On 07/05, Anton Konyahin wrote: On 02/05, Omar Polo wrote: On 2023/05/02 22:21:59 +0300, Anton Konyahin wrote: On 02/05, Omar Polo wrote: I'm recluntant to patch like this an upstream software since while for now it could work fine, these kind of changes

Re: [new] brogue-1.12

2023-05-07 Thread Anton Konyahin
On 02/05, Omar Polo wrote: On 2023/05/02 22:21:59 +0300, Anton Konyahin wrote: On 02/05, Omar Polo wrote: >I'm recluntant to patch like this an upstream software since while >for now it could work fine, these kind of changes are very likely to >break in future updates. At first

Re: [new] brogue-1.12

2023-05-02 Thread Anton Konyahin
On 02/05, Omar Polo wrote: Instead, I'd follow what upstream suggests and ship a scripts that "cd" into $XDG_DATA_HOME/Brogue before running the game. This is a nice trick! I dont thought about it in that way. I'm recluntant to patch like this an upstream software since while for now it

[new] brogue-1.12

2023-05-01 Thread Anton Konyahin
Hello! I made a port for brogue game, roguelike adventure game with (or without) X11 support. I played a lot on amd64 and everything working fine. But I have a question about game's score. Currently in PLIST I use @sample /var/games/brogue/ and, in runtime, game creates a txt score file

Re: update-patches example from guide doesn't work

2023-03-31 Thread Anton Konyahin
Thank you and Stuart for help. Everything is fine after upgrading to the current version. On 30/03, Thomas Frohwein wrote: On Thu, Mar 30, 2023 at 10:31:31AM +0300, Anton Konyahin wrote: [...] But make ignores files with .orig.port postfix, patches appears only for just .orig. In man

update-patches example from guide doesn't work

2023-03-30 Thread Anton Konyahin
Hello. I try to make my first port and going through Porting Guide[1]. It has a example about making patches: cd `make show=WRKSRC` ; cp foo/bar.c{,.orig.port} edit foo/bar.c to fix the error. cd - ; make update-patches this will create patches/patch-foo_bar_c with your modifications. But