mirror of https://github.com/sipwise/repoapi.git
parent
07986a3e73
commit
1eef581123
@ -0,0 +1,5 @@
|
|||||||
|
repoapi (0.1.0) unstable; urgency=low
|
||||||
|
|
||||||
|
* Initial Release.
|
||||||
|
|
||||||
|
-- Victor Seva <vseva@sipwise.com> Wed, 29 Apr 2015 12:57:17 +0200
|
||||||
@ -0,0 +1 @@
|
|||||||
|
9
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
Source: repoapi
|
||||||
|
Priority: extra
|
||||||
|
Maintainer: Sipwise Development Team <support@sipwise.com>
|
||||||
|
Build-Depends: debhelper (>= 8~), python-virtualenv, python-dev
|
||||||
|
Standards-Version: 3.9.6
|
||||||
|
Section: python
|
||||||
|
Homepage: http://sipwise.com/
|
||||||
|
|
||||||
|
Package: repoapi
|
||||||
|
Section: python
|
||||||
|
Architecture: all
|
||||||
|
Depends: make,
|
||||||
|
uwsgi-plugin-python,
|
||||||
|
python,
|
||||||
|
python-virtualenv,
|
||||||
|
sqlite3,
|
||||||
|
${misc:Depends}
|
||||||
|
Description: REST API webapp
|
||||||
|
This package provides repoapi webapp.
|
||||||
@ -0,0 +1,28 @@
|
|||||||
|
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
Upstream-Name: repoapi
|
||||||
|
Source: git://git.mgm.sipwise.com/repoapi
|
||||||
|
|
||||||
|
Files: *
|
||||||
|
Copyright: 2015 Sipwise GmbH, Austria
|
||||||
|
License: GPL-3.0+
|
||||||
|
|
||||||
|
Files: debian/*
|
||||||
|
Copyright: 2015 SipWise Team <development@sipwise.com>
|
||||||
|
License: GPL-3.0+
|
||||||
|
|
||||||
|
License: GPL-3.0+
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
.
|
||||||
|
This package is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
.
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
.
|
||||||
|
On Debian systems, the complete text of the GNU General
|
||||||
|
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
|
||||||
@ -0,0 +1,3 @@
|
|||||||
|
/usr/share/repoapi
|
||||||
|
/etc/uwsgi/apps-available
|
||||||
|
/var/lib/repoapi
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
Makefile usr/share/repoapi
|
||||||
|
manage.py usr/share/repoapi
|
||||||
|
repoapi usr/share/repoapi
|
||||||
|
requirements usr/share/repoapi
|
||||||
|
static_media usr/share/repoapi
|
||||||
@ -0,0 +1 @@
|
|||||||
|
/usr/share/repoapi/repoapi/repoapi_uwsgi.ini /etc/uwsgi/apps-available/repoapi.ini
|
||||||
@ -0,0 +1,25 @@
|
|||||||
|
#!/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
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@
|
||||||
|
|
||||||
|
override_dh_auto_test:
|
||||||
|
|
||||||
|
override_dh_auto_install:
|
||||||
|
echo "fakesecretkey" > .secret_key
|
||||||
|
make deploy
|
||||||
|
make clean
|
||||||
|
|
||||||
|
override_dh_fixperms:
|
||||||
|
dh_fixperms
|
||||||
|
chmod 4750 debian/repoapi/var/lib/repoapi
|
||||||
|
chown www-data:www-data debian/repoapi/var/lib/repoapi
|
||||||
@ -0,0 +1 @@
|
|||||||
|
3.0 (native)
|
||||||
Loading…
Reference in new issue