From ceac04497695e9b8144689db8c76bcd4144c08b6 Mon Sep 17 00:00:00 2001 From: Dinko Korunic Date: Mon, 22 Oct 2007 16:45:27 +0000 Subject: [PATCH] r1: [svn-inject] Installing original source of php-suhosin-cn --- README.CARNet | 6 +++++ changelog.CARNet | 1 + debian/changelog | 6 +++++ debian/compat | 1 + debian/control | 24 ++++++++++++++++++ debian/docs | 2 ++ debian/rules | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 113 insertions(+) create mode 100644 README.CARNet create mode 120000 changelog.CARNet create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/docs create mode 100755 debian/rules diff --git a/README.CARNet b/README.CARNet new file mode 100644 index 0000000..a4043c4 --- /dev/null +++ b/README.CARNet @@ -0,0 +1,6 @@ +php-suhosin-cn +~~~~~~~~~~~~~~ + +Ovaj paket donosi neka dodatna pravila i iznimke za CARNet pakete. + + -- Dinko Korunic Mon, 22 Oct 2007 17:43:23 +0200 diff --git a/changelog.CARNet b/changelog.CARNet new file mode 120000 index 0000000..194579e --- /dev/null +++ b/changelog.CARNet @@ -0,0 +1 @@ +changelog.Debian \ No newline at end of file diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..dcfba55 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +php-suhosin-cn (1.3-1) stable; urgency=low + + * inicijalna verzija paketa -- za sada je dummy, dok ne ustanovimo postoje + li problemi sa ostalim PHP programima + + -- Dinko Korunic Sun, 21 Oct 2007 17:50:14 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..0c98a80 --- /dev/null +++ b/debian/control @@ -0,0 +1,24 @@ +Source: php-suhosin-cn +Section: net +Priority: optional +Maintainer: Dinko Korunic +Build-Depends: debhelper (>= 4) +Standards-Version: 3.7.2 + +Package: php-suhosin-cn +Architecture: all +Depends: php4-suhosin | php5-suhosin +Description: advanced protection module for php4/5 -- CARNet version + This package provides a module for suhosin functions. + . + Suhosin is an advanced protection system for PHP installations. It was + designed to protect servers and users from known and unknown flaws in PHP + applications and the PHP core. Suhosin comes in two independent parts, that + can be used separately or in combination. The first part is a small patch + against the PHP core, that implements a few low-level protections against + bufferoverflows or format string vulnerabilities and the second part is a + powerful PHP extension that implements all the other protections. + . + Homepage: + . + This package brings CARNet-related configuration. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..ef5ce6c --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +changelog.CARNet +README.CARNet diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..ec73f03 --- /dev/null +++ b/debian/rules @@ -0,0 +1,73 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# This file is public domain software, originally written by Joey Hess. +# +# This version is for packages that are architecture independent. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + #$(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + #-$(MAKE) clean + #-$(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/. + #$(MAKE) prefix=`pwd`/debian/`dh_listpackages`/usr install + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs +# dh_installexamples +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installcatalogs +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo +# dh_undocumented + dh_installman + dh_link + dh_compress + dh_fixperms +# dh_perl +# dh_python + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install -- 1.7.10.4