pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/gnucobol
Module Name: pkgsrc
Committed By: ryoon
Date: Sun Dec 17 04:54:15 UTC 2017
Modified Files:
pkgsrc/lang/gnucobol: Makefile PLIST distinfo
Removed Files:
pkgsrc/lang/gnucobol/patches: patch-configure
Log Message:
Update to 2.2
* Change PKGNAME as a name of tarball
Changelog:
GnuCOBOL 2.2 released (20170906)
* Move to GPL/LGPL 3
* New GnuCOBOL features (too much to list)
** User Defined Functions, FUNCTION-ID.
** New intrinsic functions
ABSOLUTE-VALUE alias for ABS
CURRENCY-SYMBOL CURRENCY-SYMBOL of the current program
FORMATTED-CURRENT-DATE ISO 8601 datetime function
FORMATTED-DATE ISO 8601 datetime function
FORMATTED-DATETIME ISO 8601 datetime function
FORMATTED-TIME ISO 8601 datetime function
TEST-FORMATTED-DATETIME ISO 8601 datetime function
INTEGER-OF-FORMATTED-DATE date to integer
HIGHEST-ALGEBRAIC now implemented
LOWEST-ALGEBRAIC now implemented
LOCALE-COMPARE now implemented
NUMVAL-F now implemented
TEST-NUMVAL now implemented
TEST-NUMVAL-C now implemented
TEST-NUMVAL-F now implemented
LENGTH-AN alias for BYTE-LENGTH
MODULE-CALLER-ID return the name of the caller
MODULE-DATE current module: compilation date
MODULE-TIME current module: compilation time
MODULE-FORMATTED-DATE current module: formatted datetime
MODULE-ID current module: PROGRAM-ID
MODULE-PATH current module: path on compile time
MODULE-SOURCE current module: name on compile time
MONETARY-DECIMAL-POINT LOCALE based fiscal decimal point
MONETARY-THOUSANDS-SEPARATOR LOCALE based fiscal visual grouping separator
Note:
The functions that are actually available as intrinsic functions depend
on the -std used. Function names that aren't marked as intrinsic functions
by the current -std can be used freely as user defined words or
even as user defined functions.
** New system functions
C$CALLEDBY return the name of the caller
CBL_GC_FORK fork current process (not on Windows)
CBL_GC_WAITPID wait for process to end
CBL_GC_GETOPT (CBL_OC_GETOPT) comand lineoption parser for COBOL
CBL_GC_PRINTABLE (C$PRINTABLE) check if character is printable
CBL_GC_HOSTED (CBL_OC_HOSTED) provides access to C extern variables,
like stdin, errno
CBL_GC_NANOSLEEP CBL_OC_NANOSLEEP
CBL_GET_SCR_SIZE get current terminal size - if any
CBL_READ_KBD_CHAR get character from terminal
CBL_SET_CSR_POS set current position on terminal
x'E4' clear terminal screen
x'E5' ring the bell
** many new / extended COBOL statements from COBOL2002/2014 and extensions
from different COBOL dialects
** more SWITCHes: from SWITCH-01 to SWITCH-36 and its variants from many
COBOL dialects
** more IEEE numeric types added, FLOAT-DECIMAL-16, FLOAT-DECIMAL-34, etc
** more literal types added, numeric boolean etc.
** most of the COBOL 2014 spec Compiler Directive Facility is in
** optional: stricter syntax checks
** refactored and extended compiler and runtime messages with available
translations (currently to Spanish, Portuguese and Dutch, partial to German)
** screen IO: many extended ACCEPT DISPLAY and SCREEN SECTION changes
** Direct call interface for C:
CALL-CONVENTIONS for CALLs and PROCEDURE DIVISION
SIZE of parameters specified for CALL ... BY VALUE
RETURN NOTHING for calling void functions
RETURN ADDRESS OF VAR for calling functions returning a pointer
PROCEDURE DIVISION RETURNING OMITTED -> callable as void function
** Much, much more!
* New cobc options:
** New -std options:
cobol2014 COBOL 2014 Standard
xopen X/Open COBOL Standard
mf-strict Micro Focus COBOL compatibility - strict
ibm-strict IBM COBOL compatibility - strict
ibm-strict MVS/VM COBOL compatibility - strict
acu ACUCOBOL-GT compatibility
acu-strict ACUCOBOL-GT compatibility - strict
bs2000 BS2000 COBOL compatibility (back again)
bs2000-strict BS2000 COBOL compatibility - strict
rm RM-COBOL compatibility
rm-strict RM-COBOL compatibility - strict
Note:
The GnuCOBOL compiler tries to limit both the feature-set and reserved words
to the specified compiler when the "strict" dialects are used.
COBOL sources compiled with these dialects are therefore likely to compile
with the specified compiler and vice versa: sources that were compiled on
the specified compiler should compile without any issues with GnuCOBOL.
With the "non-strict" dialects GnuCOBOL will activate the complete
feature-set where it doesn't directly conflict with the specified dialect,
including reserved words and GnuCOBOL specific extensions.
COBOL sources compiled with these dialects therefore may work only
with GnuCOBOL. COBOL sources may need a change because of rich feature-set
and reserved words in GnuCOBOL, otherwise offending words may be removed
by `-fno-reserved=word`.
COBOL-85, X/Open COBOL, COBOL 2002 and COBOL 2014 are always "strict".
** New listing options:
-t listing, -T wide listing, --tlines=lines, lines per page of listing
-Xref
Note: -P, generate preprocessor listing, is still available (and improved)
** All compiler configuration flags may be set on command line
to override a specific setting of the current -std, see cobc --help
** All Warnings can be explicit enabled/disabled or even marked as error,
see cobc --help
-Wunreachable report on possible unreachable statements
** Options for the C compiler/linker:
-K <entry>, compile entry point as static (resolve at link time)
-A, add options to C compile phase
-Q, add options to C link phase
** Miscellaneous
-i -info, display build/environment
-D define symbol for Compiler Directive Facility
-j -job=args, run job after compile
input filename of '-' reads source from standard in
For more: see cobc --help
* New cobcrun options:
-i -info, display build/environment
-r -runtime-env, display runtime configuration
-c -config, set runtime config from file
-M -module, set path/module name when looking for entry
* New build features
make test downloads NIST testsuite if necessary
now usable with parallel builds (make -j4 test)
make checkall runs both the internal an NIST testsuite
** testsuite defaults to coloured output
** Windows(tm) Visual Studio build support files added,
options to validate the software generated with VS against both test suites
** removed maintainer mode - if files need a rebuild because of a change
they are always rebuild
** help2man, bison and flex are checked during configure,
if they need to be invoked and are missing a useful error message is given
** All files created by GnuCOBOL runtime use the same file permission settings
now: COB_FILE_MODE which was changed to 0666
** changed unix package name from "gnu-cobol" to "gnucobol"
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/lang/gnucobol/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/gnucobol/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/lang/gnucobol/distinfo
cvs rdiff -u -r1.3 -r0 pkgsrc/lang/gnucobol/patches/patch-configure
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/lang/gnucobol/Makefile
diff -u pkgsrc/lang/gnucobol/Makefile:1.5 pkgsrc/lang/gnucobol/Makefile:1.6
--- pkgsrc/lang/gnucobol/Makefile:1.5 Thu Jan 5 15:36:24 2017
+++ pkgsrc/lang/gnucobol/Makefile Sun Dec 17 04:54:15 2017
@@ -1,19 +1,19 @@
-# $NetBSD: Makefile,v 1.5 2017/01/05 15:36:24 roy Exp $
+# $NetBSD: Makefile,v 1.6 2017/12/17 04:54:15 ryoon Exp $
#
-DISTNAME= gnu-cobol-2.0_rc-1
-PKGNAME= opencobol-2.0rc1
+DISTNAME= gnucobol-2.2
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=open-cobol/}
MAINTAINER= rodo%bloerp.de@localhost
-HOMEPAGE= https://sourceforge.net/projects/open-cobol/
+HOMEPAGE= https://open-cobol.sourceforge.io/
COMMENT= Open-source COBOL compiler
-LICENSE= gnu-gpl-v3
+LICENSE= gnu-gpl-v3 AND gnu-lgpl-v3
CONFLICTS= opensource-cobol-[0-9]* open-cobol-ce-[0-9]*
+CONFLICTS+= opencobol-[0-9]*
-WRKSRC= ${WRKDIR}/gnu-cobol-2.0
+CHECK_PORTABILITY_SKIP= tests/testsuite
BDB_ACCEPTED= db4 db5
USE_LIBTOOL= yes
@@ -25,7 +25,11 @@ CONFIGURE_ARGS+= --with-lfs
CONFIGURE_ARGS+= --without-readline
INFO_FILES= yes
-CONFIGURE_ENV+= cobdb=${BDB_TYPE}
+SUBST_CLASSES+= bdb
+SUBST_MESSAGE.bdb= Detect pkgsrc Berkeley DB library
+SUBST_STAGE.bdb= pre-configure
+SUBST_FILES.bdb= configure
+SUBST_SED.bdb= -e 's,db-$$COB_BDB_HEADER,${BDB_TYPE},g'
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../devel/gmp/buildlink3.mk"
Index: pkgsrc/lang/gnucobol/PLIST
diff -u pkgsrc/lang/gnucobol/PLIST:1.2 pkgsrc/lang/gnucobol/PLIST:1.3
--- pkgsrc/lang/gnucobol/PLIST:1.2 Sat Oct 15 13:40:40 2016
+++ pkgsrc/lang/gnucobol/PLIST Sun Dec 17 04:54:15 2017
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2016/10/15 13:40:40 wen Exp $
+@comment $NetBSD: PLIST,v 1.3 2017/12/17 04:54:15 ryoon Exp $
bin/cob-config
bin/cobc
bin/cobcrun
@@ -7,26 +7,47 @@ include/libcob/cobgetopt.h
include/libcob/common.h
include/libcob/exception.def
info/gnucobol.info
-lib/gnu-cobol/CBL_OC_DUMP.so
+lib/gnucobol/CBL_OC_DUMP.so
lib/libcob.la
man/man1/cobc.1
man/man1/cobcrun.1
-share/gnu-cobol/config/acu.conf
-share/gnu-cobol/config/bs2000.conf
-share/gnu-cobol/config/cobol2002.conf
-share/gnu-cobol/config/cobol2014.conf
-share/gnu-cobol/config/cobol85.conf
-share/gnu-cobol/config/default.conf
-share/gnu-cobol/config/ibm.conf
-share/gnu-cobol/config/mf.conf
-share/gnu-cobol/config/mvs.conf
-share/gnu-cobol/config/runtime.cfg
-share/gnu-cobol/config/runtime_empty.cfg
-share/gnu-cobol/copy/screenio.cpy
-share/gnu-cobol/copy/sqlca.cpy
-share/gnu-cobol/copy/sqlda.cpy
-share/locale/en@boldquot/LC_MESSAGES/gnu-cobol.mo
-share/locale/en@quot/LC_MESSAGES/gnu-cobol.mo
-share/locale/es/LC_MESSAGES/gnu-cobol.mo
-share/locale/ja/LC_MESSAGES/gnu-cobol.mo
-share/locale/nl/LC_MESSAGES/gnu-cobol.mo
+share/gnucobol/config/acu-strict.conf
+share/gnucobol/config/acu.conf
+share/gnucobol/config/acu.words
+share/gnucobol/config/bs2000-strict.conf
+share/gnucobol/config/bs2000.conf
+share/gnucobol/config/bs2000.words
+share/gnucobol/config/cobol2002.conf
+share/gnucobol/config/cobol2002.words
+share/gnucobol/config/cobol2014.conf
+share/gnucobol/config/cobol2014.words
+share/gnucobol/config/cobol85.conf
+share/gnucobol/config/cobol85.words
+share/gnucobol/config/default.conf
+share/gnucobol/config/ibm-strict.conf
+share/gnucobol/config/ibm.conf
+share/gnucobol/config/ibm.words
+share/gnucobol/config/lax.conf-inc
+share/gnucobol/config/mf-strict.conf
+share/gnucobol/config/mf.conf
+share/gnucobol/config/mf.words
+share/gnucobol/config/mvs-strict.conf
+share/gnucobol/config/mvs.conf
+share/gnucobol/config/mvs.words
+share/gnucobol/config/rm-strict.conf
+share/gnucobol/config/rm.conf
+share/gnucobol/config/rm.words
+share/gnucobol/config/runtime.cfg
+share/gnucobol/config/runtime_empty.cfg
+share/gnucobol/config/xopen.conf
+share/gnucobol/copy/screenio.cpy
+share/gnucobol/copy/sqlca.cpy
+share/gnucobol/copy/sqlda.cpy
+share/locale/de/LC_MESSAGES/gnucobol.mo
+share/locale/en@boldquot/LC_MESSAGES/gnucobol.mo
+share/locale/en@quot/LC_MESSAGES/gnucobol.mo
+share/locale/es/LC_MESSAGES/gnucobol.mo
+share/locale/it/LC_MESSAGES/gnucobol.mo
+share/locale/ja/LC_MESSAGES/gnucobol.mo
+share/locale/nl/LC_MESSAGES/gnucobol.mo
+share/locale/pt/LC_MESSAGES/gnucobol.mo
Index: pkgsrc/lang/gnucobol/distinfo
diff -u pkgsrc/lang/gnucobol/distinfo:1.4 pkgsrc/lang/gnucobol/distinfo:1.5
--- pkgsrc/lang/gnucobol/distinfo:1.4 Sat Oct 15 13:40:40 2016
+++ pkgsrc/lang/gnucobol/distinfo Sun Dec 17 04:54:15 2017
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.4 2016/10/15 13:40:40 wen Exp $
+$NetBSD: distinfo,v 1.5 2017/12/17 04:54:15 ryoon Exp $
-SHA1 (gnu-cobol-2.0_rc-1.tar.gz) = 8694b66218a6c02b9cba44094d5d736d8a1b6ded
-RMD160 (gnu-cobol-2.0_rc-1.tar.gz) = bcdf2bc096f4fe26cbcc8e2bb33cf5736417018b
-SHA512 (gnu-cobol-2.0_rc-1.tar.gz) = b6bab2cda3bbf15cb3e063b644f8387176c7c2a30f60611480e2ec7de150d2c43a73a6198c24974c416d1732c71d7b518af7ecd4db7fd0f784278340a95185f7
-Size (gnu-cobol-2.0_rc-1.tar.gz) = 2206047 bytes
-SHA1 (patch-configure) = e225df80bb48110d8156429b925dbed3d9f57cc2
+SHA1 (gnucobol-2.2.tar.gz) = 23a45625d23700593b5eea09f8f52dd628b9bcf5
+RMD160 (gnucobol-2.2.tar.gz) = ec17eca4de2e2b9b129b38f5ed260fcf27f4a71a
+SHA512 (gnucobol-2.2.tar.gz) = 2ac209af6c7251b3fc5a7b8a2cfe490bfea16640dbf4d56d79708d688d99c4bfd577ff3f9523962392e81ebe0efea6985b964449c44a4cfa6af5119d1c1bab56
+Size (gnucobol-2.2.tar.gz) = 2660284 bytes
Home |
Main Index |
Thread Index |
Old Index