From owner-svn-ports-all@freebsd.org Mon Jan 28 10:13:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71C2214AE6FD; Mon, 28 Jan 2019 10:13:51 +0000 (UTC) (envelope-from tz@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) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 16FBA8451A; Mon, 28 Jan 2019 10:13:51 +0000 (UTC) (envelope-from tz@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 073D21E240; Mon, 28 Jan 2019 10:13:51 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0SADo6h069711; Mon, 28 Jan 2019 10:13:50 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0SADoEl069705; Mon, 28 Jan 2019 10:13:50 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201901281013.x0SADoEl069705@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Mon, 28 Jan 2019 10:13:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491471 - in head/devel: . kiwix-lib X-SVN-Group: ports-head X-SVN-Commit-Author: tz X-SVN-Commit-Paths: in head/devel: . kiwix-lib X-SVN-Commit-Revision: 491471 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 16FBA8451A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jan 2019 10:13:51 -0000 Author: tz Date: Mon Jan 28 10:13:49 2019 New Revision: 491471 URL: https://svnweb.freebsd.org/changeset/ports/491471 Log: [new port] devel/kiwix-lib Kiwix is an offline reader for web content archived in ZIM format. It is particularly tailored towards Wikipedia and other wikis. The Kiwix library contains the code shared by Kiwix ports on all supported platforms. WWW: http://www.kiwix.org/ PR: 230315 Submitted by: Pavel Minaev Added: head/devel/kiwix-lib/ head/devel/kiwix-lib/Makefile (contents, props changed) head/devel/kiwix-lib/distinfo (contents, props changed) head/devel/kiwix-lib/pkg-descr (contents, props changed) head/devel/kiwix-lib/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jan 28 09:44:05 2019 (r491470) +++ head/devel/Makefile Mon Jan 28 10:13:49 2019 (r491471) @@ -1334,6 +1334,7 @@ SUBDIR += kf5-threadweaver SUBDIR += kimwitu SUBDIR += kio-extras + SUBDIR += kiwix-lib SUBDIR += kodi-platform SUBDIR += kore SUBDIR += kronosnet Added: head/devel/kiwix-lib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/kiwix-lib/Makefile Mon Jan 28 10:13:49 2019 (r491471) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= kiwix-lib +DISTVERSION= 3.1.1 +CATEGORIES= devel + +MAINTAINER= me@int19h.org +COMMENT= Common code base for all Kiwix ports + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= bash:shells/bash +LIB_DEPENDS= libzim.so:devel/libzim \ + libpugixml.so:textproc/pugixml \ + libaria2.so:www/aria2 \ + libicui18n.so:devel/icu \ + libicuuc.so:devel/icu \ + libxapian.so:databases/xapian-core \ + libctpp2.so:textproc/ctpp2 \ + libcurl.so:ftp/curl + +USES= meson pkgconfig python:3.6+ shebangfix +USE_LDCONFIG= yes +USE_GITHUB= yes +GH_ACCOUNT= kiwix + +MESON_ARGS= -Dctpp2-install-prefix=${LOCALBASE} +SHEBANG_FILES= scripts/kiwix-compile-resources + +.include Added: head/devel/kiwix-lib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/kiwix-lib/distinfo Mon Jan 28 10:13:49 2019 (r491471) @@ -0,0 +1,3 @@ +TIMESTAMP = 1548656558 +SHA256 (kiwix-kiwix-lib-3.1.1_GH0.tar.gz) = efeb36ea8b1cfdb5cb9400b04eae9ae42b47ec2828967ec8fcb53fc34de05172 +SIZE (kiwix-kiwix-lib-3.1.1_GH0.tar.gz) = 1357232 Added: head/devel/kiwix-lib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/kiwix-lib/pkg-descr Mon Jan 28 10:13:49 2019 (r491471) @@ -0,0 +1,7 @@ +Kiwix is an offline reader for web content archived in ZIM format. It is +particularly tailored towards Wikipedia and other wikis. + +The Kiwix library contains the code shared by Kiwix ports on all supported +platforms. + +WWW: http://www.kiwix.org/ Added: head/devel/kiwix-lib/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/kiwix-lib/pkg-plist Mon Jan 28 10:13:49 2019 (r491471) @@ -0,0 +1,25 @@ +bin/kiwix-compile-resources +include/kiwix/book.h +include/kiwix/bookmark.h +include/kiwix/common.h +include/kiwix/common/base64.h +include/kiwix/common/networkTools.h +include/kiwix/common/otherTools.h +include/kiwix/common/pathTools.h +include/kiwix/common/regexTools.h +include/kiwix/common/stringTools.h +include/kiwix/ctpp2/CTPP2VMStringLoader.hpp +include/kiwix/downloader.h +include/kiwix/entry.h +include/kiwix/kiwix_config.h +include/kiwix/library.h +include/kiwix/libxml_dumper.h +include/kiwix/manager.h +include/kiwix/opds_dumper.h +include/kiwix/reader.h +include/kiwix/searcher.h +include/kiwix/xapianSearcher.h +lib/libkiwix.so +lib/libkiwix.so.3 +lib/libkiwix.so.3.1.1 +libdata/pkgconfig/kiwix.pc