- Streamline the vendor suffix handling and add support for SLE 12.
- Fix zero length server-side copy request handling; (bso#10424); (bnc#862558). + Refresh context in remaining patch stack. OBS-URL: https://build.opensuse.org/package/show/network:samba:STABLE/samba?expand=0&rev=382
This commit is contained in:
parent
83453d57a5
commit
eed44281af
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:447f4b88477ebc5311e4fe54433e750d6bd70b29c4e5f266efda33fdcf0dd485
|
||||
size 159179
|
||||
oid sha256:1776acdd67d05bb03c06284f9692cf1a179754c1bbecd5cf32e914c0b0448128
|
||||
size 160302
|
||||
|
@ -1,3 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 7 16:48:52 UTC 2014 - lmuelle@suse.com
|
||||
|
||||
- Streamline the vendor suffix handling and add support for SLE 12.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 7 16:07:50 UTC 2014 - ddiss@suse.com
|
||||
|
||||
- Fix zero length server-side copy request handling; (bso#10424);
|
||||
(bnc#862558).
|
||||
+ Refresh context in remaining patch stack.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 4 17:22:52 UTC 2014 - lmuelle@suse.com
|
||||
|
||||
|
22
samba.spec
22
samba.spec
@ -141,7 +141,7 @@ BuildRequires: systemd
|
||||
%else
|
||||
%define build_make_smp_mflags %{?jobs:-j%jobs}
|
||||
%endif
|
||||
%define SOURCE_TIMESTAMP 3177
|
||||
%define SOURCE_TIMESTAMP 3179
|
||||
%define BRANCH %{version}
|
||||
%global with_mitkrb5 1
|
||||
%global with_dc 0
|
||||
@ -1178,20 +1178,20 @@ test 0%{?fedora_version} -gt 0 && product_version=%{?fedora_version}
|
||||
test 0%{?mandriva_version} -gt 0 && product_version=%{?mandriva_version}
|
||||
test 0%{?rhel_version} -gt 0 && product_version=%{?rhel_version}
|
||||
test 0%{?suse_version} -gt 0 && product_version=%{?suse_version}
|
||||
%if 0%{?suse_version} > 0
|
||||
major_version=$((${product_version}/100))
|
||||
minor_version=$((${product_version}/10))
|
||||
minor_version="${minor_version#$major_version}"
|
||||
product_version="${major_version}.${minor_version}"
|
||||
product_suffix=""
|
||||
if test "%{VENDOR}" != "UL"; then
|
||||
if test 0%{?sles_version} -gt 0; then
|
||||
product_suffix="-SLE_%{sles_version}"
|
||||
elif test 0%{?suse_version} -gt 0; then
|
||||
product_suffix="-oS${product_version}"
|
||||
else
|
||||
product_suffix="-OBS"
|
||||
fi
|
||||
fi
|
||||
case "%{suse_version}" in
|
||||
1010) product_suffix="-SLE_10" ;;
|
||||
1110) product_suffix="-SLE_11" ;;
|
||||
1315) product_suffix="-SLE_12" ;;
|
||||
*) product_suffix="-oS${product_version}" ;;
|
||||
esac
|
||||
%else
|
||||
product_suffix="-OBS"
|
||||
%endif
|
||||
# Add the build architecture
|
||||
test "%{_build_arch}" != "" && \
|
||||
product_suffix="${product_suffix}-%{_build_arch}"
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6a2851cf9bd81cce52815f70f686c87f05b946ff36938c5b2647b2fda27d71ce
|
||||
size 54144
|
||||
oid sha256:6d918ceca730ea881ad0081b31cf9a07441a22024ca01800c180a4305a4e5442
|
||||
size 53922
|
||||
|
Loading…
Reference in New Issue
Block a user