Date: Tue, 4 Sep 2018 14:57:27 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478964 - in head/textproc: . fox-xml xmlf90 xmlf90/files Message-ID: <201809041457.w84EvRMd037412@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Tue Sep 4 14:57:27 2018 New Revision: 478964 URL: https://svnweb.freebsd.org/changeset/ports/478964 Log: New port: textproc/xmlf90: Suite of light-weight libraries to work with XML in Fortran Added: head/textproc/xmlf90/ head/textproc/xmlf90/Makefile (contents, props changed) head/textproc/xmlf90/distinfo (contents, props changed) head/textproc/xmlf90/files/ head/textproc/xmlf90/files/patch-config_data_xmlf90.mk.in (contents, props changed) head/textproc/xmlf90/pkg-descr (contents, props changed) head/textproc/xmlf90/pkg-plist (contents, props changed) Modified: head/textproc/Makefile head/textproc/fox-xml/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Sep 4 14:22:48 2018 (r478963) +++ head/textproc/Makefile Tue Sep 4 14:57:27 2018 (r478964) @@ -1833,6 +1833,7 @@ SUBDIR += xmlcharent SUBDIR += xmldiff SUBDIR += xmlenc + SUBDIR += xmlf90 SUBDIR += xmlformat SUBDIR += xmlgen SUBDIR += xmlindent Modified: head/textproc/fox-xml/Makefile ============================================================================== --- head/textproc/fox-xml/Makefile Tue Sep 4 14:22:48 2018 (r478963) +++ head/textproc/fox-xml/Makefile Tue Sep 4 14:57:27 2018 (r478964) @@ -13,6 +13,8 @@ COMMENT= Fortran XML library LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +CONFLICTS_INSTALL= xmlf90 + GNU_CONFIGURE= yes USES= fortran gmake USE_GITHUB= yes Added: head/textproc/xmlf90/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/xmlf90/Makefile Tue Sep 4 14:57:27 2018 (r478964) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= xmlf90 +DISTVERSION= 1.5.4 +CATEGORIES= textproc +MASTER_SITES= https://launchpad.net/xmlf90/trunk/1.5/+download/ + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Suite of light-weight libraries to work with XML in Fortran + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +CONFLICTS_INSTALL= fox-xml + +USES= fortran gmake libtool +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-static +USE_LDCONFIG= yes + +OPTIONS_DEFINE= DOCS + +PORTDOCS= * + +.include <bsd.port.mk> Added: head/textproc/xmlf90/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/xmlf90/distinfo Tue Sep 4 14:57:27 2018 (r478964) @@ -0,0 +1,3 @@ +TIMESTAMP = 1536046355 +SHA256 (xmlf90-1.5.4.tar.gz) = a0b1324ff224d5b5ad1127a6ad4f90979f6b127f1a517f98253eea377237bbe4 +SIZE (xmlf90-1.5.4.tar.gz) = 1013508 Added: head/textproc/xmlf90/files/patch-config_data_xmlf90.mk.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/xmlf90/files/patch-config_data_xmlf90.mk.in Tue Sep 4 14:57:27 2018 (r478964) @@ -0,0 +1,10 @@ +--- config/data/xmlf90.mk.in.orig 2018-09-04 07:46:34 UTC ++++ config/data/xmlf90.mk.in +@@ -18,6 +18,6 @@ XMLF90_H__ = 1 + + XMLF90_ROOT_BUILD = @prefix@ + XMLF90_INCFLAGS = -I$(XMLF90_ROOT_BUILD)/include +-XMLF90_LIBS = $(XMLF90_ROOT_BUILD)/lib/libxmlf90.a ++XMLF90_LIBS = $(XMLF90_ROOT_BUILD)/lib/libxmlf90.so + + endif Added: head/textproc/xmlf90/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/xmlf90/pkg-descr Tue Sep 4 14:57:27 2018 (r478964) @@ -0,0 +1,18 @@ +xmlf90 is a suite of libraries to handle XML in Fortran. It has two +major components: + +* A XML parsing library. The parser was designed to be a useful + tool in the extraction and analysis of data in the context of + scientific computing, and thus the priorities were efficiency and the + ability to deal with very large XML files while maintaining a small + memory footprint. The most complete programming interface is + based on the very successful SAX (Simple API for XML) model, + although a partial DOM interface and a very experimental XPATH interface + are also present. + +- A library (xmlf90-wxml) that facilitates the writing of well-formed + XML, including such features as automatic start-tag completion, + attribute pretty-printing, and element indentation. There are also + helper routines to handle the output of numerical arrays. + +WWW: https://launchpad.net/xmlf90 Added: head/textproc/xmlf90/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/xmlf90/pkg-plist Tue Sep 4 14:57:27 2018 (r478964) @@ -0,0 +1,46 @@ +include/m_dom_attribute.mod +include/m_dom_debug.mod +include/m_dom_document.mod +include/m_dom_element.mod +include/m_dom_error.mod +include/m_dom_namednodemap.mod +include/m_dom_node.mod +include/m_dom_nodelist.mod +include/m_dom_parse.mod +include/m_dom_strings.mod +include/m_dom_types.mod +include/m_dom_utils.mod +include/m_sax_buffer.mod +include/m_sax_charset.mod +include/m_sax_converters.mod +include/m_sax_debug.mod +include/m_sax_dictionary.mod +include/m_sax_elstack.mod +include/m_sax_entities.mod +include/m_sax_fsm.mod +include/m_sax_reader.mod +include/m_wcml.mod +include/m_wstml.mod +include/m_wxml_array_str.mod +include/m_wxml_buffer.mod +include/m_wxml_core.mod +include/m_wxml_dictionary.mod +include/m_wxml_elstack.mod +include/m_wxml_error.mod +include/m_wxml_escape.mod +include/m_wxml_overloads.mod +include/m_wxml_text.mod +include/m_xml_error.mod +include/m_xml_parser.mod +include/m_xpath_api.mod +include/xmlf90_cml.mod +include/xmlf90_dom.mod +include/xmlf90_info.mod +include/xmlf90_sax.mod +include/xmlf90_wxml.mod +include/xmlf90_xpath.mod +lib/libxmlf90.so +lib/libxmlf90.so.0 +lib/libxmlf90.so.0.0.0 +libdata/pkgconfig/xmlf90.pc +share/org.siesta-project/xmlf90.mk
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809041457.w84EvRMd037412>