A few notes: - ntdb support has been enabled by default upstream; I decided not to put it in an "ntdb" subpackage since upstream is discussing its removal:
https://lists.samba.org/archive/samba-technical/2015-March/106098.html - Ian spotted that only OpenBSD doesn't make use of -Wl,--as-needed. Changing that fixes the sluggish startup time mostly spent in ld.so. - regedit support disabled for now because of a linker failure - pidl patches now needed anymore Lightly tested with --server-role=dc --use-ntvfs and a win7 client. Doesn't work with /etc/malloc.conf -> S Index: Makefile =================================================================== RCS file: /cvs/ports/net/samba4/Makefile,v retrieving revision 1.11 diff -u -p -r1.11 Makefile --- Makefile 17 Jun 2015 10:51:08 -0000 1.11 +++ Makefile 18 Jun 2015 14:15:34 -0000 @@ -1,7 +1,7 @@ # $OpenBSD: Makefile,v 1.11 2015/06/17 10:51:08 jca Exp $ SHARED_ONLY = Yes -VERSION = 4.0.26 +VERSION = 4.1.18 DISTNAME = samba-${VERSION} DOCSVERSION = v3-5-test-4c5a1b6b DISTFILES = ${DISTNAME}${EXTRACT_SUFX} \ @@ -9,7 +9,6 @@ DISTFILES = ${DISTNAME}${EXTRACT_SUFX} COMMENT-main = SMB and CIFS client and server for UNIX COMMENT-ldb = LDAP-like embedded database -#COMMENT-ntdb = new trivial database library COMMENT-tdb = trivial database library COMMENT-tevent = event system based on talloc COMMENT-util = common libraries for Samba suite @@ -17,7 +16,6 @@ COMMENT-docs = additional documentation PKGNAME-main = ${PKGNAME} PKGNAME-ldb = ldb-${LDB_V} -#PKGNAME-ntdb = ntdb-${NTDB_V} PKGNAME-tdb = tdb-${TDB_V} PKGNAME-tevent = tevent-${TEVENT_V} PKGNAME-util = samba-util-${TALLOC_V} @@ -25,10 +23,9 @@ PKGNAME-docs = samba-docs-${VERSION} PKG_ARCH-docs = * -LDB_V = 1.1.16 -#NTDB_V = 0.9 +LDB_V = 1.1.17 TALLOC_V = 2.1.2 -TDB_V = 1.2.11 +TDB_V = 1.2.12 TEVENT_V = 0.9.18 SHARED_LIBS = asn1-samba4 0.0 \ @@ -54,6 +51,7 @@ SHARED_LIBS = asn1-samba4 0.0 \ ndr-standard 0.0 \ netapi 2.0 \ nss_wins 0.0 \ + ntdb 0.0 \ pdb 0.0 \ pyldb-util 0.0 \ pytalloc-util 0.0 \ @@ -126,7 +124,6 @@ MASTER_SITES = http://ftp.samba.org/pub MASTER_SITES0 = http://www.samba.org/~samba-bugs/docs/v3-5-test/ MULTI_PACKAGES = -main -ldb -tdb -tevent -util -docs -#MULTI_PACKAGES += -ntdb # disabled by default in Samba4 MODULES = devel/gettext lang/python perl @@ -153,7 +150,6 @@ LIB_DEPENDS-main = ${BUILD_PKGPATH},-ldb security/openpam \ sysutils/e2fsprogs \ sysutils/gamin -#LIB_DEPENDS-main += ${BUILD_PKGPATH},-ntdb>=${NTDB_V} LIB_DEPENDS-ldb = ${BUILD_PKGPATH},-tdb>=${TDB_V} \ ${BUILD_PKGPATH},-tevent>=${TEVENT_V} \ @@ -188,7 +184,8 @@ CONFIGURE_ARGS = --enable-fhs \ --with-lockdir=${VARBASE}/run/samba \ --with-privileged-socket-dir=${VARBASE}/samba \ --enable-selftest \ - --pedantic + --pedantic \ + --without-regedit # XXX Remember to remove --enable-developer, it prints passwords in logs. #CONFIGURE_ARGS += --enable-developer Index: distinfo =================================================================== RCS file: /cvs/ports/net/samba4/distinfo,v retrieving revision 1.7 diff -u -p -r1.7 distinfo --- distinfo 17 Jun 2015 10:51:08 -0000 1.7 +++ distinfo 18 Jun 2015 14:15:34 -0000 @@ -1,4 +1,4 @@ -SHA256 (samba-4.0.26.tar.gz) = ziRBmSxtGJUNdS7bLRJ0s/fgVrLi6FFvxC5AjkoliUo= +SHA256 (samba-4.1.18.tar.gz) = W9MCNVyCGVJx3kHU8eDGNTveZSojiGlAsxC3c0JW8VY= SHA256 (samba-docs-v3-5-test-4c5a1b6b.tar.bz2) = bsF0WP1KT1M3jMx3Z88MbsEQ1QEq9catijXpnPm7hZA= -SIZE (samba-4.0.26.tar.gz) = 22155521 +SIZE (samba-4.1.18.tar.gz) = 19550894 SIZE (samba-docs-v3-5-test-4c5a1b6b.tar.bz2) = 8070761 Index: patches/patch-lib_ntdb_wscript =================================================================== RCS file: /cvs/ports/net/samba4/patches/patch-lib_ntdb_wscript,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 patch-lib_ntdb_wscript --- patches/patch-lib_ntdb_wscript 4 May 2014 16:08:29 -0000 1.1.1.1 +++ patches/patch-lib_ntdb_wscript 18 Jun 2015 14:15:34 -0000 @@ -1,8 +1,8 @@ $OpenBSD: patch-lib_ntdb_wscript,v 1.1.1.1 2014/05/04 16:08:29 zhuk Exp $ Force building standalone library (e.g., put headers in apporiate place). ---- lib/ntdb/wscript.orig Mon May 27 20:46:01 2013 -+++ lib/ntdb/wscript Mon May 27 20:46:12 2013 -@@ -101,6 +101,7 @@ def configure(conf): +--- lib/ntdb/wscript.orig Thu Dec 5 10:16:48 2013 ++++ lib/ntdb/wscript Wed Jun 17 13:18:09 2015 +@@ -102,6 +102,7 @@ def configure(conf): 'test/tap-interface.c'] conf.env.standalone_ntdb = conf.IN_LAUNCH_DIR() Index: patches/patch-lib_replace_replace_h =================================================================== RCS file: /cvs/ports/net/samba4/patches/patch-lib_replace_replace_h,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 patch-lib_replace_replace_h --- patches/patch-lib_replace_replace_h 4 May 2014 16:08:29 -0000 1.1.1.1 +++ patches/patch-lib_replace_replace_h 18 Jun 2015 14:15:34 -0000 @@ -1,10 +1,10 @@ $OpenBSD: patch-lib_replace_replace_h,v 1.1.1.1 2014/05/04 16:08:29 zhuk Exp $ Avoid extra warnings. XXX Probably there should be added another configure time check that <stdlib.h> is enough. ---- lib/replace/replace.h.orig Wed Apr 24 07:49:37 2013 -+++ lib/replace/replace.h Wed Apr 24 07:50:38 2013 +--- lib/replace/replace.h.orig Mon Sep 8 11:26:14 2014 ++++ lib/replace/replace.h Wed Jun 17 13:18:09 2015 @@ -56,10 +56,6 @@ - #include <inttypes.h> + #undef HAVE_INTTYPES_H #endif -#ifdef HAVE_MALLOC_H Index: patches/patch-pidl_lib_Parse_Pidl_ODL_pm =================================================================== RCS file: patches/patch-pidl_lib_Parse_Pidl_ODL_pm diff -N patches/patch-pidl_lib_Parse_Pidl_ODL_pm --- patches/patch-pidl_lib_Parse_Pidl_ODL_pm 4 May 2014 16:08:29 -0000 1.1.1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,14 +0,0 @@ -$OpenBSD: patch-pidl_lib_Parse_Pidl_ODL_pm,v 1.1.1.1 2014/05/04 16:08:29 zhuk Exp $ -Fix annoying warning that pollute output. -BUG: https://bugzilla.samba.org/show_bug.cgi?id=9887 ---- pidl/lib/Parse/Pidl/ODL.pm.orig Sat May 11 00:33:56 2013 -+++ pidl/lib/Parse/Pidl/ODL.pm Sat May 11 00:35:29 2013 -@@ -70,7 +70,7 @@ sub ODL2IDL - next; - } - my $podl = Parse::Pidl::IDL::parse_file($idl_path, $opt_incdirs); -- if (defined(@$podl)) { -+ if (defined($podl)) { - require Parse::Pidl::Typelist; - my $basename = basename($idl_path, ".idl"); - Index: patches/patch-pidl_pidl =================================================================== RCS file: patches/patch-pidl_pidl diff -N patches/patch-pidl_pidl --- patches/patch-pidl_pidl 17 Jun 2015 10:51:09 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,14 +0,0 @@ -$OpenBSD: patch-pidl_pidl,v 1.2 2015/06/17 10:51:09 jca Exp $ -Fix annoying warning that pollute output. -BUG: https://bugzilla.samba.org/show_bug.cgi?id=9887 ---- pidl/pidl.orig Thu Jun 4 13:43:29 2015 -+++ pidl/pidl Thu Jun 4 13:43:29 2015 -@@ -604,7 +604,7 @@ sub process_file($) - require Parse::Pidl::IDL; - - $pidl = Parse::Pidl::IDL::parse_file($idl_file, \@opt_incdirs); -- defined @$pidl || die "Failed to parse $idl_file"; -+ defined $pidl || die "Failed to parse $idl_file"; - } - - require Parse::Pidl::Typelist; Index: patches/patch-source3_lib_sysquotas_nfs_c =================================================================== RCS file: /cvs/ports/net/samba4/patches/patch-source3_lib_sysquotas_nfs_c,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 patch-source3_lib_sysquotas_nfs_c --- patches/patch-source3_lib_sysquotas_nfs_c 4 May 2014 16:08:29 -0000 1.1.1.1 +++ patches/patch-source3_lib_sysquotas_nfs_c 18 Jun 2015 14:15:34 -0000 @@ -1,8 +1,8 @@ $OpenBSD: patch-source3_lib_sysquotas_nfs_c,v 1.1.1.1 2014/05/04 16:08:29 zhuk Exp $ BUG: https://bugzilla.samba.org/show_bug.cgi?id=9889 ---- source3/lib/sysquotas_nfs.c.orig Mon Apr 8 20:00:46 2013 -+++ source3/lib/sysquotas_nfs.c Mon Apr 8 20:01:53 2013 -@@ -155,8 +155,8 @@ int sys_get_nfs_quota(const char *path, const char *bd +--- source3/lib/sysquotas_nfs.c.orig Thu Dec 5 10:16:48 2013 ++++ source3/lib/sysquotas_nfs.c Wed Jun 17 13:18:09 2015 +@@ -154,8 +154,8 @@ int sys_get_nfs_quota(const char *path, const char *bd gq_args.gqa_uid = id.uid; DEBUG(10, ("sys_get_nfs_quotas: Asking for quota of path '%s' on " Index: patches/patch-source3_wscript =================================================================== RCS file: /cvs/ports/net/samba4/patches/patch-source3_wscript,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 patch-source3_wscript --- patches/patch-source3_wscript 4 May 2014 16:08:29 -0000 1.1.1.1 +++ patches/patch-source3_wscript 18 Jun 2015 14:15:34 -0000 @@ -1,10 +1,10 @@ $OpenBSD: patch-source3_wscript,v 1.1.1.1 2014/05/04 16:08:29 zhuk Exp $ Use more generic check for OpenBSD. ---- source3/wscript.orig Thu May 1 16:31:03 2014 -+++ source3/wscript Thu May 1 16:31:03 2014 -@@ -69,7 +69,7 @@ def configure(conf): - if Options.options.with_swat: - conf.env['build_swat'] = True +--- source3/wscript.orig Mon Dec 1 13:48:32 2014 ++++ source3/wscript Wed Jun 17 13:18:09 2015 +@@ -72,7 +72,7 @@ def configure(conf): + conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD') + conf.env.developer = True - if sys.platform != 'openbsd5': + if not sys.platform.startswith('openbsd'): Index: patches/patch-source4_heimdal_build_wscript_build =================================================================== RCS file: /cvs/ports/net/samba4/patches/patch-source4_heimdal_build_wscript_build,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 patch-source4_heimdal_build_wscript_build --- patches/patch-source4_heimdal_build_wscript_build 4 May 2014 16:08:29 -0000 1.1.1.1 +++ patches/patch-source4_heimdal_build_wscript_build 18 Jun 2015 14:15:34 -0000 @@ -1,8 +1,8 @@ $OpenBSD: patch-source4_heimdal_build_wscript_build,v 1.1.1.1 2014/05/04 16:08:29 zhuk Exp $ Make Samba4 WAF respect OpenBSD shared libraries versioning conventions. BUG: https://bugzilla.samba.org/show_bug.cgi?id=9774 ---- source4/heimdal_build/wscript_build.orig Tue May 14 15:17:46 2013 -+++ source4/heimdal_build/wscript_build Tue May 14 20:17:58 2013 +--- source4/heimdal_build/wscript_build.orig Thu Dec 5 10:16:48 2013 ++++ source4/heimdal_build/wscript_build Wed Jun 17 13:28:09 2015 @@ -243,6 +243,11 @@ def HEIMDAL_LIBRARY(libname, source, deps, vnum, versi features = 'cc cshlib symlink_lib install_lib' @@ -12,6 +12,6 @@ BUG: https://bugzilla.samba.org/show_bug + if osvnum: + vnum = osvnum + - bld.set_group('libraries') + bld.set_group('main') t = bld( features = features, Index: patches/patch-wscript =================================================================== RCS file: patches/patch-wscript diff -N patches/patch-wscript --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ patches/patch-wscript 18 Jun 2015 14:15:34 -0000 @@ -0,0 +1,12 @@ +$OpenBSD$ +--- wscript.orig Thu Jun 18 03:15:28 2015 ++++ wscript Thu Jun 18 03:16:13 2015 +@@ -155,7 +155,7 @@ def configure(conf): + # allows us to find problems on our development hosts faster. + # It also results in faster load time. + +- if not sys.platform.startswith("openbsd"): ++ if not sys.platform.startswith("whatever"): + conf.env.asneeded_ldflags = conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True) + + if not conf.CHECK_NEED_LC("-lc not needed"): Index: pkg/PLIST-docs =================================================================== RCS file: /cvs/ports/net/samba4/pkg/PLIST-docs,v retrieving revision 1.3 diff -u -p -r1.3 PLIST-docs --- pkg/PLIST-docs 30 Jun 2014 23:25:45 -0000 1.3 +++ pkg/PLIST-docs 18 Jun 2015 14:15:34 -0000 @@ -6,7 +6,6 @@ share/doc/samba/Samba3-Developers-Guide. share/doc/samba/Samba3-HOWTO.pdf share/examples/samba/LDAP/ share/examples/samba/LDAP/README -share/examples/samba/LDAP/convertSambaAccount share/examples/samba/LDAP/get_next_oid share/examples/samba/LDAP/ol-schema-migrate.pl share/examples/samba/LDAP/samba-nds.schema @@ -19,15 +18,7 @@ share/examples/samba/LDAP/samba.schema.a share/examples/samba/LDAP/samba.schema.oc.IBM-DS share/examples/samba/README share/examples/samba/VFS/ -share/examples/samba/VFS/Makefile.in share/examples/samba/VFS/README -share/examples/samba/VFS/autogen.sh -share/examples/samba/VFS/config.guess -share/examples/samba/VFS/config.sub -share/examples/samba/VFS/configure -share/examples/samba/VFS/configure.in -share/examples/samba/VFS/install-sh -share/examples/samba/VFS/module_config.h.in share/examples/samba/VFS/shadow_copy_test.c share/examples/samba/VFS/skel_opaque.c share/examples/samba/VFS/skel_transparent.c @@ -97,7 +88,6 @@ share/examples/samba/misc/adssearch.pl share/examples/samba/misc/check_multiple_LDAP_entries.pl share/examples/samba/misc/cldap.pl share/examples/samba/misc/extra_smbstatus -share/examples/samba/misc/swat.pl share/examples/samba/misc/wall.perl share/examples/samba/nss/ share/examples/samba/nss/nss_winbind.c Index: pkg/PLIST-main =================================================================== RCS file: /cvs/ports/net/samba4/pkg/PLIST-main,v retrieving revision 1.4 diff -u -p -r1.4 PLIST-main --- pkg/PLIST-main 17 Jun 2015 10:51:09 -0000 1.4 +++ pkg/PLIST-main 18 Jun 2015 14:15:34 -0000 @@ -12,6 +12,10 @@ @bin bin/net @bin bin/nmblookup @bin bin/nmblookup4 +@bin bin/ntdbbackup +@bin bin/ntdbdump +@bin bin/ntdbrestore +@bin bin/ntdbtool @bin bin/ntlm_auth @bin bin/oLschema2ldif @bin bin/pdbedit @@ -99,6 +103,7 @@ include/samba-4.0/ndr/ndr_drsuapi.h include/samba-4.0/ndr/ndr_nbt.h include/samba-4.0/ndr/ndr_svcctl.h include/samba-4.0/netapi.h +include/samba-4.0/ntdb.h include/samba-4.0/param.h include/samba-4.0/passdb.h include/samba-4.0/policy.h @@ -114,6 +119,7 @@ include/samba-4.0/share.h include/samba-4.0/smb2.h include/samba-4.0/smb2_constants.h include/samba-4.0/smb2_create_blob.h +include/samba-4.0/smb2_lease.h include/samba-4.0/smb2_signing.h include/samba-4.0/smb_cli.h include/samba-4.0/smb_cliraw.h @@ -159,6 +165,8 @@ include/samba-4.0/wbclient.h @lib lib/libdcerpc-server.so.${LIBdcerpc-server_VERSION} @lib lib/libdcerpc.so.${LIBdcerpc_VERSION} @lib lib/libgensec.so.${LIBgensec_VERSION} +@comment lib/libntdb.so +@lib lib/libntdb.so.${LIBntdb_VERSION} @lib lib/libmit_samba.so.${LIBmit_samba_VERSION} @lib lib/libndr-krb5pac.so.${LIBndr-krb5pac_VERSION} @lib lib/libndr-nbt.so.${LIBndr-nbt_VERSION} @@ -191,6 +199,7 @@ lib/pkgconfig/ndr_krb5pac.pc lib/pkgconfig/ndr_nbt.pc lib/pkgconfig/ndr_standard.pc lib/pkgconfig/netapi.pc +lib/pkgconfig/ntdb.pc lib/pkgconfig/registry.pc lib/pkgconfig/samba-credentials.pc lib/pkgconfig/samba-hostconfig.pc @@ -202,6 +211,7 @@ lib/pkgconfig/smbclient.pc lib/pkgconfig/smbsharemodes.pc lib/pkgconfig/torture.pc lib/pkgconfig/wbclient.pc +lib/python${MODPY_VERSION}/site-packages/ntdb.so lib/python${MODPY_VERSION}/site-packages/samba/ lib/python${MODPY_VERSION}/site-packages/samba/__init__.py lib/python${MODPY_VERSION}/site-packages/samba/__init__.pyc @@ -274,6 +284,9 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/samba/external/subunit/details.py lib/python${MODPY_VERSION}/site-packages/samba/external/subunit/details.pyc lib/python${MODPY_VERSION}/site-packages/samba/external/subunit/details.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/subunit/filters.py +lib/python${MODPY_VERSION}/site-packages/samba/external/subunit/filters.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/subunit/filters.pyo lib/python${MODPY_VERSION}/site-packages/samba/external/subunit/iso8601.py lib/python${MODPY_VERSION}/site-packages/samba/external/subunit/iso8601.pyc lib/python${MODPY_VERSION}/site-packages/samba/external/subunit/iso8601.pyo @@ -360,9 +373,34 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/helpers.py lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/helpers.pyc lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/helpers.pyo -lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers.py -lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers.pyc -lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/ +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/__init__.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/__init__.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/__init__.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_basic.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_basic.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_basic.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_datastructures.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_datastructures.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_datastructures.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_dict.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_dict.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_dict.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_doctest.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_doctest.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_doctest.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_exception.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_exception.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_exception.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_filesystem.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_filesystem.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_filesystem.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_higherorder.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_higherorder.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_higherorder.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_impl.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_impl.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/matchers/_impl.pyo lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/monkey.py lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/monkey.pyc lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/monkey.pyo @@ -372,6 +410,9 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/runtest.py lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/runtest.pyc lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/runtest.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tags.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tags.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tags.pyo lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/testcase.py lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/testcase.pyc lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/testcase.pyo @@ -392,6 +433,37 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/helpers.py lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/helpers.pyc lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/helpers.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/ +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/__init__.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/__init__.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/__init__.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/helpers.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/helpers.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/helpers.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_basic.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_basic.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_basic.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_datastructures.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_datastructures.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_datastructures.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_dict.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_dict.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_dict.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_doctest.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_doctest.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_doctest.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_exception.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_exception.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_exception.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_filesystem.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_filesystem.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_filesystem.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_higherorder.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_higherorder.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_higherorder.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_impl.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_impl.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/matchers/test_impl.pyo lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_compat.py lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_compat.pyc lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_compat.pyo @@ -413,9 +485,6 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_helpers.py lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_helpers.pyc lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_helpers.pyo -lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_matchers.py -lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_matchers.pyc -lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_matchers.pyo lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_monkey.py lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_monkey.pyc lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_monkey.pyo @@ -428,6 +497,9 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_spinner.py lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_spinner.pyc lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_spinner.pyo +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_tags.py +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_tags.pyc +lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_tags.pyo lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_testcase.py lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_testcase.pyc lib/python${MODPY_VERSION}/site-packages/samba/external/testtools/tests/test_testcase.pyo @@ -769,12 +841,14 @@ lib/samba/auth/ lib/samba/auth/script.so lib/samba/bind9/ lib/samba/bind9/dlz_bind9.so +lib/samba/bind9/dlz_bind9_10.so lib/samba/bind9/dlz_bind9_9.so lib/samba/gensec/ lib/samba/gensec/krb5.so lib/samba/idmap/ lib/samba/idmap/autorid.so lib/samba/idmap/hash.so +lib/samba/idmap/rfc2307.so lib/samba/idmap/rid.so lib/samba/idmap/tdb2.so lib/samba/ldb/acl.so @@ -855,6 +929,7 @@ lib/samba/libdcerpc-samba.so lib/samba/libdcerpc-samba4.so lib/samba/libdfs_server_ad.so lib/samba/libdlz_bind9_for_torture.so +lib/samba/libdnsserver_common.so lib/samba/libdsdb-module.so lib/samba/liberrors.so lib/samba/libevents.so @@ -881,6 +956,7 @@ lib/samba/libndr-samba.so lib/samba/libndr-samba4.so lib/samba/libnet_keytab.so lib/samba/libnetif.so +lib/samba/libnon_posix_acls.so lib/samba/libnpa_tstream.so lib/samba/libnss_info.so lib/samba/libntvfs.so @@ -913,6 +989,7 @@ lib/samba/libtdb-wrap.so lib/samba/libtdb_compat.so lib/samba/libtrusts_util.so lib/samba/libutil_cmdline.so +lib/samba/libutil_ntdb.so lib/samba/libutil_reg.so lib/samba/libutil_tdb.so lib/samba/libwinbind-client.so @@ -960,6 +1037,7 @@ lib/samba/vfs/full_audit.so lib/samba/vfs/linux_xfs_sgid.so lib/samba/vfs/media_harmony.so lib/samba/vfs/netatalk.so +lib/samba/vfs/nfs4acl_xattr.so lib/samba/vfs/notify_fam.so lib/samba/vfs/posix_eadb.so lib/samba/vfs/preopen.so @@ -1043,6 +1121,7 @@ ${P5SITE}/Parse/Yapp/Driver.pm @man man/man1/testparm.1 @man man/man1/vfstest.1 @man man/man1/wbinfo.1 +@man man/man3/ntdb.3 @man man/man3/Parse::Pidl::Dump.3p @man man/man3/Parse::Pidl::NDR.3p @man man/man3/Parse::Pidl::Util.3p @@ -1062,26 +1141,32 @@ ${P5SITE}/Parse/Yapp/Driver.pm @man man/man8/idmap_hash.8 @man man/man8/idmap_ldap.8 @man man/man8/idmap_nss.8 +@man man/man8/idmap_rfc2307.8 @man man/man8/idmap_rid.8 @man man/man8/idmap_tdb.8 @man man/man8/idmap_tdb2.8 @man man/man8/net.8 @man man/man8/nmbd.8 +@man man/man8/ntdbbackup.8 +@man man/man8/ntdbdump.8 +@man man/man8/ntdbrestore.8 +@man man/man8/ntdbtool.8 @man man/man8/pam_winbind.8 @man man/man8/pdbedit.8 +@man man/man8/samba-regedit.8 @man man/man8/samba-tool.8 @man man/man8/samba.8 @man man/man8/smbd.8 @man man/man8/smbpasswd.8 @man man/man8/smbspool.8 @man man/man8/smbta-util.8 -@man man/man8/swat.8 @man man/man8/vfs_acl_tdb.8 @man man/man8/vfs_acl_xattr.8 @man man/man8/vfs_aio_fork.8 @man man/man8/vfs_aio_linux.8 @man man/man8/vfs_aio_pthread.8 @man man/man8/vfs_audit.8 +@man man/man8/vfs_btrfs.8 @man man/man8/vfs_cacheprime.8 @man man/man8/vfs_cap.8 @man man/man8/vfs_catia.8 @@ -1093,7 +1178,9 @@ ${P5SITE}/Parse/Yapp/Driver.pm @man man/man8/vfs_fake_perms.8 @man man/man8/vfs_fileid.8 @man man/man8/vfs_full_audit.8 +@man man/man8/vfs_glusterfs.8 @man man/man8/vfs_gpfs.8 +@man man/man8/vfs_linux_xfs_sgid.8 @man man/man8/vfs_media_harmony.8 @man man/man8/vfs_netatalk.8 @man man/man8/vfs_notify_fam.8 @@ -1108,6 +1195,7 @@ ${P5SITE}/Parse/Yapp/Driver.pm @man man/man8/vfs_smb_traffic_analyzer.8 @man man/man8/vfs_streams_depot.8 @man man/man8/vfs_streams_xattr.8 +@man man/man8/vfs_syncops.8 @man man/man8/vfs_time_audit.8 @man man/man8/vfs_tsmsm.8 @man man/man8/vfs_xattr_tdb.8 @@ -1119,7 +1207,6 @@ sbin/samba_kcc sbin/samba_spnupdate sbin/samba_upgradedns @bin sbin/smbd -@bin sbin/swat @bin sbin/winbindd share/examples/samba/ @sample ${SYSCONFDIR}/samba/ @@ -1127,17 +1214,7 @@ share/examples/samba/smb.conf.default @sample ${SYSCONFDIR}/samba/smb.conf share/samba/ share/samba/codepages/ -share/samba/codepages/de.msg -share/samba/codepages/en.msg -share/samba/codepages/fi.msg -share/samba/codepages/fr.msg -share/samba/codepages/it.msg -share/samba/codepages/ja.msg share/samba/codepages/lowcase.dat -share/samba/codepages/nl.msg -share/samba/codepages/pl.msg -share/samba/codepages/ru.msg -share/samba/codepages/tr.msg share/samba/codepages/upcase.dat share/samba/codepages/valid.dat share/samba/setup/ @@ -1233,54 +1310,6 @@ share/samba/setup/share.ldif share/samba/setup/slapd.conf share/samba/setup/spn_update_list share/samba/setup/ypServ30.ldif -share/samba/swat/ -share/samba/swat/help/ -share/samba/swat/help/welcome-no-samba-doc.html -share/samba/swat/help/welcome.html -share/samba/swat/images/ -share/samba/swat/images/globals.gif -share/samba/swat/images/home.gif -share/samba/swat/images/passwd.gif -share/samba/swat/images/printers.gif -share/samba/swat/images/samba.gif -share/samba/swat/images/shares.gif -share/samba/swat/images/status.gif -share/samba/swat/images/viewconfig.gif -share/samba/swat/images/wizard.gif -share/samba/swat/include/ -share/samba/swat/include/footer.html -share/samba/swat/include/header.html -share/samba/swat/lang/ -share/samba/swat/lang/ja/ -share/samba/swat/lang/ja/help/ -share/samba/swat/lang/ja/help/welcome.html -share/samba/swat/lang/ru/ -share/samba/swat/lang/ru/help/ -share/samba/swat/lang/ru/help/welcome-no-samba-doc.html -share/samba/swat/lang/ru/help/welcome.html -share/samba/swat/lang/ru/images/ -share/samba/swat/lang/ru/images/globals.gif -share/samba/swat/lang/ru/images/home.gif -share/samba/swat/lang/ru/images/passwd.gif -share/samba/swat/lang/ru/images/printers.gif -share/samba/swat/lang/ru/images/shares.gif -share/samba/swat/lang/ru/images/status.gif -share/samba/swat/lang/ru/images/viewconfig.gif -share/samba/swat/lang/ru/images/wizard.gif -share/samba/swat/lang/ru/include/ -share/samba/swat/lang/ru/include/header.html -share/samba/swat/lang/tr/ -share/samba/swat/lang/tr/help/ -share/samba/swat/lang/tr/help/welcome.html -share/samba/swat/lang/tr/images/ -share/samba/swat/lang/tr/images/globals.gif -share/samba/swat/lang/tr/images/home.gif -share/samba/swat/lang/tr/images/passwd.gif -share/samba/swat/lang/tr/images/printers.gif -share/samba/swat/lang/tr/images/samba.gif -share/samba/swat/lang/tr/images/shares.gif -share/samba/swat/lang/tr/images/status.gif -share/samba/swat/lang/tr/images/viewconfig.gif @mode 0750 @sample /var/cache/samba/ @sample ${SAMBA_LOGDIR}/ Index: pkg/PLIST-util =================================================================== RCS file: /cvs/ports/net/samba4/pkg/PLIST-util,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 PLIST-util --- pkg/PLIST-util 4 May 2014 16:08:30 -0000 1.1.1.1 +++ pkg/PLIST-util 18 Jun 2015 14:15:34 -0000 @@ -13,6 +13,7 @@ include/samba-4.0/talloc.h @lib lib/libutil_setid.so.${LIButil_setid_VERSION} lib/pkgconfig/pytalloc-util.pc lib/pkgconfig/talloc.pc +lib/python${MODPY_VERSION}/site-packages/samba/socket_wrapper.so lib/python${MODPY_VERSION}/site-packages/talloc.so @lib lib/samba/libnss_wrapper.so.${LIBnss_wrapper_VERSION} @lib lib/samba/libreplace.so.${LIBreplace_VERSION} -- jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF DDCC 0DFA 74AE 1524 E7EE
