Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • lts-team/packages/samba
  • thctlo/samba-lintianfix
  • arnaudr/samba
  • jrwren/samba
  • paride/samba
  • athos/samba
  • henrich/samba
  • cnotin/samba
  • mimi89999/samba
  • samba-team/samba
  • ahasenack/samba
  • jrtc27/samba
  • noel/samba
13 results
Show changes
Commits on Source (4)
......@@ -60,9 +60,8 @@ Build-Depends-Arch:
liburing-dev [linux-any] <!pkg.samba.nouring>,
xfslibs-dev [linux-any],
zlib1g-dev (>= 1:1.2.3),
# python:
python3:any,
python3-dev:any, libpython3-dev,
# python (+#904999):
python3-dev:any | python3-dev, libpython3-dev,
python3-dnspython,
python3-etcd,
python3-markdown,
......@@ -87,7 +86,7 @@ Depends: passwd,
procps,
python3,
python3-dnspython,
python3-samba,
python3-samba (= ${binary:Version}),
samba-common (= ${source:Version}),
samba-common-bin (=${binary:Version}),
tdb-tools,
......@@ -194,7 +193,7 @@ Depends: samba (>= ${binary:Version}), samba-dsdb-modules, samba-vfs-modules,
krb5-kdc (>> 1.19.0) <pkg.samba.mitkrb5>,
${misc:Depends}
Recommends: libnss-winbind, libpam-winbind,
# samba-ad-provision is needed for settup only
# samba-ad-provision is needed for setup only
samba-ad-provision
Breaks: samba-ad-provision (<< ${source:Upstream-Version})
Description: Samba control files to run AD Domain Controller
......
......@@ -14,8 +14,10 @@ V := $(if $(filter terse, ${DEB_BUILD_OPTIONS}),,1)
WAF := PYTHONHASHSEED=1 ./buildtools/bin/waf \
$(patsubst parallel=%,-j%,$(filter parallel=%,${DEB_BUILD_OPTIONS}))
# for cross-build or build with foreign python binary
export _PYTHON_SYSCONFIGDATA_NAME = _sysconfigdata__${DEB_HOST_ARCH_OS}_${DEB_HOST_MULTIARCH}
ifeq (linux,${DEB_HOST_ARCH_OS})
# for cross-build or build with foreign python binary (it is _gnu0_i386-gnu on hurd)
export _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata__${DEB_HOST_ARCH_OS}_${DEB_HOST_MULTIARCH}
endif
DESTDIR = ${CURDIR}/debian/tmp
......@@ -146,6 +148,7 @@ bin/configured.stamp:
fi
CC="${CC}" CPP="${CPP}" LD="${LD}" PKGCONFIG="${PKG_CONFIG}" \
CPPFLAGS="${CPPFLAGS}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
PYTHON=python3 PYTHON_CONFIG=${DEB_HOST_MULTIARCH}-python3-config \
${WAF} -j1 -C configure ${config-args} || \
{ $(if ${V},echo "==== contents of config.log:"; cat bin/config.log;) false; }
# #1021371: we only need the single "version" symbol LDB_2.4.4 in the library
......@@ -324,7 +327,7 @@ execute_after_dh_fixperms-arch:
override_dh_makeshlibs:
# generate symbols file with correct cpython suffix in there
{ \
suff=$$(${DEB_HOST_GNU_TYPE}-python3-config --extension-suffix | tr _ -); \
suff=$$(${DEB_HOST_MULTIARCH}-python3-config --extension-suffix | tr _ -); \
SUFF=$$(echo "$${suff%.so}" | tr a-z- A-Z_); \
echo "libpyldb-util$${suff}.2 python3-ldb #MINVER#"; \
echo "* Build-Depends-Package: python3-ldb-dev" ; \
......