Discussion:
[Numpy-discussion] Numpy V1.4.1 software license
Nguyen, Theresa X
2015-07-08 15:53:04 UTC
Permalink
Dear Sir/Madam,

Currently, I have a chance to review the software Numpy V1.4.1, I found some software that they had the Copyright but *no License* show as below:

1. File: ... numpy-1.4.1\numpy\distutils\fcompiler\absoft.py

# on windows: f90 -V -c dummy.f
# f90: Copyright Absoft Corporation 1994-1998 mV2; Cray Research, Inc. 1994-1996 CF90 (2.x.x.x f36t87) Version 2.3 Wed Apr 19, 2006 13:05:16

# samt5735(8)$ f90 -V -c dummy.f
# f90: Copyright Absoft Corporation 1994-2002; Absoft Pro FORTRAN Version 8.0

2. File: ... numpy-1.4.1\numpy\distutils\fcompiler\intel.py

#Intel(R) Fortran Itanium(R) Compiler for Itanium(R)-based applications
#Version 9.1 Build 20060928 Package ID: l_fc_c_9.1.039
#Copyright (C) 1985-2006 Intel Corporation. All rights reserved.
#30 DAY EVALUATION LICENSE


Would you please provide a License for these files.

Numpy V1.4.1 is released under BSD Style License. I wonder if these software can be released under the same license?

Thank you very much for your assistant.


Best Regards,
Theresa X. Nguyen
Benjamin Root
2015-07-08 15:57:28 UTC
Permalink
I think there is a misunderstanding. What you are seeing is documentation
on how to use f90 for compiling, which then outputs some stuff to the
terminal, which is being shown in the documentation. We don't actually
include any compilers in numpy.

Ben Root

On Wed, Jul 8, 2015 at 11:53 AM, Nguyen, Theresa X <
Post by Nguyen, Theresa X
Dear Sir/Madam,
Currently, I have a chance to review the software Numpy
V1.4.1, I found some software that they had the Copyright but *no License*
1. File: 
 numpy-1.4.1\numpy\distutils\fcompiler\
absoft.py
# on windows: f90 -V -c dummy.f
# f90: Copyright Absoft Corporation 1994-1998 mV2; Cray
Research, Inc. 1994-1996 CF90 (2.x.x.x f36t87) Version 2.3 Wed Apr 19,
2006 13:05:16
# samt5735(8)$ f90 -V -c dummy.f
# f90: Copyright Absoft Corporation 1994-2002; Absoft Pro FORTRAN Version 8.0
2. File: 
 numpy-1.4.1\numpy\distutils\fcompiler\intel.py
#Intel(R) Fortran Itanium(R) Compiler for Itanium(R)-based applications
#Version 9.1 Build 20060928 Package ID: l_fc_c_9.1.039
#Copyright (C) 1985-2006 Intel Corporation. All rights reserved.
#30 DAY EVALUATION LICENSE
Would you please provide a License for these files.
Numpy V1.4.1 is released under BSD Style License. I wonder if these
software can be released under the same license?
Thank you very much for your assistant.
Best Regards,
*Theresa X. Nguyen*
_______________________________________________
NumPy-Discussion mailing list
http://mail.scipy.org/mailman/listinfo/numpy-discussion
Matthew Brett
2015-07-08 15:58:55 UTC
Permalink
Hi,

On Wed, Jul 8, 2015 at 4:53 PM, Nguyen, Theresa X
Post by Nguyen, Theresa X
Dear Sir/Madam,
Currently, I have a chance to review the software Numpy
V1.4.1, I found some software that they had the Copyright but *no License*
1. File: … numpy-1.4.1\numpy\distutils\fcompiler\absoft.py
# on windows: f90 -V -c dummy.f
# f90: Copyright Absoft Corporation 1994-1998 mV2; Cray Research,
Inc. 1994-1996 CF90 (2.x.x.x f36t87) Version 2.3 Wed Apr 19, 2006 13:05:16
# samt5735(8)$ f90 -V -c dummy.f
# f90: Copyright Absoft Corporation 1994-2002; Absoft Pro FORTRAN Version 8.0
2. File: … numpy-1.4.1\numpy\distutils\fcompiler\intel.py
#Intel(R) Fortran Itanium(R) Compiler for Itanium(R)-based applications
#Version 9.1 Build 20060928 Package ID: l_fc_c_9.1.039
#Copyright (C) 1985-2006 Intel Corporation. All rights reserved.
#30 DAY EVALUATION LICENSE
Would you please provide a License for these files.
Numpy V1.4.1 is released under BSD Style License. I wonder if these
software can be released under the same license?
Thank you very much for your assistant.
Looking at these files, the parts you highlight look like example
output from running these programs on the command line, so the
copyright messages apply to those binaries, should you have them, not
to numpy.

Best,

Matthew

Loading...