Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
864056fe
Commit
864056fe
authored
Jan 11, 2012
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add debian/control and debian/rules for launchpad
parent
dac4bb01
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
0 deletions
+49
-0
debian/control
debian/control
+28
-0
debian/rules
debian/rules
+21
-0
No files found.
debian/control
0 → 100644
View file @
864056fe
Source: python-gevent
Priority: extra
Maintainer: Denis Bilenko <denis.bilenko@gmail.com>
Build-Depends: debhelper (>= 7.0.50), python-support, python-all-dev, python-all-dbg
Standards-Version: 3.9.2
Section: python
Homepage: http://www.gevent.org/
Package: python-gevent-dbg
Section: debug
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, python-gevent (= ${binary:Version})
Recommends: python-dbg
Description: gevent is a coroutine-based Python networking library - debugging symbols
gevent uses greenlet to provide a high-level synchronous API on top of the
libev event loop.
.
This is the debugging symbols for gevent.
Package: python-gevent
Section: python
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python-greenlet
Suggests: python-gevent-doc, python-gevent-dbg, python-openssl
Description: gevent is a coroutine-based Python networking library
gevent uses greenlet to provide a high-level synchronous API on top of the
libev event loop.
debian/rules
0 → 100644
View file @
864056fe
#!/usr/bin/make -f
%:
dh $@ --parallel
override_dh_auto_clean:
dh_auto_clean
rm -f gevent/*.so
override_dh_compress:
dh_compress -X.js -X_static/* -X _sources/* -X_sources/*/* -X.inv
override_dh_strip:
ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
dh_strip --dbg-package=python-gevent-dbg
cd debian/python-gevent-dbg/usr/lib/debug/usr/lib && mv pyshared pymodules
endif
override_dh_installdocs:
dh_installdocs --link-doc=python-gevent
.PHONY: override_dh_auto_build override_dh_auto_clean override_dh_compress override_dh_strip override_dh_installdocs
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment