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
samba (2:4.20.2+dfsg-8) unstable; urgency=medium
* d/samba-common-bin.lintian-override: fix the typo in the last fix
* d/samba-log-parser: python3-minimal is enough
* d/rules: define dpkg_late_eval macro since dpkg 1.22.8 does not define
it anymore (Closes: #1076920)
-- Michael Tokarev <mjt@tls.msk.ru> Wed, 24 Jul 2024 16:54:54 +0300
samba (2:4.20.2+dfsg-7) unstable; urgency=medium
* d/samba-common-bin.lintian-override: update samba-log-parser override
......
......@@ -26,6 +26,8 @@ endif
DESTDIR = ${CURDIR}/debian/tmp
dpkg_late_eval ?= $(or $(value DPKG_CACHE_$(1)),$(eval DPKG_CACHE_$(1) := $(shell $(2)))$(value DPKG_CACHE_$(1)))
LDB_VERSION = $(call dpkg_late_eval,LDB_VERSION,grep ^VERSION lib/ldb/wscript | cut -d\' -f2)
LDB_DEB_VERSION = 2:${LDB_VERSION}+samba${DEB_VERSION_UPSTREAM_REVISION}
LDB_PACKAGES = libldb2 libldb-dev ldb-tools python3-ldb
......
# deliberate, a synonym for misspelled parameter
samba-common-bin: typo-in-manual-page prefered preferred */man/man5/smb.conf.5*
# python script run only if python3 is actually installed
samba-common-bin: bash-term-in-posix-shell *usr/libexec/samba/samba-log-parser"
samba-common-bin: bash-term-in-posix-shell *usr/libexec/samba/samba-log-parser*
#! /bin/sh
me="${0##*/}"
command -v python3 >/dev/null && exec /usr/libexec/samba/$me "$@"
echo "$me: E: This program requires python3. Please install python3 package to use it." >&2
echo "$me: E: This program requires python3. Please install python3-minimal package to use it." >&2
exit 42