>>> Building on exopi-5 under games/beret BDEPENDS = [devel/sdl-ttf;devel/sdl-mixer;devel/sdl-image] DIST = [games/beret:beret-1.2.1pl1.tar.gz] FULLPKGNAME = beret-1.2.1pl1p2 RDEPENDS = [devel/sdl-mixer;devel/sdl-ttf;devel/sdl-image] (Junk lock obtained for exopi-5 at 1713959284.88) >>> Running depends in games/beret at 1713959284.91 last junk was in x11/ion /usr/sbin/pkg_add -aI -Drepair sdl-image-1.2.12p5 sdl-mixer-1.2.12p5 sdl-ttf-2.0.11p3 was: /usr/sbin/pkg_add -aI -Drepair sdl-image-1.2.12p5 sdl-mixer-1.2.12p5 sdl-ttf-2.0.11p3 /usr/sbin/pkg_add -aI -Drepair sdl-image-1.2.12p5 sdl-mixer-1.2.12p5 sdl-ttf-2.0.11p3 >>> Running show-prepare-results in games/beret at 1713959286.50 ===> games/beret ===> Building from scratch beret-1.2.1pl1p2 ===> beret-1.2.1pl1p2 depends on: sdl-image-* -> sdl-image-1.2.12p5 ===> beret-1.2.1pl1p2 depends on: sdl-mixer-* -> sdl-mixer-1.2.12p5 ===> beret-1.2.1pl1p2 depends on: sdl-ttf-* -> sdl-ttf-2.0.11p3 ===> Verifying specs: c m SDL SDL_image SDL_mixer SDL_ttf pthread ===> found c.100.0 m.10.1 SDL.8.0 SDL_image.3.1 SDL_mixer.5.0 SDL_ttf.8.1 pthread.27.1 sdl-image-1.2.12p5 sdl-mixer-1.2.12p5 sdl-ttf-2.0.11p3 (Junk lock released for exopi-5 at 1713959287.28) distfiles size=44797481 >>> Running build in games/beret at 1713959287.31 ===> games/beret ===> Checking files for beret-1.2.1pl1p2 `/exopi-cvs/ports/distfiles/beret-1.2.1pl1.tar.gz' is up to date. >> (SHA256) beret-1.2.1pl1.tar.gz: OK ===> Extracting for beret-1.2.1pl1p2 ===> Patching for beret-1.2.1pl1p2 ===> Applying OpenBSD patch patch-Makefile Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |Index: Makefile |--- Makefile.orig |+++ Makefile -------------------------- Patching file Makefile using Plan A... Hunk #1 succeeded at 1. Hunk #2 succeeded at 8. done ===> Applying OpenBSD patch patch-game_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- game.c.orig Tue Jan 10 01:55:02 2012 |+++ game.c Thu Jan 12 11:33:20 2012 -------------------------- Patching file game.c using Plan A... Hunk #1 succeeded at 95. done ===> Compiler link: clang -> /usr/bin/clang ===> Compiler link: clang++ -> /usr/bin/clang++ ===> Compiler link: cc -> /usr/bin/cc ===> Compiler link: c++ -> /usr/bin/c++ ===> Generating configure for beret-1.2.1pl1p2 ===> Configuring for beret-1.2.1pl1p2 /usr/bin/perl /exopi-cvs/ports/infrastructure/bin/pkg_subst -DARCH=amd64 -DBASE_PKGPATH=games/beret -DFLAVOR_EXT= -DFULLPKGNAME=beret-1.2.1pl1p2 -DHOMEPAGE=https://kiwisauce.com/beret/ -DLOCALBASE=/usr/local -DLOCALSTATEDIR=/var -DMACHINE_ARCH=amd64 -DMAINTAINER=The\ OpenBSD\ ports\ mailing-list\ \ -DPREFIX=/usr/local -DRCDIR=/etc/rc.d -DSYSCONFDIR=/etc -DTRUEPREFIX=/usr/local -DX11BASE=/usr/X11R6 -DPKGSTEM=beret -i -B /exopi-obj/pobj/beret-1.2.1pl1 /exopi-obj/pobj/beret-1.2.1pl1/beret-1.2.1pl1/game.c ===> Building for beret-1.2.1pl1p2 cc -O2 -pipe -I/usr/local/include -I/usr/local/include/SDL -Wall -c game.c game.c:1249:31: warning: implicit conversion from 'double' to 'int' changes value from 2.5 to 2 [-Wliteral-conversion] beret.speed = bspeed?bspeed:WALK_SPEED; ~ ^~~~~~~~~~ game.c:46:20: note: expanded from macro 'WALK_SPEED' #define WALK_SPEED 2.5 ^~~ game.c:3965:11: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] if (abs(things[i].vx) < SNAPVEL && !things[i].nomove) { ^ game.c:3965:11: note: use function 'fabsf' instead if (abs(things[i].vx) < SNAPVEL && !things[i].nomove) { ^~~ fabsf game.c:3982:11: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] if (abs(things[i].vy) < SNAPVEL && !things[i].nomove) { ^ game.c:3982:11: note: use function 'fabsf' instead if (abs(things[i].vy) < SNAPVEL && !things[i].nomove) { ^~~ fabsf game.c:4272:14: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] int bvy = abs(beret.vy); ^ game.c:4272:14: note: use function 'fabsf' instead int bvy = abs(beret.vy); ^~~ fabsf 4 warnings generated. cc -O2 -pipe -I/usr/local/include -I/usr/local/include/SDL -Wall -c thing.c thing.c:371:6: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] if (abs(other->vx) < 10) { ^ thing.c:371:6: note: use function 'fabsf' instead if (abs(other->vx) < 10) { ^~~ fabsf thing.c:1245:17: warning: implicit conversion from 'double' to 'int' changes value from 2.5 to 2 [-Wliteral-conversion] this->speed = WALK_SPEED; ~ ^~~~~~~~~~ thing.c:22:20: note: expanded from macro 'WALK_SPEED' #define WALK_SPEED 2.5 ^~~ thing.c:1605:24: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] if (!this->jump && abs(this->vx) < 10 && this->timer == 0) { ^ thing.c:1605:24: note: use function 'fabsf' instead if (!this->jump && abs(this->vx) < 10 && this->timer == 0) { ^~~ fabsf thing.c:2063:11: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] if (abs(dx) > 6) this->vx = approach(this->vx, 3.5*pos_f(dx), 0.5); ^ thing.c:2063:11: note: use function 'fabsf' instead if (abs(dx) > 6) this->vx = approach(this->vx, 3.5*pos_f(dx), 0.5); ^~~ fabsf thing.c:2064:11: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] if (abs(dy) > 6) this->vy = approach(this->vy, 3.5*pos_f(dy), 0.5); ^ thing.c:2064:11: note: use function 'fabsf' instead if (abs(dy) > 6) this->vy = approach(this->vy, 3.5*pos_f(dy), 0.5); ^~~ fabsf thing.c:2085:9: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] if (abs(this->vx) < 2 && abs(this->vy) < 2) { ^ thing.c:2085:9: note: use function 'fabsf' instead if (abs(this->vx) < 2 && abs(this->vy) < 2) { ^~~ fabsf thing.c:2085:30: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] if (abs(this->vx) < 2 && abs(this->vy) < 2) { ^ thing.c:2085:30: note: use function 'fabsf' instead if (abs(this->vx) < 2 && abs(this->vy) < 2) { ^~~ fabsf thing.c:2410:19: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] float greater = abs(this->vx) > abs(this->vy) ? this->vx : this->vy; ^ thing.c:2410:19: note: use function 'fabsf' instead float greater = abs(this->vx) > abs(this->vy) ? this->vx : this->vy; ^~~ fabsf thing.c:2410:35: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] float greater = abs(this->vx) > abs(this->vy) ? this->vx : this->vy; ^ thing.c:2410:35: note: use function 'fabsf' instead float greater = abs(this->vx) > abs(this->vy) ? this->vx : this->vy; ^~~ fabsf thing.c:2411:18: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] int stepsize = abs(greater)/CORNER + 1; ^ thing.c:2411:18: note: use function 'fabsf' instead int stepsize = abs(greater)/CORNER + 1; ^~~ fabsf thing.c:2492:19: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] float greater = abs(this->vx) > abs(this->vy) ? this->vx : this->vy; ^ thing.c:2492:19: note: use function 'fabsf' instead float greater = abs(this->vx) > abs(this->vy) ? this->vx : this->vy; ^~~ fabsf thing.c:2492:35: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] float greater = abs(this->vx) > abs(this->vy) ? this->vx : this->vy; ^ thing.c:2492:35: note: use function 'fabsf' instead float greater = abs(this->vx) > abs(this->vy) ? this->vx : this->vy; ^~~ fabsf thing.c:2493:18: warning: using integer absolute value function 'abs' when argument is of floating point type [-Wabsolute-value] int stepsize = abs(greater)/CORNER + 1; ^ thing.c:2493:18: note: use function 'fabsf' instead int stepsize = abs(greater)/CORNER + 1; ^~~ fabsf thing.c:2519:21: warning: implicit conversion from 'double' to 'int' changes value from 2.5 to 2 [-Wliteral-conversion] this->speed = WALK_SPEED; ~ ^~~~~~~~~~ thing.c:22:20: note: expanded from macro 'WALK_SPEED' #define WALK_SPEED 2.5 ^~~ thing.c:2541:21: warning: implicit conversion from 'double' to 'int' changes value from 2.5 to 2 [-Wliteral-conversion] else this->speed = WALK_SPEED; ~ ^~~~~~~~~~ thing.c:22:20: note: expanded from macro 'WALK_SPEED' #define WALK_SPEED 2.5 ^~~ thing.c:2554:21: warning: implicit conversion from 'double' to 'int' changes value from 2.5 to 2 [-Wliteral-conversion] else this->speed = WALK_SPEED; ~ ^~~~~~~~~~ thing.c:22:20: note: expanded from macro 'WALK_SPEED' #define WALK_SPEED 2.5 ^~~ 16 warnings generated. cc -O2 -pipe -I/usr/local/include -I/usr/local/include/SDL -Wall -c physics.c cc -pthread -L/usr/local/lib -L/usr/X11R6/lib -lSDLmain -lSDL -lSDL_image -lSDL_ttf -lSDL_mixer -lm -o beret game.o thing.o physics.o game.c(game.o:(init)): warning: sprintf() is often misused, please use snprintf() game.c(game.o:(set_up_input)): warning: strcpy() is almost always misused, please use strlcpy() thing.c(thing.o:(rand_to)): warning: rand() may return deterministic values, is that what you want? >>> Running package in games/beret at 1713959292.95 ===> games/beret ===> Faking installation for beret-1.2.1pl1p2 /exopi-obj/pobj/beret-1.2.1pl1/bin/install -c -s -m 755 /exopi-obj/pobj/beret-1.2.1pl1/beret-1.2.1pl1/beret /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/bin /exopi-obj/pobj/beret-1.2.1pl1/bin/install -d -m 755 /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/doc/beret /exopi-obj/pobj/beret-1.2.1pl1/bin/install -c -m 644 /exopi-obj/pobj/beret-1.2.1pl1/beret-1.2.1pl1/lgpl-3.0.txt /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/doc/beret /exopi-obj/pobj/beret-1.2.1pl1/bin/install -c -m 644 /exopi-obj/pobj/beret-1.2.1pl1/beret-1.2.1pl1/OFL.txt /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/doc/beret /exopi-obj/pobj/beret-1.2.1pl1/bin/install -c -m 644 /exopi-obj/pobj/beret-1.2.1pl1/beret-1.2.1pl1/FONTLOG.txt /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/doc/beret /exopi-obj/pobj/beret-1.2.1pl1/bin/install -c -m 644 /exopi-obj/pobj/beret-1.2.1pl1/beret-1.2.1pl1/README.txt /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/doc/beret /exopi-obj/pobj/beret-1.2.1pl1/bin/install -d -m 755 /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/beret /exopi-obj/pobj/beret-1.2.1pl1/bin/install -c -m 644 /exopi-obj/pobj/beret-1.2.1pl1/beret-1.2.1pl1/AveriaSans-Regular.ttf /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/beret /exopi-obj/pobj/beret-1.2.1pl1/bin/install -d -m 755 /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/beret/images /exopi-obj/pobj/beret-1.2.1pl1/bin/install -c -m 644 /exopi-obj/pobj/beret-1.2.1pl1/beret-1.2.1pl1/images/* /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/beret/images /exopi-obj/pobj/beret-1.2.1pl1/bin/install -d -m 755 /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/beret/music /exopi-obj/pobj/beret-1.2.1pl1/bin/install -c -m 644 /exopi-obj/pobj/beret-1.2.1pl1/beret-1.2.1pl1/music/* /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/beret/music /exopi-obj/pobj/beret-1.2.1pl1/bin/install -d -m 755 /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/beret/rooms /exopi-obj/pobj/beret-1.2.1pl1/bin/install -c -m 644 /exopi-obj/pobj/beret-1.2.1pl1/beret-1.2.1pl1/rooms/* /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/beret/rooms /exopi-obj/pobj/beret-1.2.1pl1/bin/install -d -m 755 /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/beret/sfx /exopi-obj/pobj/beret-1.2.1pl1/bin/install -c -m 644 /exopi-obj/pobj/beret-1.2.1pl1/beret-1.2.1pl1/sfx/* /exopi-obj/pobj/beret-1.2.1pl1/fake-amd64/usr/local/share/beret/sfx ===> Building package for beret-1.2.1pl1p2 Create /exopi-cvs/ports/packages/amd64/all/beret-1.2.1pl1p2.tgz Creating package beret-1.2.1pl1p2 reading plist| checking dependencies| checking dependencies|devel/sdl-image checking dependencies|devel/sdl-mixer checking dependencies|devel/sdl-ttf checksumming| checksumming| | 0% checksumming| | 1% checksumming|* | 1% checksumming|* | 2% checksumming|** | 3% checksumming|** | 4% checksumming|*** | 4% checksumming|*** | 5% checksumming|**** | 6% checksumming|**** | 7% checksumming|***** | 8% checksumming|***** | 9% checksumming|****** | 10% checksumming|******* | 11% checksumming|******* | 12% checksumming|******** | 13% checksumming|********* | 14% checksumming|********* | 15% checksumming|********** | 16% checksumming|********** | 17% checksumming|*********** | 17% checksumming|*********** | 18% checksumming|*********** | 19% checksumming|************ | 19% checksumming|************ | 20% checksumming|************* | 21% checksumming|************* | 22% checksumming|************** | 22% checksumming|************** | 23% checksumming|************** | 24% checksumming|*************** | 24% checksumming|*************** | 25% checksumming|**************** | 26% checksumming|**************** | 27% checksumming|***************** | 28% checksumming|****************** | 29% checksumming|****************** | 30% checksumming|******************* | 31% checksumming|******************** | 32% checksumming|******************** | 33% checksumming|********************* | 34% checksumming|********************* | 35% checksumming|********************** | 35% checksumming|********************** | 36% checksumming|********************** | 37% checksumming|*********************** | 37% checksumming|*********************** | 38% checksumming|************************ | 39% checksumming|************************ | 40% checksumming|************************* | 40% checksumming|************************* | 41% checksumming|************************* | 42% checksumming|************************** | 42% checksumming|************************** | 43% checksumming|*************************** | 44% checksumming|*************************** | 45% checksumming|**************************** | 46% checksumming|***************************** | 47% checksumming|***************************** | 48% checksumming|****************************** | 49% checksumming|******************************* | 50% checksumming|******************************* | 51% checksumming|******************************** | 52% checksumming|******************************** | 53% checksumming|********************************* | 54% checksumming|********************************** | 55% checksumming|********************************** | 56% checksumming|*********************************** | 57% checksumming|*********************************** | 58% checksumming|************************************ | 58% checksumming|************************************ | 59% checksumming|************************************ | 60% checksumming|************************************* | 60% checksumming|************************************* | 61% checksumming|************************************** | 62% checksumming|************************************** | 63% checksumming|*************************************** | 63% checksumming|*************************************** | 64% checksumming|*************************************** | 65% checksumming|**************************************** | 65% checksumming|**************************************** | 66% checksumming|***************************************** | 67% checksumming|***************************************** | 68% checksumming|****************************************** | 69% checksumming|******************************************* | 70% checksumming|******************************************* | 71% checksumming|******************************************** | 72% checksumming|********************************************* | 73% checksumming|********************************************* | 74% checksumming|********************************************** | 75% checksumming|********************************************** | 76% checksumming|*********************************************** | 76% checksumming|*********************************************** | 77% checksumming|*********************************************** | 78% checksumming|************************************************ | 78% checksumming|************************************************ | 79% checksumming|************************************************* | 80% checksumming|************************************************* | 81% checksumming|************************************************** | 81% checksumming|************************************************** | 82% checksumming|************************************************** | 83% checksumming|*************************************************** | 83% checksumming|*************************************************** | 84% checksumming|**************************************************** | 85% checksumming|**************************************************** | 86% checksumming|***************************************************** | 87% checksumming|****************************************************** | 88% checksumming|****************************************************** | 89% checksumming|******************************************************* | 90% checksumming|******************************************************** | 91% checksumming|******************************************************** | 92% checksumming|********************************************************* | 93% checksumming|********************************************************* | 94% checksumming|********************************************************** | 95% checksumming|********************************************************** | 96% checksumming|*********************************************************** | 96% checksumming|*********************************************************** | 97% checksumming|************************************************************ | 98% checksumming|************************************************************ | 99% checksumming|*************************************************************| 99% checksumming|*************************************************************|100% archiving| archiving| | 0% archiving| | 1% archiving|* | 1% archiving|** | 2% archiving|** | 3% archiving|*** | 4% archiving|*** | 5% archiving|**** | 6% archiving|***** | 8% archiving|****** | 9% archiving|******* | 11% archiving|******* | 12% archiving|******** | 12% archiving|******** | 13% archiving|********* | 14% archiving|********* | 15% archiving|********** | 15% archiving|********** | 16% archiving|************* | 20% archiving|*************** | 23% archiving|***************** | 27% archiving|****************** | 29% archiving|********************* | 33% archiving|********************** | 34% archiving|*********************** | 37% archiving|************************** | 40% archiving|************************** | 41% archiving|***************************** | 45% archiving|******************************* | 49% archiving|********************************** | 53% archiving|************************************* | 57% archiving|************************************* | 58% archiving|**************************************** | 62% archiving|**************************************** | 63% archiving|******************************************* | 67% archiving|******************************************** | 68% archiving|******************************************** | 69% archiving|*********************************************** | 73% archiving|************************************************ | 74% archiving|************************************************** | 78% archiving|***************************************************** | 82% archiving|******************************************************* | 86% archiving|******************************************************** | 88% archiving|********************************************************* | 88% archiving|********************************************************* | 89% archiving|********************************************************* | 90% archiving|********************************************************** | 90% archiving|********************************************************** | 91% archiving|*********************************************************** | 92% archiving|*********************************************************** | 93% archiving|************************************************************ | 93% archiving|************************************************************ | 94% archiving|************************************************************* | 95% archiving|************************************************************* | 96% archiving|************************************************************** | 96% archiving|************************************************************** | 97% archiving|*************************************************************** | 98% archiving|*************************************************************** | 99% archiving|****************************************************************| 99% archiving|****************************************************************|100% Link to /exopi-cvs/ports/packages/amd64/ftp/beret-1.2.1pl1p2.tgz >>> Running clean in games/beret at 1713959307.92 ===> games/beret ===> Cleaning for beret-1.2.1pl1p2 >>> Ended at 1713959308.24 max_stuck=2.60/depends=1.59/show-prepare-results=0.81/build=5.64/package=14.96/clean=0.37