[gentoo-commits] proj/musl:master commit in: net-fs/samba/, net-fs/samba/files/4.4/, net-fs/samba/files/

2023-05-30 Thread Sam James
commit: c876a0148ce4cd09d61e721018157a6d62fd6bc9
Author: Sam James  gentoo  org>
AuthorDate: Wed May 31 00:32:08 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 31 00:32:08 2023 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=c876a014

net-fs/samba: treeclean

::gentoo should be fine now.

Signed-off-by: Sam James  gentoo.org>

 net-fs/samba/Manifest  |   1 -
 net-fs/samba/files/4.4/samba4.confd|  45 ---
 net-fs/samba/files/4.4/samba4.initd-r1 |  54 
 net-fs/samba/files/4.4/system-auth-winbind.pam |  18 --
 net-fs/samba/files/add-missing_signal_h.patch  |  11 -
 net-fs/samba/files/add_missing___compar_fn_t.patch |  14 -
 net-fs/samba/files/getpwent_r.patch|  80 -
 net-fs/samba/files/missing-headers.patch   |  38 ---
 net-fs/samba/files/musl_rm_unistd_incl.patch   |  37 ---
 net-fs/samba/files/musl_uintptr.patch  |  35 ---
 net-fs/samba/files/netdb-defines.patch |  19 --
 .../samba-4.13-vfs_snapper_configure_option.patch  |  56 
 net-fs/samba/files/samba-4.13-winexe_option.patch  |  67 
 .../samba-4.14.10-winbindd_regression_fix.patch|  42 ---
 net-fs/samba/files/samba-4.4.0-pam.patch   |  29 --
 net-fs/samba/files/samba-4.9.2-timespec.patch  |  21 --
 net-fs/samba/files/samba.conf  |   3 -
 net-fs/samba/metadata.xml  |  35 ---
 net-fs/samba/samba-4.15.7.ebuild   | 350 -
 19 files changed, 955 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
deleted file mode 100644
index 03fe0620..
--- a/net-fs/samba/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST samba-4.15.7.tar.gz 19290930 BLAKE2B 
4a295f79d38212d4c6917ed61a22e4204b5ea3d5e26f30b65d1e7e81842e92405870dd40fd4d05ec1126a532bdb1ddea300848387a4c64370ba5c2c1354ee8e5
 SHA512 
beffb09b5bcd62991398d39c7a8aec5fed0c51d550e2f0fb42b2e0a09094f4c6a8f29adf708c4969db12329f5c7343d2debd04315107b79bef59e99a4a7e4ce4

diff --git a/net-fs/samba/files/4.4/samba4.confd 
b/net-fs/samba/files/4.4/samba4.confd
deleted file mode 100644
index 629a6050..
--- a/net-fs/samba/files/4.4/samba4.confd
+++ /dev/null
@@ -1,45 +0,0 @@
-# Add "winbind" to the daemon_list if you also want winbind to start.
-# Replace "smbd nmbd" by "samba4" if you want the active directory domain 
controller part or the ntvfs
-# file server part or the rpc proxy to start.
-# Note that samba4 controls 'smbd' by itself, thus it can't be started 
manually. You can, however,
-# tweak the behaviour of a samba4-controlled smbd by modifying your 
'/etc/samba/smb.conf' file
-# accordingly.
-daemon_list="smbd nmbd"
-
-piddir="/run/samba"
-
-#
-# Daemons calls: _
-#
-my_service_name="samba"
-my_service_PRE="unset TMP TMPDIR"
-my_service_POST=""
-
-#
-# Daemons calls: _
-#
-smbd_start_options="-D"
-smbd_command="/usr/sbin/smbd"
-smbd_start="start-stop-daemon --start --exec ${smbd_command} -- 
${smbd_start_options}"
-smbd_stop="start-stop-daemon --stop --exec ${smbd_command}"
-smbd_reload="killall -HUP smbd"
-
-nmbd_start_options="-D"
-nmbd_command="/usr/sbin/nmbd"
-nmbd_start="start-stop-daemon --start --exec ${nmbd_command} -- 
${nmbd_start_options}"
-nmbd_stop="start-stop-daemon --stop --exec ${nmbd_command}"
-nmbd_reload="killall -HUP nmbd"
-
-samba4_start_options=""
-samba4_command="/usr/sbin/samba"
-samba4_pidfile="${piddir}/samba.pid"
-samba4_start="start-stop-daemon --start --exec ${samba4_command} --pidfile 
${samba4_pidfile} -- ${samba4_start_options}"
-samba4_stop="start-stop-daemon --stop --exec ${samba4_command} --pidfile 
${samba4_pidfile}"
-samba4_reload="killall -HUP samba"
-
-winbind_start_options=""
-winbind_command="/usr/sbin/winbindd"
-winbind_start="start-stop-daemon --start --exec ${winbind_command} -- 
${winbind_start_options}"
-winbind_stop="start-stop-daemon --stop --exec ${winbind_command}"
-winbind_reload="killall -HUP winbindd"
-

