Sync from SUSE:SLFO:Main release-notes-sles-160 revision 4bddabb57d8422bbbd4d2ba1b9eba4cf

This commit is contained in:
Adrian Schröter 2025-01-10 17:23:31 +01:00
commit dcf6f29cd9
5 changed files with 109 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

14
_service Normal file
View File

@ -0,0 +1,14 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="versionformat">%ad</param>
<param name="versionprefix">16.0</param>
<param name="url">https://github.com/SUSE/release-notes.git</param>
<param name="scm">git</param>
<param name="revision">main</param>
</service>
<service name="recompress" mode="disabled">
<param name="file">*.tar</param>
<param name="compression">bz2</param>
</service>
<service name="set_version" mode="disabled"/>
</services>

BIN
release-notes-16.0.20250109.tar.bz2 (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Thu Jan 9 12:45:43 UTC 2025 - Lukáš Kucharczyk <lukas.kucharczyk@suse.com>
- Initial package submission

View File

@ -0,0 +1,65 @@
#
# spec file for package release-notes-sles-160
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define source_package release-notes
%define product_version sles-160
# "lifecycle" changes the document profiling, accepted values:
# beta | maintained | unmaintained
%define lifecycle maintained
Name: release-notes-sles-160
Version: 16.0.20250109
Release: 0
Summary: Release Notes for SUSE Linux Enterprise Server
License: CC-BY-ND-4.0
Group: Documentation/SUSE
URL: https://www.suse.com/releasenotes/
Source: %{source_package}-%{version}.tar.bz2
BuildRequires: daps
BuildRequires: suse-xsl-stylesheets >= 1.9.18
BuildRequires: update-desktop-files
BuildRequires: w3m
Requires: dejavu-fonts
Requires: google-opensans-fonts
BuildArch: noarch
%description
This package contains the release notes for SUSE Linux Enterprise Server 16.0.
After installing this package, the release notes files can be
found in the %{_datadir}/doc/release-notes directory. The release notes
are available in the following output formats: PDF, HTML, and TXT.
%prep
%setup -q -n %{source_package}-%{version}
%build
sed -i 's/@VERSION@/%{version}/' adoc/sles/release-notes-%{product_version}-docinfo.xml
make all PRODUCT_VERSION=%{product_version} LIFECYCLE=%{lifecycle}
%install
rnpath=%{buildroot}%{_datadir}/doc/release-notes-sles
install -m 0644 -D LICENSE ${rnpath}/LICENSE
install -m 0644 -D "build/release-notes-%{product_version}/single-html/release-notes-%{product_version}/release-notes-%{product_version}.html" "${rnpath}/RELEASE-NOTES.en.html"
cp -R "build/release-notes-%{product_version}/single-html/release-notes-%{product_version}/static/" "${rnpath}"
install -m 0644 -D "build/release-notes-%{product_version}/yast-html/release-notes.html" "${rnpath}/RELEASE-NOTES.en.rtf"
install -m 0644 -D "build/release-notes-%{product_version}/release-notes-%{product_version}_color_en.pdf" "${rnpath}/RELEASE-NOTES.en.pdf"
install -m 0644 -D "build/release-notes-%{product_version}/release-notes-%{product_version}.txt" "${rnpath}/RELEASE-NOTES.en.txt"
%files
%doc %{_datadir}/doc/release-notes-sles/
%changelog