>>> Building on exopi-1 under astro/wmsun DIST = [astro/wmsun:wmSun-1.03.tar.gz] FULLPKGNAME = wmsun-1.03p6 distfiles size=49744 >>> Running build in astro/wmsun at 1764613863.73 ===> astro/wmsun ===> Building from scratch wmsun-1.03p6 ===> Verifying specs: X11 Xext Xpm c m ===> found X11.19.0 Xext.13.0 Xpm.10.0 c.102.2 m.10.1 ===> Checking files for wmsun-1.03p6 `/exopi-cvs/ports/distfiles/wmSun-1.03.tar.gz' is up to date. >> (SHA256) all files: OK ===> Extracting for wmsun-1.03p6 for i in wmSun.o SunRise.o ../wmgeneral/wmgeneral.o ; do rm -f $i; done rm -f wmSun ===> Patching for wmsun-1.03p6 ===> Applying OpenBSD patch patch-Makefile Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- wmSun/Makefile.orig Wed Jan 6 03:28:39 1999 |+++ wmSun/Makefile Tue Dec 18 10:23:20 2007 -------------------------- Patching file wmSun/Makefile using Plan A... Hunk #1 succeeded at 1. Hunk #2 succeeded at 19. Hunk #3 succeeded at 35. done ===> Applying OpenBSD patch patch-wmSun_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- wmSun/wmSun.c.orig Thu Feb 4 18:43:09 1999 |+++ wmSun/wmSun.c Tue Jan 9 18:05:54 2001 -------------------------- Patching file wmSun/wmSun.c using Plan A... Hunk #1 succeeded at 129. done ===> Applying OpenBSD patch patch-wmgeneral_wmgeneral_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |Index: wmgeneral/wmgeneral.c |--- wmgeneral/wmgeneral.c.orig |+++ wmgeneral/wmgeneral.c -------------------------- Patching file wmgeneral/wmgeneral.c using Plan A... Hunk #1 succeeded at 51. done ===> Applying OpenBSD patch patch-wmgeneral_wmgeneral_h Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |Index: wmgeneral/wmgeneral.h |--- wmgeneral/wmgeneral.h.orig |+++ wmgeneral/wmgeneral.h -------------------------- Patching file wmgeneral/wmgeneral.h using Plan A... Hunk #1 succeeded at 28. 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 wmsun-1.03p6 ===> Configuring for wmsun-1.03p6 ===> Building for wmsun-1.03p6 cc -O2 -pipe -I/usr/X11R6/include -c wmSun.c -o wmSun.o wmSun.c:224:7: warning: call to undeclared function 'SunRise'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 224 | SunRise(Year, Month, DayOfMonth, LocalHour, <Rise, <Set); | ^ 1 warning generated. cc -O2 -pipe -I/usr/X11R6/include -c SunRise.c -o SunRise.o SunRise.c:14:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 14 | SunRise(int year, int month, int day, double LocalHour, double *UTRise, double *UTSet){ | ^ | int SunRise.c:27:14: warning: passing arguments to 'SinH' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 27 | ym = SinH(year, month, day, UT-1.0) - SinH0; | ^ SunRise.c:31:11: warning: passing arguments to 'SinH' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 31 | y0 = SinH(year, month, day, UT) - SinH0; | ^ SunRise.c:32:11: warning: passing arguments to 'SinH' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 32 | yp = SinH(year, month, day, UT+1.0) - SinH0; | ^ SunRise.c:34:2: warning: call to undeclared function 'Interp'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 34 | Interp(ym, y0, yp, &xe, &ye, &z1, &z2, &nz); | ^ SunRise.c:68:25: warning: passing arguments to 'hour24' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 68 | *UTRise = hour24(*UTRise); | ^ SunRise.c:75:24: warning: passing arguments to 'hour24' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 75 | *UTSet = hour24(*UTSet); | ^ SunRise.c:80:1: warning: non-void function does not return a value [-Wreturn-type] 80 | } | ^ SunRise.c:83:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 83 | UTTohhmm(double UT, int *h, int *m){ | ^ | int SunRise.c:94:1: warning: non-void function does not return a value [-Wreturn-type] 94 | } | ^ SunRise.c:101:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 101 | Interp(double ym, double y0, double yp, double *xe, double *ye, double *z1, double *z2, int *nz){ | ^ | int SunRise.c:17:28: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 17 | double xe, ye, z1, z2, SinH(), hour24(); | ^ SunRise.c:130:8: note: conflicting prototype is here 130 | double SinH(int year, int month, int day, double UT){ | ^ SunRise.c:137:14: warning: passing arguments to 'jd' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 137 | TU0 = (jd(year, month, day, 0.0) - 2451545.0)/36525.0; | ^ SunRise.c:139:13: warning: passing arguments to 'jd' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 139 | TU = (jd(year, month, day, UT+62.0/3600.0) - 2451545.0)/36525.0; | ^ SunRise.c:143:16: warning: passing arguments to 'frac' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 143 | M = P2*frac(0.993133 + 99.997361*TU); | ^ SunRise.c:145:16: warning: passing arguments to 'frac' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 145 | L = P2*frac(0.7859453 + M/P2 + (6191.2*TU+DL)/1296e3); | ^ SunRise.c:157:19: warning: passing arguments to 'frac' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 157 | UT = 24.0*frac( UT/24.0 ); | ^ SunRise.c:162:21: warning: passing arguments to 'frac' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 162 | lmst = 24.0*frac( (gmst-Glon/15.0) / 24.0 ); | ^ SunRise.c:175:8: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 175 | double jd(ny, nm, nd, UT) | ^ SunRise.c:212:8: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 212 | double hour24(hour) | ^ SunRise.c:132:61: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 132 | double TU0, TU, TU2, TU3, LambdaMoon, BetaMoon, R, AGE, frac(), jd(); | ^ SunRise.c:230:8: note: conflicting prototype is here 230 | double frac(double x){ | ^ cc -O2 -pipe -I/usr/X11R6/include -c ../wmgeneral/wmgeneral.c -o ../wmgeneral/wmgeneral.o 21 warnings generated. cc -o wmSun wmSun.o SunRise.o ../wmgeneral/wmgeneral.o -L/usr/X11R6/lib -lXpm -lX11 -lXext -lm >>> Running package in astro/wmsun at 1764613865.40 ===> astro/wmsun ===> Faking installation for wmsun-1.03p6 /exopi-obj/pobj/wmsun-1.03/bin/install -c -s -m 755 wmSun /exopi-obj/pobj/wmsun-1.03/fake-amd64/usr/local/bin /exopi-obj/pobj/wmsun-1.03/bin/install -c -m 644 wmSun.1 /exopi-obj/pobj/wmsun-1.03/fake-amd64/usr/local/man/man1 ===> Building package for wmsun-1.03p6 Create /exopi-cvs/ports/packages/amd64/all/wmsun-1.03p6.tgz Creating package wmsun-1.03p6 reading plist| checking dependencies| checksumming| checksumming| | 0% checksumming|**** | 7% checksumming|********* | 14% checksumming|************* | 21% checksumming|***************** | 29% checksumming|********************** | 36% checksumming|************************** | 43% checksumming|******************************* | 50% checksumming|*********************************** | 57% checksumming|*************************************** | 64% checksumming|******************************************** | 71% checksumming|************************************************ | 79% checksumming|**************************************************** | 86% checksumming|********************************************************* | 93% checksumming|*************************************************************|100% archiving| archiving| | 0% archiving|*************************************************************** | 98% archiving|****************************************************************|100% Link to /exopi-cvs/ports/packages/amd64/ftp/wmsun-1.03p6.tgz >>> Running clean in astro/wmsun at 1764613866.77 ===> astro/wmsun ===> Cleaning for wmsun-1.03p6 >>> Ended at 1764613867.02 max_stuck=0.20/build=1.67/package=1.37/clean=0.28