diff --git a/net-fs/samba/files/4.4/samba4.initd-r1 
b/net-fs/samba/files/4.4/samba4.initd-r1
deleted file mode 100644
index 0a528982..
--- a/net-fs/samba/files/4.4/samba4.initd-r1
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License, v2 or later
-
-extra_started_commands="reload"
-[ -z "${piddir}" ] && piddir="/run/samba"
-
-depend() {
-   after slapd
-   use cupsd
-}
-
-DAEMONNAME="${SVCNAME##samba.}"
-[ "${DAEMONNAME}" != "samba" ] && daemon_list=${DAEMONNAME}
-
-signal_do() {
-   local signal="$1"
-   [ -z "${signal}" ] && return 0
-
-  

[gentoo-commits] proj/musl:master commit in: net-fs/samba/files/4.4/

2022-07-19 Thread Anthony G. Basile
commit: 269a5ccfd3b9cfb67e28d3edfc7ee63c66492c02
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jul 19 17:50:20 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jul 19 17:50:20 2022 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=269a5ccf

net-fs/samba: add missing config files from tree

Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/files/4.4/samba4.confd| 45 +
 net-fs/samba/files/4.4/samba4.initd-r1 | 54 ++
 net-fs/samba/files/4.4/system-auth-winbind.pam | 18 +
 3 files changed, 117 insertions(+)

diff --git a/net-fs/samba/files/4.4/samba4.confd 
b/net-fs/samba/files/4.4/samba4.confd
new file mode 100644
index ..629a6050
--- /dev/null
+++ b/net-fs/samba/files/4.4/samba4.confd
@@ -0,0 +1,45 @@
+# Add "winbind" to the daemon_list if you also want winbind to start.
+# Replace "smbd nmbd" by "samba4" if you want the active directory domain 
controller part or the ntvfs
+# file server part or the rpc proxy to start.
+# Note that samba4 controls 'smbd' by itself, thus it can't be started 
manually. You can, however,
+# tweak the behaviour of a samba4-controlled smbd by modifying your 
'/etc/samba/smb.conf' file
+# accordingly.
+daemon_list="smbd nmbd"
+
+piddir="/run/samba"
+
+#
+# Daemons calls: _
+#
+my_service_name="samba"
+my_service_PRE="unset TMP TMPDIR"
+my_service_POST=""
+
+#
+# Daemons calls: _
+#
+smbd_start_options="-D"
+smbd_command="/usr/sbin/smbd"
+smbd_start="start-stop-daemon --start --exec ${smbd_command} -- 
${smbd_start_options}"
+smbd_stop="start-stop-daemon --stop --exec ${smbd_command}"
+smbd_reload="killall -HUP smbd"
+
+nmbd_start_options="-D"
+nmbd_command="/usr/sbin/nmbd"
+nmbd_start="start-stop-daemon --start --exec ${nmbd_command} -- 
${nmbd_start_options}"
+nmbd_stop="start-stop-daemon --stop --exec ${nmbd_command}"
+nmbd_reload="killall -HUP nmbd"
+
+samba4_start_options=""
+samba4_command="/usr/sbin/samba"
+samba4_pidfile="${piddir}/samba.pid"
+samba4_start="start-stop-daemon --start --exec ${samba4_command} --pidfile 
${samba4_pidfile} -- ${samba4_start_options}"
+samba4_stop="start-stop-daemon --stop --exec ${samba4_command} --pidfile 
${samba4_pidfile}"
+samba4_reload="killall -HUP samba"
+
+winbind_start_options=""
+winbind_command="/usr/sbin/winbindd"
+winbind_start="start-stop-daemon --start --exec ${winbind_command} -- 
${winbind_start_options}"
+winbind_stop="start-stop-daemon --stop --exec ${winbind_command}"
+winbind_reload="killall -HUP winbindd"
+

diff --git a/net-fs/samba/files/4.4/samba4.initd-r1 
b/net-fs/samba/files/4.4/samba4.initd-r1
new file mode 100644
index ..0a528982
--- /dev/null
+++ b/net-fs/samba/files/4.4/samba4.initd-r1
@@ -0,0 +1,54 @@
+#!/sbin/openrc-run
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License, v2 or later
+
+extra_started_commands="reload"
+[ -z "${piddir}" ] && piddir="/run/samba"
+
+depend() {
+   after slapd
+   use cupsd
+}
+
+DAEMONNAME="${SVCNAME##samba.}"
+[ "${DAEMONNAME}" != "samba" ] && daemon_list=${DAEMONNAME}
+
+signal_do() {
+   local signal="$1"
+   [ -z "${signal}" ] && return 0
+
+   local result=0 last_result=0 daemon= cmd_exec=
+   for daemon in ${daemon_list} ; do
+   eval cmd_exec=\$${daemon}_${signal}
+   if [ -n "${cmd_exec}" ]; then
+   ebegin "${my_service_name} -> ${signal}: ${daemon}"
+   #echo ${cmd} '->' ${!cmd}
+   ${cmd_exec} > /dev/null
+   last_result=$?
+   eend ${last_result}
+   fi
+   result=$(( ${result} + ${last_result} ))
+   done
+   return ${result}
+}
+
+start() {
+   ${my_service_PRE}
+   [ -d "${piddir}" ] || mkdir -p "${piddir}"
+   signal_do start && return 0
+
+   eerror "Error: starting services (see system logs)"
+   signal_do stop
+   return 1
+}
+stop() {
+   ${my_service_PRE}
+   if signal_do stop ; then
+   ${my_service_POST}
+   return 0
+   fi
+}
+reload() {
+   ${my_service_PRE}
+   signal_do reload
+}

diff --git a/net-fs/samba/files/4.4/system-auth-winbind.pam 
b/net-fs/samba/files/4.4/system-auth-winbind.pam
new file mode 100644
index ..8d6746b7
--- /dev/null
+++ b/net-fs/samba/files/4.4/system-auth-winbind.pam
@@ -0,0 +1,18 @@
+#%PAM-1.0
+# $Id$
+
+authrequired  pam_env.so
+authsufficientpam_winbind.so
+authsufficientpam_unix.so likeauth nullok use_first_pass
+authrequired  

[gentoo-commits] proj/musl:master commit in: net-fs/samba/, net-fs/samba/files/

2022-07-19 Thread Anthony G. Basile
commit: 12687968650c38f13b313c63bfb9ce552e8c5522
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jul 19 17:34:56 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jul 19 17:34:56 2022 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=12687968

net-fs/samba: add missing signal.h

Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/files/add-missing_signal_h.patch  | 11 ++
 .../samba/files/fix-musl-lib-without-innetgr.patch | 42 --
 net-fs/samba/samba-4.15.7.ebuild   |  2 +-
 3 files changed, 12 insertions(+), 43 deletions(-)

diff --git a/net-fs/samba/files/add-missing_signal_h.patch 
b/net-fs/samba/files/add-missing_signal_h.patch
new file mode 100644
index ..b6ea71c7
--- /dev/null
+++ b/net-fs/samba/files/add-missing_signal_h.patch
@@ -0,0 +1,11 @@
+diff -Naur samba-4.15.7.orig/source3/printing/samba-bgqd.c 
samba-4.15.7/source3/printing/samba-bgqd.c
+--- samba-4.15.7.orig/source3/printing/samba-bgqd.c2022-03-15 
09:19:34.136201100 -0400
 samba-4.15.7/source3/printing/samba-bgqd.c 2022-07-19 13:27:56.069779404 
-0400
+@@ -15,6 +15,7 @@
+  *  along with this program; if not, see .
+  */
+ 
++#include 
+ #include "replace.h"
+ #include "system/filesys.h"
+ #include "lib/util/server_id.h"

diff --git a/net-fs/samba/files/fix-musl-lib-without-innetgr.patch 
b/net-fs/samba/files/fix-musl-lib-without-innetgr.patch
deleted file mode 100644
index fb12a10e..
--- a/net-fs/samba/files/fix-musl-lib-without-innetgr.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From fcb8ecd530b2d151e373974741601483326f7528 Mon Sep 17 00:00:00 2001
-From: Changqing Li 
-Date: Thu, 27 Jun 2019 11:09:47 +0800
-Subject: [PATCH] samba: fix musl lib without innetgr
-
-Upstream-Status: Pending
-
-Signed-off-by: Changqing Li 

- lib/util/access.c | 2 +-
- source3/auth/user_util.c | 2 +-
- 2 file changed, 2 insertion(+), 2 deletion(-)
-
-diff --git a/lib/util/access.c b/lib/util/access.c
-index 7da0573..b94949e 100644
 a/lib/util/access.c
-+++ b/lib/util/access.c
-@@ -112,7 +112,7 @@ static bool string_match(const char *tok,const char *s)
-   return true;
-   }
-   } else if (tok[0] == '@') { /* netgroup: look it up */
--#ifdefHAVE_NETGROUP
-+#if defined(HAVE_NETGROUP) && defined(HAVE_INNETGR)
-   DATA_BLOB tmp;
-   char *mydomain = NULL;
-   char *hostname = NULL;
-diff --git a/source3/auth/user_util.c b/source3/auth/user_util.c
-index a76b5d4..30f523d 100644
 a/source3/auth/user_util.c
-+++ b/source3/auth/user_util.c
-@@ -148,7 +148,7 @@ static void store_map_in_gencache(TALLOC_CTX *ctx, const 
char *from, const char
- 
- bool user_in_netgroup(TALLOC_CTX *ctx, const char *user, const char *ngname)
- {
--#ifdef HAVE_NETGROUP
-+#if defined(HAVE_NETGROUP) && defined(HAVE_INNETGR)
-   static char *my_yp_domain = NULL;
-   char *lowercase_user = NULL;
- 
--- 
-2.7.4
-

diff --git a/net-fs/samba/samba-4.15.7.ebuild b/net-fs/samba/samba-4.15.7.ebuild
index 46fa6428..9ecb3bbf 100644
--- a/net-fs/samba/samba-4.15.7.ebuild
+++ b/net-fs/samba/samba-4.15.7.ebuild
@@ -183,7 +183,7 @@ src_prepare() {
 
if use elibc_musl ; then
eapply "${FILESDIR}"/add_missing___compar_fn_t.patch
-   eapply "${FILESDIR}"/fix-musl-lib-without-innetgr.patch
+   eapply "${FILESDIR}"/add-missing_signal_h.patch
eapply "${FILESDIR}"/getpwent_r.patch
eapply "${FILESDIR}"/missing-headers.patch
eapply "${FILESDIR}"/musl_rm_unistd_incl.patch



[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2022-07-19 Thread Anthony G. Basile
commit: 62cb1b05cdc491e2f8b3d641bb4890660c371670
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jul 19 16:54:17 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jul 19 16:54:17 2022 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=62cb1b05

net-fs/samba: sync with tree

Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/Manifest  |  2 +-
 net-fs/samba/metadata.xml  |  5 +-
 ...samba-4.14.10-r1.ebuild => samba-4.15.7.ebuild} | 58 ++
 3 files changed, 28 insertions(+), 37 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 43d9473c..03fe0620 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1 +1 @@
-DIST samba-4.14.10.tar.gz 19134066 BLAKE2B 
c6daebc7abbf2ed371ed694e4478d05875d55f7c5a9f83461932eebd7fe9089ff15e0530555d468e64f897d4cadab86e8c0acbfbd20938b3be842cb4324486e2
 SHA512 
0e1dd386d185cf77a2be4155646e98b3218316b5c290358684ec8eed747ffea67aa7db0937edc971fb791dc47f0f51306db33eb3b8cb65cca8787f18fd4b7f1c
+DIST samba-4.15.7.tar.gz 19290930 BLAKE2B 
4a295f79d38212d4c6917ed61a22e4204b5ea3d5e26f30b65d1e7e81842e92405870dd40fd4d05ec1126a532bdb1ddea300848387a4c64370ba5c2c1354ee8e5
 SHA512 
beffb09b5bcd62991398d39c7a8aec5fed0c51d550e2f0fb42b2e0a09094f4c6a8f29adf708c4969db12329f5c7343d2debd04315107b79bef59e99a4a7e4ce4

diff --git a/net-fs/samba/metadata.xml b/net-fs/samba/metadata.xml
index e871aa57..f0f5b091 100644
--- a/net-fs/samba/metadata.xml
+++ b/net-fs/samba/metadata.xml
@@ -1,5 +1,5 @@
 
-http://www.gentoo.org/dtd/metadata.dtd";>
+https://www.gentoo.org/dtd/metadata.dtd";>
 

sa...@gentoo.org
@@ -10,17 +10,14 @@


Enable Active Directory Domain Controller 
support
-   Enable AD DNS integration
Enable Active Directory support
Enable support for Ceph distributed 
filesystem via sys-cluster/ceph
Enables the client part
Enable support for clustering
-   Enable support for DMAPI. This currently 
works only in combination with XFS.
Enable support for Glusterfs filesystem 
via sys-cluster/glusterfs
Use app-crypt/gpgme for AD DC
Enable json audit support through 
dev-libs/jansson
Enabling iPrint technology by Novell
-   Enable support for NTVFS fileserver
Enables support for collecting 
profiling data
Enables support for user quotas
Enable support for regedit command-line 
tool

diff --git a/net-fs/samba/samba-4.14.10-r1.ebuild 
b/net-fs/samba/samba-4.15.7.ebuild
similarity index 87%
rename from net-fs/samba/samba-4.14.10-r1.ebuild
rename to net-fs/samba/samba-4.15.7.ebuild
index 3e4cf54a..46fa6428 100644
--- a/net-fs/samba/samba-4.14.10-r1.ebuild
+++ b/net-fs/samba/samba-4.15.7.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 PYTHON_REQ_USE="threads(+),xml(+)"
 inherit python-single-r1 waf-utils multilib-minimal linux-info systemd pam 
tmpfiles
 
@@ -16,24 +16,22 @@ if [[ ${PV} = *_rc* ]]; then
SRC_URI="mirror://samba/rc/${MY_P}.tar.gz"
 else
SRC_URI="mirror://samba/stable/${MY_P}.tar.gz"
-   KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
+   KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
 fi
 S="${WORKDIR}/${MY_P}"
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="acl addc addns ads ceph client cluster cups debug dmapi fam glusterfs
-gpg iprint json ldap ntvfs pam profiling-data python quota +regedit selinux
+IUSE="acl addc ads ceph client cluster cpu_flags_x86_aes cups debug fam
+glusterfs gpg iprint json ldap pam profiling-data python quota +regedit selinux
 snapper spotlight syslog system-heimdal +system-mitkrb5 systemd test winbind
 zeroconf"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}
addc? ( python json winbind )
-   addns? ( python )
-   ads? ( acl ldap winbind )
+   ads? ( acl ldap python winbind )
cluster? ( ads )
gpg? ( addc )
-   ntvfs? ( addc )
spotlight? ( json )
test? ( python )
!ads? ( !addc )
@@ -66,17 +64,16 @@ COMMON_DEPEND="
dev-libs/popt[${MULTILIB_USEDEP}]
dev-perl/Parse-Yapp
>=net-libs/gnutls-3.4.7[${MULTILIB_USEDEP}]
-   net-libs/libnsl:=[${MULTILIB_USEDEP}]
-   sys-libs/e2fsprogs-libs[${MULTILIB_USEDEP}]
-   >=sys-libs/ldb-2.3.2[ldap(+)?,${MULTILIB_USEDEP}]
-   =sys-fs/e2fsprogs-1.46.4-r51[${MULTILIB_USEDEP}]
+   >=sys-libs/ldb-2.4.2[ldap(+)?,${MULTILIB_USEDEP}]
+   =sys-libs/talloc-2.3.2[${MULTILIB_USEDEP}]
-   >=sys-libs/tdb-1.4.3[${MULTILIB_USEDEP}]
-   >=sys-libs/tevent-0.10.2[${MULTILIB_USEDEP}]
+   >=sys-libs/talloc-2.3.

[gentoo-commits] proj/musl:master commit in: net-fs/samba/, net-fs/samba/files/, net-fs/samba/files/4.4/

2021-12-14 Thread Jory Pratt
commit: 7520c89b08c9d1d33797f157fa30961941931261
Author: Jory Pratt  gentoo  org>
AuthorDate: Wed Dec 15 02:52:41 2021 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Wed Dec 15 02:52:41 2021 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=7520c89b

net-fs/samba: sync with ::gentoo

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Jory Pratt  gentoo.org>

 net-fs/samba/Manifest  |   3 +-
 net-fs/samba/files/4.4/samba4.confd|  45 ---
 net-fs/samba/files/4.4/samba4.initd-r1 |  54 
 net-fs/samba/files/4.4/system-auth-winbind.pam |  18 --
 .../samba-4.14.10-winbindd_regression_fix.patch|  42 +++
 net-fs/samba/samba-4.13.9.ebuild   | 342 -
 ...samba-4.14.4.ebuild => samba-4.14.10-r1.ebuild} |  30 +-
 7 files changed, 63 insertions(+), 471 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index edeccfba..43d9473c 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,2 +1 @@
-DIST samba-4.13.9.tar.gz 18443813 BLAKE2B 
24046586f666e9db02e1dd71d7eb854691f39e6b575b9652a8b7c1aa5569c856dfd48911e3f221de74f9deec5808152fa2836d03bb9810d55d4f526f1567574b
 SHA512 
35c98979c1141fe4bd700e3c8f2439ec08876697faeaced6668ea6a9fea1d8303ca34e82123499aa4a41054b9ed6e1260ae779ea8d59978ba6de6b5861f21948
-DIST samba-4.14.4.tar.gz 18645552 BLAKE2B 
4fbf4b000496b66c7c464a4b522108fde12df30dda90d0a86143c2a9ffa9d8907bbeab1bbad8974f87d4851f0afc31315ab52f27b23d19131934e89659c4e270
 SHA512 
200b2b2b08b369915e045f22ee993d5deea7a2533c6c582d4b88c614adcad5529109d449e843a2a1f292e5cfb1877d66421b5b0801ad988896cbe5413717e4dc
+DIST samba-4.14.10.tar.gz 19134066 BLAKE2B 
c6daebc7abbf2ed371ed694e4478d05875d55f7c5a9f83461932eebd7fe9089ff15e0530555d468e64f897d4cadab86e8c0acbfbd20938b3be842cb4324486e2
 SHA512 
0e1dd386d185cf77a2be4155646e98b3218316b5c290358684ec8eed747ffea67aa7db0937edc971fb791dc47f0f51306db33eb3b8cb65cca8787f18fd4b7f1c

diff --git a/net-fs/samba/files/4.4/samba4.confd 
b/net-fs/samba/files/4.4/samba4.confd
deleted file mode 100644
index 629a6050..
--- a/net-fs/samba/files/4.4/samba4.confd
+++ /dev/null
@@ -1,45 +0,0 @@
-# Add "winbind" to the daemon_list if you also want winbind to start.
-# Replace "smbd nmbd" by "samba4" if you want the active directory domain 
controller part or the ntvfs
-# file server part or the rpc proxy to start.
-# Note that samba4 controls 'smbd' by itself, thus it can't be started 
manually. You can, however,
-# tweak the behaviour of a samba4-controlled smbd by modifying your 
'/etc/samba/smb.conf' file
-# accordingly.
-daemon_list="smbd nmbd"
-
-piddir="/run/samba"
-
-#
-# Daemons calls: _
-#
-my_service_name="samba"
-my_service_PRE="unset TMP TMPDIR"
-my_service_POST=""
-
-#
-# Daemons calls: _
-#
-smbd_start_options="-D"
-smbd_command="/usr/sbin/smbd"
-smbd_start="start-stop-daemon --start --exec ${smbd_command} -- 
${smbd_start_options}"
-smbd_stop="start-stop-daemon --stop --exec ${smbd_command}"
-smbd_reload="killall -HUP smbd"
-
-nmbd_start_options="-D"
-nmbd_command="/usr/sbin/nmbd"
-nmbd_start="start-stop-daemon --start --exec ${nmbd_command} -- 
${nmbd_start_options}"
-nmbd_stop="start-stop-daemon --stop --exec ${nmbd_command}"
-nmbd_reload="killall -HUP nmbd"
-
-samba4_start_options=""
-samba4_command="/usr/sbin/samba"
-samba4_pidfile="${piddir}/samba.pid"
-samba4_start="start-stop-daemon --start --exec ${samba4_command} --pidfile 
${samba4_pidfile} -- ${samba4_start_options}"
-samba4_stop="start-stop-daemon --stop --exec ${samba4_command} --pidfile 
${samba4_pidfile}"
-samba4_reload="killall -HUP samba"
-
-winbind_start_options=""
-winbind_command="/usr/sbin/winbindd"
-winbind_start="start-stop-daemon --start --exec ${winbind_command} -- 
${winbind_start_options}"
-winbind_stop="start-stop-daemon --stop --exec ${winbind_command}"
-winbind_reload="killall -HUP winbindd"
-

diff --git a/net-fs/samba/files/4.4/samba4.initd-r1 
b/net-fs/samba/files/4.4/samba4.initd-r1
deleted file mode 100644
index 4798d434..
--- a/net-fs/samba/files/4.4/samba4.initd-r1
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License, v2 or later
-
-extra_started_commands="reload"
-[ -z "${piddir}" ] && piddir="/run/samba"
-
-depend() {
-   after slapd
-   use cupsd
-}
-
-DAEMONNAME="${SVCNAME##samba.}"
-[ "${DAEMONNAME}" != "samba" ] && daemon_list=${DAEMONNAME}
-
-signal_do() {
-   local signal="$1"
-   [ -z "${signal}" ] && return 0
-
-   local result=0 last_result=0 daemon= cmd_exec=
-   for daemon in ${da

[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2021-12-14 Thread Jory Pratt
commit: 0c64681b784f69a05087e87566c186e2a294e80b
Author: Jory Pratt  gentoo  org>
AuthorDate: Wed Dec 15 02:54:56 2021 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Wed Dec 15 02:54:56 2021 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=0c64681b

net-fs/samba: cleanup whitespace

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Jory Pratt  gentoo.org>

 net-fs/samba/samba-4.14.10-r1.ebuild | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/net-fs/samba/samba-4.14.10-r1.ebuild 
b/net-fs/samba/samba-4.14.10-r1.ebuild
index 849c1aa3..3e4cf54a 100644
--- a/net-fs/samba/samba-4.14.10-r1.ebuild
+++ b/net-fs/samba/samba-4.14.10-r1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} = *_rc* ]]; then
SRC_URI="mirror://samba/rc/${MY_P}.tar.gz"
 else
SRC_URI="mirror://samba/stable/${MY_P}.tar.gz"
-   KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
+   KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
 fi
 S="${WORKDIR}/${MY_P}"
 
@@ -188,15 +188,15 @@ src_prepare() {
-i source4/dsdb/samdb/ldb_modules/password_hash.c \
|| die
 
-if use elibc_musl ; then
-eapply "${FILESDIR}"/add_missing___compar_fn_t.patch
-eapply "${FILESDIR}"/fix-musl-lib-without-innetgr.patch
-eapply "${FILESDIR}"/getpwent_r.patch
-eapply "${FILESDIR}"/missing-headers.patch
-eapply "${FILESDIR}"/musl_rm_unistd_incl.patch
-eapply "${FILESDIR}"/musl_uintptr.patch
-eapply "${FILESDIR}"/netdb-defines.patch
-fi
+   if use elibc_musl ; then
+   eapply "${FILESDIR}"/add_missing___compar_fn_t.patch
+   eapply "${FILESDIR}"/fix-musl-lib-without-innetgr.patch
+   eapply "${FILESDIR}"/getpwent_r.patch
+   eapply "${FILESDIR}"/missing-headers.patch
+   eapply "${FILESDIR}"/musl_rm_unistd_incl.patch
+   eapply "${FILESDIR}"/musl_uintptr.patch
+   eapply "${FILESDIR}"/netdb-defines.patch
+   fi
 
# Friggin' WAF shit
multilib_copy_sources



[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2021-06-07 Thread Jory Pratt
commit: 3b5c6fbf0307fb48bdc02ad8b5d951ab6f09c5af
Author: Stijn Tintel  linux-ipv6  be>
AuthorDate: Thu Jun  3 16:09:58 2021 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Mon Jun  7 16:54:22 2021 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=3b5c6fbf

net-fs/samba: sync with ::gentoo

Package-Manager: Portage-3.0.18, Repoman-3.0.2
RepoMan-Options: --force
Signed-off-by: Stijn Tintel  linux-ipv6.be>
Signed-off-by: Jory Pratt  gentoo.org>

 net-fs/samba/Manifest  |   6 +-
 net-fs/samba/samba-4.12.12.ebuild  | 338 
 net-fs/samba/samba-4.12.9-r1.ebuild| 339 -
 .../{samba-4.13.5.ebuild => samba-4.13.9.ebuild}   |   7 +-
 .../{samba-4.14.0.ebuild => samba-4.14.4.ebuild}   |  11 +-
 5 files changed, 14 insertions(+), 687 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index dd0f270..edeccfb 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,4 +1,2 @@
-DIST samba-4.12.12.tar.gz 18252232 BLAKE2B 
4e5fabdbbcbf1df5e4a8966fbd55923c7fe97c4449574f0c17864dd9376197539ea29f59e00fc4fbb58ce18d4c7fcd8ab24e8f892edc9b32c646215287fc4bb7
 SHA512 
45ebed4cc73990993e800605391715afa2aa044e92bf89a62eb3ccbff97be2c9c4bf4a1f840a5d5d1d0c02704435c074e4ae386ca1729066b706c236c898c08f
-DIST samba-4.12.9.tar.gz 18236198 BLAKE2B 
e19c8416626ca2fe769bf26f3645e94f23781538b3c5e1f94ce618efb807d0732e5591525ec066a31cc0211463b9b66105d1d499989012d624edaa2a132c
 SHA512 
8bd3122bcaab2f5a16a73902a9b628384063a8116a08f0254541e05c148016839b3215c60ff0d3291a332e7884708950ad64137204b0ac19801012d3b6684fa6
-DIST samba-4.13.5.tar.gz 18426722 BLAKE2B 
d84b71cd8a925270670b7d302b527ee116cecf9d603baf1fc69c8527c657d5e2430e1b51e951476525fd95dc3392e5642a829a646c0eb254ccd7530bd393f1a4
 SHA512 
4187337fecf60fa133c6e81e894634f36028d34ccc521e5e856a5736a4f58fc2ad2cd136a206d141f17f7bc519a6168a27e83705fb2d38559667a60b24ad1c1f
-DIST samba-4.14.0.tar.gz 18635518 BLAKE2B 
ad1d091886b5da536a73bdbd4075f7ddc247e13a514e26c9bf993e8da5a3d737662ddd859c60d47a9a597e1326b96d7e8d083d5b15074f5875495cf68db58a24
 SHA512 
cf5767fc49b8c5832dd9711765e0b395a07964c3a618de10ae491123de7141eb4f083194b6120f302f5c4a196837a14070b8a8324412e8957af3706a5bbc6f11
+DIST samba-4.13.9.tar.gz 18443813 BLAKE2B 
24046586f666e9db02e1dd71d7eb854691f39e6b575b9652a8b7c1aa5569c856dfd48911e3f221de74f9deec5808152fa2836d03bb9810d55d4f526f1567574b
 SHA512 
35c98979c1141fe4bd700e3c8f2439ec08876697faeaced6668ea6a9fea1d8303ca34e82123499aa4a41054b9ed6e1260ae779ea8d59978ba6de6b5861f21948
+DIST samba-4.14.4.tar.gz 18645552 BLAKE2B 
4fbf4b000496b66c7c464a4b522108fde12df30dda90d0a86143c2a9ffa9d8907bbeab1bbad8974f87d4851f0afc31315ab52f27b23d19131934e89659c4e270
 SHA512 
200b2b2b08b369915e045f22ee993d5deea7a2533c6c582d4b88c614adcad5529109d449e843a2a1f292e5cfb1877d66421b5b0801ad988896cbe5413717e4dc

diff --git a/net-fs/samba/samba-4.12.12.ebuild 
b/net-fs/samba/samba-4.12.12.ebuild
deleted file mode 100644
index 43e2eab..000
--- a/net-fs/samba/samba-4.12.12.ebuild
+++ /dev/null
@@ -1,338 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{7,8} )
-PYTHON_REQ_USE='threads(+),xml(+)'
-inherit python-single-r1 waf-utils multilib-minimal linux-info systemd pam 
tmpfiles
-
-MY_PV="${PV/_rc/rc}"
-MY_P="${PN}-${MY_PV}"
-
-SRC_PATH="stable"
-[[ ${PV} = *_rc* ]] && SRC_PATH="rc"
-
-SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
-[[ ${PV} = *_rc* ]] || \
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-
-DESCRIPTION="Samba Suite Version 4"
-HOMEPAGE="https://www.samba.org/";
-LICENSE="GPL-3"
-
-SLOT="0"
-
-IUSE="acl addc addns ads ceph client cluster cups debug dmapi fam glusterfs
-gpg iprint json ldap ntvfs pam profiling-data python quota +regedit selinux
-snapper spotlight syslog system-heimdal +system-mitkrb5 systemd test winbind
-zeroconf"
-
-MULTILIB_WRAPPED_HEADERS=(
-   /usr/include/samba-4.0/policy.h
-   /usr/include/samba-4.0/dcerpc_server.h
-   /usr/include/samba-4.0/ctdb.h
-   /usr/include/samba-4.0/ctdb_client.h
-   /usr/include/samba-4.0/ctdb_protocol.h
-   /usr/include/samba-4.0/ctdb_private.h
-   /usr/include/samba-4.0/ctdb_typesafe_cb.h
-   /usr/include/samba-4.0/ctdb_version.h
-)
-
-CDEPEND="
-   >=app-arch/libarchive-3.1.2[${MULTILIB_USEDEP}]
-   dev-lang/perl:=
-   dev-libs/icu:=[${MULTILIB_USEDEP}]
-   dev-libs/libbsd[${MULTILIB_USEDEP}]
-   dev-libs/libtasn1[${MULTILIB_USEDEP}]
-   dev-libs/popt[${MULTILIB_USEDEP}]
-   dev-perl/Parse-Yapp
-   >=net-libs/gnutls-3.4.7[${MULTILIB_USEDEP}]
-   net-libs/libnsl:=[${MULTILIB_USEDEP}]
-   sys-libs/e2fsprogs-libs[${MULTILIB_USEDEP}]
-   
>=sys-libs/ldb-2.1.4[ldap(+)?,python?,${PYTHON_SINGLE_USEDEP},${MULTILIB_USEDEP}]
-   
=sys-libs/talloc-2.3.1[python?,${PYTHON_SINGLE_USEDEP},${MULTILIB_US

[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2021-04-29 Thread Dave Hughes
commit: 62bf930041e3549df54a0e166e798f4f18f7ca59
Author: Dave Hughes  gmail  com>
AuthorDate: Thu Apr 29 18:23:41 2021 +
Commit: Dave Hughes  gmail  com>
CommitDate: Thu Apr 29 18:23:41 2021 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=62bf9300

net-fs/samba: fix manifest

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Dave Hughes  gmail.com>

 net-fs/samba/Manifest | 21 -
 1 file changed, 21 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 22c3b6a..dd0f270 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,25 +1,4 @@
--BEGIN PGP SIGNED MESSAGE-
-Hash: SHA256
-
 DIST samba-4.12.12.tar.gz 18252232 BLAKE2B 
4e5fabdbbcbf1df5e4a8966fbd55923c7fe97c4449574f0c17864dd9376197539ea29f59e00fc4fbb58ce18d4c7fcd8ab24e8f892edc9b32c646215287fc4bb7
 SHA512 
45ebed4cc73990993e800605391715afa2aa044e92bf89a62eb3ccbff97be2c9c4bf4a1f840a5d5d1d0c02704435c074e4ae386ca1729066b706c236c898c08f
 DIST samba-4.12.9.tar.gz 18236198 BLAKE2B 
e19c8416626ca2fe769bf26f3645e94f23781538b3c5e1f94ce618efb807d0732e5591525ec066a31cc0211463b9b66105d1d499989012d624edaa2a132c
 SHA512 
8bd3122bcaab2f5a16a73902a9b628384063a8116a08f0254541e05c148016839b3215c60ff0d3291a332e7884708950ad64137204b0ac19801012d3b6684fa6
 DIST samba-4.13.5.tar.gz 18426722 BLAKE2B 
d84b71cd8a925270670b7d302b527ee116cecf9d603baf1fc69c8527c657d5e2430e1b51e951476525fd95dc3392e5642a829a646c0eb254ccd7530bd393f1a4
 SHA512 
4187337fecf60fa133c6e81e894634f36028d34ccc521e5e856a5736a4f58fc2ad2cd136a206d141f17f7bc519a6168a27e83705fb2d38559667a60b24ad1c1f
 DIST samba-4.14.0.tar.gz 18635518 BLAKE2B 
ad1d091886b5da536a73bdbd4075f7ddc247e13a514e26c9bf993e8da5a3d737662ddd859c60d47a9a597e1326b96d7e8d083d5b15074f5875495cf68db58a24
 SHA512 
cf5767fc49b8c5832dd9711765e0b395a07964c3a618de10ae491123de7141eb4f083194b6120f302f5c4a196837a14070b8a8324412e8957af3706a5bbc6f11
--BEGIN PGP SIGNATURE-
-
-iQKTBAEBCAB9FiEEZdLCSnfk9z83VSkfsaMsEcx8U7oFAmBM8fJfFIAALgAo
-aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDY1
-RDJDMjRBNzdFNEY3M0YzNzU1MjkxRkIxQTMyQzExQ0M3QzUzQkEACgkQsaMsEcx8
-U7ovtA//Q7n6hT6+s2KyenIutUiCeEDT2A8td+hCQZIyJWE36EVMH0xd3xZGvanc
-Y97BezUjv8AzGfAos7PVa1HrO1b4LqbVu0+EnvKM32aLJys71Rz2M2gp9gPRAxop
-9VdNplTiybau/RYjgRJi9aj7/0Co7/dludv2nccEIQItVzejVU+XBtAYfY7F7mry
-F4WXghOIB8nsKfHgZb0EfsVX+8BzaSUCVVXTbpULHY4VT+gCUM7WjKHBNOgBkVv9
-9kNOhDuVj9LC3UoRXwNxYjozW2vNZma4G129QgviTUk+TbA6MeG3/H3nCLVAQfVW
-LWbnwN5EznD48VSpfoLY7EbdvGOBvuXO4oVWIskLyvEwnICvJRWjSO4DaV+3tGby
-ViJnKSrnBjTLJWeZGaDUJSlx6djDQopAGeudL4FShvdgQlv24Qem50LFqM6A1oUc
-xUxoVThh0cOfsaMpJxW7AhCvzItslZ2Buf5elho1DyMLZEkeOY6nDqT1WaZqphp3
-QaF863c9K38ZIyx+dy9iRbIWAw0wYryLV8kRDjLfGKdsRD4drhitZqs48cN43vAP
-MjGP8yLHW6C5x5dGowFtrLqfRoAjDb8nUjAeQA/carhwLf0iWROYFRQXqjauhtAR
-VJEhtizHIhJoo8ZqPDonA8xuzwVM0l39lNBwu+jk8y3g89GpKDE=
-=HnOu
--END PGP SIGNATURE-



[gentoo-commits] proj/musl:master commit in: net-fs/samba/files/, net-fs/samba/files/4.4/, net-fs/samba/

2021-03-13 Thread Sam James
commit: 28de7a61d38252fa922854eba018a046250976ed
Author: Dave Hughes  gmail  com>
AuthorDate: Sat Mar 13 17:10:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Mar 13 21:25:46 2021 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=28de7a61

net-fs/samba: sync with ::gentoo

Package-Manager: Portage-3.0.17, Repoman-3.0.2
RepoMan-Options: --force
Manifest-Sign-Key: 0xA1919C830E9498E0
Signed-off-by: Dave Hughes  gmail.com>
Closes: https://github.com/gentoo/musl/pull/421
Signed-off-by: Sam James  gentoo.org>

 net-fs/samba/Manifest  |  36 ++--
 net-fs/samba/files/4.4/samba4.initd-r1 |   3 +-
 ..._fn_t.patch => add_missing___compar_fn_t.patch} |   2 -
 .../samba/files/fix-musl-lib-without-innetgr.patch |  42 +
 9-remove-getpwent_r.patch => getpwent_r.patch} |  14 +-
 net-fs/samba/files/missing-headers.patch   |  38 +
 net-fs/samba/files/musl-disable-netgroup.patch |  15 --
 net-fs/samba/files/musl_rm_unistd_incl.patch   |  37 
 net-fs/samba/files/musl_uintptr.patch  |  35 
 net-fs/samba/files/nmbd.service|  12 --
 .../samba-4.10.0-disable_gnutls_build_fix.patch|  32 
 .../samba-4.13-vfs_snapper_configure_option.patch  |  56 ++
 net-fs/samba/files/samba-4.13-winexe_option.patch  |  67 
 .../samba/files/samba-4.5.1-compile_et_fix.patch   |  16 --
 .../files/samba-4.8.6-no-pydsdb-when-no-addc.patch |  36 
 net-fs/samba/files/samba-glibc-2.26-no_rpc.patch   |  14 --
 net-fs/samba/files/samba.conf  |   1 +
 net-fs/samba/files/samba.service   |  10 --
 net-fs/samba/files/smbd.service|  12 --
 net-fs/samba/files/smbd.socket |   9 -
 net-fs/samba/files/smbd_at.service |   7 -
 net-fs/samba/files/winbindd.service|  12 --
 net-fs/samba/metadata.xml  |   5 +
 ...samba-4.11.6-r2.ebuild => samba-4.12.12.ebuild} |  89 ++
 ...{samba-4.11.8.ebuild => samba-4.12.9-r1.ebuild} |  82 +
 .../{samba-4.11.8.ebuild => samba-4.13.5.ebuild}   | 190 -
 .../{samba-4.11.8.ebuild => samba-4.14.0.ebuild}   | 190 -
 27 files changed, 626 insertions(+), 436 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 876f207..22c3b6a 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,23 +1,25 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256
 
-DIST samba-4.11.6.tar.gz 18541566 BLAKE2B 
2b4a40be7cec8a9706cbc344796885f59403aa11ca3d8a7dc40b3d287ec222c11d7395fd193c4b66c4116f1bffd869caf444a950d508f5a9a596db32553e1461
 SHA512 
3815080a1693c596a126371a5ea4e8534317a7266803c7de13a7e5b3ee9757dfbf13c0de20d498a6683d3aaf56941ed42f289e3c24f88713529a5f047a691af2
-DIST samba-4.11.8.tar.gz 18571308 BLAKE2B 
024920789ac8fcedfc79f4d094a47e4c1399a0bbc3ad79908f66b9bbabd765865795763c1017cc0caba18dbc11ce6a7e25231804d7dff11ab3d97a599ab8d9ed
 SHA512 
a036c46e060d9edc11bf4e45e0449042fe44b74ff083d305779c68dad943f87fb6d2680f3a68e6bbcd0b19c8c397ec9fc5794229a311c25dad9efc366add613a
+DIST samba-4.12.12.tar.gz 18252232 BLAKE2B 
4e5fabdbbcbf1df5e4a8966fbd55923c7fe97c4449574f0c17864dd9376197539ea29f59e00fc4fbb58ce18d4c7fcd8ab24e8f892edc9b32c646215287fc4bb7
 SHA512 
45ebed4cc73990993e800605391715afa2aa044e92bf89a62eb3ccbff97be2c9c4bf4a1f840a5d5d1d0c02704435c074e4ae386ca1729066b706c236c898c08f
+DIST samba-4.12.9.tar.gz 18236198 BLAKE2B 
e19c8416626ca2fe769bf26f3645e94f23781538b3c5e1f94ce618efb807d0732e5591525ec066a31cc0211463b9b66105d1d499989012d624edaa2a132c
 SHA512 
8bd3122bcaab2f5a16a73902a9b628384063a8116a08f0254541e05c148016839b3215c60ff0d3291a332e7884708950ad64137204b0ac19801012d3b6684fa6
+DIST samba-4.13.5.tar.gz 18426722 BLAKE2B 
d84b71cd8a925270670b7d302b527ee116cecf9d603baf1fc69c8527c657d5e2430e1b51e951476525fd95dc3392e5642a829a646c0eb254ccd7530bd393f1a4
 SHA512 
4187337fecf60fa133c6e81e894634f36028d34ccc521e5e856a5736a4f58fc2ad2cd136a206d141f17f7bc519a6168a27e83705fb2d38559667a60b24ad1c1f
+DIST samba-4.14.0.tar.gz 18635518 BLAKE2B 
ad1d091886b5da536a73bdbd4075f7ddc247e13a514e26c9bf993e8da5a3d737662ddd859c60d47a9a597e1326b96d7e8d083d5b15074f5875495cf68db58a24
 SHA512 
cf5767fc49b8c5832dd9711765e0b395a07964c3a618de10ae491123de7141eb4f083194b6120f302f5c4a196837a14070b8a8324412e8957af3706a5bbc6f11
 -BEGIN PGP SIGNATURE-
 
-iQKTBAEBCAB9FiEEOA+uIz0+s3MTYJHqpFO6gRhEr2EFAl7u72hfFIAALgAo
-aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDM4
-MEZBRTIzM0QzRUIzNzMxMzYwOTFFQUE0NTNCQTgxMTg0NEFGNjEACgkQpFO6gRhE
-r2FPzw//cIo8r9QWWD4xVicZUU/FoXw63ZaIPfYwBJKP+RL9XKHFE0rv7CVZXJLx
-xH2hv4rfoMo11qzUrd3IYSh6xCV1568ikEDbWfwRqNEHlEBbmJ6xPuL9oCpl0TJM
-RSwRQut/fCeRyYH+odnO3v3eKmGVEUayz3ijwHtmwSK6oOs2xdp1hp2hb754eA13
-UgEiC9kp1pYiUpyMuLQYxsGbSV63znb4HgrJG6Dr9MjfpGks6kUeETkmM6qjU4aD
-Bqfeig2L3f6Flz1jnGBEkH/KcXMc6+2V8O9um+QMztR+UE/XlM8Saqg6WKGL71vA
-xhrZY/E3OCe9wpzn7ndJhFi

[gentoo-commits] proj/musl:master commit in: net-fs/samba/, net-fs/samba/files/

2020-06-22 Thread Anthony G. Basile
commit: 8e1dac64ed1ec283415018317cac8a3721e211b5
Author: Louis Leseur  gmail  com>
AuthorDate: Sun Jun 21 05:26:00 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jun 22 16:48:52 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=8e1dac64

net-fs/samba: bump to version 4.11.8

Sync with ::gentoo.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Manifest-Sign-Key: 0x3E2EEE90CCB2DF78
Signed-off-by: Louis Leseur  gmail.com>
Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/Manifest  |  22 ++
 .../files/samba-4.11.8-musl-fix-compar_fn_t.patch  |  16 ++
 net-fs/samba/samba-4.11.8.ebuild   | 319 +
 3 files changed, 357 insertions(+)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index c9827f9..876f207 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1 +1,23 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
 DIST samba-4.11.6.tar.gz 18541566 BLAKE2B 
2b4a40be7cec8a9706cbc344796885f59403aa11ca3d8a7dc40b3d287ec222c11d7395fd193c4b66c4116f1bffd869caf444a950d508f5a9a596db32553e1461
 SHA512 
3815080a1693c596a126371a5ea4e8534317a7266803c7de13a7e5b3ee9757dfbf13c0de20d498a6683d3aaf56941ed42f289e3c24f88713529a5f047a691af2
+DIST samba-4.11.8.tar.gz 18571308 BLAKE2B 
024920789ac8fcedfc79f4d094a47e4c1399a0bbc3ad79908f66b9bbabd765865795763c1017cc0caba18dbc11ce6a7e25231804d7dff11ab3d97a599ab8d9ed
 SHA512 
a036c46e060d9edc11bf4e45e0449042fe44b74ff083d305779c68dad943f87fb6d2680f3a68e6bbcd0b19c8c397ec9fc5794229a311c25dad9efc366add613a
+-BEGIN PGP SIGNATURE-
+
+iQKTBAEBCAB9FiEEOA+uIz0+s3MTYJHqpFO6gRhEr2EFAl7u72hfFIAALgAo
+aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDM4
+MEZBRTIzM0QzRUIzNzMxMzYwOTFFQUE0NTNCQTgxMTg0NEFGNjEACgkQpFO6gRhE
+r2FPzw//cIo8r9QWWD4xVicZUU/FoXw63ZaIPfYwBJKP+RL9XKHFE0rv7CVZXJLx
+xH2hv4rfoMo11qzUrd3IYSh6xCV1568ikEDbWfwRqNEHlEBbmJ6xPuL9oCpl0TJM
+RSwRQut/fCeRyYH+odnO3v3eKmGVEUayz3ijwHtmwSK6oOs2xdp1hp2hb754eA13
+UgEiC9kp1pYiUpyMuLQYxsGbSV63znb4HgrJG6Dr9MjfpGks6kUeETkmM6qjU4aD
+Bqfeig2L3f6Flz1jnGBEkH/KcXMc6+2V8O9um+QMztR+UE/XlM8Saqg6WKGL71vA
+xhrZY/E3OCe9wpzn7ndJhFiFzZAZz9giBA0NAvFUjZEW0IkBVTq5rL2Y5JDq9zL3
+IonRVy6jVAnHgAChvV7pohIb19x/1BIty+G9ecmMNb6k9vAOr1BRe/pqwLpxkw3P
+EcaiihIPoFvgjqZj1B3x9vkLxJ0+xp62WIG2Tc+M6owHr58cg84C8FlCvIdyldsK
+9xSRvOuH/f4Uf2/fG39dsOtBJciDWXCkkupDADGS3yYBH3WkBLvtsqC5cNdd5wqR
+HGH0JKTutI8GpbfXcEKOAQn++CI3VZ3UEccDONb/HrY/TPNCMsxShF/sJG51SioB
+yvbW6kpIfstTq6Gbsf7EigVDN/SJrB4PlB+QsxCOleb2ConHkTs=
+=h02N
+-END PGP SIGNATURE-

diff --git a/net-fs/samba/files/samba-4.11.8-musl-fix-compar_fn_t.patch 
b/net-fs/samba/files/samba-4.11.8-musl-fix-compar_fn_t.patch
new file mode 100644
index 000..223bc64
--- /dev/null
+++ b/net-fs/samba/files/samba-4.11.8-musl-fix-compar_fn_t.patch
@@ -0,0 +1,16 @@
+diff --git a/source4/dsdb/samdb/ldb_modules/count_attrs.c 
b/source4/dsdb/samdb/ldb_modules/count_attrs.c
+index b0d1b22..2d53b53 100644
+--- a/source4/dsdb/samdb/ldb_modules/count_attrs.c
 b/source4/dsdb/samdb/ldb_modules/count_attrs.c
+@@ -38,6 +38,11 @@
+ #define NULL_REQ_PSEUDO_N -2LL;
+ #define STAR_REQ_PSEUDO_N -4LL;
+ 
++#ifndef __COMPAR_FN_T
++#define __COMPAR_FN_T
++typedef int (*__compar_fn_t)(const void *, const void *);
++#endif
++
+ struct count_attrs_private {
+   struct tdb_wrap *requested;
+   struct tdb_wrap *duplicates;

diff --git a/net-fs/samba/samba-4.11.8.ebuild b/net-fs/samba/samba-4.11.8.ebuild
new file mode 100644
index 000..4bfa167
--- /dev/null
+++ b/net-fs/samba/samba-4.11.8.ebuild
@@ -0,0 +1,319 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_REQ_USE='threads(+),xml(+)'
+inherit python-single-r1 waf-utils multilib-minimal linux-info systemd pam
+
+MY_PV="${PV/_rc/rc}"
+MY_P="${PN}-${MY_PV}"
+
+SRC_PATH="stable"
+[[ ${PV} = *_rc* ]] && SRC_PATH="rc"
+
+SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
+[[ ${PV} = *_rc* ]] || \
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+
+DESCRIPTION="Samba Suite Version 4"
+HOMEPAGE="https://www.samba.org/";
+LICENSE="GPL-3"
+
+SLOT="0"
+
+IUSE="acl addc addns ads ceph client cluster cups debug dmapi fam gpg iprint
+json ldap pam profiling-data python quota selinux syslog system-heimdal
++system-mitkrb5 systemd test winbind zeroconf"
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/samba-4.0/policy.h
+   /usr/include/samba-4.0/dcerpc_server.h
+   /usr/include/samba-4.0/ctdb.h
+   /usr/include/samba-4.0/ctdb_client.h
+   /usr/include/samba-4.0/ctdb_protocol.h
+   /usr/include/samba-4.0/ctdb_private.h
+   /usr/include/samba-4.0/ctdb_typesafe_cb.h
+   /usr/include/samba-4.0/ctdb_version.h
+)
+
+CDEPEND="
+   >=app-arch/libarchive-3.1.2[${MULTILIB_USEDEP}]
+   dev-lang/perl:=
+   dev-libs/libbsd[${MULTILIB_USEDEP}]
+   dev-libs/libtasn1[${MULTILIB_USEDEP}]
+   de

[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2020-06-22 Thread Anthony G. Basile
commit: 1b5491c62fdc41d39444c6ab66e8398198b26946
Author: Louis Leseur  gmail  com>
AuthorDate: Sun Jun 21 05:32:01 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jun 22 16:48:52 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=1b5491c6

net-fs/samba: Mark 4.11.8 stable

>From ::gentoo.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Manifest-Sign-Key: 0x3E2EEE90CCB2DF78
Signed-off-by: Louis Leseur  gmail.com>
Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/samba-4.11.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-fs/samba/samba-4.11.8.ebuild b/net-fs/samba/samba-4.11.8.ebuild
index 4bfa167..ac19624 100644
--- a/net-fs/samba/samba-4.11.8.ebuild
+++ b/net-fs/samba/samba-4.11.8.ebuild
@@ -15,7 +15,7 @@ SRC_PATH="stable"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="https://www.samba.org/";



[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2020-03-26 Thread Jory Pratt
commit: ed48c6b2683d81c2d4422cb1e5b78a4b66a68540
Author: Jory Pratt  gentoo  org>
AuthorDate: Fri Mar 27 00:25:27 2020 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Fri Mar 27 00:25:27 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=ed48c6b2

net-fs/samba: sync with tree

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Jory Pratt  gentoo.org>

 net-fs/samba/Manifest  |   6 +-
 net-fs/samba/metadata.xml  |   1 +
 ...mba-4.10.2-r1.ebuild => samba-4.11.6-r2.ebuild} |  60 ++--
 net-fs/samba/samba-4.5.16-r1.ebuild| 298 
 net-fs/samba/samba-4.8.6-r3.ebuild | 291 ---
 net-fs/samba/samba-4.9.6-r1.ebuild | 308 -
 6 files changed, 35 insertions(+), 929 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 11b5030..c9827f9 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,5 +1 @@
-DIST samba-4.10.2.tar.gz 18280710 BLAKE2B 
f15b117d1159dfa6cd279c5011629d688fcfba94a2ca8184a827d0787a31f76a38f46b355454b916f2e62c0a88109b86664f6bb16fc0e23d0f61d09908e587cd
 SHA512 
3d146ea12567ebb02a7babcad779b82339ffbfb19f6f2be5cac33eb18af2c9b546dc1cd910072a5c9e152ba9c4a632ed6870c48a8f6ad9d04304b130f240a4bf
-DIST samba-4.5.11-disable-python-patches.tar.xz 6292 BLAKE2B 
c2a32a1059a02bc1c87ce5f604cbc5878c654b8f693c8486b5ba63b37513444915a7b6389fe82b7e31ab2f9577dd8462eddba60b4f4f756b4ed1145ce7bd90ae
 SHA512 
f0e3076e3e1ecaae3f06b3ef30efc81719fb3f63a1041dcbdae4b62ca4cf693732f9eb16f047d046d4930136fed82194e82b455ea888e12cf845b3e6a122d57d
-DIST samba-4.5.16.tar.gz 21024396 BLAKE2B 
e737559fb748044076608fa233700eb54c7e1c56bc234763f062b6341a179cc78a4a8cdf9f3d6f4d7f3cf8a79f846852ddd5cc753a468c3adb3a0451e1809ed9
 SHA512 
de8a41013cfb5ef3adcb290efd97a78a5de876d90ad05764d631f14e663a1849bb53e4ac394b46c906f1109be5748fee9316407a659c57007d36851ae8adcd7f
-DIST samba-4.8.6.tar.gz 17723841 BLAKE2B 
38da52e14b4417f26462eef2226c4498e54d2c276b4056e8c6d6c66079f33bcda24c1eab30b29bc7413280ec89a74a55e043e8274ac50f9a25bae7563717ff34
 SHA512 
f6afab5ca466bd8653a56c205b71ce94ecf0ad0c6e4c9d64cbba7b1e56f1987bc2022e6b629d87eb6078e3f6ba53833c19cfb41e40b6d589e4317ea9d85de273
-DIST samba-4.9.6.tar.gz 18068196 BLAKE2B 
03a04abb430abc4b7ba6fc5ade8690c215948d24fe1044d79c2dd1f8242b6708f0618045e37ad73114413dcef70bcf45de15f358a0e012cecfea045b9ab9165c
 SHA512 
462774e60f0165aa445821795c373ab6845ac2790578a68e84c0c82f761ddf29bf5186106a95f394e24b8ef7393d7abe003f95e72f5c5892bbf992f58e350531
+DIST samba-4.11.6.tar.gz 18541566 BLAKE2B 
2b4a40be7cec8a9706cbc344796885f59403aa11ca3d8a7dc40b3d287ec222c11d7395fd193c4b66c4116f1bffd869caf444a950d508f5a9a596db32553e1461
 SHA512 
3815080a1693c596a126371a5ea4e8534317a7266803c7de13a7e5b3ee9757dfbf13c0de20d498a6683d3aaf56941ed42f289e3c24f88713529a5f047a691af2

diff --git a/net-fs/samba/metadata.xml b/net-fs/samba/metadata.xml
index 97a8476..fb277df 100644
--- a/net-fs/samba/metadata.xml
+++ b/net-fs/samba/metadata.xml
@@ -19,6 +19,7 @@
Use app-crypt/gpgme for AD DC
Enable json audit support through 
dev-libs/jansson
Enabling iPrint technology by Novell
+   Enables support for collecting 
profiling data
Enables support for user quotas
Use app-crypt/heimdal 
instead of
bundled heimdal.

diff --git a/net-fs/samba/samba-4.10.2-r1.ebuild 
b/net-fs/samba/samba-4.11.6-r2.ebuild
similarity index 85%
rename from net-fs/samba/samba-4.10.2-r1.ebuild
rename to net-fs/samba/samba-4.11.6-r2.ebuild
index ac37e44..99d99d3 100644
--- a/net-fs/samba/samba-4.10.2-r1.ebuild
+++ b/net-fs/samba/samba-4.11.6-r2.ebuild
@@ -2,9 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python3_{6,7} )
-PYTHON_REQ_USE='threads(+),xml(+)'
 
+PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_REQ_USE='threads(+),xml(+)'
 inherit python-single-r1 waf-utils multilib-minimal linux-info systemd pam
 
 MY_PV="${PV/_rc/rc}"
@@ -15,7 +15,7 @@ SRC_PATH="stable"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="https://www.samba.org/";
@@ -23,8 +23,9 @@ LICENSE="GPL-3"
 
 SLOT="0"
 
-IUSE="acl addc addns ads ceph client cluster cups debug dmapi fam gnutls gpg 
iprint json ldap
-pam python quota selinux syslog system-heimdal +system-mitkrb5 systemd test 
winbind zeroconf"
+IUSE="acl addc addns ads ceph client cluster cups debug dmapi fam gpg iprint
+json ldap pam profiling-data python quota selinux syslog system-heimdal
++system-mitkrb5 systemd test winbind zeroconf"
 
 MULTILIB_WRAPPED_HEADERS=(
/usr/include/samba-4.0/policy.h
@@ -43,19 +44,21 @@ CDEPEND="
dev-lang/perl:=
dev-libs/libaio[${MULT

[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2020-02-26 Thread Georgy Yakovlev
commit: 86a208c6f836d50478e24a38390a02fbd2c85838
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Feb 26 18:17:23 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Feb 26 18:44:09 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=86a208c6

net-fs/samba: switch to PYTHON_MULTI_USEDEP API

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --force
Signed-off-by: Georgy Yakovlev  gentoo.org>

 ...{samba-4.10.2.ebuild => samba-4.10.2-r1.ebuild} | 22 +++-
 ...{samba-4.5.16.ebuild => samba-4.5.16-r1.ebuild} | 10 +
 ...samba-4.8.6-r2.ebuild => samba-4.8.6-r3.ebuild} | 24 --
 .../{samba-4.9.6.ebuild => samba-4.9.6-r1.ebuild}  | 24 --
 4 files changed, 44 insertions(+), 36 deletions(-)

diff --git a/net-fs/samba/samba-4.10.2.ebuild 
b/net-fs/samba/samba-4.10.2-r1.ebuild
similarity index 93%
rename from net-fs/samba/samba-4.10.2.ebuild
rename to net-fs/samba/samba-4.10.2-r1.ebuild
index c25e4d2..ac37e44 100644
--- a/net-fs/samba/samba-4.10.2.ebuild
+++ b/net-fs/samba/samba-4.10.2-r1.ebuild
@@ -45,26 +45,28 @@ CDEPEND="
dev-libs/libbsd[${MULTILIB_USEDEP}]
dev-libs/iniparser:0
dev-libs/popt[${MULTILIB_USEDEP}]
-   dev-python/subunit[${PYTHON_USEDEP},${MULTILIB_USEDEP}]
>=dev-util/cmocka-1.1.1[${MULTILIB_USEDEP}]
net-libs/libnsl:=[${MULTILIB_USEDEP}]
sys-apps/attr[${MULTILIB_USEDEP}]
-   
>=sys-libs/ldb-1.5.4[ldap(+)?,python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
-   
=sys-libs/ldb-1.5.4[ldap(+)?,python?,${PYTHON_SINGLE_USEDEP},${MULTILIB_USEDEP}]
+   
=sys-libs/talloc-2.1.16[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
-   >=sys-libs/tdb-1.3.18[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
-   >=sys-libs/tevent-0.9.39[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   
>=sys-libs/talloc-2.1.16[python?,${PYTHON_SINGLE_USEDEP},${MULTILIB_USEDEP}]
+   
>=sys-libs/tdb-1.3.18[python?,${PYTHON_SINGLE_USEDEP},${MULTILIB_USEDEP}]
+   
>=sys-libs/tevent-0.9.39[python?,${PYTHON_SINGLE_USEDEP},${MULTILIB_USEDEP}]
sys-libs/zlib[${MULTILIB_USEDEP}]
virtual/libiconv
pam? ( sys-libs/pam )
acl? ( virtual/acl )
-   addns? (
-   net-dns/bind-tools[gssapi]
-   dev-python/dnspython:=[${PYTHON_USEDEP}]
-   )
+   $(python_gen_cond_dep "
+   dev-python/subunit[\${PYTHON_MULTI_USEDEP},${MULTILIB_USEDEP}]
+   addns? (
+   net-dns/bind-tools[gssapi]
+   dev-python/dnspython:=[\${PYTHON_MULTI_USEDEP}]
+   )
+   ")
ceph? ( sys-cluster/ceph )
cluster? (
net-libs/rpcsvc-proto

diff --git a/net-fs/samba/samba-4.5.16.ebuild 
b/net-fs/samba/samba-4.5.16-r1.ebuild
similarity index 96%
rename from net-fs/samba/samba-4.5.16.ebuild
rename to net-fs/samba/samba-4.5.16-r1.ebuild
index 1972b3d..4902bdb 100644
--- a/net-fs/samba/samba-4.5.16.ebuild
+++ b/net-fs/samba/samba-4.5.16-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -52,7 +52,9 @@ CDEPEND="${PYTHON_DEPS}
dev-libs/libbsd[${MULTILIB_USEDEP}]
dev-libs/iniparser:0
dev-libs/popt[${MULTILIB_USEDEP}]
-   dev-python/subunit[${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   $(python_gen_cond_dep "
+   dev-python/subunit[\${PYTHON_MULTI_USEDEP},${MULTILIB_USEDEP}]
+   ")
net-libs/libnsl:=[${MULTILIB_USEDEP}]
sys-apps/attr[${MULTILIB_USEDEP}]
>=sys-libs/ldb-1.1.27[ldap(+)?,python(+),${MULTILIB_USEDEP}]
@@ -60,8 +62,8 @@ CDEPEND="${PYTHON_DEPS}
sys-libs/libcap
sys-libs/ncurses:0=[${MULTILIB_USEDEP}]
sys-libs/readline:0=
-   >=sys-libs/talloc-2.1.8[python,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
-   >=sys-libs/tdb-1.3.10[python,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   
>=sys-libs/talloc-2.1.8[python,${PYTHON_SINGLE_USEDEP},${MULTILIB_USEDEP}]
+   >=sys-libs/tdb-1.3.10[python,${PYTHON_SINGLE_USEDEP},${MULTILIB_USEDEP}]
>=sys-libs/tevent-0.9.31-r1[${MULTILIB_USEDEP}]
sys-libs/zlib[${MULTILIB_USEDEP}]
virtual/libiconv

diff --git a/net-fs/samba/samba-4.8.6-r2.ebuild 
b/net-fs/samba/samba-4.8.6-r3.ebuild
similarity index 92%
rename from net-fs/samba/samba-4.8.6-r2.ebuild
rename to net-fs/samba/samba-4.8.6-r3.ebuild
index a182d1d..569f23e 100644
--- a/net-fs/samba/samba-4.8.6-r2.ebuild
+++ b/net-fs/samba/samba-4.8.6-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -45,26 +45,28 @@ CDEPEND="
dev-libs/libbsd[${MULTILIB_USEDEP}]
dev-libs/iniparser:0
dev-libs/popt[${MULTILIB_USEDEP}]
-   dev-python/subunit[${PYTHON_US

[gentoo-commits] proj/musl:master commit in: net-fs/samba/files/4.4/, net-fs/samba/files/, net-fs/samba/

2020-01-07 Thread Anthony G. Basile
commit: 95463002683ddba27b2b6ef000ee1aa5bd2668ae
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jan  7 21:22:46 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jan  7 21:22:46 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=95463002

net-fs/samba: bump to 4.10.2 and fix bug #701550

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/Manifest  |   1 +
 net-fs/samba/files/4.4/samba4.confd|  23 +-
 net-fs/samba/files/4.4/samba4.initd-r1 |   4 +-
 net-fs/samba/files/4.4/system-auth-winbind.pam |  18 ++
 .../samba-4.10.0-disable_gnutls_build_fix.patch|  32 +++
 net-fs/samba/samba-4.10.2.ebuild   | 309 +
 6 files changed, 377 insertions(+), 10 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 666b10c..11b5030 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,3 +1,4 @@
+DIST samba-4.10.2.tar.gz 18280710 BLAKE2B 
f15b117d1159dfa6cd279c5011629d688fcfba94a2ca8184a827d0787a31f76a38f46b355454b916f2e62c0a88109b86664f6bb16fc0e23d0f61d09908e587cd
 SHA512 
3d146ea12567ebb02a7babcad779b82339ffbfb19f6f2be5cac33eb18af2c9b546dc1cd910072a5c9e152ba9c4a632ed6870c48a8f6ad9d04304b130f240a4bf
 DIST samba-4.5.11-disable-python-patches.tar.xz 6292 BLAKE2B 
c2a32a1059a02bc1c87ce5f604cbc5878c654b8f693c8486b5ba63b37513444915a7b6389fe82b7e31ab2f9577dd8462eddba60b4f4f756b4ed1145ce7bd90ae
 SHA512 
f0e3076e3e1ecaae3f06b3ef30efc81719fb3f63a1041dcbdae4b62ca4cf693732f9eb16f047d046d4930136fed82194e82b455ea888e12cf845b3e6a122d57d
 DIST samba-4.5.16.tar.gz 21024396 BLAKE2B 
e737559fb748044076608fa233700eb54c7e1c56bc234763f062b6341a179cc78a4a8cdf9f3d6f4d7f3cf8a79f846852ddd5cc753a468c3adb3a0451e1809ed9
 SHA512 
de8a41013cfb5ef3adcb290efd97a78a5de876d90ad05764d631f14e663a1849bb53e4ac394b46c906f1109be5748fee9316407a659c57007d36851ae8adcd7f
 DIST samba-4.8.6.tar.gz 17723841 BLAKE2B 
38da52e14b4417f26462eef2226c4498e54d2c276b4056e8c6d6c66079f33bcda24c1eab30b29bc7413280ec89a74a55e043e8274ac50f9a25bae7563717ff34
 SHA512 
f6afab5ca466bd8653a56c205b71ce94ecf0ad0c6e4c9d64cbba7b1e56f1987bc2022e6b629d87eb6078e3f6ba53833c19cfb41e40b6d589e4317ea9d85de273

diff --git a/net-fs/samba/files/4.4/samba4.confd 
b/net-fs/samba/files/4.4/samba4.confd
index 58b2c78..629a605 100644
--- a/net-fs/samba/files/4.4/samba4.confd
+++ b/net-fs/samba/files/4.4/samba4.confd
@@ -6,6 +6,8 @@
 # accordingly.
 daemon_list="smbd nmbd"
 
+piddir="/run/samba"
+
 #
 # Daemons calls: _
 #
@@ -17,22 +19,27 @@ my_service_POST=""
 # Daemons calls: _
 #
 smbd_start_options="-D"
-smbd_start="start-stop-daemon --start --exec /usr/sbin/smbd -- 
${smbd_start_options}"
-smbd_stop="start-stop-daemon --stop --exec /usr/sbin/smbd"
+smbd_command="/usr/sbin/smbd"
+smbd_start="start-stop-daemon --start --exec ${smbd_command} -- 
${smbd_start_options}"
+smbd_stop="start-stop-daemon --stop --exec ${smbd_command}"
 smbd_reload="killall -HUP smbd"
 
 nmbd_start_options="-D"
-nmbd_start="start-stop-daemon --start --exec /usr/sbin/nmbd -- 
${nmbd_start_options}"
-nmbd_stop="start-stop-daemon --stop --exec /usr/sbin/nmbd"
+nmbd_command="/usr/sbin/nmbd"
+nmbd_start="start-stop-daemon --start --exec ${nmbd_command} -- 
${nmbd_start_options}"
+nmbd_stop="start-stop-daemon --stop --exec ${nmbd_command}"
 nmbd_reload="killall -HUP nmbd"
 
 samba4_start_options=""
-samba4_start="start-stop-daemon --start --exec /usr/sbin/samba -- 
${samba4_start_options}"
-samba4_stop="start-stop-daemon --stop --exec /usr/sbin/samba"
+samba4_command="/usr/sbin/samba"
+samba4_pidfile="${piddir}/samba.pid"
+samba4_start="start-stop-daemon --start --exec ${samba4_command} --pidfile 
${samba4_pidfile} -- ${samba4_start_options}"
+samba4_stop="start-stop-daemon --stop --exec ${samba4_command} --pidfile 
${samba4_pidfile}"
 samba4_reload="killall -HUP samba"
 
 winbind_start_options=""
-winbind_start="start-stop-daemon --start --exec /usr/sbin/winbindd -- 
${winbind_start_options}"
-winbind_stop="start-stop-daemon --stop --exec /usr/sbin/winbindd"
+winbind_command="/usr/sbin/winbindd"
+winbind_start="start-stop-daemon --start --exec ${winbind_command} -- 
${winbind_start_options}"
+winbind_stop="start-stop-daemon --stop --exec ${winbind_command}"
 winbind_reload="killall -HUP winbindd"
 

diff --git a/net-fs/samba/files/4.4/samba4.initd-r1 
b/net-fs/samba/files/4.4/samba4.initd-r1
index 52a9b68..a914981 100644
--- a/net-fs/samba/files/4.4/samba4.initd-r1
+++ b/net-fs/samba/files/4.4/samba4.initd-r1
@@ -1,9 +1,9 @@
 #!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the G

[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2019-04-17 Thread Anthony G. Basile
commit: b144cb5ce8a8f861ef33d32e3d26e0a8052ccf3e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Apr 17 15:30:40 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Apr 17 15:30:40 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=b144cb5c

net-fs/samba: 4.8.6-r2 stable on amd64 and x86

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 net-fs/samba/samba-4.8.6-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-fs/samba/samba-4.8.6-r2.ebuild 
b/net-fs/samba/samba-4.8.6-r2.ebuild
index ac2f480..c0cb597 100644
--- a/net-fs/samba/samba-4.8.6-r2.ebuild
+++ b/net-fs/samba/samba-4.8.6-r2.ebuild
@@ -15,7 +15,7 @@ SRC_PATH="stable"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="https://www.samba.org/";



[gentoo-commits] proj/musl:master commit in: net-fs/samba/files/, net-fs/samba/

2019-04-17 Thread Anthony G. Basile
commit: 93f9ad0756bc9d23a821c65970a69d01864578ef
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Apr 17 15:03:53 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Apr 17 15:04:05 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=93f9ad07

net-fs/samba: bumpt to 4.8.6-r2 and 4.9.6 to sync with main tree

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 net-fs/samba/Manifest  |  19 +-
 .../files/samba-4.8.6-no-pydsdb-when-no-addc.patch |  36 +++
 .../{samba-4.9.1.ebuild => samba-4.8.6-r2.ebuild}  |  25 +-
 net-fs/samba/samba-4.9.2-r1.ebuild | 293 -
 net-fs/samba/samba-4.9.4.ebuild| 293 -
 .../{samba-4.9.4-r1.ebuild => samba-4.9.6.ebuild}  |   5 +-
 6 files changed, 52 insertions(+), 619 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 1fa7571..666b10c 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,19 +1,4 @@
--BEGIN PGP SIGNED MESSAGE-
-Hash: SHA256
-
 DIST samba-4.5.11-disable-python-patches.tar.xz 6292 BLAKE2B 
c2a32a1059a02bc1c87ce5f604cbc5878c654b8f693c8486b5ba63b37513444915a7b6389fe82b7e31ab2f9577dd8462eddba60b4f4f756b4ed1145ce7bd90ae
 SHA512 
f0e3076e3e1ecaae3f06b3ef30efc81719fb3f63a1041dcbdae4b62ca4cf693732f9eb16f047d046d4930136fed82194e82b455ea888e12cf845b3e6a122d57d
 DIST samba-4.5.16.tar.gz 21024396 BLAKE2B 
e737559fb748044076608fa233700eb54c7e1c56bc234763f062b6341a179cc78a4a8cdf9f3d6f4d7f3cf8a79f846852ddd5cc753a468c3adb3a0451e1809ed9
 SHA512 
de8a41013cfb5ef3adcb290efd97a78a5de876d90ad05764d631f14e663a1849bb53e4ac394b46c906f1109be5748fee9316407a659c57007d36851ae8adcd7f
-DIST samba-4.9.1.tar.gz 18018259 BLAKE2B 
783423098864c391f08b30e05b70308e922bdb4dad08b8b0b4d1112808357b9bb96aad7a094d0fe2e308f84a143d5f90be523b9c3551a3068ecdcad7347613f6
 SHA512 
267673b6d6ab0db59063480c20f02e5864ef96e9ad1097c23a99b2ab4b5fd2252193d7a152729b40cae0751fb9b0b108b087a190f5db11eabbd075224bd6e663
-DIST samba-4.9.2.tar.gz 18042752 BLAKE2B 
e6d361a38f1103c104015987fa2b67c49a91fb2fac77538b3d9fa0c1629348df00c8fb4ea0dbb1a1f3f62cd377699c1ebc00b1b1b7b1e0d073d3633d41a62e7b
 SHA512 
67de5faeda45e5c245bf02cc195cdf9ca4b63f17625837badf7c50d97250e94de5309c9ef824bd7890bc771b1dc0a3bfbafea09880850b5167f0bf8a8ef488ed
-DIST samba-4.9.4.tar.gz 18053738 BLAKE2B 
337444e55fc8a8864e3960609719087e64e7d14faaf150c510b9011f67ffdc8a9bd6533c60be938e742db8a2e5401a065e7d14fae0480ee7a996a1f71ef0448d
 SHA512 
ecd9937caa12d409b9b4cf34982b1670346fa64c7ecd111b390e296771476e13eb7b868997bfe489f36b7bdc5c9fc3af42cd5ad276e9d85aaedfa8ac4cfc0617
--BEGIN PGP SIGNATURE-
-
-iQEzBAEBCAAdFiEEDe3xqQRWi60fxFwoPcxEeC7QfhwFAlxCFGYACgkQPcxEeC7Q
-fhzVmgf/Rb7+LH6puZDEU31GxPYzxq0tePU7mu53wUaKBVVj/7QwPk9Q9iHqdy+G
-bYmZ2cYGF7YiRSUa8hNAU7RAHHrNF2c9PONqg0/T298qADCb64VlLtGMcD9tUfTv
-QMeVo6RUVjDbJTxtznj+HTKb5cbb+iaRppChJkrxucYjG1SX4uAMUe0q44ut2iGk
-QivT0dtPxdTU3ntN1yTliGJ+jfoiiajpVsAfqRSwT3Ee5v3E6LskajK4Sp/ZVntc
-1AGeg2y/meQM2MVURgNmUlbMqHlH83RlGeGHGLgAZhDpO2f716gNVF1fhMGwtzUk
-RKHbr9PJLZ6zK5zpzQ+31OIlAiUGUg==
-=JAYJ
--END PGP SIGNATURE-
+DIST samba-4.8.6.tar.gz 17723841 BLAKE2B 
38da52e14b4417f26462eef2226c4498e54d2c276b4056e8c6d6c66079f33bcda24c1eab30b29bc7413280ec89a74a55e043e8274ac50f9a25bae7563717ff34
 SHA512 
f6afab5ca466bd8653a56c205b71ce94ecf0ad0c6e4c9d64cbba7b1e56f1987bc2022e6b629d87eb6078e3f6ba53833c19cfb41e40b6d589e4317ea9d85de273
+DIST samba-4.9.6.tar.gz 18068196 BLAKE2B 
03a04abb430abc4b7ba6fc5ade8690c215948d24fe1044d79c2dd1f8242b6708f0618045e37ad73114413dcef70bcf45de15f358a0e012cecfea045b9ab9165c
 SHA512 
462774e60f0165aa445821795c373ab6845ac2790578a68e84c0c82f761ddf29bf5186106a95f394e24b8ef7393d7abe003f95e72f5c5892bbf992f58e350531

diff --git a/net-fs/samba/files/samba-4.8.6-no-pydsdb-when-no-addc.patch 
b/net-fs/samba/files/samba-4.8.6-no-pydsdb-when-no-addc.patch
new file mode 100644
index 000..1093b1d
--- /dev/null
+++ b/net-fs/samba/files/samba-4.8.6-no-pydsdb-when-no-addc.patch
@@ -0,0 +1,36 @@
+Do not install the python DSDB modules when ADDC is disabled.
+This is a change integrated upstream in 4.9.1 (or earlier).
+
+Without this, the python dsdb_dns.so module is installed, which
+is linked to libdnsserver-common.so that is NOT installed, and so
+potential breakage ensues.
+
+--- a/source4/dsdb/wscript_build   2018-01-17 03:08:39.0 -0500
 b/source4/dsdb/wscript_build   2018-11-08 10:43:58.064486832 -0500
+@@ -63,10 +63,11 @@
+   )
+ 
+ bld.SAMBA_PYTHON('python_dsdb',
+   source='pydsdb.c',
+   # the dependency on dcerpc here is because gensec
+   # depends on dcerpc but the waf circular dependency finder
+   # removes it so we end up with unresolved symbols.
+   deps='samdb pyldb-util dcerpc com_err pyrpc_util pyparam_util 
dsdb_garbage_collect_tombstones',
+-  realname='samba/dsdb.so'
++  realname='samba/dsdb.so',
++

[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2019-02-11 Thread Anthony G. Basile
commit: d00baa871deb270e4f8514ebc12bc426400146ab
Author: xdch47  posteo  de>
AuthorDate: Fri Feb  8 19:39:56 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Feb 11 11:58:29 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=d00baa87

net-fs/samba: bump to 4.9.4-r1 for musl

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Manifest-Sign-Key: 0DEDF1A904568BAD1FC45C283DCC44782ED07E1C
Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/samba-4.9.4-r1.ebuild | 307 +
 1 file changed, 307 insertions(+)

diff --git a/net-fs/samba/samba-4.9.4-r1.ebuild 
b/net-fs/samba/samba-4.9.4-r1.ebuild
new file mode 100644
index 000..53835ee
--- /dev/null
+++ b/net-fs/samba/samba-4.9.4-r1.ebuild
@@ -0,0 +1,307 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE='threads(+),xml(+)'
+
+inherit python-single-r1 waf-utils multilib-minimal linux-info systemd pam
+
+MY_PV="${PV/_rc/rc}"
+MY_P="${PN}-${MY_PV}"
+
+SRC_PATH="stable"
+[[ ${PV} = *_rc* ]] && SRC_PATH="rc"
+
+SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
+[[ ${PV} = *_rc* ]] || \
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+
+DESCRIPTION="Samba Suite Version 4"
+HOMEPAGE="https://www.samba.org/";
+LICENSE="GPL-3"
+
+SLOT="0"
+
+IUSE="acl addc addns ads ceph client cluster cups debug dmapi fam gnutls gpg 
iprint json ldap
+pam python quota selinux syslog system-heimdal +system-mitkrb5 systemd test 
winbind zeroconf"
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/samba-4.0/policy.h
+   /usr/include/samba-4.0/dcerpc_server.h
+   /usr/include/samba-4.0/ctdb.h
+   /usr/include/samba-4.0/ctdb_client.h
+   /usr/include/samba-4.0/ctdb_protocol.h
+   /usr/include/samba-4.0/ctdb_private.h
+   /usr/include/samba-4.0/ctdb_typesafe_cb.h
+   /usr/include/samba-4.0/ctdb_version.h
+)
+
+# sys-apps/attr is an automagic dependency (see bug #489748)
+CDEPEND="
+   >=app-arch/libarchive-3.1.2[${MULTILIB_USEDEP}]
+   dev-lang/perl:=
+   dev-libs/libaio[${MULTILIB_USEDEP}]
+   dev-libs/libbsd[${MULTILIB_USEDEP}]
+   dev-libs/iniparser:0
+   dev-libs/popt[${MULTILIB_USEDEP}]
+   dev-python/subunit[${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   >=dev-util/cmocka-1.1.1[${MULTILIB_USEDEP}]
+   net-libs/libnsl:=[${MULTILIB_USEDEP}]
+   sys-apps/attr[${MULTILIB_USEDEP}]
+   
>=sys-libs/ldb-1.4.3[ldap(+)?,python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   
=sys-libs/talloc-2.1.14[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   >=sys-libs/tdb-1.3.16[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   >=sys-libs/tevent-0.9.37[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   sys-libs/zlib[${MULTILIB_USEDEP}]
+   virtual/libiconv
+   pam? ( virtual/pam )
+   acl? ( virtual/acl )
+   addns? (
+   net-dns/bind-tools[gssapi]
+   dev-python/dnspython:=[${PYTHON_USEDEP}]
+   )
+   ceph? ( sys-cluster/ceph )
+   cluster? (
+   net-libs/rpcsvc-proto
+   !dev-db/ctdb
+   )
+   cups? ( net-print/cups )
+   debug? ( dev-util/lttng-ust )
+   dmapi? ( sys-apps/dmapi )
+   fam? ( virtual/fam )
+   gnutls? (
+   dev-libs/libgcrypt:0
+   >=net-libs/gnutls-1.4.0
+   )
+   gpg? ( app-crypt/gpgme )
+   json? ( dev-libs/jansson )
+   ldap? ( net-nds/openldap[${MULTILIB_USEDEP}] )
+   system-heimdal? ( >=app-crypt/heimdal-1.5[-ssl,${MULTILIB_USEDEP}] )
+   system-mitkrb5? ( >=app-crypt/mit-krb5-1.15.1[${MULTILIB_USEDEP}] )
+   systemd? ( sys-apps/systemd:0= )
+"
+DEPEND="${CDEPEND}
+   ${PYTHON_DEPS}
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   net-libs/libtirpc[${MULTILIB_USEDEP}]
+   virtual/pkgconfig
+   || (
+   net-libs/rpcsvc-proto
+   =sys-libs/nss_wrapper-1.1.3
+   >=net-dns/resolv_wrapper-1.1.4
+   >=net-libs/socket_wrapper-1.1.9
+   >=sys-libs/uid_wrapper-1.2.1
+   )
+   )"
+RDEPEND="${CDEPEND}
+   python? ( ${PYTHON_DEPS} )
+   client? ( net-fs/cifs-utils[ads?] )
+   selinux? ( sec-policy/selinux-samba )
+   !dev-perl/Parse-Yapp
+"
+
+REQUIRED_USE="
+   addc? ( python gnutls json winbind )
+   addns? ( python )
+   ads? ( acl gnutls ldap winbind )
+   cluster? ( ads )
+   gpg? ( addc )
+   test? ( python )
+   ?? ( system-heimdal system-mitkrb5 )
+   ${PYTHON_REQUIRED_USE}
+"
+
+# the test suite is messed, it uses system-installed samba
+# bits instead of what was built, tests things disabled via use
+# flags, and generally just fails to work in a way ebuilds could
+# rely on in its current state
+RESTRICT="test"
+
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-4.4.0-pa

[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2019-01-18 Thread Anthony G. Basile
commit: e8a687c8017a0b19b5763e93aadf51f2f4beadc8
Author: xdch47  posteo  de>
AuthorDate: Fri Jan 18 18:01:12 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Jan 19 00:54:48 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=e8a687c8

net-fs/samba: version bump to 4.9.4

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Manifest-Sign-Key: 0DEDF1A904568BAD1FC45C283DCC44782ED07E1C
Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/Manifest   |  17 +--
 net-fs/samba/samba-4.9.4.ebuild | 293 
 2 files changed, 302 insertions(+), 8 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index ba6cc79..1fa7571 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -5,14 +5,15 @@ DIST samba-4.5.11-disable-python-patches.tar.xz 6292 BLAKE2B 
c2a32a1059a02bc1c87
 DIST samba-4.5.16.tar.gz 21024396 BLAKE2B 
e737559fb748044076608fa233700eb54c7e1c56bc234763f062b6341a179cc78a4a8cdf9f3d6f4d7f3cf8a79f846852ddd5cc753a468c3adb3a0451e1809ed9
 SHA512 
de8a41013cfb5ef3adcb290efd97a78a5de876d90ad05764d631f14e663a1849bb53e4ac394b46c906f1109be5748fee9316407a659c57007d36851ae8adcd7f
 DIST samba-4.9.1.tar.gz 18018259 BLAKE2B 
783423098864c391f08b30e05b70308e922bdb4dad08b8b0b4d1112808357b9bb96aad7a094d0fe2e308f84a143d5f90be523b9c3551a3068ecdcad7347613f6
 SHA512 
267673b6d6ab0db59063480c20f02e5864ef96e9ad1097c23a99b2ab4b5fd2252193d7a152729b40cae0751fb9b0b108b087a190f5db11eabbd075224bd6e663
 DIST samba-4.9.2.tar.gz 18042752 BLAKE2B 
e6d361a38f1103c104015987fa2b67c49a91fb2fac77538b3d9fa0c1629348df00c8fb4ea0dbb1a1f3f62cd377699c1ebc00b1b1b7b1e0d073d3633d41a62e7b
 SHA512 
67de5faeda45e5c245bf02cc195cdf9ca4b63f17625837badf7c50d97250e94de5309c9ef824bd7890bc771b1dc0a3bfbafea09880850b5167f0bf8a8ef488ed
+DIST samba-4.9.4.tar.gz 18053738 BLAKE2B 
337444e55fc8a8864e3960609719087e64e7d14faaf150c510b9011f67ffdc8a9bd6533c60be938e742db8a2e5401a065e7d14fae0480ee7a996a1f71ef0448d
 SHA512 
ecd9937caa12d409b9b4cf34982b1670346fa64c7ecd111b390e296771476e13eb7b868997bfe489f36b7bdc5c9fc3af42cd5ad276e9d85aaedfa8ac4cfc0617
 -BEGIN PGP SIGNATURE-
 
-iQEzBAEBCAAdFiEEDe3xqQRWi60fxFwoPcxEeC7QfhwFAlvukdUACgkQPcxEeC7Q
-fhwYTQf9FX5N807jrmzQv9wnqOrRtMOSTLJ73v4DpnYJpYYID8SHLGGErGdGw7QI
-xqg2FCtULHha+j4T8ruaMJ5KwxCyHsPnXYn/niRfNa9oYNHHz72+Ox2wGxd1vmMc
-D0BhMtvvdVaeE0Rq88K1LXBDAk5GzSt4lTjgPnialK/di9WuiUgY3u6S6rubPiNe
-ZUKLOws546vIj3oGiRVOKBidPpxbxpO24XDPRjZqbftdgfCulDdR8iQ22h7mVZf+
-AO9ime/GBVxol7Dh7efElwz0vgSyK3pR5L0xV302dYIEZkr3jHHI24AstwKKtKP5
-lUI9kY54Keut22SqCduvn7C5Rp3aug==
-=BVxv
+iQEzBAEBCAAdFiEEDe3xqQRWi60fxFwoPcxEeC7QfhwFAlxCFGYACgkQPcxEeC7Q
+fhzVmgf/Rb7+LH6puZDEU31GxPYzxq0tePU7mu53wUaKBVVj/7QwPk9Q9iHqdy+G
+bYmZ2cYGF7YiRSUa8hNAU7RAHHrNF2c9PONqg0/T298qADCb64VlLtGMcD9tUfTv
+QMeVo6RUVjDbJTxtznj+HTKb5cbb+iaRppChJkrxucYjG1SX4uAMUe0q44ut2iGk
+QivT0dtPxdTU3ntN1yTliGJ+jfoiiajpVsAfqRSwT3Ee5v3E6LskajK4Sp/ZVntc
+1AGeg2y/meQM2MVURgNmUlbMqHlH83RlGeGHGLgAZhDpO2f716gNVF1fhMGwtzUk
+RKHbr9PJLZ6zK5zpzQ+31OIlAiUGUg==
+=JAYJ
 -END PGP SIGNATURE-

diff --git a/net-fs/samba/samba-4.9.4.ebuild b/net-fs/samba/samba-4.9.4.ebuild
new file mode 100644
index 000..a7b9e14
--- /dev/null
+++ b/net-fs/samba/samba-4.9.4.ebuild
@@ -0,0 +1,293 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE='threads(+),xml(+)'
+
+inherit python-single-r1 waf-utils multilib-minimal linux-info systemd
+
+MY_PV="${PV/_rc/rc}"
+MY_P="${PN}-${MY_PV}"
+
+SRC_PATH="stable"
+[[ ${PV} = *_rc* ]] && SRC_PATH="rc"
+
+SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
+[[ ${PV} = *_rc* ]] || \
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+
+DESCRIPTION="Samba Suite Version 4"
+HOMEPAGE="https://www.samba.org/";
+LICENSE="GPL-3"
+
+SLOT="0"
+
+IUSE="acl addc addns ads ceph client cluster cups debug dmapi fam gnutls gpg 
iprint json ldap
+pam python quota selinux syslog system-heimdal +system-mitkrb5 systemd test 
winbind zeroconf"
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/samba-4.0/policy.h
+   /usr/include/samba-4.0/dcerpc_server.h
+   /usr/include/samba-4.0/ctdb.h
+   /usr/include/samba-4.0/ctdb_client.h
+   /usr/include/samba-4.0/ctdb_protocol.h
+   /usr/include/samba-4.0/ctdb_private.h
+   /usr/include/samba-4.0/ctdb_typesafe_cb.h
+   /usr/include/samba-4.0/ctdb_version.h
+)
+
+# sys-apps/attr is an automagic dependency (see bug #489748)
+CDEPEND="
+   >=app-arch/libarchive-3.1.2[${MULTILIB_USEDEP}]
+   dev-lang/perl:=
+   dev-libs/libaio[${MULTILIB_USEDEP}]
+   dev-libs/libbsd[${MULTILIB_USEDEP}]
+   dev-libs/iniparser:0
+   dev-libs/popt[${MULTILIB_USEDEP}]
+   dev-python/subunit[${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   >=dev-util/cmocka-1.1.1[${MULTILIB_USEDEP}]
+   net-libs/libnsl:=[${MULTILIB_USEDEP}]
+   sys-apps/attr[${MULTILIB_USEDEP}]
+   
>=sys-libs/ldb-1.4.3[ldap(+

[gentoo-commits] proj/musl:master commit in: net-fs/samba/files/, net-fs/samba/

2018-11-18 Thread Anthony G. Basile
commit: 89ad3152c133ea64b34c4e84911ef76f6237d04a
Author: xdch47  posteo  de>
AuthorDate: Sun Nov 18 19:26:24 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Nov 18 20:22:34 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=89ad3152

net-fs/samba: version bump to 4.9.2-r1

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Manifest-Sign-Key: 0DEDF1A904568BAD1FC45C283DCC44782ED07E1C
Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/files/samba-4.9.2-timespec.patch   | 21 +
 .../{samba-4.9.2.ebuild => samba-4.9.2-r1.ebuild}   |  9 ++---
 2 files changed, 27 insertions(+), 3 deletions(-)

diff --git a/net-fs/samba/files/samba-4.9.2-timespec.patch 
b/net-fs/samba/files/samba-4.9.2-timespec.patch
new file mode 100644
index 000..c82f4af
--- /dev/null
+++ b/net-fs/samba/files/samba-4.9.2-timespec.patch
@@ -0,0 +1,21 @@
+From 11e8c14b78e2423041f3846882f74cd6490a3e44 Mon Sep 17 00:00:00 2001
+From: Joan Karadimov 
+Date: Thu, 18 Oct 2018 18:16:17 +0300
+Subject: [PATCH] Fix compatibility issues with the timespec struct
+
+---
+ source3/include/libsmbclient.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h
+index 5e4a1715402..6487ea7a8aa 100644
+--- a/source3/include/libsmbclient.h
 b/source3/include/libsmbclient.h
+@@ -78,6 +78,7 @@ extern "C" {
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ 
+ #define SMBC_BASE_FD1 /* smallest file descriptor returned */

diff --git a/net-fs/samba/samba-4.9.2.ebuild 
b/net-fs/samba/samba-4.9.2-r1.ebuild
similarity index 97%
rename from net-fs/samba/samba-4.9.2.ebuild
rename to net-fs/samba/samba-4.9.2-r1.ebuild
index 21c71a2..34d9cd9 100644
--- a/net-fs/samba/samba-4.9.2.ebuild
+++ b/net-fs/samba/samba-4.9.2-r1.ebuild
@@ -15,7 +15,7 @@ SRC_PATH="stable"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="https://www.samba.org/";
@@ -132,6 +132,7 @@ S="${WORKDIR}/${MY_P}"
 PATCHES=(
"${FILESDIR}/${PN}-4.4.0-pam.patch"
"${FILESDIR}/${PN}-4.5.1-compile_et_fix.patch"
+   "${FILESDIR}/${PN}-4.9.2-timespec.patch"
"${FILESDIR}/netdb-defines.patch"
 )
 
@@ -159,7 +160,9 @@ src_prepare() {
sed -i -e '/"dns.resolver":/d' "${S}"/third_party/wscript || die
 
# unbundle iso8601 unless tests are enabled
-   use test || sed -i -e '/"iso8601":/d' "${S}"/third_party/wscript || die
+   if ! use test ; then
+   sed -i -e '/"iso8601":/d' "${S}"/third_party/wscript || die
+   fi
 
# ugly hackaround for bug #592502
cp /usr/include/tevent_internal.h "${S}"/lib/tevent/ || die
@@ -232,7 +235,7 @@ multilib_src_install() {
waf-utils_src_install
 
# Make all .so files executable
-   find "${ED}" -type f -name "*.so" -exec chmod +x {} +
+   find "${ED}" -type f -name "*.so" -exec chmod +x {} + || die
 
if multilib_is_native_abi ; then
# install ldap schema for server (bug #491002)



[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2018-11-16 Thread Anthony G. Basile
commit: 9f932632698aa71b629de7d1fffa8c2c0d073c48
Author: xdch47  posteo  de>
AuthorDate: Fri Nov 16 09:46:00 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Nov 17 00:21:28 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=9f932632

net-fs/samba: version bump to 4.9.2 for musl

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Manifest-Sign-Key: 0DEDF1A904568BAD1FC45C283DCC44782ED07E1C
Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/Manifest   | 15 +++
 net-fs/samba/samba-4.9.1.ebuild |  1 -
 net-fs/samba/{samba-4.9.1.ebuild => samba-4.9.2.ebuild} |  5 ++---
 3 files changed, 17 insertions(+), 4 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 7ca77f1..ba6cc79 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,3 +1,18 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
 DIST samba-4.5.11-disable-python-patches.tar.xz 6292 BLAKE2B 
c2a32a1059a02bc1c87ce5f604cbc5878c654b8f693c8486b5ba63b37513444915a7b6389fe82b7e31ab2f9577dd8462eddba60b4f4f756b4ed1145ce7bd90ae
 SHA512 
f0e3076e3e1ecaae3f06b3ef30efc81719fb3f63a1041dcbdae4b62ca4cf693732f9eb16f047d046d4930136fed82194e82b455ea888e12cf845b3e6a122d57d
 DIST samba-4.5.16.tar.gz 21024396 BLAKE2B 
e737559fb748044076608fa233700eb54c7e1c56bc234763f062b6341a179cc78a4a8cdf9f3d6f4d7f3cf8a79f846852ddd5cc753a468c3adb3a0451e1809ed9
 SHA512 
de8a41013cfb5ef3adcb290efd97a78a5de876d90ad05764d631f14e663a1849bb53e4ac394b46c906f1109be5748fee9316407a659c57007d36851ae8adcd7f
 DIST samba-4.9.1.tar.gz 18018259 BLAKE2B 
783423098864c391f08b30e05b70308e922bdb4dad08b8b0b4d1112808357b9bb96aad7a094d0fe2e308f84a143d5f90be523b9c3551a3068ecdcad7347613f6
 SHA512 
267673b6d6ab0db59063480c20f02e5864ef96e9ad1097c23a99b2ab4b5fd2252193d7a152729b40cae0751fb9b0b108b087a190f5db11eabbd075224bd6e663
+DIST samba-4.9.2.tar.gz 18042752 BLAKE2B 
e6d361a38f1103c104015987fa2b67c49a91fb2fac77538b3d9fa0c1629348df00c8fb4ea0dbb1a1f3f62cd377699c1ebc00b1b1b7b1e0d073d3633d41a62e7b
 SHA512 
67de5faeda45e5c245bf02cc195cdf9ca4b63f17625837badf7c50d97250e94de5309c9ef824bd7890bc771b1dc0a3bfbafea09880850b5167f0bf8a8ef488ed
+-BEGIN PGP SIGNATURE-
+
+iQEzBAEBCAAdFiEEDe3xqQRWi60fxFwoPcxEeC7QfhwFAlvukdUACgkQPcxEeC7Q
+fhwYTQf9FX5N807jrmzQv9wnqOrRtMOSTLJ73v4DpnYJpYYID8SHLGGErGdGw7QI
+xqg2FCtULHha+j4T8ruaMJ5KwxCyHsPnXYn/niRfNa9oYNHHz72+Ox2wGxd1vmMc
+D0BhMtvvdVaeE0Rq88K1LXBDAk5GzSt4lTjgPnialK/di9WuiUgY3u6S6rubPiNe
+ZUKLOws546vIj3oGiRVOKBidPpxbxpO24XDPRjZqbftdgfCulDdR8iQ22h7mVZf+
+AO9ime/GBVxol7Dh7efElwz0vgSyK3pR5L0xV302dYIEZkr3jHHI24AstwKKtKP5
+lUI9kY54Keut22SqCduvn7C5Rp3aug==
+=BVxv
+-END PGP SIGNATURE-

diff --git a/net-fs/samba/samba-4.9.1.ebuild b/net-fs/samba/samba-4.9.1.ebuild
index f088275..3f6a774 100644
--- a/net-fs/samba/samba-4.9.1.ebuild
+++ b/net-fs/samba/samba-4.9.1.ebuild
@@ -133,7 +133,6 @@ PATCHES=(
"${FILESDIR}/${PN}-4.4.0-pam.patch"
"${FILESDIR}/${PN}-4.5.1-compile_et_fix.patch"
"${FILESDIR}/netdb-defines.patch"
-
 )
 
 #CONFDIR="${FILESDIR}/$(get_version_component_range 1-2)"

diff --git a/net-fs/samba/samba-4.9.1.ebuild b/net-fs/samba/samba-4.9.2.ebuild
similarity index 98%
copy from net-fs/samba/samba-4.9.1.ebuild
copy to net-fs/samba/samba-4.9.2.ebuild
index f088275..21c71a2 100644
--- a/net-fs/samba/samba-4.9.1.ebuild
+++ b/net-fs/samba/samba-4.9.2.ebuild
@@ -15,7 +15,7 @@ SRC_PATH="stable"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="~amd64 ~arm64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="https://www.samba.org/";
@@ -49,7 +49,7 @@ CDEPEND="
>=dev-util/cmocka-1.1.1[${MULTILIB_USEDEP}]
net-libs/libnsl:=[${MULTILIB_USEDEP}]
sys-apps/attr[${MULTILIB_USEDEP}]
-   
>=sys-libs/ldb-1.4.2[ldap(+)?,python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   
>=sys-libs/ldb-1.4.3[ldap(+)?,python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]



[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2018-11-16 Thread Anthony G. Basile
commit: 3a434db37e75a15c3e2224e761ac9c7dcbfb4831
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Nov 17 00:24:00 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Nov 17 00:24:05 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=3a434db3

net-fs/samba: use only musl supported keywords

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-fs/samba/samba-4.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-fs/samba/samba-4.9.1.ebuild b/net-fs/samba/samba-4.9.1.ebuild
index 3f6a774..33fcce0 100644
--- a/net-fs/samba/samba-4.9.1.ebuild
+++ b/net-fs/samba/samba-4.9.1.ebuild
@@ -15,7 +15,7 @@ SRC_PATH="stable"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="~amd64 ~arm64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~arm ~mips ~ppc ~x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="https://www.samba.org/";



[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2018-11-11 Thread Anthony G. Basile
commit: e50453d1ca034b1c41d0f39f287f0adb59439a13
Author: stefson  yahoo  de>
AuthorDate: Sun Nov 11 15:26:15 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Nov 11 15:52:59 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=e50453d1

net-fs/samba: fix useflag description

Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/metadata.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net-fs/samba/metadata.xml b/net-fs/samba/metadata.xml
index 197dd33..97a8476 100644
--- a/net-fs/samba/metadata.xml
+++ b/net-fs/samba/metadata.xml
@@ -12,10 +12,12 @@
Enable Active Directory Domain Controller 
support
Enable AD DNS integration
Enable Active Directory support
+   Enable support for Ceph distributed 
filesystem via sys-cluster/ceph
Enables the client part
Enable support for clustering
Enable support for DMAPI. This currently 
works only in combination with XFS.
Use app-crypt/gpgme for AD DC
+   Enable json audit support through 
dev-libs/jansson
Enabling iPrint technology by Novell
Enables support for user quotas
Use app-crypt/heimdal 
instead of



[gentoo-commits] proj/musl:master commit in: net-fs/samba/files/, net-fs/samba/

2018-11-09 Thread Anthony G. Basile
commit: c3102928fba8ca33d26f2ab72f073ce619be57df
Author: xdch47  posteo  de>
AuthorDate: Fri Nov  9 21:41:58 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Nov  9 23:32:30 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=c3102928

net-fs/samba: adapt for musl build

Package-Manager: Portage-2.3.49, Repoman-2.3.11
RepoMan-Options: --force
Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/Manifest  |   1 +
 net-fs/samba/files/musl-disable-netgroup.patch |  15 ++
 net-fs/samba/samba-4.9.1.ebuild| 291 +
 3 files changed, 307 insertions(+)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 221af4b..7ca77f1 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,2 +1,3 @@
 DIST samba-4.5.11-disable-python-patches.tar.xz 6292 BLAKE2B 
c2a32a1059a02bc1c87ce5f604cbc5878c654b8f693c8486b5ba63b37513444915a7b6389fe82b7e31ab2f9577dd8462eddba60b4f4f756b4ed1145ce7bd90ae
 SHA512 
f0e3076e3e1ecaae3f06b3ef30efc81719fb3f63a1041dcbdae4b62ca4cf693732f9eb16f047d046d4930136fed82194e82b455ea888e12cf845b3e6a122d57d
 DIST samba-4.5.16.tar.gz 21024396 BLAKE2B 
e737559fb748044076608fa233700eb54c7e1c56bc234763f062b6341a179cc78a4a8cdf9f3d6f4d7f3cf8a79f846852ddd5cc753a468c3adb3a0451e1809ed9
 SHA512 
de8a41013cfb5ef3adcb290efd97a78a5de876d90ad05764d631f14e663a1849bb53e4ac394b46c906f1109be5748fee9316407a659c57007d36851ae8adcd7f
+DIST samba-4.9.1.tar.gz 18018259 BLAKE2B 
783423098864c391f08b30e05b70308e922bdb4dad08b8b0b4d1112808357b9bb96aad7a094d0fe2e308f84a143d5f90be523b9c3551a3068ecdcad7347613f6
 SHA512 
267673b6d6ab0db59063480c20f02e5864ef96e9ad1097c23a99b2ab4b5fd2252193d7a152729b40cae0751fb9b0b108b087a190f5db11eabbd075224bd6e663

diff --git a/net-fs/samba/files/musl-disable-netgroup.patch 
b/net-fs/samba/files/musl-disable-netgroup.patch
new file mode 100644
index 000..719a2e6
--- /dev/null
+++ b/net-fs/samba/files/musl-disable-netgroup.patch
@@ -0,0 +1,15 @@
+diff --git a/source3/wscript b/source3/wscript
+index bcdfc17..361ae23 100644
+--- a/source3/wscript
 b/source3/wscript
+@@ -600,8 +600,8 @@ msg.msg_accrightslen = sizeof(fd);
+ headers='unistd.h sys/types.h dirent.h',
+ define='HAVE_DIRENT_D_OFF')
+ 
+-if (conf.CONFIG_SET('HAVE_YP_GET_DEFAULT_DOMAIN')):
+-   conf.DEFINE('HAVE_NETGROUP', '1')
++#if (conf.CONFIG_SET('HAVE_YP_GET_DEFAULT_DOMAIN')):
++#   conf.DEFINE('HAVE_NETGROUP', '1')
+ 
+ # Look for CUPS
+ if Options.options.with_cups:

diff --git a/net-fs/samba/samba-4.9.1.ebuild b/net-fs/samba/samba-4.9.1.ebuild
new file mode 100644
index 000..f088275
--- /dev/null
+++ b/net-fs/samba/samba-4.9.1.ebuild
@@ -0,0 +1,291 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE='threads(+),xml(+)'
+
+inherit python-single-r1 waf-utils multilib-minimal linux-info systemd
+
+MY_PV="${PV/_rc/rc}"
+MY_P="${PN}-${MY_PV}"
+
+SRC_PATH="stable"
+[[ ${PV} = *_rc* ]] && SRC_PATH="rc"
+
+SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
+[[ ${PV} = *_rc* ]] || \
+KEYWORDS="~amd64 ~arm64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+
+DESCRIPTION="Samba Suite Version 4"
+HOMEPAGE="https://www.samba.org/";
+LICENSE="GPL-3"
+
+SLOT="0"
+
+IUSE="acl addc addns ads ceph client cluster cups debug dmapi fam gnutls gpg 
iprint json ldap
+pam python quota selinux syslog system-heimdal +system-mitkrb5 systemd test 
winbind zeroconf"
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/samba-4.0/policy.h
+   /usr/include/samba-4.0/dcerpc_server.h
+   /usr/include/samba-4.0/ctdb.h
+   /usr/include/samba-4.0/ctdb_client.h
+   /usr/include/samba-4.0/ctdb_protocol.h
+   /usr/include/samba-4.0/ctdb_private.h
+   /usr/include/samba-4.0/ctdb_typesafe_cb.h
+   /usr/include/samba-4.0/ctdb_version.h
+)
+
+# sys-apps/attr is an automagic dependency (see bug #489748)
+CDEPEND="
+   >=app-arch/libarchive-3.1.2[${MULTILIB_USEDEP}]
+   dev-lang/perl:=
+   dev-libs/libaio[${MULTILIB_USEDEP}]
+   dev-libs/libbsd[${MULTILIB_USEDEP}]
+   dev-libs/iniparser:0
+   dev-libs/popt[${MULTILIB_USEDEP}]
+   dev-python/subunit[${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   >=dev-util/cmocka-1.1.1[${MULTILIB_USEDEP}]
+   net-libs/libnsl:=[${MULTILIB_USEDEP}]
+   sys-apps/attr[${MULTILIB_USEDEP}]
+   
>=sys-libs/ldb-1.4.2[ldap(+)?,python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   
=sys-libs/talloc-2.1.14[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   >=sys-libs/tdb-1.3.16[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   >=sys-libs/tevent-0.9.37[python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   sys-libs/zlib[${MULTILIB_USEDEP}]
+   virtual/libiconv
+   pam? ( virtual/pam )
+   acl? ( virtual/acl )
+   addns? (
+   net

[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2018-06-17 Thread Anthony G. Basile
commit: 70637f5f5df8f7fa2ff3e76a1240e999c031f85c
Author: stefson  yahoo  de>
AuthorDate: Sun Jun 17 10:32:17 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Jun 17 12:45:57 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=70637f5f

net-fs/samba: revbump

 net-fs/samba/Manifest |  2 +-
 net-fs/samba/{samba-4.5.15.ebuild => samba-4.5.16.ebuild} | 14 ++
 2 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index b306ac8..221af4b 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,2 +1,2 @@
 DIST samba-4.5.11-disable-python-patches.tar.xz 6292 BLAKE2B 
c2a32a1059a02bc1c87ce5f604cbc5878c654b8f693c8486b5ba63b37513444915a7b6389fe82b7e31ab2f9577dd8462eddba60b4f4f756b4ed1145ce7bd90ae
 SHA512 
f0e3076e3e1ecaae3f06b3ef30efc81719fb3f63a1041dcbdae4b62ca4cf693732f9eb16f047d046d4930136fed82194e82b455ea888e12cf845b3e6a122d57d
-DIST samba-4.5.15.tar.gz 21020181 BLAKE2B 
0d113c4d3147102e2cc192a14d145c46930b8f772683bc27e90b264e43c5660298e468c494de41e80fb2dcd80a0dbef0b9ce1f74dc9e89eca52865ceba605382
 SHA512 
e77d746767d55ff933cddbb4d6e0f97f0b12e630c564852bee02f5f9764633167f1c098df7606af2a1930a9bdd4665fb79d7748ff07532db4e9a581fb639450c
+DIST samba-4.5.16.tar.gz 21024396 BLAKE2B 
e737559fb748044076608fa233700eb54c7e1c56bc234763f062b6341a179cc78a4a8cdf9f3d6f4d7f3cf8a79f846852ddd5cc753a468c3adb3a0451e1809ed9
 SHA512 
de8a41013cfb5ef3adcb290efd97a78a5de876d90ad05764d631f14e663a1849bb53e4ac394b46c906f1109be5748fee9316407a659c57007d36851ae8adcd7f

diff --git a/net-fs/samba/samba-4.5.15.ebuild b/net-fs/samba/samba-4.5.16.ebuild
similarity index 97%
rename from net-fs/samba/samba-4.5.15.ebuild
rename to net-fs/samba/samba-4.5.16.ebuild
index 4bc41b2..57a6fd6 100644
--- a/net-fs/samba/samba-4.5.15.ebuild
+++ b/net-fs/samba/samba-4.5.16.ebuild
@@ -16,7 +16,7 @@ SRC_PATH="stable"
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz

https://dev.gentoo.org/~polynomial-c/samba-4.5.11-disable-python-patches.tar.xz";
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 sparc x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="http://www.samba.org/";
@@ -53,6 +53,7 @@ CDEPEND="${PYTHON_DEPS}
dev-libs/iniparser:0
dev-libs/popt[${MULTILIB_USEDEP}]
dev-python/subunit[${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   net-libs/libnsl:=[${MULTILIB_USEDEP}]
sys-apps/attr[${MULTILIB_USEDEP}]
>=sys-libs/ldb-1.1.27[ldap(+)?,python(+),${MULTILIB_USEDEP}]


[gentoo-commits] proj/musl:master commit in: net-fs/samba/, net-fs/samba/files/

2018-02-07 Thread Anthony G. Basile
commit: 4c97fbb80dc7249d49cdeedf24c2198fc2ae09d6
Author: stefson  yahoo  de>
AuthorDate: Sun Feb  4 20:41:52 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Feb  7 12:19:22 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=4c97fbb8

net-fs/samba: revbump

 net-fs/samba/files/samba-glibc-2.26-no_rpc.patch   | 14 +++
 ...{samba-4.5.10-r1.ebuild => samba-4.5.15.ebuild} | 29 ++
 2 files changed, 33 insertions(+), 10 deletions(-)

diff --git a/net-fs/samba/files/samba-glibc-2.26-no_rpc.patch 
b/net-fs/samba/files/samba-glibc-2.26-no_rpc.patch
new file mode 100644
index 000..e664468
--- /dev/null
+++ b/net-fs/samba/files/samba-glibc-2.26-no_rpc.patch
@@ -0,0 +1,14 @@
+https://attachments.samba.org/attachment.cgi?id=13172
+https://bugs.gentoo.org/637320
+
+--- a/lib/replace/wscript
 b/lib/replace/wscript
+@@ -71,7 +71,7 @@
+ conf.CHECK_HEADERS('sys/fileio.h sys/filesys.h sys/dustat.h 
sys/sysmacros.h')
+ conf.CHECK_HEADERS('xfs/libxfs.h netgroup.h')
+ 
+-conf.CHECK_CODE('', headers='rpc/rpc.h rpcsvc/yp_prot.h', 
define='HAVE_RPCSVC_YP_PROT_H')
++conf.CHECK_CODE('ypstat s;', headers='rpc/rpc.h rpcsvc/yp_prot.h', 
define='HAVE_RPCSVC_YP_PROT_H')
+ 
+ conf.CHECK_HEADERS('valgrind.h valgrind/valgrind.h valgrind/memcheck.h')
+ conf.CHECK_HEADERS('nss_common.h nsswitch.h ns_api.h')

diff --git a/net-fs/samba/samba-4.5.10-r1.ebuild 
b/net-fs/samba/samba-4.5.15.ebuild
similarity index 90%
rename from net-fs/samba/samba-4.5.10-r1.ebuild
rename to net-fs/samba/samba-4.5.15.ebuild
index e897e4a..4bc41b2 100644
--- a/net-fs/samba/samba-4.5.10-r1.ebuild
+++ b/net-fs/samba/samba-4.5.15.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,9 +14,9 @@ SRC_PATH="stable"
 [[ ${PV} = *_rc* ]] && SRC_PATH="rc"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz
-   
https://dev.gentoo.org/~polynomial-c/samba-disable-python-patches-4.5.0_rc1.tar.xz";
+   
https://dev.gentoo.org/~polynomial-c/samba-4.5.11-disable-python-patches.tar.xz";
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="amd64 ~arm ia64 ppc sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="http://www.samba.org/";
@@ -27,6 +27,12 @@ SLOT="0"
 IUSE="acl addc addns ads client cluster cups dmapi fam gnutls gpg iprint ldap 
pam
 quota selinux syslog system-heimdal +system-mitkrb5 systemd test winbind 
zeroconf"
 
+# the test suite is messed, it uses system-installed samba
+# bits instead of what was built, tests things disabled via use
+# flags, and generally just fails to work in a way ebuilds could
+# rely on in its current state
+RESTRICT="test"
+
 MULTILIB_WRAPPED_HEADERS=(
/usr/include/samba-4.0/policy.h
/usr/include/samba-4.0/dcerpc_server.h
@@ -49,6 +55,7 @@ CDEPEND="${PYTHON_DEPS}
dev-python/subunit[${PYTHON_USEDEP},${MULTILIB_USEDEP}]
sys-apps/attr[${MULTILIB_USEDEP}]
>=sys-libs/ldb-1.1.27[ldap(+)?,python(+),${MULTILIB_USEDEP}]
+   

[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2018-02-07 Thread Anthony G. Basile
commit: 9b0e639368c0c89fbbd356b5259e27f1c93a05e7
Author: stefson  yahoo  de>
AuthorDate: Wed Feb  7 11:28:41 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Feb  7 12:19:22 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=9b0e6393

net-fs/samba: fix manifest to make travis happy

 net-fs/samba/Manifest | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index f1355c0..b306ac8 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,2 +1,2 @@
-DIST samba-4.5.10.tar.gz 20989431 SHA256 
7cb753f5f6d5527ef40d4c1f47dacafb7c876cb304b4906ccb390c6a18477714 SHA512 
046bae9c66083a4fe656d6a7b02b64343c66e0ea4925193a898dbda107b5b158d1897f16c36f4c393a30457a49215fa6ef91720367f4946760ec48ce02a4a68a
 WHIRLPOOL 
2359a40337c2a85c17e3c860a8531c21ec5cf3c180dfd5a1e554f2eb5e10576a8b706464d490e008af441d9ce6a14043112d621d8e140461806c97947362933a
-DIST samba-disable-python-patches-4.5.0_rc1.tar.xz 6204 SHA256 
fa0d776e04e3222c0dc4761e376717f4154937cdcb85f4117b8978dfb770a78e SHA512 
920089ba3c6e8e7d913b1d7ef1017262a19d1af41215adb30cfc98a57556efc4b0116931d4ef774c01124149d8eca2be3a23814ce7e11daf0180d2c111799927
 WHIRLPOOL 
6d55710895435ad012e23f8c252e5276966241014710349ca7fa9cf037e8742030b8e053f7cb71309a0a45f48d2235d55393243bf4d19476a22dd39bb1b7748d
+DIST samba-4.5.11-disable-python-patches.tar.xz 6292 BLAKE2B 
c2a32a1059a02bc1c87ce5f604cbc5878c654b8f693c8486b5ba63b37513444915a7b6389fe82b7e31ab2f9577dd8462eddba60b4f4f756b4ed1145ce7bd90ae
 SHA512 
f0e3076e3e1ecaae3f06b3ef30efc81719fb3f63a1041dcbdae4b62ca4cf693732f9eb16f047d046d4930136fed82194e82b455ea888e12cf845b3e6a122d57d
+DIST samba-4.5.15.tar.gz 21020181 BLAKE2B 
0d113c4d3147102e2cc192a14d145c46930b8f772683bc27e90b264e43c5660298e468c494de41e80fb2dcd80a0dbef0b9ce1f74dc9e89eca52865ceba605382
 SHA512 
e77d746767d55ff933cddbb4d6e0f97f0b12e630c564852bee02f5f9764633167f1c098df7606af2a1930a9bdd4665fb79d7748ff07532db4e9a581fb639450c



[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2017-09-05 Thread Anthony G. Basile
commit: aecd022bc4c5854ae29f914fb9f0407233e5c95d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Sep  5 14:15:56 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Sep  5 14:15:56 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=aecd022b

net-fs/samba: remove USE=aio from metadata.xml

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-fs/samba/Manifest | 2 +-
 net-fs/samba/metadata.xml | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index bbc426d..ba2fa1e 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -14,4 +14,4 @@ AUX winbindd.service 240 SHA256 
755036bc419cce90200ac3c04986fbb7cf718c128c2a1288
 DIST samba-4.5.10.tar.gz 20989431 SHA256 
7cb753f5f6d5527ef40d4c1f47dacafb7c876cb304b4906ccb390c6a18477714 SHA512 
046bae9c66083a4fe656d6a7b02b64343c66e0ea4925193a898dbda107b5b158d1897f16c36f4c393a30457a49215fa6ef91720367f4946760ec48ce02a4a68a
 WHIRLPOOL 
2359a40337c2a85c17e3c860a8531c21ec5cf3c180dfd5a1e554f2eb5e10576a8b706464d490e008af441d9ce6a14043112d621d8e140461806c97947362933a
 DIST samba-disable-python-patches-4.5.0_rc1.tar.xz 6204 SHA256 
fa0d776e04e3222c0dc4761e376717f4154937cdcb85f4117b8978dfb770a78e SHA512 
920089ba3c6e8e7d913b1d7ef1017262a19d1af41215adb30cfc98a57556efc4b0116931d4ef774c01124149d8eca2be3a23814ce7e11daf0180d2c111799927
 WHIRLPOOL 
6d55710895435ad012e23f8c252e5276966241014710349ca7fa9cf037e8742030b8e053f7cb71309a0a45f48d2235d55393243bf4d19476a22dd39bb1b7748d
 EBUILD samba-4.5.10-r1.ebuild 7766 SHA256 
40acfac0c5339a1d7d2f43b5cf060977e5161b8400aaf6161bbee4bbc133 SHA512 
896e700071adf753ca0dc1951d0afa6379fcb3d4358066037783410ff8f20faa3bf032d0dfef8dc5d82423afa20f4180c041dfb67014877e339fe30b627213ce
 WHIRLPOOL 
6f6df73c72bdd5f28ec97f4c97fc4618bc3ad79bc064ad36a3b8c84352a7e596b39c7c5294046add38dd5accf67a8f22a2fe56da74fb177738f032c6644ee621
-MISC metadata.xml 1535 SHA256 
e52ce6fb55ee494bc4ed348148a75f496df1fcc5282795c58155d3d770816a4e SHA512 
478534265c8b41cc907fd27b7bfdba056a5949d9a6d1c0dec16572eebd7c9eefed24cb625a15f36f457fad0bd321063f0ffe2ed764415f3c09c61458b0751baf
 WHIRLPOOL 
dd7e58a5eda413342d65e117d1020c2a11befe5b1577c0569a4c4749b0ca4592a6d086b03079f1e271b375f700868b57e5a9ed7d404e8d3201d1b73c558e7f76
+MISC metadata.xml 1478 SHA256 
3afb6b8a9728285954ad2f49052047dc4c255587ce66c8b47da210708613bfa4 SHA512 
3b52604b58bce36f8695a07d1a23d59f68e8f0cb07020700296b644a044473e26891eda723d2197a62bb4fdc0c6c2af7891f1877587bfadf3985a6983d85266b
 WHIRLPOOL 
3d4237d0c5bc9bb6e2c570137b020d84877103675e46c3e2f5ec125ed36f7237e053f4427351fa1cf8eb296f683eb62cafba1a8df108b670648ba282c90f7baa

diff --git a/net-fs/samba/metadata.xml b/net-fs/samba/metadata.xml
index c6b9bbe..197dd33 100644
--- a/net-fs/samba/metadata.xml
+++ b/net-fs/samba/metadata.xml
@@ -12,7 +12,6 @@
Enable Active Directory Domain Controller 
support
Enable AD DNS integration
Enable Active Directory support
-   Enable asynchronous IO support
Enables the client part
Enable support for clustering
Enable support for DMAPI. This currently 
works only in combination with XFS.



[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2017-09-05 Thread Anthony G. Basile
commit: 95522b73d802d4c276aeccea6600a55e05acf5bc
Author: stefson  yahoo  de>
AuthorDate: Mon Sep  4 11:18:09 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Sep  5 13:39:29 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=95522b73

net-fs/samba: fix manifest

Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/Manifest   |  16 ++---
 net-fs/samba/samba-4.5.10-r1.ebuild | 129 ++--
 2 files changed, 87 insertions(+), 58 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index f010717..6470f0c 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,17 +1,17 @@
-AUX 4.3/samba4.confd 1783 SHA256 
53755809cc27fdbaf98752cd3da45b5c2bda62dd46fcc37570c6e237f7954ffa SHA512 
6fc7edf192957f97b171c97482317bf563385917cfdbf950ed28d9387961bd16f82844c6f9b5c430508ec6dc7331ecdf5f81fa3135663316061c1d0b1808f53d
 WHIRLPOOL 
868539ecf658f9da3574847cb1447dafe422c60a9208de5580cf7f53e4346e9c7d1c6b3e7ea5c684b83e613dd912c5245ffce6a43bc8bd9bf8417a9c7a5f2557
-AUX 4.3/samba4.initd-r1 1110 SHA256 
44b53a5d5f516cb944a308613579b3e8e2716651961274b0b01afc70feede342 SHA512 
f69c400d08be6f19864d06ea2a0b3518804b5ad64deac0279b2ad17827b51ef2170bb5b7ef57e8b7041170c66dc7c362f847d2eca0275b74c13adfa156055253
 WHIRLPOOL 
f45d26e8e3f3b86459ee0b4447eab4d585ed025e1f62971dfa48013921d1473c50f0c7aab5b002b7ec6e41281a6638a86ec7188b19773407d15ff1da05215801
+AUX 4.4/samba4.confd 1783 SHA256 
53755809cc27fdbaf98752cd3da45b5c2bda62dd46fcc37570c6e237f7954ffa SHA512 
6fc7edf192957f97b171c97482317bf563385917cfdbf950ed28d9387961bd16f82844c6f9b5c430508ec6dc7331ecdf5f81fa3135663316061c1d0b1808f53d
 WHIRLPOOL 
868539ecf658f9da3574847cb1447dafe422c60a9208de5580cf7f53e4346e9c7d1c6b3e7ea5c684b83e613dd912c5245ffce6a43bc8bd9bf8417a9c7a5f2557
+AUX 4.4/samba4.initd-r1 1103 SHA256 
d40c512760bc0cc56629429219e1eadbcee23aa12ec5b3145f679ed644d0912c SHA512 
8627b32446afed2cf1238eafc0f154ddb6c16857ee96f959e47f8d485b7317354afe59a08fcb3adbd17da087069cf2b94020a44b9190d597b40afd0b8aedf9a5
 WHIRLPOOL 
8f446f2f5302582e162c9eefc679b5037df33d988484aa1773eac732740dbed4e43f771ce9ab93c0a0427f9f90db9c760ab281427e229748640924f91eada32e
+AUX netdb-defines.patch 470 SHA256 
d4a17891a14d9a4290750097cc28279059e6d971fadf132085e857ed4400d5ed SHA512 
1854577d0e4457e27da367a6c7ec0fb5cfd63cefea0a39181c9d6e78cf8d3eb50878cdddeea3daeec955d00263151c2f86ea754ff4276ef98bc52c0276d9ffe8
 WHIRLPOOL 
261d386c4d4cc8fb015ae26e862064f291966093540d78e9293355db080ff27bcf9fb31664b8f525eff0befa6a47502d687a85506e7c2cf8ad1b84d4dd4e4cd4
 AUX nmbd.service 224 SHA256 
a5e25c11714206c4fb129333dd45152c5753716c6445cbe78c28275df1a1cb77 SHA512 
098dfb270c5a5c29f59b4fd8d51b17931771e25e481124832f1a086677825527e2afa7276e8614e5007fbf044d253ce2eaf3a7caf7461ad5d90d0b1c7f157f9d
 WHIRLPOOL 
2f7c342a60c09d5e40e968a026aa17d8c2fe3fd032331c7bb26599bb0f8ec8a77c2a3e329498ed16b1602451fd85a8ef076c436e8a092740cfbd01a82ca52e30
-AUX samba-4.2.3-heimdal_compilefix.patch 819 SHA256 
6cf93d127aa900c1e9a4fb8a3bdff6054d78a7adb798c6f409feffc13c714ee9 SHA512 
0f6ddbf58e5d5b83e3fb9738dd10c2ab0f1ed96fb62f9b4389a40729b3fe2d4af1a5c5bd2d44fa7d568136072b787b6358aeca3026f1acec4f5a6869e74f2536
 WHIRLPOOL 
882a52598013a40165d87616eaa016139fa89ff218dc43a6e6518123ccc18ca84e4ba275731e10ec762b22f26576eac56ad6b257cfae2e1cbc45f518a0d37007
-AUX samba-4.2.7-pam.patch 1273 SHA256 
e1abd99fcf4ff721dafa64c77a60b07962e3e818eaf5d10fecead61a2af81e07 SHA512 
5f900ebfdfb15af38814864f7ec8cd52d3525098d6f2017ab2f29d301e6a0e622d2ab37976fbd97180cbfe23c7853e91ab7966655eb46ebd9bdd2951205e46bc
 WHIRLPOOL 
91e1fc2e49944d1ded93d902fc50437763388a12b8c2eab70e2dcd8124860746c71fa8b4c26e7b43e5ebc2c0fc94c4c005a2c1eb8b9af68e77c9c6cc1d92927c
 AUX samba-4.3.9-remove-getpwent_r.patch 2680 SHA256 
7956274b412a268339abb63f8e1bd63b5049cd4ab7c6270235d9d0b9bcf6c81a SHA512 
0d4fd9862191554dc9c724cec0b94fd19afbfd0c4ed619e4c620c075e849cb3f3d44db1e5f119d890da23a3dd0068d9873703f3d86c47b91310521f37356208b
 WHIRLPOOL 
a42c91049872ca29dfeb80755b7f99fc3ad81b59395fb2d9a77210f18de402a4ef3a0409edfe9339b3b3e7ee7d3c85fed55f90ce50392c5e3ec2fce8c9f3f498
-AUX samba-4.3.9-remove-rep_strtoull.patch 2088 SHA256 
a5a6493252f99d89b9c108a51073e777096e82e22f57c3444dc2cd7df36fe152 SHA512 
9f264e300e453466e9be86d44dc90eea69ace58c4c1a4f9d6374bffe99dae3f56b529c19509efa39cffebb7e3aaf1edf1a1828d36e3d412d0b9de7d70e71e3e0
 WHIRLPOOL 
a33481e663bcddcf7bc0a936d8e67d84850009cbdccf6c14949a244f939d0ea159502915a2ec2f2ee6e357d2dc4a0856a11796e44f22bbde71ff002597337aa4
+AUX samba-4.4.0-pam.patch 895 SHA256 
a7f91da7da039346e9497addef7e644ef1290b5915a43fb9cc76200294022eb7 SHA512 
5a00c6131c372fc1cc9e23e4a37314442bf9af8e420a040a7b20ec3d76a357959d456437ed13e2e17f938eb6dcb4e7c5d899ff3d670526b0a444f63e35d5262c
 WHIRLPOOL 
48e4853bb284ba0bf54262a951ae8045075179c51dbb27689a31c0eba61f1ddb707e1adf62e5e67940c239ea7bc4d1691e6eb8d21781fd9fb30cb76a32cc229b
+AUX samba-4.5.1-compile_et_fix.patch 762 SHA256 
49039beb8e96

[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2017-09-05 Thread Anthony G. Basile
commit: 0bda0a4c9136d5972360fe86f72d738e5de07eab
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Sep  5 13:39:04 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Sep  5 13:39:29 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=0bda0a4c

net-fs/samba: fix USE flags in metadata.xml

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-fs/samba/Manifest |  2 +-
 net-fs/samba/metadata.xml | 13 ++---
 2 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index a615a33..bbc426d 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -14,4 +14,4 @@ AUX winbindd.service 240 SHA256 
755036bc419cce90200ac3c04986fbb7cf718c128c2a1288
 DIST samba-4.5.10.tar.gz 20989431 SHA256 
7cb753f5f6d5527ef40d4c1f47dacafb7c876cb304b4906ccb390c6a18477714 SHA512 
046bae9c66083a4fe656d6a7b02b64343c66e0ea4925193a898dbda107b5b158d1897f16c36f4c393a30457a49215fa6ef91720367f4946760ec48ce02a4a68a
 WHIRLPOOL 
2359a40337c2a85c17e3c860a8531c21ec5cf3c180dfd5a1e554f2eb5e10576a8b706464d490e008af441d9ce6a14043112d621d8e140461806c97947362933a
 DIST samba-disable-python-patches-4.5.0_rc1.tar.xz 6204 SHA256 
fa0d776e04e3222c0dc4761e376717f4154937cdcb85f4117b8978dfb770a78e SHA512 
920089ba3c6e8e7d913b1d7ef1017262a19d1af41215adb30cfc98a57556efc4b0116931d4ef774c01124149d8eca2be3a23814ce7e11daf0180d2c111799927
 WHIRLPOOL 
6d55710895435ad012e23f8c252e5276966241014710349ca7fa9cf037e8742030b8e053f7cb71309a0a45f48d2235d55393243bf4d19476a22dd39bb1b7748d
 EBUILD samba-4.5.10-r1.ebuild 7766 SHA256 
40acfac0c5339a1d7d2f43b5cf060977e5161b8400aaf6161bbee4bbc133 SHA512 
896e700071adf753ca0dc1951d0afa6379fcb3d4358066037783410ff8f20faa3bf032d0dfef8dc5d82423afa20f4180c041dfb67014877e339fe30b627213ce
 WHIRLPOOL 
6f6df73c72bdd5f28ec97f4c97fc4618bc3ad79bc064ad36a3b8c84352a7e596b39c7c5294046add38dd5accf67a8f22a2fe56da74fb177738f032c6644ee621
-MISC metadata.xml 1230 SHA256 
d2a5f177bed97a9cce3acc65fd7271a2a595fb7d47e80824f0052e80209a1f7c SHA512 
481f845a1fe4f95464854a54fa21d2f5a553c2fa97af854dd3491a95bfb6f9ca7b17ca24ce7698d536dbe38f0541d20eb59076d05e15c18a83a9c4820f05c983
 WHIRLPOOL 
7fb669383a22bad5a259cbe46b68bdae1a29f97a10790867c55f3032e683f2e1a47bb3f4c48cb4132ef734401d1fb5631d966fa8f11e69a63e6c4466e7582ac6
+MISC metadata.xml 1535 SHA256 
e52ce6fb55ee494bc4ed348148a75f496df1fcc5282795c58155d3d770816a4e SHA512 
478534265c8b41cc907fd27b7bfdba056a5949d9a6d1c0dec16572eebd7c9eefed24cb625a15f36f457fad0bd321063f0ffe2ed764415f3c09c61458b0751baf
 WHIRLPOOL 
dd7e58a5eda413342d65e117d1020c2a11befe5b1577c0569a4c4749b0ca4592a6d086b03079f1e271b375f700868b57e5a9ed7d404e8d3201d1b73c558e7f76

diff --git a/net-fs/samba/metadata.xml b/net-fs/samba/metadata.xml
index 7ab9667..c6b9bbe 100644
--- a/net-fs/samba/metadata.xml
+++ b/net-fs/samba/metadata.xml
@@ -10,15 +10,22 @@


Enable Active Directory Domain Controller 
support
+   Enable AD DNS integration
Enable Active Directory support
-   Enables support for the winbind auth 
daemon
+   Enable asynchronous IO support
Enables the client part
-   Enable AD DNS integration
Enable support for clustering
Enable support for DMAPI. This currently 
works only in combination with XFS.
+   Use app-crypt/gpgme for AD DC
+   Enabling iPrint technology by Novell
Enables support for user quotas
+   Use app-crypt/heimdal 
instead of
+   bundled heimdal.
Use app-crypt/mit-krb5 
instead of
app-crypt/heimdal.
-   Enabling iPrint technology by Novell
+   Enables support for the winbind auth 
daemon

+   
+   cpe:/a:samba:samba
+   
 



[gentoo-commits] proj/musl:master commit in: net-fs/samba/, net-fs/samba/files/4.3/, net-fs/samba/files/4.4/, ...

2017-09-05 Thread Anthony G. Basile
commit: 8704d0ce3aaec4dc27ea83e468e8d4a3fea9c895
Author: stefson  yahoo  de>
AuthorDate: Mon Sep  4 11:16:23 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Sep  5 13:39:29 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=8704d0ce

net-fs/samba: revbump

Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/files/{4.3 => 4.4}/samba4.confd   |  0
 net-fs/samba/files/{4.3 => 4.4}/samba4.initd-r1|  1 -
 net-fs/samba/files/netdb-defines.patch | 19 ++
 .../files/samba-4.2.3-heimdal_compilefix.patch | 22 ---
 .../files/samba-4.3.9-remove-rep_strtoull.patch| 67 --
 ...samba-4.2.7-pam.patch => samba-4.4.0-pam.patch} | 19 ++
 .../samba/files/samba-4.5.1-compile_et_fix.patch   | 16 ++
 ...mba-4.3.9-r99.ebuild => samba-4.5.10-r1.ebuild} |  0
 8 files changed, 41 insertions(+), 103 deletions(-)

diff --git a/net-fs/samba/files/4.3/samba4.confd 
b/net-fs/samba/files/4.4/samba4.confd
similarity index 100%
rename from net-fs/samba/files/4.3/samba4.confd
rename to net-fs/samba/files/4.4/samba4.confd

diff --git a/net-fs/samba/files/4.3/samba4.initd-r1 
b/net-fs/samba/files/4.4/samba4.initd-r1
similarity index 99%
rename from net-fs/samba/files/4.3/samba4.initd-r1
rename to net-fs/samba/files/4.4/samba4.initd-r1
index bf162ad..52a9b68 100644
--- a/net-fs/samba/files/4.3/samba4.initd-r1
+++ b/net-fs/samba/files/4.4/samba4.initd-r1
@@ -1,7 +1,6 @@
 #!/sbin/openrc-run
 # Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License, v2 or later
-# $Id$
 
 extra_started_commands="reload"
 piddir="/run/samba"

diff --git a/net-fs/samba/files/netdb-defines.patch 
b/net-fs/samba/files/netdb-defines.patch
new file mode 100644
index 000..d7d6446
--- /dev/null
+++ b/net-fs/samba/files/netdb-defines.patch
@@ -0,0 +1,19 @@
+diff --git a/nsswitch/wins.c b/nsswitch/wins.c
+index dccb6dd..bb24acb 100644
+--- a/nsswitch/wins.c
 b/nsswitch/wins.c
+@@ -39,6 +39,14 @@ static pthread_mutex_t wins_nss_mutex = 
PTHREAD_MUTEX_INITIALIZER;
+ #define INADDRSZ 4
+ #endif
+ 
++#ifndef NETDB_INTERNAL
++#define NETDB_INTERNAL -1
++#endif
++
++#ifndef NETDB_SUCCESS
++#define NETDB_SUCCESS 0
++#endif
++
+ NSS_STATUS _nss_wins_gethostbyname_r(const char *hostname,
+struct hostent *he,
+char *buffer,

diff --git a/net-fs/samba/files/samba-4.2.3-heimdal_compilefix.patch 
b/net-fs/samba/files/samba-4.2.3-heimdal_compilefix.patch
deleted file mode 100644
index c6f5007..000
--- a/net-fs/samba/files/samba-4.2.3-heimdal_compilefix.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-https://bugs.gentoo.org/542638
-
-From: Stephan Wolf 
-
-Samba uses the build in implementation of heimdal from year 2011.
-The ebuild uses the portage version of heimdal.
-I got it fixed to patch samba kdc_init function.
-
 samba-4.2.3/source4/kdc/kdc.c
-+++ samba-4.2.3/source4/kdc/kdc.c
-@@ -967,9 +967,9 @@
-* The old behavior in the _kdc_get_preferred_key()
-* function is use_strongest_server_key=TRUE.
-*/
--  kdc->config->as_use_strongest_session_key = false;
-+  kdc->config->tgt_use_strongest_session_key = false;
-   kdc->config->preauth_use_strongest_session_key = false;
--  kdc->config->tgs_use_strongest_session_key = false;
-+  kdc->config->svc_use_strongest_session_key = false;
-   kdc->config->use_strongest_server_key = true;
- 
-   /* Register hdb-samba4 hooks for use as a keytab */

diff --git a/net-fs/samba/files/samba-4.3.9-remove-rep_strtoull.patch 
b/net-fs/samba/files/samba-4.3.9-remove-rep_strtoull.patch
deleted file mode 100644
index 9c41454..000
--- a/net-fs/samba/files/samba-4.3.9-remove-rep_strtoull.patch
+++ /dev/null
@@ -1,67 +0,0 @@
-diff -Naur samba-4.3.9.orig/lib/replace/replace.c 
samba-4.3.9/lib/replace/replace.c
 samba-4.3.9.orig/lib/replace/replace.c 2015-09-08 13:45:25.0 
+
-+++ samba-4.3.9/lib/replace/replace.c  2016-05-29 06:47:07.529796925 +
-@@ -558,43 +558,6 @@
- #endif /* HAVE_STRTOLL */
- 
- 
--#ifndef HAVE_STRTOULL
--unsigned long long int rep_strtoull(const char *str, char **endptr, int base)
--{
--#ifdef HAVE_STRTOUQ
--  return strtouq(str, endptr, base);
--#elif defined(HAVE___STRTOULL) 
--  return __strtoull(str, endptr, base);
--#elif SIZEOF_LONG == SIZEOF_LONG_LONG
--  return (unsigned long long int) strtoul(str, endptr, base);
--#else
--# error "You need a strtoull function"
--#endif
--}
--#else
--#ifdef HAVE_BSD_STRTOLL
--#ifdef HAVE_STRTOUQ
--unsigned long long int rep_strtoull(const char *str, char **endptr, int base)
--{
--  unsigned long long int nb = strtouq(str, endptr, base);
--  /* In linux EINVAL is only returned if base is not ok */
--  if (errno == EINVAL) {
--  if (base == 0 || (base >1 && base <37)) {
--  /* Base was ok so it's because we were not
--   

[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2017-09-05 Thread Anthony G. Basile
commit: a3487a753e3148598ee3587996a52e6cc3ab5455
Author: stefson  yahoo  de>
AuthorDate: Mon Sep  4 11:30:50 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Sep  5 13:39:29 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=a3487a75

net-fs/samba: update metadata to make travis happy

Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/Manifest | 2 +-
 net-fs/samba/metadata.xml | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 6470f0c..a615a33 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -14,4 +14,4 @@ AUX winbindd.service 240 SHA256 
755036bc419cce90200ac3c04986fbb7cf718c128c2a1288
 DIST samba-4.5.10.tar.gz 20989431 SHA256 
7cb753f5f6d5527ef40d4c1f47dacafb7c876cb304b4906ccb390c6a18477714 SHA512 
046bae9c66083a4fe656d6a7b02b64343c66e0ea4925193a898dbda107b5b158d1897f16c36f4c393a30457a49215fa6ef91720367f4946760ec48ce02a4a68a
 WHIRLPOOL 
2359a40337c2a85c17e3c860a8531c21ec5cf3c180dfd5a1e554f2eb5e10576a8b706464d490e008af441d9ce6a14043112d621d8e140461806c97947362933a
 DIST samba-disable-python-patches-4.5.0_rc1.tar.xz 6204 SHA256 
fa0d776e04e3222c0dc4761e376717f4154937cdcb85f4117b8978dfb770a78e SHA512 
920089ba3c6e8e7d913b1d7ef1017262a19d1af41215adb30cfc98a57556efc4b0116931d4ef774c01124149d8eca2be3a23814ce7e11daf0180d2c111799927
 WHIRLPOOL 
6d55710895435ad012e23f8c252e5276966241014710349ca7fa9cf037e8742030b8e053f7cb71309a0a45f48d2235d55393243bf4d19476a22dd39bb1b7748d
 EBUILD samba-4.5.10-r1.ebuild 7766 SHA256 
40acfac0c5339a1d7d2f43b5cf060977e5161b8400aaf6161bbee4bbc133 SHA512 
896e700071adf753ca0dc1951d0afa6379fcb3d4358066037783410ff8f20faa3bf032d0dfef8dc5d82423afa20f4180c041dfb67014877e339fe30b627213ce
 WHIRLPOOL 
6f6df73c72bdd5f28ec97f4c97fc4618bc3ad79bc064ad36a3b8c84352a7e596b39c7c5294046add38dd5accf67a8f22a2fe56da74fb177738f032c6644ee621
-MISC metadata.xml 1287 SHA256 
8208635edd9a751dde19da5255939adf639d31fce7cc8a0f9644d873dd389467 SHA512 
b79d226bf155dcbdf0ff6dd59180f526d71de48dd032810ffc5209a8232b6b945dd2e18d10898d231c8168ff091f3ee2b7ad0d96d4678fecb4321b78ed6cda5a
 WHIRLPOOL 
c14a23a123161cfc1b3c6618840b7b5b2c5977a15e558947832dd791cf87fc20461056e90b8d5f84eefa743ed8439b543bb9b400227814bac0d7676248da8e8d
+MISC metadata.xml 1230 SHA256 
d2a5f177bed97a9cce3acc65fd7271a2a595fb7d47e80824f0052e80209a1f7c SHA512 
481f845a1fe4f95464854a54fa21d2f5a553c2fa97af854dd3491a95bfb6f9ca7b17ca24ce7698d536dbe38f0541d20eb59076d05e15c18a83a9c4820f05c983
 WHIRLPOOL 
7fb669383a22bad5a259cbe46b68bdae1a29f97a10790867c55f3032e683f2e1a47bb3f4c48cb4132ef734401d1fb5631d966fa8f11e69a63e6c4466e7582ac6

diff --git a/net-fs/samba/metadata.xml b/net-fs/samba/metadata.xml
index e2578d7..7ab9667 100644
--- a/net-fs/samba/metadata.xml
+++ b/net-fs/samba/metadata.xml
@@ -14,7 +14,6 @@
Enables support for the winbind auth 
daemon
Enables the client part
Enable AD DNS integration
-   Enable asynchronous IO support
Enable support for clustering
Enable support for DMAPI. This currently 
works only in combination with XFS.
Enables support for user quotas



[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2017-03-02 Thread Aric Belsito
commit: 2c0b5118fe72e1037637d78250390a4a58a543e1
Author: Aric Belsito  gmail  com>
AuthorDate: Thu Mar  2 18:16:44 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Thu Mar  2 18:40:06 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=2c0b5118

net-fs/samba: fix metadata.xml

This package needs to be updated or removed.

 net-fs/samba/Manifest | 2 +-
 net-fs/samba/metadata.xml | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 6c09bf8..0307260 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -14,4 +14,4 @@ AUX winbindd.service 240 SHA256 
755036bc419cce90200ac3c04986fbb7cf718c128c2a1288
 DIST samba-4.3.9.tar.gz 20570849 SHA256 
1f22c61a7f24c5357a9ef4d10833a2cd161f40f3db03bcbe586d7cd3a56139f3 SHA512 
bc90c88d8defd3acec7c671e8ceacec31e3111540aabee7ec6f11cdeaf61bbd993525e2b765e3b50801c8079e1168cf496b3e5e6a56118d6493ae5da60d34c41
 WHIRLPOOL 
e33efba4bfbaab5278ec62cbadb5f14fe2220d4b4ad1e57a4d26233d8b6bdf4318ad86d839b2638a490a195c04aabb02dafff67bb1e2999fab4f116b3c6367cc
 DIST samba-disable-python-patches-4.3.9.tar.xz 6116 SHA256 
83206112e04c375e170e86ea6b29d6dc2c172b55ba9fb89130be14708d758cf5 SHA512 
ca8b62337afd1cc6059b9aefc0a3972d18ba90fba3f043d9730f6967e1b80c40bc918b0445b8ae8a1f3df74d3551f90c721df3c0514edccb881ed0b4fc54e1b5
 WHIRLPOOL 
3aebd6758e5e7dc2920b1e8f8825d2b7b7efac7c5f2d91d5ed6fed75597bfdced1b27d9e2a00385af5df19e5462a4e014df6a7274c0b25a660702268235ef746
 EBUILD samba-4.3.9-r99.ebuild 6784 SHA256 
0ced519f1d177f9c82c5c2dca1ebfcdb124d32fb24c1f7f1b8c36af92bb29090 SHA512 
4e3723d82ff7e819eb65e0dd32081479cd3e2f75a64977bc7d337aa9d424234cf77a20988415145254c398faa7dd5ce854628ff27a94fc810599271dc1f546df
 WHIRLPOOL 
1565704f0e0b05d0c8a71fb437e03b62789e74f6d4350ef93dc2f5d54060726fef1af818ce920b90c54fd5abe99a1d54ea950e997e51c4d89fa8958bf72c3b0f
-MISC metadata.xml 1340 SHA256 
7e1194c34c9027273c83730261a6216ebed071fd6d43035fb53d1f4181db4686 SHA512 
1c339824f2fcbe5573041699a973fd31355cae24c8d6c8e7779b82da3aef96fba3ed4f8a08e2867ef6a7b77e025253e0f762eadb2b96331e7c57cf3b25a64da4
 WHIRLPOOL 
5163bf739900fa9fe9b05ddcee07829911cf9b704d42bf246e38111aa90a09f5435fbd4d8058f29e171fa91e64110bb49834af1677ea55b1d2f2789a20740e58
+MISC metadata.xml 1287 SHA256 
8208635edd9a751dde19da5255939adf639d31fce7cc8a0f9644d873dd389467 SHA512 
b79d226bf155dcbdf0ff6dd59180f526d71de48dd032810ffc5209a8232b6b945dd2e18d10898d231c8168ff091f3ee2b7ad0d96d4678fecb4321b78ed6cda5a
 WHIRLPOOL 
c14a23a123161cfc1b3c6618840b7b5b2c5977a15e558947832dd791cf87fc20461056e90b8d5f84eefa743ed8439b543bb9b400227814bac0d7676248da8e8d

diff --git a/net-fs/samba/metadata.xml b/net-fs/samba/metadata.xml
index 0028eef..e2578d7 100644
--- a/net-fs/samba/metadata.xml
+++ b/net-fs/samba/metadata.xml
@@ -13,7 +13,6 @@
Enable Active Directory support
Enables support for the winbind auth 
daemon
Enables the client part
-   Enables the server part
Enable AD DNS integration
Enable asynchronous IO support
Enable support for clustering



[gentoo-commits] proj/musl:master commit in: net-fs/samba/, net-fs/samba/files/

2016-05-29 Thread Anthony G. Basile
commit: 60b3cbdc727bb17462427d669c0d4f877cafc767
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun May 29 16:48:33 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun May 29 16:48:33 2016 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=60b3cbdc

net-fs/samba: use alpine patch for getpwent_r() and getgrent_r()

 net-fs/samba/Manifest  |   6 +-
 .../files/samba-4.3.9-remove-getpwent_r.patch  | 161 +
 .../files/samba-4.3.9-remove-rep_strtoull.patch|  22 ++-
 net-fs/samba/metadata.xml  |   6 -
 4 files changed, 94 insertions(+), 101 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 9f1b416..6c09bf8 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -3,8 +3,8 @@ AUX 4.3/samba4.initd-r1 1110 SHA256 
44b53a5d5f516cb944a308613579b3e8e27166519612
 AUX nmbd.service 224 SHA256 
a5e25c11714206c4fb129333dd45152c5753716c6445cbe78c28275df1a1cb77 SHA512 
098dfb270c5a5c29f59b4fd8d51b17931771e25e481124832f1a086677825527e2afa7276e8614e5007fbf044d253ce2eaf3a7caf7461ad5d90d0b1c7f157f9d
 WHIRLPOOL 
2f7c342a60c09d5e40e968a026aa17d8c2fe3fd032331c7bb26599bb0f8ec8a77c2a3e329498ed16b1602451fd85a8ef076c436e8a092740cfbd01a82ca52e30
 AUX samba-4.2.3-heimdal_compilefix.patch 819 SHA256 
6cf93d127aa900c1e9a4fb8a3bdff6054d78a7adb798c6f409feffc13c714ee9 SHA512 
0f6ddbf58e5d5b83e3fb9738dd10c2ab0f1ed96fb62f9b4389a40729b3fe2d4af1a5c5bd2d44fa7d568136072b787b6358aeca3026f1acec4f5a6869e74f2536
 WHIRLPOOL 
882a52598013a40165d87616eaa016139fa89ff218dc43a6e6518123ccc18ca84e4ba275731e10ec762b22f26576eac56ad6b257cfae2e1cbc45f518a0d37007
 AUX samba-4.2.7-pam.patch 1273 SHA256 
e1abd99fcf4ff721dafa64c77a60b07962e3e818eaf5d10fecead61a2af81e07 SHA512 
5f900ebfdfb15af38814864f7ec8cd52d3525098d6f2017ab2f29d301e6a0e622d2ab37976fbd97180cbfe23c7853e91ab7966655eb46ebd9bdd2951205e46bc
 WHIRLPOOL 
91e1fc2e49944d1ded93d902fc50437763388a12b8c2eab70e2dcd8124860746c71fa8b4c26e7b43e5ebc2c0fc94c4c005a2c1eb8b9af68e77c9c6cc1d92927c
-AUX samba-4.3.9-remove-getpwent_r.patch 2509 SHA256 
67cb2991602fb8e7ac24c8ff74840a310c95fac79554792195fd6974d7a5acc6 SHA512 
833d7633b1946b7e4a0157cdf781fbba429a9b98e641f48de779fb4a4daccbc10cb9cb4bb09d9e050a27a91e749317dad3bec53a5102ba7787fc222037211c73
 WHIRLPOOL 
c64797ba00e4f57a5c8d5e4a61583f33eee5505b12ba8dee34487a3d2549d8565388d955ee1d73362421c3dee3d4badb9b9afd8b512308c7745371eeaf8c9d57
-AUX samba-4.3.9-remove-rep_strtoull.patch 1391 SHA256 
668841dc9f9b18ac7bc9b186bf2f800382fe1073101c8ea45630706e9821540e SHA512 
7c4d73dcc2958773b95edd357f984cfb260be1e9d270d8fd4f7e42ef16697af9e3cc58d534cbc67e37cd4b4fe4bb9e8b24be41201d3fb225eb0eec093c9a
 WHIRLPOOL 
0a7c6e7619a12b8468da9a6449914916232d8ce2cbc66779dc7a590acaf62f8a1196c08b846dbc20c58d6dd145eea36a7d087eaf0a596fbfb82d20d4b22ada0a
+AUX samba-4.3.9-remove-getpwent_r.patch 2680 SHA256 
7956274b412a268339abb63f8e1bd63b5049cd4ab7c6270235d9d0b9bcf6c81a SHA512 
0d4fd9862191554dc9c724cec0b94fd19afbfd0c4ed619e4c620c075e849cb3f3d44db1e5f119d890da23a3dd0068d9873703f3d86c47b91310521f37356208b
 WHIRLPOOL 
a42c91049872ca29dfeb80755b7f99fc3ad81b59395fb2d9a77210f18de402a4ef3a0409edfe9339b3b3e7ee7d3c85fed55f90ce50392c5e3ec2fce8c9f3f498
+AUX samba-4.3.9-remove-rep_strtoull.patch 2088 SHA256 
a5a6493252f99d89b9c108a51073e777096e82e22f57c3444dc2cd7df36fe152 SHA512 
9f264e300e453466e9be86d44dc90eea69ace58c4c1a4f9d6374bffe99dae3f56b529c19509efa39cffebb7e3aaf1edf1a1828d36e3d412d0b9de7d70e71e3e0
 WHIRLPOOL 
a33481e663bcddcf7bc0a936d8e67d84850009cbdccf6c14949a244f939d0ea159502915a2ec2f2ee6e357d2dc4a0856a11796e44f22bbde71ff002597337aa4
 AUX samba.conf 61 SHA256 
e4fc68bc14a44e3c452e767d996ff693d131da317eb513de10d752dd96cb6f12 SHA512 
4a75185762c90d110c399215fbfc939d30804b558ffdb11cc68dee6f87a94c86cadbcd63935884db1266cf40fe24fefb75f9067fe4751ad9838d7a43e8973b9e
 WHIRLPOOL 
ad21bc3738c2ec721ad3be746c66719385390835c7f4da881fc0cc1c982bb6821a56300157b1169d1a35264e44dab1a0c29cd9919455a02a8f4c53c665a4bed3
 AUX samba.service 199 SHA256 
0ae738fa2a15b476dbca016dfa4e1cf4b8c4a575e13edf518eb70b615c02a059 SHA512 
eb277917f15de958f4a0404b66c6d2cc82ae4319b85f2f442489988d523bf92e2a9d23a6051ee693cd4bcfbc67947e8028c59906ad3e537578daf5caee8a6f16
 WHIRLPOOL 
1132081b63b1e0e1a9342d59493ebfe1d918133a4091e48c42dae7845dcaa24a0b8e7a1183d5a41b0173c3f6dbc17838a9b7a6297fc8ea0775ab150a22ae3151
 AUX smbd.service 250 SHA256 
e1f5da902cd97891852f6463b2c7eddbc61e7fbd3e3c281028a806319627fc68 SHA512 
a54e3c337f7c27766a81f68ad6d8f4eb6ddb1d1aec3303f274e419a49114755bc5dd711701d5e64954ae7153a8be4a7063371af286696c0b81d543b9276703c3
 WHIRLPOOL 
18b6a57603a41303d207249fdb46cb4f6e887f8b9bd4921dca6b4f28a59951368d6abead2dc9d3be2c09cb2c9f295087ef5f20d121a309791b9031e3fad28b13
@@ -14,4 +14,4 @@ AUX winbindd.service 240 SHA256 
755036bc419cce90200ac3c04986fbb7cf718c128c2a1288
 DIST samba-4.3.9.tar.gz 20570849 SHA256 
1f22c61a7f24c5357a9ef4d10833a2cd161f40f3db03bcbe586d7cd3a56139f3 SHA5

[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2016-05-28 Thread Anthony G. Basile
commit: 3f6b061e93ac083d00476c2f0ce87d8e70d92637
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun May 29 01:55:15 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun May 29 01:55:15 2016 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=3f6b061e

Revert "net-fs/samba: backup to EAPI=5"

This reverts commit 7a11fbf25a72ec268be1d65dd5953878fc731c4e.

 net-fs/samba/Manifest   | 2 +-
 net-fs/samba/samba-4.3.9-r99.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index fdd107d..9f1b416 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -13,5 +13,5 @@ AUX smbd_at.service 145 SHA256 
909dddfd80982035739081d86d2c524f6a25440d9c10b8a80
 AUX winbindd.service 240 SHA256 
755036bc419cce90200ac3c04986fbb7cf718c128c2a1288c634658bb779bf3a SHA512 
f1ce6d035e8e0fcdc73f14e3b60c9647043777ff6b2a982a81ed07eb4df5ff245a9511e3e4a9d8163f9c8f3fb86d2a39a67621ace68392eb7c2f2e2a55d587f7
 WHIRLPOOL 
eb4d7f30b4ce3341e3d24a6c05965bdce9ded78a7327b44d3d04d00837d6e8109857b1fb1b78c8325680588cf9abe94158755a962fb8f7e8dac04b336308c268
 DIST samba-4.3.9.tar.gz 20570849 SHA256 
1f22c61a7f24c5357a9ef4d10833a2cd161f40f3db03bcbe586d7cd3a56139f3 SHA512 
bc90c88d8defd3acec7c671e8ceacec31e3111540aabee7ec6f11cdeaf61bbd993525e2b765e3b50801c8079e1168cf496b3e5e6a56118d6493ae5da60d34c41
 WHIRLPOOL 
e33efba4bfbaab5278ec62cbadb5f14fe2220d4b4ad1e57a4d26233d8b6bdf4318ad86d839b2638a490a195c04aabb02dafff67bb1e2999fab4f116b3c6367cc
 DIST samba-disable-python-patches-4.3.9.tar.xz 6116 SHA256 
83206112e04c375e170e86ea6b29d6dc2c172b55ba9fb89130be14708d758cf5 SHA512 
ca8b62337afd1cc6059b9aefc0a3972d18ba90fba3f043d9730f6967e1b80c40bc918b0445b8ae8a1f3df74d3551f90c721df3c0514edccb881ed0b4fc54e1b5
 WHIRLPOOL 
3aebd6758e5e7dc2920b1e8f8825d2b7b7efac7c5f2d91d5ed6fed75597bfdced1b27d9e2a00385af5df19e5462a4e014df6a7274c0b25a660702268235ef746
-EBUILD samba-4.3.9-r99.ebuild 6784 SHA256 
11dd90b2a138f3eadb649a7678a5440f156847ce67c607d9adc13e23bf040bc8 SHA512 
0394ae1842c543288075e0bfc83f5d7910bf440ae93113c0678c6be8e7bc55cbdb7bf7e7df321e4181b064dfe7245c200b8cb6ec4366605659bec92f12028887
 WHIRLPOOL 
ab003611d56d42b9feb853f91f9a25546d8fd5a1fe1593671e93ff37cb1ef67349e1c5ed3cb30d2e5f40239bc2a1358487326c5ff8dcbff25d888b9ff90b7b69
+EBUILD samba-4.3.9-r99.ebuild 6784 SHA256 
0ced519f1d177f9c82c5c2dca1ebfcdb124d32fb24c1f7f1b8c36af92bb29090 SHA512 
4e3723d82ff7e819eb65e0dd32081479cd3e2f75a64977bc7d337aa9d424234cf77a20988415145254c398faa7dd5ce854628ff27a94fc810599271dc1f546df
 WHIRLPOOL 
1565704f0e0b05d0c8a71fb437e03b62789e74f6d4350ef93dc2f5d54060726fef1af818ce920b90c54fd5abe99a1d54ea950e997e51c4d89fa8958bf72c3b0f
 MISC metadata.xml 1714 SHA256 
94b726fc2c6f741402a9a6139fd507a9b7b56d0920ae83a095e0e5c416250f3d SHA512 
ccf8143ca9c586a5313f8e4d82ae9114ad9685def8b12729804ebd5279ce53e58685cf21257a7fe11f0a40227df5b3987550d4d8f3fde1752310eec3da27ba4f
 WHIRLPOOL 
7c35b3a07535c0e3e9e716a394f06535c343a44dcd4ec49c28460ef337e9d920fc91210f083bf6ca098774369bec065e280ef11f296372242ea94b72b70a9fc2

diff --git a/net-fs/samba/samba-4.3.9-r99.ebuild 
b/net-fs/samba/samba-4.3.9-r99.ebuild
index 8508cef..f0c4a24 100644
--- a/net-fs/samba/samba-4.3.9-r99.ebuild
+++ b/net-fs/samba/samba-4.3.9-r99.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE='threads(+),xml(+)'
 



[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2016-05-28 Thread Anthony G. Basile
commit: 56360fa27a0d56719557fcc1b238b0f13b6a42c3
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun May 29 01:14:35 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun May 29 01:14:35 2016 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=56360fa2

net-fs/samba: fix dependency on pam

Package-Manager: portage-2.2.28

 net-fs/samba/Manifest   | 2 +-
 net-fs/samba/samba-4.3.9-r99.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 341b88d..fdd107d 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -13,5 +13,5 @@ AUX smbd_at.service 145 SHA256 
909dddfd80982035739081d86d2c524f6a25440d9c10b8a80
 AUX winbindd.service 240 SHA256 
755036bc419cce90200ac3c04986fbb7cf718c128c2a1288c634658bb779bf3a SHA512 
f1ce6d035e8e0fcdc73f14e3b60c9647043777ff6b2a982a81ed07eb4df5ff245a9511e3e4a9d8163f9c8f3fb86d2a39a67621ace68392eb7c2f2e2a55d587f7
 WHIRLPOOL 
eb4d7f30b4ce3341e3d24a6c05965bdce9ded78a7327b44d3d04d00837d6e8109857b1fb1b78c8325680588cf9abe94158755a962fb8f7e8dac04b336308c268
 DIST samba-4.3.9.tar.gz 20570849 SHA256 
1f22c61a7f24c5357a9ef4d10833a2cd161f40f3db03bcbe586d7cd3a56139f3 SHA512 
bc90c88d8defd3acec7c671e8ceacec31e3111540aabee7ec6f11cdeaf61bbd993525e2b765e3b50801c8079e1168cf496b3e5e6a56118d6493ae5da60d34c41
 WHIRLPOOL 
e33efba4bfbaab5278ec62cbadb5f14fe2220d4b4ad1e57a4d26233d8b6bdf4318ad86d839b2638a490a195c04aabb02dafff67bb1e2999fab4f116b3c6367cc
 DIST samba-disable-python-patches-4.3.9.tar.xz 6116 SHA256 
83206112e04c375e170e86ea6b29d6dc2c172b55ba9fb89130be14708d758cf5 SHA512 
ca8b62337afd1cc6059b9aefc0a3972d18ba90fba3f043d9730f6967e1b80c40bc918b0445b8ae8a1f3df74d3551f90c721df3c0514edccb881ed0b4fc54e1b5
 WHIRLPOOL 
3aebd6758e5e7dc2920b1e8f8825d2b7b7efac7c5f2d91d5ed6fed75597bfdced1b27d9e2a00385af5df19e5462a4e014df6a7274c0b25a660702268235ef746
-EBUILD samba-4.3.9-r99.ebuild 6775 SHA256 
234bc1ef336d4cad68cabdb4c0412e4af24bb59b0c7c4fb11ea773d01466bc1a SHA512 
bedf8d38d0abdf418a4c709981602c0e0f3c831658e42d947f9466e5cdc14e3926218abc5b285284974fe27bd6cb3cdcad80fee2432a2c2ffb17c8d02031ad57
 WHIRLPOOL 
3433603e0d86391169f17de3052794c5ce8bd55856739dd541a8e60d2d72e4cfd63718e7d49e2ef9d32cf6bc4879d7b86a754efaa0cbdac4066041374713119c
+EBUILD samba-4.3.9-r99.ebuild 6784 SHA256 
11dd90b2a138f3eadb649a7678a5440f156847ce67c607d9adc13e23bf040bc8 SHA512 
0394ae1842c543288075e0bfc83f5d7910bf440ae93113c0678c6be8e7bc55cbdb7bf7e7df321e4181b064dfe7245c200b8cb6ec4366605659bec92f12028887
 WHIRLPOOL 
ab003611d56d42b9feb853f91f9a25546d8fd5a1fe1593671e93ff37cb1ef67349e1c5ed3cb30d2e5f40239bc2a1358487326c5ff8dcbff25d888b9ff90b7b69
 MISC metadata.xml 1714 SHA256 
94b726fc2c6f741402a9a6139fd507a9b7b56d0920ae83a095e0e5c416250f3d SHA512 
ccf8143ca9c586a5313f8e4d82ae9114ad9685def8b12729804ebd5279ce53e58685cf21257a7fe11f0a40227df5b3987550d4d8f3fde1752310eec3da27ba4f
 WHIRLPOOL 
7c35b3a07535c0e3e9e716a394f06535c343a44dcd4ec49c28460ef337e9d920fc91210f083bf6ca098774369bec065e280ef11f296372242ea94b72b70a9fc2

diff --git a/net-fs/samba/samba-4.3.9-r99.ebuild 
b/net-fs/samba/samba-4.3.9-r99.ebuild
index 3ba72ef..8508cef 100644
--- a/net-fs/samba/samba-4.3.9-r99.ebuild
+++ b/net-fs/samba/samba-4.3.9-r99.ebuild
@@ -57,7 +57,7 @@ CDEPEND="${PYTHON_DEPS}
>=sys-libs/tdb-1.3.7[python,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
>=sys-libs/tevent-0.9.25[${MULTILIB_USEDEP}]
sys-libs/zlib[${MULTILIB_USEDEP}]
-   virtual/pam
+   pam? ( virtual/pam )
acl? ( virtual/acl )
addns? ( net-dns/bind-tools[gssapi] )
aio? ( dev-libs/libaio )



[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2016-05-28 Thread Anthony G. Basile
commit: 7a11fbf25a72ec268be1d65dd5953878fc731c4e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun May 29 01:10:44 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun May 29 01:10:44 2016 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=7a11fbf2

net-fs/samba: backup to EAPI=5

Package-Manager: portage-2.2.28

 net-fs/samba/Manifest   | 2 +-
 net-fs/samba/samba-4.3.9-r99.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index bc95999..341b88d 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -13,5 +13,5 @@ AUX smbd_at.service 145 SHA256 
909dddfd80982035739081d86d2c524f6a25440d9c10b8a80
 AUX winbindd.service 240 SHA256 
755036bc419cce90200ac3c04986fbb7cf718c128c2a1288c634658bb779bf3a SHA512 
f1ce6d035e8e0fcdc73f14e3b60c9647043777ff6b2a982a81ed07eb4df5ff245a9511e3e4a9d8163f9c8f3fb86d2a39a67621ace68392eb7c2f2e2a55d587f7
 WHIRLPOOL 
eb4d7f30b4ce3341e3d24a6c05965bdce9ded78a7327b44d3d04d00837d6e8109857b1fb1b78c8325680588cf9abe94158755a962fb8f7e8dac04b336308c268
 DIST samba-4.3.9.tar.gz 20570849 SHA256 
1f22c61a7f24c5357a9ef4d10833a2cd161f40f3db03bcbe586d7cd3a56139f3 SHA512 
bc90c88d8defd3acec7c671e8ceacec31e3111540aabee7ec6f11cdeaf61bbd993525e2b765e3b50801c8079e1168cf496b3e5e6a56118d6493ae5da60d34c41
 WHIRLPOOL 
e33efba4bfbaab5278ec62cbadb5f14fe2220d4b4ad1e57a4d26233d8b6bdf4318ad86d839b2638a490a195c04aabb02dafff67bb1e2999fab4f116b3c6367cc
 DIST samba-disable-python-patches-4.3.9.tar.xz 6116 SHA256 
83206112e04c375e170e86ea6b29d6dc2c172b55ba9fb89130be14708d758cf5 SHA512 
ca8b62337afd1cc6059b9aefc0a3972d18ba90fba3f043d9730f6967e1b80c40bc918b0445b8ae8a1f3df74d3551f90c721df3c0514edccb881ed0b4fc54e1b5
 WHIRLPOOL 
3aebd6758e5e7dc2920b1e8f8825d2b7b7efac7c5f2d91d5ed6fed75597bfdced1b27d9e2a00385af5df19e5462a4e014df6a7274c0b25a660702268235ef746
-EBUILD samba-4.3.9-r99.ebuild 6775 SHA256 
625f16e16a0883b1f1d0808c909767432e831895ae708598219529840c287a67 SHA512 
331b2ea18101aae2416caef82c2be925bbb1eb316bf0ed9b7c67fb683399f59c795d25edbba8d0ada26ce643033a74a2cde1ac9461b01775e8a8a19b82ed116b
 WHIRLPOOL 
a8e1d42cc92ffa6ce1d3615af367d3765020f05997e118af701b19064d7f18dfdaac626d355f3b1cdf0dcd45ec642e77f40ba4e1ec5a81f7f1980ff969da5dc7
+EBUILD samba-4.3.9-r99.ebuild 6775 SHA256 
234bc1ef336d4cad68cabdb4c0412e4af24bb59b0c7c4fb11ea773d01466bc1a SHA512 
bedf8d38d0abdf418a4c709981602c0e0f3c831658e42d947f9466e5cdc14e3926218abc5b285284974fe27bd6cb3cdcad80fee2432a2c2ffb17c8d02031ad57
 WHIRLPOOL 
3433603e0d86391169f17de3052794c5ce8bd55856739dd541a8e60d2d72e4cfd63718e7d49e2ef9d32cf6bc4879d7b86a754efaa0cbdac4066041374713119c
 MISC metadata.xml 1714 SHA256 
94b726fc2c6f741402a9a6139fd507a9b7b56d0920ae83a095e0e5c416250f3d SHA512 
ccf8143ca9c586a5313f8e4d82ae9114ad9685def8b12729804ebd5279ce53e58685cf21257a7fe11f0a40227df5b3987550d4d8f3fde1752310eec3da27ba4f
 WHIRLPOOL 
7c35b3a07535c0e3e9e716a394f06535c343a44dcd4ec49c28460ef337e9d920fc91210f083bf6ca098774369bec065e280ef11f296372242ea94b72b70a9fc2

diff --git a/net-fs/samba/samba-4.3.9-r99.ebuild 
b/net-fs/samba/samba-4.3.9-r99.ebuild
index 081c540..3ba72ef 100644
--- a/net-fs/samba/samba-4.3.9-r99.ebuild
+++ b/net-fs/samba/samba-4.3.9-r99.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=6
+EAPI=5
 PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE='threads(+),xml(+)'
 



[gentoo-commits] proj/musl:master commit in: net-fs/samba/, net-fs/samba/files/4.3/, net-fs/samba/files/

2016-05-28 Thread Anthony G. Basile
commit: fbb0cc1418419103a3d12838351fc640d27cc299
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat May 28 13:47:06 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat May 28 13:47:06 2016 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=fbb0cc14

net-fs/samba: added for testing

Package-Manager: portage-2.2.28

 net-fs/samba/Manifest  |  15 ++
 net-fs/samba/files/4.3/samba4.confd|  38 
 net-fs/samba/files/4.3/samba4.initd-r1 |  56 +
 net-fs/samba/files/nmbd.service|  12 +
 .../files/samba-4.2.3-heimdal_compilefix.patch |  22 ++
 net-fs/samba/files/samba-4.2.7-pam.patch   |  36 +++
 net-fs/samba/files/samba.conf  |   2 +
 net-fs/samba/files/samba.service   |  10 +
 net-fs/samba/files/smbd.service|  12 +
 net-fs/samba/files/smbd.socket |   9 +
 net-fs/samba/files/smbd_at.service |   7 +
 net-fs/samba/files/winbindd.service|  12 +
 net-fs/samba/metadata.xml  |  32 +++
 net-fs/samba/samba-4.3.9-r99.ebuild| 250 +
 14 files changed, 513 insertions(+)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
new file mode 100644
index 000..7f77a4a
--- /dev/null
+++ b/net-fs/samba/Manifest
@@ -0,0 +1,15 @@
+AUX 4.3/samba4.confd 1783 SHA256 
53755809cc27fdbaf98752cd3da45b5c2bda62dd46fcc37570c6e237f7954ffa SHA512 
6fc7edf192957f97b171c97482317bf563385917cfdbf950ed28d9387961bd16f82844c6f9b5c430508ec6dc7331ecdf5f81fa3135663316061c1d0b1808f53d
 WHIRLPOOL 
868539ecf658f9da3574847cb1447dafe422c60a9208de5580cf7f53e4346e9c7d1c6b3e7ea5c684b83e613dd912c5245ffce6a43bc8bd9bf8417a9c7a5f2557
+AUX 4.3/samba4.initd-r1 1110 SHA256 
44b53a5d5f516cb944a308613579b3e8e2716651961274b0b01afc70feede342 SHA512 
f69c400d08be6f19864d06ea2a0b3518804b5ad64deac0279b2ad17827b51ef2170bb5b7ef57e8b7041170c66dc7c362f847d2eca0275b74c13adfa156055253
 WHIRLPOOL 
f45d26e8e3f3b86459ee0b4447eab4d585ed025e1f62971dfa48013921d1473c50f0c7aab5b002b7ec6e41281a6638a86ec7188b19773407d15ff1da05215801
+AUX nmbd.service 224 SHA256 
a5e25c11714206c4fb129333dd45152c5753716c6445cbe78c28275df1a1cb77 SHA512 
098dfb270c5a5c29f59b4fd8d51b17931771e25e481124832f1a086677825527e2afa7276e8614e5007fbf044d253ce2eaf3a7caf7461ad5d90d0b1c7f157f9d
 WHIRLPOOL 
2f7c342a60c09d5e40e968a026aa17d8c2fe3fd032331c7bb26599bb0f8ec8a77c2a3e329498ed16b1602451fd85a8ef076c436e8a092740cfbd01a82ca52e30
+AUX samba-4.2.3-heimdal_compilefix.patch 819 SHA256 
6cf93d127aa900c1e9a4fb8a3bdff6054d78a7adb798c6f409feffc13c714ee9 SHA512 
0f6ddbf58e5d5b83e3fb9738dd10c2ab0f1ed96fb62f9b4389a40729b3fe2d4af1a5c5bd2d44fa7d568136072b787b6358aeca3026f1acec4f5a6869e74f2536
 WHIRLPOOL 
882a52598013a40165d87616eaa016139fa89ff218dc43a6e6518123ccc18ca84e4ba275731e10ec762b22f26576eac56ad6b257cfae2e1cbc45f518a0d37007
+AUX samba-4.2.7-pam.patch 1273 SHA256 
e1abd99fcf4ff721dafa64c77a60b07962e3e818eaf5d10fecead61a2af81e07 SHA512 
5f900ebfdfb15af38814864f7ec8cd52d3525098d6f2017ab2f29d301e6a0e622d2ab37976fbd97180cbfe23c7853e91ab7966655eb46ebd9bdd2951205e46bc
 WHIRLPOOL 
91e1fc2e49944d1ded93d902fc50437763388a12b8c2eab70e2dcd8124860746c71fa8b4c26e7b43e5ebc2c0fc94c4c005a2c1eb8b9af68e77c9c6cc1d92927c
+AUX samba.conf 61 SHA256 
e4fc68bc14a44e3c452e767d996ff693d131da317eb513de10d752dd96cb6f12 SHA512 
4a75185762c90d110c399215fbfc939d30804b558ffdb11cc68dee6f87a94c86cadbcd63935884db1266cf40fe24fefb75f9067fe4751ad9838d7a43e8973b9e
 WHIRLPOOL 
ad21bc3738c2ec721ad3be746c66719385390835c7f4da881fc0cc1c982bb6821a56300157b1169d1a35264e44dab1a0c29cd9919455a02a8f4c53c665a4bed3
+AUX samba.service 199 SHA256 
0ae738fa2a15b476dbca016dfa4e1cf4b8c4a575e13edf518eb70b615c02a059 SHA512 
eb277917f15de958f4a0404b66c6d2cc82ae4319b85f2f442489988d523bf92e2a9d23a6051ee693cd4bcfbc67947e8028c59906ad3e537578daf5caee8a6f16
 WHIRLPOOL 
1132081b63b1e0e1a9342d59493ebfe1d918133a4091e48c42dae7845dcaa24a0b8e7a1183d5a41b0173c3f6dbc17838a9b7a6297fc8ea0775ab150a22ae3151
+AUX smbd.service 250 SHA256 
e1f5da902cd97891852f6463b2c7eddbc61e7fbd3e3c281028a806319627fc68 SHA512 
a54e3c337f7c27766a81f68ad6d8f4eb6ddb1d1aec3303f274e419a49114755bc5dd711701d5e64954ae7153a8be4a7063371af286696c0b81d543b9276703c3
 WHIRLPOOL 
18b6a57603a41303d207249fdb46cb4f6e887f8b9bd4921dca6b4f28a59951368d6abead2dc9d3be2c09cb2c9f295087ef5f20d121a309791b9031e3fad28b13
+AUX smbd.socket 121 SHA256 
d62a239cba39ae03dbb7a291843b2c202973341c85d93ffc87b4e78813be44c2 SHA512 
2db4a707fcc6ef1928ac010e5e92cdaf0f6ff3ffa8aef918e0db1ce910abfb481d6a19082337f9c8444cd780d1d442fa8df2bb65e6142fc109d29657532572ed
 WHIRLPOOL 
aef792f27a7cd91ee258b6137015269cf2e6310c24a060acb7c6a97162aaebe37f32f66e46f4399cd1160bcc65e5608da7bc87bf933bccd2ffdfe51a6a7cdd8d
+AUX smbd_at.service 145 SHA256 
909dddfd80982035739081d86d2c524f6a25440d9c10b8a80626d9b4eee424cd SHA512 
e6486c35dfa6f77ad46547a78fcae55fb71e4dad7dc7b4580c2b8

[gentoo-commits] proj/musl:master commit in: net-fs/samba/, net-fs/samba/files/

2016-05-28 Thread Anthony G. Basile
commit: 03e7f7f97bce6504b0043c000b9e13a3f11dfeed
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun May 29 01:05:55 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun May 29 01:05:55 2016 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=03e7f7f9

net-fs/samba: fixed to build on musl

 net-fs/samba/Manifest  |   4 +-
 .../files/samba-4.3.9-remove-getpwent_r.patch  | 101 +
 .../files/samba-4.3.9-remove-rep_strtoull.patch|  47 ++
 net-fs/samba/samba-4.3.9-r99.ebuild|   3 +
 4 files changed, 154 insertions(+), 1 deletion(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 7f77a4a..bc95999 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -3,6 +3,8 @@ AUX 4.3/samba4.initd-r1 1110 SHA256 
44b53a5d5f516cb944a308613579b3e8e27166519612
 AUX nmbd.service 224 SHA256 
a5e25c11714206c4fb129333dd45152c5753716c6445cbe78c28275df1a1cb77 SHA512 
098dfb270c5a5c29f59b4fd8d51b17931771e25e481124832f1a086677825527e2afa7276e8614e5007fbf044d253ce2eaf3a7caf7461ad5d90d0b1c7f157f9d
 WHIRLPOOL 
2f7c342a60c09d5e40e968a026aa17d8c2fe3fd032331c7bb26599bb0f8ec8a77c2a3e329498ed16b1602451fd85a8ef076c436e8a092740cfbd01a82ca52e30
 AUX samba-4.2.3-heimdal_compilefix.patch 819 SHA256 
6cf93d127aa900c1e9a4fb8a3bdff6054d78a7adb798c6f409feffc13c714ee9 SHA512 
0f6ddbf58e5d5b83e3fb9738dd10c2ab0f1ed96fb62f9b4389a40729b3fe2d4af1a5c5bd2d44fa7d568136072b787b6358aeca3026f1acec4f5a6869e74f2536
 WHIRLPOOL 
882a52598013a40165d87616eaa016139fa89ff218dc43a6e6518123ccc18ca84e4ba275731e10ec762b22f26576eac56ad6b257cfae2e1cbc45f518a0d37007
 AUX samba-4.2.7-pam.patch 1273 SHA256 
e1abd99fcf4ff721dafa64c77a60b07962e3e818eaf5d10fecead61a2af81e07 SHA512 
5f900ebfdfb15af38814864f7ec8cd52d3525098d6f2017ab2f29d301e6a0e622d2ab37976fbd97180cbfe23c7853e91ab7966655eb46ebd9bdd2951205e46bc
 WHIRLPOOL 
91e1fc2e49944d1ded93d902fc50437763388a12b8c2eab70e2dcd8124860746c71fa8b4c26e7b43e5ebc2c0fc94c4c005a2c1eb8b9af68e77c9c6cc1d92927c
+AUX samba-4.3.9-remove-getpwent_r.patch 2509 SHA256 
67cb2991602fb8e7ac24c8ff74840a310c95fac79554792195fd6974d7a5acc6 SHA512 
833d7633b1946b7e4a0157cdf781fbba429a9b98e641f48de779fb4a4daccbc10cb9cb4bb09d9e050a27a91e749317dad3bec53a5102ba7787fc222037211c73
 WHIRLPOOL 
c64797ba00e4f57a5c8d5e4a61583f33eee5505b12ba8dee34487a3d2549d8565388d955ee1d73362421c3dee3d4badb9b9afd8b512308c7745371eeaf8c9d57
+AUX samba-4.3.9-remove-rep_strtoull.patch 1391 SHA256 
668841dc9f9b18ac7bc9b186bf2f800382fe1073101c8ea45630706e9821540e SHA512 
7c4d73dcc2958773b95edd357f984cfb260be1e9d270d8fd4f7e42ef16697af9e3cc58d534cbc67e37cd4b4fe4bb9e8b24be41201d3fb225eb0eec093c9a
 WHIRLPOOL 
0a7c6e7619a12b8468da9a6449914916232d8ce2cbc66779dc7a590acaf62f8a1196c08b846dbc20c58d6dd145eea36a7d087eaf0a596fbfb82d20d4b22ada0a
 AUX samba.conf 61 SHA256 
e4fc68bc14a44e3c452e767d996ff693d131da317eb513de10d752dd96cb6f12 SHA512 
4a75185762c90d110c399215fbfc939d30804b558ffdb11cc68dee6f87a94c86cadbcd63935884db1266cf40fe24fefb75f9067fe4751ad9838d7a43e8973b9e
 WHIRLPOOL 
ad21bc3738c2ec721ad3be746c66719385390835c7f4da881fc0cc1c982bb6821a56300157b1169d1a35264e44dab1a0c29cd9919455a02a8f4c53c665a4bed3
 AUX samba.service 199 SHA256 
0ae738fa2a15b476dbca016dfa4e1cf4b8c4a575e13edf518eb70b615c02a059 SHA512 
eb277917f15de958f4a0404b66c6d2cc82ae4319b85f2f442489988d523bf92e2a9d23a6051ee693cd4bcfbc67947e8028c59906ad3e537578daf5caee8a6f16
 WHIRLPOOL 
1132081b63b1e0e1a9342d59493ebfe1d918133a4091e48c42dae7845dcaa24a0b8e7a1183d5a41b0173c3f6dbc17838a9b7a6297fc8ea0775ab150a22ae3151
 AUX smbd.service 250 SHA256 
e1f5da902cd97891852f6463b2c7eddbc61e7fbd3e3c281028a806319627fc68 SHA512 
a54e3c337f7c27766a81f68ad6d8f4eb6ddb1d1aec3303f274e419a49114755bc5dd711701d5e64954ae7153a8be4a7063371af286696c0b81d543b9276703c3
 WHIRLPOOL 
18b6a57603a41303d207249fdb46cb4f6e887f8b9bd4921dca6b4f28a59951368d6abead2dc9d3be2c09cb2c9f295087ef5f20d121a309791b9031e3fad28b13
@@ -11,5 +13,5 @@ AUX smbd_at.service 145 SHA256 
909dddfd80982035739081d86d2c524f6a25440d9c10b8a80
 AUX winbindd.service 240 SHA256 
755036bc419cce90200ac3c04986fbb7cf718c128c2a1288c634658bb779bf3a SHA512 
f1ce6d035e8e0fcdc73f14e3b60c9647043777ff6b2a982a81ed07eb4df5ff245a9511e3e4a9d8163f9c8f3fb86d2a39a67621ace68392eb7c2f2e2a55d587f7
 WHIRLPOOL 
eb4d7f30b4ce3341e3d24a6c05965bdce9ded78a7327b44d3d04d00837d6e8109857b1fb1b78c8325680588cf9abe94158755a962fb8f7e8dac04b336308c268
 DIST samba-4.3.9.tar.gz 20570849 SHA256 
1f22c61a7f24c5357a9ef4d10833a2cd161f40f3db03bcbe586d7cd3a56139f3 SHA512 
bc90c88d8defd3acec7c671e8ceacec31e3111540aabee7ec6f11cdeaf61bbd993525e2b765e3b50801c8079e1168cf496b3e5e6a56118d6493ae5da60d34c41
 WHIRLPOOL 
e33efba4bfbaab5278ec62cbadb5f14fe2220d4b4ad1e57a4d26233d8b6bdf4318ad86d839b2638a490a195c04aabb02dafff67bb1e2999fab4f116b3c6367cc
 DIST samba-disable-python-patches-4.3.9.tar.xz 6116 SHA256 
83206112e04c375e170e86ea6b29d6dc2c172b55ba9fb89130be14708d758cf5 SHA512 
ca8b62337afd1cc6059b9aefc0a3972d18