1
0

- Initial package (version 1.0.12.fe1c4b9) for build.opensuse.org

OBS-URL: https://build.opensuse.org/package/show/server:mail/mapi-header-php?expand=0&rev=1
This commit is contained in:
Jan Engelhardt 2023-01-12 13:23:33 +00:00 committed by Git OBS Bridge
commit 3a6729dcd4
11 changed files with 113 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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

13
_service Normal file
View File

@ -0,0 +1,13 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="scm">git</param>
<param name="url">https://github.com/grommunio/mapi-header-php</param>
<param name="revision">master</param>
<param name="versionformat">@PARENT_TAG@.@TAG_OFFSET@.%h</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>

5
debian.changelog Normal file
View File

@ -0,0 +1,5 @@
mapi-header-php (1.0.13.f8f3255) unstable; urgency=low
* Initial package.
-- grommunio <support@grommunio.com> Mon, 25 Jan 2021 10:00:00 +0100

14
debian.control Normal file
View File

@ -0,0 +1,14 @@
Source: mapi-header-php
Section: base
Priority: optional
Maintainer: Grommunio <null@grommunio.com>
Build-Depends: debhelper-compat (= 12)
Rules-Requires-Root: no
Standards-Version: 4.5.1
Package: mapi-header-php
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}, grommunio-error-pages
Description: Common PHP MAPI header files for grommunio
PHP files shared between grommunio-web, grommunio-sync and other PHP
applications from the groupware suite.

View File

@ -0,0 +1 @@
usr/

9
debian.rules Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/make -f
INSTDIR=debian/tmp
%:
dh $@
override_dh_auto_install:
mkdir -p "${INSTDIR}/usr/share/php-mapi/"
cp -av *.php "${INSTDIR}/usr/share/php-mapi/"

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:71f6f1b75f1494abe45e6fb2450f79ac9a58c3416fc468a6bf1c4f421f6714bb
size 87064

4
mapi-header-php.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Thu Jan 12 13:19:47 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
- Initial package (version 1.0.12.fe1c4b9) for build.opensuse.org

10
mapi-header-php.dsc Normal file
View File

@ -0,0 +1,10 @@
Format: 1.0
Source: mapi-header-php
Architecture: any
Version: 1.0.13.f8f3255
DEBTRANSFORM-RELEASE: 1
Maintainer: Grommunio <null@grommunio.com>
Homepage: https://grommunio.com
Standards-Version: 4.5.0
Build-Depends: debhelper-compat (= 12)
Files:

30
mapi-header-php.spec Normal file
View File

@ -0,0 +1,30 @@
%define _empty_manifest_terminate_build 0
Name: mapi-header-php
Version: 1.0.13.f8f3255
Release: 0
Summary: Common PHP MAPI header files for grommunio
License: AGPL-3.0-or-later
Group: Productivity/Networking/Email/Servers
URL: https://grommunio.com/
Source: %name-%version.tar.xz
BuildArch: noarch
%description
PHP files shared between grommunio-web, grommunio-sync and other PHP
applications from the groupware suite.
%prep
%autosetup
%build
%install
b=%buildroot
mkdir -p "$b/%_datadir/php-mapi"
cp -av *.php "$b/%_datadir/php-mapi/"
%files
%_datadir/php-mapi/
%changelog