Changeset 450
- Timestamp:
- 01/09/10 10:14:12 (2 years ago)
- Location:
- tags/pyragua-0.2.5/debian
- Files:
-
- 1 added
- 1 removed
- 5 modified
-
changelog (modified) (3 diffs)
-
control (modified) (2 diffs)
-
dirs (deleted)
-
pyragua.desktop (added)
-
pyragua.install (modified) (1 diff)
-
pyragua.links (modified) (1 diff)
-
rules (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tags/pyragua-0.2.5/debian/changelog
r437 r450 2 2 3 3 * New upstream release. 4 - Added english manpage 4 5 * New maintainer. Closes: #562807 5 6 * debian/control: Updated URL. … … 10 11 * debian/rules: Fix resulting .pyc files. 11 12 - 3.0 (quilt) 13 - python-support 12 14 * debian/pyragua.xpm: Added, converted from pyragua.ico 13 15 * debian/watch: Added. … … 16 18 * Fix lintian errors: 17 19 - menu-item-uses-apps-section 18 - binary-without-english-manpage19 20 - no-homepage-field 20 21 - build-depends-without-arch-dep -
tags/pyragua-0.2.5/debian/control
r443 r450 3 3 Priority: optional 4 4 Maintainer: Julián Moreno Patiño <darkjunix@gmail.com> 5 Build-Depends: debhelper (>= 7) 6 Build-Depends-Indep: python 5 Build-Depends: debhelper (>= 7), python 6 Build-Depends-Indep: python-support (>= 0.90) 7 7 Standards-Version: 3.8.3 8 8 Homepage: http://pyragua.pyroxdev.org … … 10 10 Package: pyragua 11 11 Architecture: all 12 Depends: ${ misc:Depends}, python, python-wxgtk2.6, libwxbase2.6-0,13 libwx gtk2.6-0, python-wxtools, python-wxversion12 Depends: ${python:Depends}, ${misc:Depends}, python-wxgtk2.6, 13 libwxbase2.6-0, libwxgtk2.6-0, python-wxtools, python-wxversion 14 14 Recommends: python-wxglade, wx2.6-doc, wx2.6-examples 15 Description: Pythonic editor for Python coding15 Description: Very lightweight Python editor 16 16 Pyragua is an Integrated Development Environment to manipulate 17 Python code, written in Python and uses wxPython as graphical 18 toolkit. Pyragua currently has features like syntax highlighting, 19 code completion, auto identation, code browsing and an integrated 20 Python shell. 17 Python code, a lightweight and fast Python editor. Pyragua 18 currently has features like syntax highlighting, code completion, 19 auto identation, code browsing and an integrated Python shell. -
tags/pyragua-0.2.5/debian/pyragua.install
r407 r450 1 1 debian/pyragua.xpm ./usr/share/pixmaps/ 2 pyragua/* ./usr/share/pyragua/pyragua 3 pyragua-ide ./usr/share/pyragua/ 2 debian/pyragua.desktop ./usr/share/applications/ -
tags/pyragua-0.2.5/debian/pyragua.links
r421 r450 1 /usr/share/pyragua/pyragua-ide /usr/bin/pyragua -ide1 /usr/share/pyragua/pyragua-ide /usr/bin/pyragua -
tags/pyragua-0.2.5/debian/rules
r438 r450 1 1 #!/usr/bin/make -f 2 # Sample debian/rules that uses debhelper. 3 # This file is public domain software, originally written by Joey Hess. 4 # 5 # This version is for packages that are architecture independent. 2 # -*- makefile -*- 6 3 7 4 # Uncomment this to turn on verbose mode. 8 5 #export DH_VERBOSE=1 6 9 7 10 8 build: build-stamp … … 13 11 touch build-stamp 14 12 13 15 14 clean: 16 15 dh_testdir 17 16 dh_testroot 18 17 rm -f build-stamp 19 rm -rf ../build 20 find . -name "*.pyc" -exec rm -rf {} \; 21 dh_clean 22 18 find . -name '*.py[co]' | xargs rm -f 19 dh_clean 23 20 24 21 install: build 25 22 dh_testdir 26 23 dh_testroot 27 dh_prep 28 dh_installdirs 29 24 python setup.py install --root=debian/pyragua \ 25 --install-lib=usr/share/pyragua/ \ 26 --install-data=usr/share/pyragua/ \ 27 --install-scripts=usr/share/pyragua/ \ 28 --no-compile 29 30 # Build architecture-independent files here. 30 31 binary-indep: build install 31 32 dh_testdir 32 33 dh_testroot 34 dh_installchangelogs ChangeLog 33 35 dh_installmenu 34 dh_installman doc/pyragua-ide.es.135 dh_installman doc/pyragua-ide.136 dh_installchangelogs ChangeLog37 36 dh_installdocs 37 dh_installman doc/pyragua.1 38 dh_installman doc/pyragua.es.1 38 39 dh_install 40 dh_link 39 41 dh_icons 40 dh_link 41 dh_compress 42 dh_compress -X.py 42 43 dh_fixperms 44 dh_pysupport 43 45 dh_installdeb 44 dh_shlibdeps45 46 dh_gencontrol 46 47 dh_md5sums 47 48 dh_builddeb 48 dh_compress49 49 50 # Build architecture-dependent files here. 50 51 binary-arch: build install 51 52
