- Update to release 1.13
OBS-URL: https://build.opensuse.org/package/show/server:mail/gromox?expand=0&rev=5
This commit is contained in:
parent
29541a5008
commit
dba792b23f
16
_service
16
_service
@ -1,16 +0,0 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<param name="filename">gromox</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://github.com/grommunio/gromox</param>
|
||||
<param name="revision">master</param>
|
||||
<param name="parent-tag">gromox-1.10</param>
|
||||
<param name="versionformat">@PARENT_TAG@.@TAG_OFFSET@.%h</param>
|
||||
<param name="versionrewrite-pattern">gromox-?(.*)</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">xz</param>
|
||||
</service>
|
||||
<service name="set_version" mode="disabled"/>
|
||||
</services>
|
@ -1,4 +1,4 @@
|
||||
gromox (1.10.0.7c5fc88b-0) unstable; urgency=low
|
||||
gromox (1.13.6.07d462a2-0) unstable; urgency=low
|
||||
|
||||
* Initial package.
|
||||
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6d9e0c5c4378a56dd0deaa25bb33102f6e897594fd76754f9516db6adc2ac800
|
||||
size 1004608
|
7
gromox-1.13.tar.asc
Normal file
7
gromox-1.13.tar.asc
Normal file
@ -0,0 +1,7 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iHUEABYKAB0WIQS8oMXDCcrFaedKkhz3bv5dDCI6jwUCYeVnnwAKCRD3bv5dDCI6
|
||||
j5aRAP48vzED4Ys/Q49huyQKDDRdrlC1iMZsTWipqhqVro0fRQD9EJOufKQfibzk
|
||||
VMPMpXLgLVYuI9TBlGmveC8g0qIh3g0=
|
||||
=Dt48
|
||||
-----END PGP SIGNATURE-----
|
3
gromox-1.13.tar.zst
Normal file
3
gromox-1.13.tar.zst
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3ded099779f60b58211e1ba897450ee8df0d212ed799893ebb8a2f0cb892a5ce
|
||||
size 1915558
|
@ -1,3 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 18 18:01:59 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release 1.13
|
||||
* mt2exm: perform named property translation on folder
|
||||
properties, message recipient properties and attachment
|
||||
properties.
|
||||
* pff2mt: support reading multi-value variable-length property
|
||||
types, and obscure single-value types.
|
||||
* kdb2mt: analyze Receive Folder Table and map inbox to inbox
|
||||
when ``-s`` is used.
|
||||
* pam_gromox: Additional service mode checks. One can now use
|
||||
e.g. auth required pam_gromox.so service=chat in
|
||||
/etc/pam.d/xyz to test for the CHAT privilege bit.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 7 18:00:46 UTC 2021 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
Format: 1.0
|
||||
Source: gromox
|
||||
Architecture: any
|
||||
Version: 1.10.0.7c5fc88b
|
||||
Version: 1.13.6.07d462a2
|
||||
DEBTRANSFORM-RELEASE: 1
|
||||
Maintainer: Gromox <null@gromox.com>
|
||||
Homepage: https://gromox.com
|
||||
|
18
gromox.spec
18
gromox.spec
@ -3,13 +3,14 @@
|
||||
%define _libexecdir %_prefix/libexec
|
||||
|
||||
Name: gromox
|
||||
Version: 1.10.0.7c5fc88b
|
||||
Version: 1.13
|
||||
Release: 0
|
||||
Summary: Groupware server backend with RPC, IMAP,POP3, PHP-MAPI support
|
||||
License: AGPL-3.0-or-later AND GPL-2.0-only AND GPL-3.0-or-later
|
||||
Group: Productivity/Networking/Email/Servers
|
||||
URL: https://grommunio.com/
|
||||
Source: %name-%version.tar.xz
|
||||
Source: https://github.com/grommunio/gromox/releases/download/gromox-%version/gromox-%version.tar.zst
|
||||
Source2: https://github.com/grommunio/gromox/releases/download/gromox-%version/gromox-%version.tar.asc
|
||||
Source9: %name-rpmlintrc
|
||||
BuildRequires: automake >= 1.11
|
||||
BuildRequires: fdupes
|
||||
@ -29,7 +30,7 @@ BuildRequires: php8-devel
|
||||
%else
|
||||
BuildRequires: php-devel >= 7
|
||||
%endif
|
||||
BuildRequires: xz
|
||||
BuildRequires: zstd
|
||||
BuildRequires: group(gromox)
|
||||
BuildRequires: pkgconfig(gumbo)
|
||||
BuildRequires: pkgconfig(jsoncpp)
|
||||
@ -41,7 +42,11 @@ BuildRequires: pkgconfig(sqlite3)
|
||||
BuildRequires: pkgconfig(zlib)
|
||||
BuildRequires: user(gromox)
|
||||
Requires: php-cli >= 7.4
|
||||
%if 0%{?suse_version}
|
||||
Requires: php-mysql
|
||||
%else
|
||||
Requires: php-mysqlnd
|
||||
%endif
|
||||
Requires: php-soap
|
||||
Requires: w3m
|
||||
Requires(pre): user(gromox)
|
||||
@ -65,11 +70,12 @@ grommunio-web. The grommunio appliance ships these essentials and has a
|
||||
ready-to-run installation of Gromox.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
%setup -Tcq
|
||||
tar --use=zstd --strip=1 -xf "%{S:0}"
|
||||
|
||||
%build
|
||||
autoreconf -fi
|
||||
%configure CFLAGS="%optflags -Og" CXXFLAGS="%optflags -Og"
|
||||
%configure
|
||||
%make_build
|
||||
|
||||
%install
|
||||
@ -98,7 +104,7 @@ rm -fv "$b/%_libdir"/*.so
|
||||
mkdir -p "$b/%_sysconfdir/%name" "$b/%_datadir/%name"
|
||||
%fdupes %buildroot/%_prefix
|
||||
|
||||
%global services gromox-adaptor.service gromox-delivery.service gromox-delivery-queue.service gromox-event.service gromox-http.service gromox-imap.service gromox-midb.service gromox-pop3.service gromox-timer.service gromox-zcore.service
|
||||
%global services gromox-delivery.service gromox-delivery-queue.service gromox-event.service gromox-http.service gromox-imap.service gromox-midb.service gromox-pop3.service gromox-timer.service gromox-zcore.service
|
||||
|
||||
%pre
|
||||
%if 0%{?service_add_pre:1}
|
||||
|
Loading…
Reference in New Issue
Block a user