From owner-svn-ports-all@freebsd.org Wed Sep 23 00:46:05 2020 Return-Path: Delivered-To: svn-ports-all@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 57E903E6CBA; Wed, 23 Sep 2020 00:46:05 +0000 (UTC) (envelope-from timur@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bwzxn1h48z4062; Wed, 23 Sep 2020 00:46:05 +0000 (UTC) (envelope-from timur@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 1CC2A81F9; Wed, 23 Sep 2020 00:46:05 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08N0k4Cr041916; Wed, 23 Sep 2020 00:46:04 GMT (envelope-from timur@FreeBSD.org) Received: (from timur@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08N0k303041904; Wed, 23 Sep 2020 00:46:03 GMT (envelope-from timur@FreeBSD.org) Message-Id: <202009230046.08N0k303041904@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: timur set sender to timur@FreeBSD.org using -f From: "Timur I. Bakeyev" Date: Wed, 23 Sep 2020 00:46:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r549649 - in head/databases: . ldb22 ldb22/files ldb22/files/man X-SVN-Group: ports-head X-SVN-Commit-Author: timur X-SVN-Commit-Paths: in head/databases: . ldb22 ldb22/files ldb22/files/man X-SVN-Commit-Revision: 549649 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 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: Wed, 23 Sep 2020 00:46:05 -0000 Author: timur Date: Wed Sep 23 00:46:02 2020 New Revision: 549649 URL: https://svnweb.freebsd.org/changeset/ports/549649 Log: Add Samba 4.13 supplimentary lib databases/ldb22 Added: head/databases/ldb22/ - copied from r549645, head/databases/ldb21/ Deleted: head/databases/ldb22/files/patch-ldb__mdb_ldb_mdb.c Modified: head/databases/Makefile head/databases/ldb22/Makefile head/databases/ldb22/distinfo head/databases/ldb22/files/man/ldb.3 head/databases/ldb22/files/man/ldbadd.1 head/databases/ldb22/files/man/ldbdel.1 head/databases/ldb22/files/man/ldbedit.1 head/databases/ldb22/files/man/ldbmodify.1 head/databases/ldb22/files/man/ldbrename.1 head/databases/ldb22/files/man/ldbsearch.1 Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Wed Sep 23 00:32:42 2020 (r549648) +++ head/databases/Makefile Wed Sep 23 00:46:02 2020 (r549649) @@ -131,6 +131,7 @@ SUBDIR += ldb15 SUBDIR += ldb20 SUBDIR += ldb21 + SUBDIR += ldb22 SUBDIR += leo_center SUBDIR += leofs SUBDIR += leveldb Modified: head/databases/ldb22/Makefile ============================================================================== --- head/databases/ldb21/Makefile Wed Sep 23 00:15:27 2020 (r549645) +++ head/databases/ldb22/Makefile Wed Sep 23 00:46:02 2020 (r549649) @@ -1,12 +1,12 @@ # $FreeBSD$ PORTNAME= ldb -PORTVERSION= 2.1.4 +PORTVERSION= 2.2.0 PORTREVISION= 0 PORTEPOCH= 0 CATEGORIES= databases MASTER_SITES= SAMBA -PKGNAMESUFFIX?= 21 +PKGNAMESUFFIX?= 22 MAINTAINER= timur@FreeBSD.org COMMENT= LDAP-like embedded database @@ -15,18 +15,20 @@ LICENSE= GPLv3+ IGNORE_NONTHREAD_PYTHON=needs port lang/python${PYTHON_SUFFIX} to be build with THREADS support -BUILD_DEPENDS= ${LDB_DEPENDS} -RUN_DEPENDS= ${LDB_DEPENDS} LDB_DEPENDS= talloc>=2.2.0:devel/talloc \ tevent>=0.10.0:devel/tevent \ tdb>=1.4.0:databases/tdb \ lmdb>=0.9.23:databases/lmdb \ - cmocka>=1.1.3:sysutils/cmocka \ popt>=0:devel/popt +BUILD_DEPENDS= ${LDB_DEPENDS} \ + cmocka>=1.1.3:sysutils/cmocka +TEST_DEPENDS= ${LDB_DEPENDS} \ + cmocka>=1.1.3:sysutils/cmocka +RUN_DEPENDS= ${LDB_DEPENDS} USES= compiler pkgconfig waf -CONFLICTS_INSTALL= ldb-1.1.* ldb1[2-9]-1.* ldb2[02-9]-2.* +CONFLICTS_INSTALL= ldb-1.1.* ldb1[2-9]-1.* ldb2[013-9]-2.* USE_LDCONFIG= yes WAF_CMD= ${BUILD_WRKSRC}/buildtools/bin/waf Modified: head/databases/ldb22/distinfo ============================================================================== --- head/databases/ldb21/distinfo Wed Sep 23 00:15:27 2020 (r549645) +++ head/databases/ldb22/distinfo Wed Sep 23 00:46:02 2020 (r549649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1600816718 -SHA256 (ldb-2.1.4.tar.gz) = 9e0b12ee10cbd31f920f3ce1dcd7617c558411a438faaef44c596d77b4d0bf4e -SIZE (ldb-2.1.4.tar.gz) = 1673335 +TIMESTAMP = 1600820338 +SHA256 (ldb-2.2.0.tar.gz) = 134bb51769709af59f30bf468e454d1377a8096acd4e80dcb42fd264f558bd5f +SIZE (ldb-2.2.0.tar.gz) = 1676551 Modified: head/databases/ldb22/files/man/ldb.3 ============================================================================== --- head/databases/ldb21/files/man/ldb.3 Wed Sep 23 00:15:27 2020 (r549645) +++ head/databases/ldb22/files/man/ldb.3 Wed Sep 23 00:46:02 2020 (r549649) @@ -2,12 +2,12 @@ .\" Title: ldb .\" Author: [see the "Author" section] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/11/2018 +.\" Date: 09/23/2020 .\" Manual: System Administration tools .\" Source: LDB 1.1 .\" Language: English .\" -.TH "LDB" "3" "12/11/2018" "LDB 1\&.1" "System Administration tools" +.TH "LDB" "3" "09/23/2020" "LDB 1\&.1" "System Administration tools" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- Modified: head/databases/ldb22/files/man/ldbadd.1 ============================================================================== --- head/databases/ldb21/files/man/ldbadd.1 Wed Sep 23 00:15:27 2020 (r549645) +++ head/databases/ldb22/files/man/ldbadd.1 Wed Sep 23 00:46:02 2020 (r549649) @@ -2,12 +2,12 @@ .\" Title: ldbadd .\" Author: [see the "AUTHOR" section] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/11/2018 +.\" Date: 09/23/2020 .\" Manual: System Administration tools .\" Source: LDB 1.1 .\" Language: English .\" -.TH "LDBADD" "1" "12/11/2018" "LDB 1\&.1" "System Administration tools" +.TH "LDBADD" "1" "09/23/2020" "LDB 1\&.1" "System Administration tools" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -52,7 +52,7 @@ LDB URL to connect to\&. See ldb(3) for details\&. .PP LDB_URL .RS 4 -LDB URL to connect to (can be overrided by using the \-H command\-line option\&.) +LDB URL to connect to (can be overridden by using the \-H command\-line option\&.) .RE .SH "VERSION" .PP Modified: head/databases/ldb22/files/man/ldbdel.1 ============================================================================== --- head/databases/ldb21/files/man/ldbdel.1 Wed Sep 23 00:15:27 2020 (r549645) +++ head/databases/ldb22/files/man/ldbdel.1 Wed Sep 23 00:46:02 2020 (r549649) @@ -2,12 +2,12 @@ .\" Title: ldbdel .\" Author: [see the "AUTHOR" section] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/11/2018 +.\" Date: 09/23/2020 .\" Manual: System Administration tools .\" Source: LDB 1.1 .\" Language: English .\" -.TH "LDBDEL" "1" "12/11/2018" "LDB 1\&.1" "System Administration tools" +.TH "LDBDEL" "1" "09/23/2020" "LDB 1\&.1" "System Administration tools" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -52,7 +52,7 @@ LDB URL to connect to\&. See ldb(3) for details\&. .PP LDB_URL .RS 4 -LDB URL to connect to (can be overrided by using the \-H command\-line option\&.) +LDB URL to connect to (can be overridden by using the \-H command\-line option\&.) .RE .SH "VERSION" .PP Modified: head/databases/ldb22/files/man/ldbedit.1 ============================================================================== --- head/databases/ldb21/files/man/ldbedit.1 Wed Sep 23 00:15:27 2020 (r549645) +++ head/databases/ldb22/files/man/ldbedit.1 Wed Sep 23 00:46:02 2020 (r549649) @@ -2,12 +2,12 @@ .\" Title: ldbedit .\" Author: [see the "AUTHOR" section] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/11/2018 +.\" Date: 09/23/2020 .\" Manual: System Administration tools .\" Source: LDB 1.1 .\" Language: English .\" -.TH "LDBEDIT" "1" "12/11/2018" "LDB 1\&.1" "System Administration tools" +.TH "LDBEDIT" "1" "09/23/2020" "LDB 1\&.1" "System Administration tools" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- Modified: head/databases/ldb22/files/man/ldbmodify.1 ============================================================================== --- head/databases/ldb21/files/man/ldbmodify.1 Wed Sep 23 00:15:27 2020 (r549645) +++ head/databases/ldb22/files/man/ldbmodify.1 Wed Sep 23 00:46:02 2020 (r549649) @@ -2,12 +2,12 @@ .\" Title: ldbmodify .\" Author: [see the "AUTHOR" section] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/11/2018 +.\" Date: 09/23/2020 .\" Manual: System Administration tools .\" Source: LDB 1.1 .\" Language: English .\" -.TH "LDBMODIFY" "1" "12/11/2018" "LDB 1\&.1" "System Administration tools" +.TH "LDBMODIFY" "1" "09/23/2020" "LDB 1\&.1" "System Administration tools" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -47,7 +47,7 @@ LDB URL to connect to\&. See ldb(3) for details\&. .PP LDB_URL .RS 4 -LDB URL to connect to (can be overrided by using the \-H command\-line option\&.) +LDB URL to connect to (can be overridden by using the \-H command\-line option\&.) .RE .SH "VERSION" .PP Modified: head/databases/ldb22/files/man/ldbrename.1 ============================================================================== --- head/databases/ldb21/files/man/ldbrename.1 Wed Sep 23 00:15:27 2020 (r549645) +++ head/databases/ldb22/files/man/ldbrename.1 Wed Sep 23 00:46:02 2020 (r549649) @@ -2,12 +2,12 @@ .\" Title: ldbrename .\" Author: [see the "AUTHOR" section] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/11/2018 +.\" Date: 09/23/2020 .\" Manual: System Administration tools .\" Source: LDB 1.1 .\" Language: English .\" -.TH "LDBRENAME" "1" "12/11/2018" "LDB 1\&.1" "System Administration tools" +.TH "LDBRENAME" "1" "09/23/2020" "LDB 1\&.1" "System Administration tools" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -55,7 +55,7 @@ Extra ldb options, such as modules\&. .PP LDB_URL .RS 4 -LDB URL to connect to (can be overrided by using the \-H command\-line option\&.) +LDB URL to connect to (can be overridden by using the \-H command\-line option\&.) .RE .SH "VERSION" .PP Modified: head/databases/ldb22/files/man/ldbsearch.1 ============================================================================== --- head/databases/ldb21/files/man/ldbsearch.1 Wed Sep 23 00:15:27 2020 (r549645) +++ head/databases/ldb22/files/man/ldbsearch.1 Wed Sep 23 00:46:02 2020 (r549649) @@ -2,12 +2,12 @@ .\" Title: ldbsearch .\" Author: [see the "AUTHOR" section] .\" Generator: DocBook XSL Stylesheets v1.79.1 -.\" Date: 12/11/2018 +.\" Date: 09/23/2020 .\" Manual: System Administration tools .\" Source: LDB 1.1 .\" Language: English .\" -.TH "LDBSEARCH" "1" "12/11/2018" "LDB 1\&.1" "System Administration tools" +.TH "LDBSEARCH" "1" "09/23/2020" "LDB 1\&.1" "System Administration tools" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -65,7 +65,7 @@ Specify Base DN to use\&. .PP LDB_URL .RS 4 -LDB URL to connect to (can be overrided by using the \-H command\-line option\&.) +LDB URL to connect to (can be overridden by using the \-H command\-line option\&.) .RE .SH "VERSION" .PP