Add debian package to domframework
git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@1404 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
3
debian/changelog
vendored
Normal file
3
debian/changelog
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
domframework (0.1-1) testing; urgency=low
|
||||||
|
* Debian Package
|
||||||
|
-- Dominique Fournier <dominique@fournier38.fr> Tue, 03 Jun 2014 16:24:15 +0100
|
||||||
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
5
|
||||||
15
debian/control
vendored
Normal file
15
debian/control
vendored
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
Source: domframework
|
||||||
|
Section: web
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Dominique Fournier <dominique@fournier38.fr>
|
||||||
|
Build-Depends: debhelper (>= 4.0.0)
|
||||||
|
Standards-Version: 3.9.4
|
||||||
|
|
||||||
|
Package: domframework
|
||||||
|
Architecture: all
|
||||||
|
Depends: libapache-mod-php5 | libapache2-mod-php5 | php5-cgi, apache2 | httpd, ${misc:Depends}
|
||||||
|
Recommends: php5-cli
|
||||||
|
Description: PHP Framework with basic functionnalities
|
||||||
|
The DomFramework allow the developpers to create easily some PHP applications.
|
||||||
|
Provide authentication, abstraction to databases, and much more !
|
||||||
|
|
||||||
11
debian/copyright
vendored
Normal file
11
debian/copyright
vendored
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
This package was debianized by Dominique Fournier <dominique@fournier38.fr> on
|
||||||
|
Tue, 3 Jun 2014 16:27:40 +0100.
|
||||||
|
|
||||||
|
It was downloaded from http://svn.fournier38.fr/ProgSVN/unstable/domframework/
|
||||||
|
|
||||||
|
Copyright 2014 Dominique Fournier <dominique@fournier38.fr>
|
||||||
|
|
||||||
|
License: BSD
|
||||||
|
|
||||||
|
On Debian GNU/Linux systems, the complete text of the GNU General
|
||||||
|
Public License can be found in `/usr/share/common-licenses/GPL'.
|
||||||
1
debian/dirs
vendored
Normal file
1
debian/dirs
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
usr/share/domframework
|
||||||
1
debian/files
vendored
Normal file
1
debian/files
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
domframework_0.1-1_all.deb web optional
|
||||||
3
debian/install
vendored
Normal file
3
debian/install
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
*.php usr/share/domframework
|
||||||
|
examples usr/share/doc/domframework
|
||||||
|
docs/* usr/share/doc/domframework
|
||||||
11
debian/makePackageDebian
vendored
Executable file
11
debian/makePackageDebian
vendored
Executable file
@@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/bash -x
|
||||||
|
rm -rf /tmp/domframeworkpack
|
||||||
|
mkdir /tmp/domframeworkpack
|
||||||
|
cd /tmp/domframeworkpack
|
||||||
|
svn -q export https://svn.fournier38.fr/svn/ProgSVN/trunk/domframework domframework-0.1
|
||||||
|
tar cjf domframework_0.1.orig.tar.bz2 domdns-0.1
|
||||||
|
cd domframework-0.1
|
||||||
|
dpkg-buildpackage -rfakeroot -e"Dominique Fournier <dominique@fournier38.fr>"
|
||||||
|
DEB_VENDOR=debian lintian
|
||||||
|
|
||||||
|
|
||||||
57
debian/rules
vendored
Executable file
57
debian/rules
vendored
Executable file
@@ -0,0 +1,57 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
# -*- makefile -*-
|
||||||
|
# Sample debian/rules that uses debhelper.
|
||||||
|
# This file was originally written by Joey Hess and Craig Small.
|
||||||
|
# As a special exception, when this file is copied by dh-make into a
|
||||||
|
# dh-make output file, you may use that output file without restriction.
|
||||||
|
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
||||||
|
|
||||||
|
# Uncomment this to turn on verbose mode.
|
||||||
|
#export DH_VERBOSE=1
|
||||||
|
|
||||||
|
clean:
|
||||||
|
dh_testdir
|
||||||
|
dh_testroot
|
||||||
|
dh_clean
|
||||||
|
|
||||||
|
install: build
|
||||||
|
dh_testdir
|
||||||
|
dh_testroot
|
||||||
|
dh_prep
|
||||||
|
dh_installdirs
|
||||||
|
dh_installdocs
|
||||||
|
dh_install
|
||||||
|
|
||||||
|
# Build architecture-dependent files here.
|
||||||
|
binary: build install
|
||||||
|
dh_testdir
|
||||||
|
dh_testroot
|
||||||
|
dh_installchangelogs
|
||||||
|
# dh_installdocs
|
||||||
|
# dh_installexamples
|
||||||
|
# dh_install
|
||||||
|
# dh_installmenu
|
||||||
|
# dh_installdebconf
|
||||||
|
# dh_installlogrotate
|
||||||
|
# dh_installemacsen
|
||||||
|
# dh_installpam
|
||||||
|
# dh_installmime
|
||||||
|
# dh_installinit
|
||||||
|
# dh_installcron
|
||||||
|
# dh_installinfo
|
||||||
|
# dh_installman
|
||||||
|
dh_link
|
||||||
|
# dh_strip
|
||||||
|
dh_compress
|
||||||
|
dh_fixperms
|
||||||
|
# dh_perl
|
||||||
|
# dh_python
|
||||||
|
# dh_makeshlibs
|
||||||
|
dh_installdeb
|
||||||
|
# dh_shlibdeps
|
||||||
|
dh_gencontrol
|
||||||
|
dh_md5sums
|
||||||
|
dh_builddeb
|
||||||
|
|
||||||
|
#binary: binary-indep binary-arch
|
||||||
|
.PHONY: build build-arch build-indep clean binary-indep binary-arch binary install configure
|
||||||
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
3.0 (quilt)
|
||||||
23
debian/watch
vendored
Normal file
23
debian/watch
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# Example watch control file for uscan
|
||||||
|
# Rename this file to "watch" and then you can run the "uscan" command
|
||||||
|
# to check for upstream updates and more.
|
||||||
|
# See uscan(1) for format
|
||||||
|
|
||||||
|
# Compulsory line, this is a version 3 file
|
||||||
|
version=3
|
||||||
|
|
||||||
|
# Uncomment to examine a Webpage
|
||||||
|
# <Webpage URL> <string match>
|
||||||
|
#http://www.example.com/downloads.php #PACKAGE#-(.*)\.tar\.gz
|
||||||
|
|
||||||
|
# Uncomment to examine a Webserver directory
|
||||||
|
#http://www.example.com/pub/#PACKAGE#-(.*)\.tar\.gz
|
||||||
|
http://svn.fournier38.fr/ProgSVN/release/domdns/domframework-(.*)\.tgz
|
||||||
|
|
||||||
|
# Uncommment to examine a FTP server
|
||||||
|
#ftp://ftp.example.com/pub/#PACKAGE#-(.*)\.tar\.gz debian uupdate
|
||||||
|
|
||||||
|
# Uncomment to find new files on sourceforge, for debscripts >= 2.9
|
||||||
|
# http://sf.net/#PACKAGE#/#PACKAGE#-(.*)\.tar\.gz
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user