pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/math/amath



Module Name:    pkgsrc
Committed By:   adam
Date:           Sat Apr 22 07:29:53 UTC 2017

Modified Files:
        pkgsrc/math/amath: Makefile PLIST distinfo
Removed Files:
        pkgsrc/math/amath/patches: patch-app_main.cpp patch-lib_platform.h

Log Message:
v1.8.0
- Fixed bugs in numeral systems.
- Fixed bugs related to infinity (Inf).
- Fixed bugs related to Not a Number (NaN).
- Updated and cleanup documentation.
- Cleaned up code structure.
- OpenLibm support.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/math/amath/Makefile \
    pkgsrc/math/amath/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/math/amath/PLIST
cvs rdiff -u -r1.1 -r0 pkgsrc/math/amath/patches/patch-app_main.cpp \
    pkgsrc/math/amath/patches/patch-lib_platform.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/math/amath/Makefile
diff -u pkgsrc/math/amath/Makefile:1.2 pkgsrc/math/amath/Makefile:1.3
--- pkgsrc/math/amath/Makefile:1.2      Fri Feb 17 17:09:16 2017
+++ pkgsrc/math/amath/Makefile  Sat Apr 22 07:29:53 2017
@@ -1,25 +1,33 @@
-# $NetBSD: Makefile,v 1.2 2017/02/17 17:09:16 joerg Exp $
+# $NetBSD: Makefile,v 1.3 2017/04/22 07:29:53 adam Exp $
 
-DISTNAME=      amath-1.6.2
-PKGREVISION=   1
+DISTNAME=      amath-1.8.0
 CATEGORIES=    math
-MASTER_SITES=  http://suyai.innolan.net/
+MASTER_SITES=  https://amath.innolan.net/
+MASTER_SITES+= http://suyai.innolan.net/
 
-MAINTAINER=    cs%innolan.dk@localhost
-HOMEPAGE=      http://amath.innolan.net/
+MAINTAINER=    cs%innolan.net@localhost
+HOMEPAGE=      https://amath.innolan.net/
 COMMENT=       Simple command line calculator
 LICENSE=       2-clause-bsd
 
-HAS_CONFIGURE= yes
-USE_LANGUAGES= c c++
+USE_LANGUAGES=         c c++
+USE_TOOLS+=            gmake
+HAS_CONFIGURE=         yes
+CONFIGURE_ARGS+=       --prefix=${PREFIX}
+CONFIGURE_ARGS+=       --mandir=man
+CONFIGURE_ARGS+=       --with-libm
+CONFIGURE_ARGS+=       CFLAGS=${CFLAGS:Q}
+CONFIGURE_ARGS+=       CXXFLAGS=${CXXFLAGS:Q}
+CONFIGURE_ARGS+=       LDFLAGS=${LDFLAGS:Q}
 
-INSTALLATION_DIRS=     bin
-BINNAME=               amath
+BUILD_TARGET=          static
+INSTALLATION_DIRS=     bin ${PKGMANDIR}/man1
 
 do-install:
-       ${INSTALL_PROGRAM} ${WRKSRC}/${BINNAME} ${DESTDIR}${PREFIX}/bin/${BINNAME}
+       ${INSTALL_PROGRAM} ${WRKSRC}/amath ${DESTDIR}${PREFIX}/bin/
+       ${INSTALL_MAN} ${WRKSRC}/amath.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
 
 do-test:
-       ${RUN} cd ${WRKSRC}; ${SETENV} ${TEST_ENV} ./${BINNAME} test
+       ${RUN} cd ${WRKSRC}; ${SETENV} ${TEST_ENV} ./amath test
 
 .include "../../mk/bsd.pkg.mk"
Index: pkgsrc/math/amath/distinfo
diff -u pkgsrc/math/amath/distinfo:1.2 pkgsrc/math/amath/distinfo:1.3
--- pkgsrc/math/amath/distinfo:1.2      Fri Feb 17 17:09:16 2017
+++ pkgsrc/math/amath/distinfo  Sat Apr 22 07:29:53 2017
@@ -1,8 +1,6 @@
-$NetBSD: distinfo,v 1.2 2017/02/17 17:09:16 joerg Exp $
+$NetBSD: distinfo,v 1.3 2017/04/22 07:29:53 adam Exp $
 
-SHA1 (amath-1.6.2.tar.gz) = 9efdf46ddb70128d920abd92c20c65c3ef700f00
-RMD160 (amath-1.6.2.tar.gz) = 101b5692ac6f77d0e05edff52736f4587b0313e2
-SHA512 (amath-1.6.2.tar.gz) = f05691da9930a209224846a014a5cb19b5c7ea1ac0a5b73db5f74905f741d800b3b4ddf5df0a8caceed15b291bd327a6bb1ff72b68764c269fa08c1ed427390b
-Size (amath-1.6.2.tar.gz) = 494838 bytes
-SHA1 (patch-app_main.cpp) = 52427c8a29cbe8f1c0157acbff48dc786baa88d8
-SHA1 (patch-lib_platform.h) = 0b97085d673cd2b077a0bcc5db8a4c253d7f0bea
+SHA1 (amath-1.8.0.tar.gz) = 2d0908f5d0cc72d9d3b8b695381b4be292e85f1e
+RMD160 (amath-1.8.0.tar.gz) = 08943bfdbf9fb7b23b118eb7bbc5a8e56143eb2a
+SHA512 (amath-1.8.0.tar.gz) = bc2f659cbeb043d488735ef34d83e6e51b62efb7c858ba2e9fb8c07796c325b6afbdca18f3d8779cb64daba6abe33081d728bf37ce1e59dcf25c312b6d65e2c0
+Size (amath-1.8.0.tar.gz) = 258709 bytes

Index: pkgsrc/math/amath/PLIST
diff -u pkgsrc/math/amath/PLIST:1.1 pkgsrc/math/amath/PLIST:1.2
--- pkgsrc/math/amath/PLIST:1.1 Mon Jan 30 19:49:26 2017
+++ pkgsrc/math/amath/PLIST     Sat Apr 22 07:29:53 2017
@@ -1,2 +1,3 @@
-@comment $NetBSD: PLIST,v 1.1 2017/01/30 19:49:26 leot Exp $
+@comment $NetBSD: PLIST,v 1.2 2017/04/22 07:29:53 adam Exp $
 bin/amath
+man/man1/amath.1



Home | Main Index | Thread Index | Old Index