| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.
PR: 238330
|
|
|
|
|
|
|
| |
benefit from the improved situation where libgcc_s is only used when
absolutely necessary.
Suggested by: tijl
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.
PR: 231590
|
|
|
|
|
|
|
|
| |
Release notes at:
<https://portal.hdfgroup.org/display/HDF5/Software+Changes+from+Release+to+Release+for+HDF5-1.8#SoftwareChangesfromReleasetoReleaseforHDF5-1.8-Release1.8.21ofMay2018versusRelease1.8.20>
PR: 233071
Submitted by: wenheping2000 (at) hotmail.com (Original maintainer)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which
has now moved from GCC 6 to GCC 7 by default.
This includes ports
- featuring USE_GCC=yes or USE_GCC=any,
- featuring USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and those
- with USES=compiler specifying one of openmp, nestedfct, c11, c++0x,
c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib.
PR: 222542
|
|
|
|
|
| |
PR: 227857
Submitted by: jwb
|
|
|
|
| |
running under QEMU 2.9.0.
|
| |
|
|
|
|
|
| |
Release notes at
https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.8/hdf5-1.8.20/src/hdf5-1.8.20-RELEASE.txt
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from
GCC 5.4 to GCC 6.4 under most circumstances.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang,
c++14-lang, c++0x, c11, or gcc-c++11-lib.
PR: 219275
|
|
|
|
|
| |
Changelog at
<https://support.hdfgroup.org/HDF5/doc1.8/ADGuide/Changes.html#1819>.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using using Mk/bsd.octave.mk which in turn has USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
c++11-lang, c++0x, c11, or gcc-c++11-lib.
PR: 216707
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some
circumstances such as versions of FreeBSD or platforms), part II.
The first part covered ports with USE_GCC=yes, USE_GCC=any, or one of
gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang,
c++11-lang, c++0x, c11 requested via USES=compiler.
This adds ports with USES=fortran and ports using Mk/bsd.octave.mk
which in turn has USES=fortran.
PR: 214965
Reported by: thierry
|
|
|
|
| |
Changelog at https://support.hdfgroup.org/HDF5/doc1.8/ADGuide/Changes.html#1818
|
|
|
|
|
| |
Two releases of HDF5 are available for download. HDF5-1.10 should read files
created with earlier releases, but problem arise with MED and this version.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
exists, libtool will add all libraries libB.la refers to (dependency_libs
field) to the linker command line and store them in the dependency_libs
field of libA.la. So everything that subsequently links with libA will also
link to these extra libraries. This causes too much overlinking.
This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs
field in .la libraries during staging. However, because .la libraries have
very limited use when dependency_libs is empty it makes sense to completely
remove them during staging.
So with this commit USES=libtool is modified to remove .la libraries and a
new form (USES=libtool:keepla) is introduced in case they need to be kept
(dependency_libs is still emptied).
PORTREVISION is bumped on all ports with USES=libtool that install .la
libraries. Most ports are also changed to add :keepla because .la
libraries have to be kept around as long as there are dependent ports with
.la libraries that refer to them in their dependency_libs field. In most
cases :keepla can be removed again as soon as all dependent ports that
install .la libraries have some form of USES=libtool added to their
Makefile.
PR: ports/188759
Exp-run: bdrewery
Approved by: portmgr (bdrewery)
|
|
|
|
|
|
| |
- Use new LIB_DEPENDS syntax
Approved by: portmgr (blanket)
|
|
|
|
|
|
|
| |
on versions of FreeBSD where the base system binutils is too old to link
object files generated by lang/gcc (gfortran).
PR: ports/187252
|
|
|
|
|
|
|
|
|
|
|
| |
USE_GCC=yes has been omitted though.
Remove USE_FORTRAN handling from bsd.port.mk and bsd.gcc.mk.
Minor cleanups in some ports like USE_GMAKE, NOPORTDOCS,...
Exp-run: bdrewery
Approved by: portmgr (bdrewery)
|
| |
|
|
|
|
| |
- Remove NO_LATEST_LINK
|
|
|
|
| |
With hat: portmgr
|
|
|
|
| |
science)
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Update MASTER_SITES
- Cosmetic change
- Take maintainership
- Reformat pkg-descr
Changes: http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-1.8.10-patch1/src/hdf5-1.8.10-patch1-RELEASE.txt
PR: ports/176809
Submitted by: sunpoet (myself)
Approved by: maintainer (timeout, 24 weeks)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Update MASTER_SITES
- Pet portlint: remove ABI version number from LIB_DEPENDS
- Restore missing newline at the end of patch file
Changes: http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.9-RELEASE.txt
http://www.hdfgroup.org/HDF5/doc/ADGuide/Changes.html
PR: ports/168142
Submitted by: sunpoet (myself)
Approved by: maintainer (timeout, 18 days)
|
|
|
|
|
|
|
|
|
|
| |
Changes:
Fix bad shell scripts; all regression tests pass now
PR: ports/163595
Submitted by: Rob Farmer <rfarmer@predatorlabs.net>
Approved by: maintainer timeout (49 days)
|
| |
|
| |
|
|
|
|
|
|
|
| |
Changes: http://hdfgroup.org/HDF5/doc/ADGuide/Changes.html
PR: ports/158394
Submitted by: sunpoet (myself)
Approved by: maintainer (timeout, 16 days)
|
|
|
|
|
|
|
| |
Changes: http://www.hdfgroup.org/HDF5/doc/ADGuide/Changes.html
PR: ports/155458
Submitted by: Rob Farmer <rfarmer AT predatorlabs.net>
Approved by: Quincey Koziol <koziol AT hdfgroup.org> (maintainer)
|
|
|
|
|
|
|
|
|
| |
- Add option: DEBUG
Changes: http://www.hdfgroup.org/HDF5/doc/ADGuide/Changes.html
PR: ports/153400 (based on)
Submitted by: Rob Farmer <rfarmer@predatorlabs.net>
Approved by: maintainer (timeout, 17 days)
|
|
|
|
| |
Submitted by: sunpoet@sunpoet.net (via email)
|
|
|
|
| |
Reported by: QAT
|
|
|
|
|
|
| |
PR: ports/144782
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
Approved by: koziol@hdfgroup.org (maintainer, implicit, timeout - 49 days)
|
|
|
|
|
|
| |
implies lang/gcc44 up from lang/gcc43.
Approved by: portmgr
|
|
|
|
|
|
| |
PR: ports/138052
Submitted by: Sylvio Cesar <scjamorim@bsd.com.br>
Approved by: Quincey Koziol <koziol@hdfgroup.org> (maintainer)
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
PR: 128988
Submitted by: Wen Heping <wenheping@gmail.com>
Approved by: maintainer
|
|
|
|
|
|
| |
PR: 128962
Submitted by: Wen Heping <wenheping@gmail.com>
Approved by: maintainer
|
|
|
|
|
|
|
|
| |
- This also resulted in cleanups to the build
- No functional change
PR: 124785
Submitted by: Pedro F. Giffuni <giffunip@tutopia.com>
|
|
|
|
|
|
|
|
|
| |
- Fix NOPORTEXAMPLES
PR: 121731
Submitted by: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp> [1]
miwi
Approved by: maintainer
|
|
|
|
| |
(due to the maximum ftp.hdfgroup.org number of allowed clients is 20.)
|
|
|
|
|
|
|
| |
- Sort pkg-plist
PR: ports/121195
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet at sunpoet.net>
|
| |
|
|
|
|
|
| |
Submitted by: pointyhat via pav
Approved by: stas (mentor, implicit)
|
|
|
|
|
|
| |
PR: ports/118228
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
Approved by: Quincey Koziol <koziol@hdfgroup.org> (maintainer), stas (mentor, implicit)
|
|
|
|
|
|
| |
the port can be upgraded to the newest version after the freeze.
Approved by: portmgr (self), Quincey Koziol <koziol@hdfgroup.org> (maintainer)
|
|
|
|
| |
to fix the fetch. This will also allow me to flush a bad distfile on ftp.
|
| |
|
|
|
|
|
|
| |
PR: 112245
Submitted by: CHAO Shin <quakelee@cn.FreeBSD.org>
Approved by: itetcu (mentor)
|
|
|
|
| |
Submitted by: Quincey Koziol <koziol@ncsa.uiuc.edu> (maintainer) via email
|
|
|
|
|
| |
PR: ports/110043
Submitted by: Quincey Koziol <koziol@ncsa.uiuc.edu> (maintainer)
|
|
|
|
|
|
| |
PR: ports/108982
Submitted by: CHAO Shin <quake at cn.freebsd.org>
Approved by: alexbl (mentor, implicit), Quincey Koziol <koziol at hdfgroup.org> (maintainer)
|
|
|
|
|
|
| |
PR: ports/96907
Submitted by: Joerg Pulz <Joerg.Pulz@frm2.tum.de>
Approved by: Quincey Koziol <koziol@ncsa.uiuc.edu> (maintainer)
|
|
|
|
| |
Approved by: portmgr (kris)
|
|
|
|
| |
Approved by: krion@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.
Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.
Preliminary documentation can be found at:
http://people.FreeBSD.org/~ade/autotools.txt
which is in the process of being SGMLized before introduction into the
Porters Handbook.
Light blue touch-paper. Run.
|
|
|
|
|
|
| |
PR: 80873
Submitted by: me
Approved by: maintainer
|
|
|
|
|
| |
PR: ports/77523
Submitted by: Quincey Koziol <koziol@ncsa.uiuc.edu> (maintainer)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".
For ports-in-waiting:
USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13
USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213
USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14
Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
|
|
|
|
|
| |
PR: ports/63929
Submitted by: Quincey Koziol <koziol@ncsa.uiuc.edu> (maintainer)
|
| |
|
|
|
|
|
|
|
|
| |
- Update to 1.6.2
- Pass maintainership to submitter
PR: ports/63252
Submitted by: Quincey Koziol <koziol@ncsa.uiuc.edu>
|
| |
|
|
|
|
|
| |
PR: 58335
Submitted by: AMAKAWA Shuhei <sa264@cam.ac.uk>
|
|
|
|
|
| |
Configure/build tested on: -stable, -current
Notice from: kris via dosirak.kr
|
|
|
|
| |
resolve conflitcs with bsd.openssl.mk
|
|
|
|
|
|
| |
PR: 53044
Submitted by: Serge Gagnon <gagnon__s@videotron.ca>
Approved by: edwin (mentor)
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
is better studied
o Turn PORTCOMMENT variable in Makefile back into pkg-comment files
Approved by: kris (portmgr hat),
portmgr, re (silence)
|
|
|
|
| |
Approved by: pat
|
|
|
|
|
|
|
|
| |
- Support CFLAGS/PTHREAD_CFLAGS/PTHREAD_LIBS properly
- Strip binaries
PR: 40498
Submitted by: Ports Fury
|
| |
|
|
|
|
| |
A New Generation of HDF
|
| |
|
|
|
|
| |
to the latest HDF4.1r5...
|
|
|
|
|
|
|
|
| |
software packages include patchlevel.h expecting their own, instead
of the HDF's.
PR: 27708
Submitted by: tobez@tobez.org
|
|
|
|
| |
NOPROFILE in the relevant Makefiles.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
include/dfconvrt.h
include/dfivms.h
include/dir_mac.h
include/glist.h
include/hqueue.h
include/maldebug.h
include/mcache.h
include/patchlevel.h
include/sys_dir_mac.h
include/trace.h
include/vgint.h
lib/libdf_p.a
lib/libmfhdf_p.a
Submitted by: bento
|
|
|
|
| |
string so I fixed it.
|
|
|
|
|
| |
PR: 14717
Submitted by: maintainer
|
| |
|
| |
|
|
|
|
| |
to pkg/MESSAGE and use ${CAT} ${PKGMESSAGE}
|
| |
|
|
|
|
|
| |
true -> ${TRUE}
false -> ${FALSE}
|
| |
|
|
|
|
|
| |
(Note, since the shlib major didn't change this just removes the regexp
support.)
|
| |
|
| |
|
|
|
|
| |
will cause pkg_delete to fail.
|
|
|
|
| |
"cc /usr/lib/libz.a" to "cc -lz".
|
|
|
|
|
| |
PR: 6784
Submitted by: maintainer
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
-I../../mfhdf/port -DSWAP -DNDEBUG -DHDF -O2 -pipe -ansi -DNDEBUG xdr.c
In file included from /usr/include/sys/types.h:96,
from types.h:54,
from xdr.c:22:
/usr/include/machine/endian.h:62: conflicting types for `htonl'
types.h:29: previous declaration of `htonl'
/usr/include/machine/endian.h:64: conflicting types for `ntohl'
types.h:28: previous declaration of `ntohl'
|
| |
|
|
PR: 4546
Submitted by: Mikhail Teterin <mi@aldan.ziplink.net>
|