diff options
| author | Sebastien Blot | 2017-09-20 10:11:01 +0200 |
|---|---|---|
| committer | Sebastien Blot | 2017-09-20 10:11:01 +0200 |
| commit | 868f96c759b6650d88ff9f4fbc5c048302134248 (patch) | |
| tree | c0de0af318bf77a8959164ef11aeeeb2b7bab294 /debian | |
Initial import
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/changelog | 5 | ||||
| -rw-r--r-- | debian/compat | 1 | ||||
| -rw-r--r-- | debian/control | 14 | ||||
| -rw-r--r-- | debian/copyright | 8 | ||||
| -rw-r--r-- | debian/docs | 1 | ||||
| -rwxr-xr-x | debian/rules | 27 | ||||
| -rw-r--r-- | debian/watch | 2 |
7 files changed, 58 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..6d301b8 --- /dev/null +++ b/debian/changelog | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | snuffleupagus (0.1) UNRELEASED; urgency=medium | ||
| 2 | |||
| 3 | * Initial release. | ||
| 4 | |||
| 5 | -- jvoisin <snuffleupagus@nbs-system.com> Tue, 04 Jul 2017 17:51:31 +0200 | ||
diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/debian/compat | |||
| @@ -0,0 +1 @@ | |||
| 10 | |||
diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..c1cfb92 --- /dev/null +++ b/debian/control | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | Source: snuffleupagus | ||
| 2 | Priority: optional | ||
| 3 | Maintainer: NBS System <snuffleupagus@nbs-system.com> | ||
| 4 | Build-Depends: debhelper (>= 9), php7.0-dev | ||
| 5 | Standards-Version: 3.9.2 | ||
| 6 | Homepage: https://snuffleupagus.fr | ||
| 7 | Section: php | ||
| 8 | Vcs-Git: https://github.com/nbs-system/snuffleupagus | ||
| 9 | |||
| 10 | Package: snuffleupagus | ||
| 11 | Architecture: any | ||
| 12 | Depends: ${misc:Depends} | ||
| 13 | Description: Hardening for your php7 stack | ||
| 14 | Snuffleupagus is cool | ||
diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..a792452 --- /dev/null +++ b/debian/copyright | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
| 2 | Upstream-Name: Snuffleupagus | ||
| 3 | Upstream-Contact: NBS System <snuffleupagus@nbs-system.com> | ||
| 4 | Source: https://github.com/nbs-system/snuffleupagus | ||
| 5 | |||
| 6 | Files: * | ||
| 7 | Copyright: 2017 NBS System | ||
| 8 | License: LGPL | ||
diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..b43bf86 --- /dev/null +++ b/debian/docs | |||
| @@ -0,0 +1 @@ | |||
| README.md | |||
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..66bf44a --- /dev/null +++ b/debian/rules | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | #!/usr/bin/make -f | ||
| 2 | |||
| 3 | DH_VERBOSE = 1 | ||
| 4 | |||
| 5 | DPKG_EXPORT_BUILDFLAGS = 1 | ||
| 6 | include /usr/share/dpkg/default.mk | ||
| 7 | |||
| 8 | export DEB_BUILD_MAINT_OPTIONS = hardening=+all | ||
| 9 | |||
| 10 | %: | ||
| 11 | dh $@ | ||
| 12 | |||
| 13 | override_dh_auto_clean: | ||
| 14 | cd ./src; phpize --clean | ||
| 15 | |||
| 16 | override_dh_auto_configure: | ||
| 17 | cd ./src; phpize | ||
| 18 | cd ./src; ./configure --enable-snuffleupagus | ||
| 19 | |||
| 20 | override_dh_auto_build: | ||
| 21 | make -C src | ||
| 22 | |||
| 23 | override_dh_auto_install: | ||
| 24 | make -C src install | ||
| 25 | |||
| 26 | override_dh_auto_test: | ||
| 27 | TEST_PHP_ARGS="-q" REPORT_EXIST_STATUS=1 make -C src test | ||
diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..86028c7 --- /dev/null +++ b/debian/watch | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | version=3 | ||
| 2 | https://github.com/nbs-system/snuffleupagus/tags /nbs-system/snuffleupagus/archive/snuffleupagus-([0-9.]+)\.tar\.(gz|xz|bz2) | ||
