From owner-svn-ports-head@freebsd.org Fri Jan 29 13:43:06 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 170EC4ECE9D; Fri, 29 Jan 2021 13:43:06 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DRz7G0C0lz4v4Z; Fri, 29 Jan 2021 13:43:06 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EDCDB2397C; Fri, 29 Jan 2021 13:43:05 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10TDh5ss053376; Fri, 29 Jan 2021 13:43:05 GMT (envelope-from fluffy@FreeBSD.org) Received: (from fluffy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10TDh53q053373; Fri, 29 Jan 2021 13:43:05 GMT (envelope-from fluffy@FreeBSD.org) Message-Id: <202101291343.10TDh53q053373@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fluffy set sender to fluffy@FreeBSD.org using -f From: Dima Panov Date: Fri, 29 Jan 2021 13:43:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r563207 - head/textproc/libepubgen X-SVN-Group: ports-head X-SVN-Commit-Author: fluffy X-SVN-Commit-Paths: head/textproc/libepubgen X-SVN-Commit-Revision: 563207 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Jan 2021 13:43:06 -0000 Author: fluffy Date: Fri Jan 29 13:43:05 2021 New Revision: 563207 URL: https://svnweb.freebsd.org/changeset/ports/563207 Log: textproc/libepubgen: update to 0.1.1 PR: 252659 Approved by: maintainer (timeout 2w) Modified: head/textproc/libepubgen/Makefile head/textproc/libepubgen/distinfo head/textproc/libepubgen/pkg-plist Modified: head/textproc/libepubgen/Makefile ============================================================================== --- head/textproc/libepubgen/Makefile Fri Jan 29 13:35:49 2021 (r563206) +++ head/textproc/libepubgen/Makefile Fri Jan 29 13:43:05 2021 (r563207) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= libepubgen -PORTVERSION= 0.1.0 -PORTREVISION= 9 +PORTVERSION= 0.1.1 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -11,7 +10,6 @@ COMMENT= Library for generating documents in ePub form LICENSE= MPL20 -LIB_DEPENDS= librevenge-0.0.so:textproc/librevenge BUILD_DEPENDS= ${LOCALBASE}/include/boost/algorithm/string/classification.hpp:devel/boost-libs \ ${LOCALBASE}/include/boost/algorithm/string/join.hpp:devel/boost-libs \ ${LOCALBASE}/include/boost/algorithm/string/split.hpp:devel/boost-libs \ @@ -19,27 +17,34 @@ BUILD_DEPENDS= ${LOCALBASE}/include/boost/algorithm/st ${LOCALBASE}/include/boost/assign/list_of.hpp:devel/boost-libs \ ${LOCALBASE}/include/boost/cstdint.hpp:devel/boost-libs \ ${LOCALBASE}/include/boost/functional/hash.hpp:devel/boost-libs +LIB_DEPENDS= librevenge-0.0.so:textproc/librevenge -CONFIGURE_ARGS= --disable-werror -CPPFLAGS+= -I${LOCALBASE}/include - -GNU_CONFIGURE= yes USES= compiler:c++11-lang libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-werror + INSTALL_TARGET= install-strip +CPPFLAGS+= -I${LOCALBASE}/include + +SO_VER= 1.0.1 +PLIST_SUB+= SO_VER="${SO_VER}" + +PORTDOCS= * + OPTIONS_DEFINE= DOCS DOXYGEN TEST OPTIONS_DEFAULT= OPTIONS_SUB= yes +DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen +DOXYGEN_CONFIGURE_OFF= --without-docs +DOXYGEN_IMPLIES= DOCS + TEST_TARGET= check TEST_LIB_DEPENDS= libxml2.so:textproc/libxml2 \ libcppunit.so:devel/cppunit TEST_CONFIGURE_ENABLE= tests - -PORTDOCS= * -DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen -DOXYGEN_CONFIGURE_OFF= --without-docs -DOXYGEN_IMPLIES= DOCS .include Modified: head/textproc/libepubgen/distinfo ============================================================================== --- head/textproc/libepubgen/distinfo Fri Jan 29 13:35:49 2021 (r563206) +++ head/textproc/libepubgen/distinfo Fri Jan 29 13:43:05 2021 (r563207) @@ -1,3 +1,3 @@ -TIMESTAMP = 1517410235 -SHA256 (libepubgen-0.1.0.tar.xz) = eeaa2c19cc487c821b6477194a01b4373bce9368afb644d768d088935e3b3994 -SIZE (libepubgen-0.1.0.tar.xz) = 319652 +TIMESTAMP = 1610597172 +SHA256 (libepubgen-0.1.1.tar.xz) = 03e084b994cbeffc8c3dd13303b2cb805f44d8f2c3b79f7690d7e3fc7f6215ad +SIZE (libepubgen-0.1.1.tar.xz) = 324380 Modified: head/textproc/libepubgen/pkg-plist ============================================================================== --- head/textproc/libepubgen/pkg-plist Fri Jan 29 13:35:49 2021 (r563206) +++ head/textproc/libepubgen/pkg-plist Fri Jan 29 13:43:05 2021 (r563207) @@ -7,5 +7,5 @@ include/libepubgen-0.1/libepubgen/libepubgen-decls.h include/libepubgen-0.1/libepubgen/libepubgen.h lib/libepubgen-0.1.so lib/libepubgen-0.1.so.1 -lib/libepubgen-0.1.so.1.0.0 +lib/libepubgen-0.1.so.%%SO_VER%% libdata/pkgconfig/libepubgen-0.1.pc