7 Commits

5 changed files with 60 additions and 9 deletions

1
.gitignore vendored
View File

@@ -2,3 +2,4 @@
*.log
*spec-20*
*.
*.bak

26
EULA Normal file
View File

@@ -0,0 +1,26 @@
This is the open source release of the Koozali SME Server.
Most components of this software give you the right to copy
and distribute this software under the terms of the GNU
General Public License, as published by the Free Software
Foundation. The text of this license is included below.
The other components of this software have different
licenses which also permit copying and redistribution.
Support for this software is provided by the Koozali community
websites, user forums, mailing lists, and bug tracker. Please
visit www.koozali.org for further details.
THIS SOFTWARE COMES WITH ABSOLUTELY NO WARRANTY AND IS
PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
PURPOSE.
**************************************************************
The following copyright applies to the Koozali SME Server
compilation and any portions of the Koozali SME Server it does
not conflict with. Whenever this policy does conflict with the
copyright of any individual portion of the Koozali SME Server,
it does not apply.
**************************************************************
see /usr/share/doc/smeserver-release/LICENSE

View File

@@ -7,7 +7,14 @@ SMEServer Koozali developed git repo for smeserver-release smeserver
<br />https://wiki.koozali.org/Temporary_release_critical_doc_Update_Status
## Bugzilla
Show list of outstanding bugs: [here](https://bugs.koozali.org/buglist.cgi?component=smeserver-release&product=SME%20Server%2010.X&query_format=advanced&limit=0&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=CONFIRMED)
Show list of outstanding bugs:
[All](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=UNCONFIRMED&bug_status=CONFIRMED&bug_status=NEEDINFO&bug_status=IN_PROGRESS&bug_status=RESOLVED&bug_status=VERIFIED&cf_package=smeserver-release&classification=SME+Server&list_id=105756&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
[Confirmed](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=CONFIRMED&cf_package=smeserver-release&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
[Unconfirmed](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=UNCONFIRMED&cf_package=smeserver-release&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
[Need info](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=NEEDINFO&cf_package=smeserver-release&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
[In progress](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=IN_PROGRESS&cf_package=smeserver-release&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
[Resolved](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=RESOLVED&cf_package=smeserver-release&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
[Verified](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=VERIFIED&cf_package=smeserver-release&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
## Description

View File

@@ -1 +0,0 @@
sme10

View File

@@ -3,15 +3,22 @@
Summary: SME Server release file
Name: smeserver-release
#note for post 10.0 : should use %{version}-%{prerelease}%{release}%{?dist}
# examples alpha1. beta1. rc1. or %{nil} if final
%define prerelease %{nil}
%define version 11.0.0
%define release 2
# examples 0.alpha1. beta1. rc1. or %{nil} if final
#%define prerelease %{nil}
%define prerelease alpha1
%define version 11.0
%define release 5
%define displayversion %{version}%{prerelease}
%define pre %{nil}
%if %{prerelease}
%define pre 0.%{prerelease}.
%endif
Version: %{version}
Release: %{prerelease}%{release}%{?dist}
Release: 0.%{prerelease}.%{release}%{?dist}
License: GPL
Group: System Environment/Base
Source1: EULA
Source2: LICENSE
#Patch0: %{name}-%{version}.patch.yyyymmddnn
BuildArchitectures: noarch
Epoch: 26
@@ -29,10 +36,16 @@ BuildRequires: perl, e-smith-devtools
e-smith server and gateway release file
%changelog
* Thu Apr 04 2024 Brian Read <brianr@koozali.org> 11.0.0-2.sme
* Mon Jun 02 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0-0.alpha1.5.sme
- add EULA [SME: 13009]
* Sat Nov 30 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0-0.alpha1.3.sme
- fix namimg scheme for alpha1 release
* Thu Apr 04 2024 Brian Read <brianr@koozali.org> 11.0-0.alpha1.2.sme
- Set license file to GPL2.0 [SME: 12577]
* Sat Mar 23 2024 Brian Read <brianr@koozali.org>11.0.0-1.sme
* Sat Mar 23 2024 Brian Read <brianr@koozali.org>11.0-0.alpha1.1.sme
- Update Release and Version to base version and 1st release for SME11 [SME: 12518]
* Mon Jul 10 2023 cvs2git.sh aka Brian Read <brianr@koozali.org> 10.1-2.sme
@@ -614,6 +627,11 @@ touch $RPM_BUILD_ROOT/etc/e-smith/events/%{name}-update/templates2expand/etc/sys
pushd $RPM_BUILD_ROOT/etc/e-smith/events/%{name}-update/
ln -s ../actions/update-grub S10update-grub
popd
mkdir -p $RPM_BUILD_ROOT/usr/share/smeserver-release
cp %{SOURCE1} $RPM_BUILD_ROOT/usr/share/smeserver-release/
mkdir -p $RPM_BUILD_ROOT/usr/share/doc/smeserver-release
cp %{SOURCE2} $RPM_BUILD_ROOT/usr/share/doc/smeserver-release/
echo "SME Server release %{displayversion}" >\
$RPM_BUILD_ROOT/etc/e-smith-release