Changeset 450 for tags/pyragua-0.2.5/debian – Pyragua

Changeset 450 for tags/pyragua-0.2.5/debian

Show
Ignore:
Timestamp:
01/09/10 10:14:12 (2 years ago)
Author:
junix
Message:

Actualizados los archivos del paquete debian

Location:
tags/pyragua-0.2.5/debian
Files:
1 added
1 removed
5 modified

Legend:

Unmodified
Added
Removed
  • tags/pyragua-0.2.5/debian/changelog

    r437 r450  
    22 
    33  * New upstream release. 
     4    - Added english manpage 
    45  * New maintainer. Closes: #562807 
    56  * debian/control: Updated URL. 
     
    1011  * debian/rules: Fix resulting .pyc files. 
    1112    - 3.0 (quilt) 
     13    - python-support 
    1214  * debian/pyragua.xpm: Added, converted from pyragua.ico 
    1315  * debian/watch: Added. 
     
    1618  * Fix lintian errors: 
    1719    - menu-item-uses-apps-section 
    18     - binary-without-english-manpage 
    1920    - no-homepage-field 
    2021    - build-depends-without-arch-dep 
  • tags/pyragua-0.2.5/debian/control

    r443 r450  
    33Priority: optional 
    44Maintainer: Julián Moreno Patiño <darkjunix@gmail.com> 
    5 Build-Depends: debhelper (>= 7) 
    6 Build-Depends-Indep: python 
     5Build-Depends: debhelper (>= 7), python 
     6Build-Depends-Indep: python-support (>= 0.90) 
    77Standards-Version: 3.8.3 
    88Homepage: http://pyragua.pyroxdev.org 
     
    1010Package: pyragua 
    1111Architecture: all 
    12 Depends: ${misc:Depends}, python, python-wxgtk2.6, libwxbase2.6-0, 
    13  libwxgtk2.6-0, python-wxtools, python-wxversion 
     12Depends: ${python:Depends}, ${misc:Depends}, python-wxgtk2.6,  
     13 libwxbase2.6-0, libwxgtk2.6-0, python-wxtools, python-wxversion 
    1414Recommends: python-wxglade, wx2.6-doc, wx2.6-examples 
    15 Description: Pythonic editor for Python coding 
     15Description: Very lightweight Python editor 
    1616 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  
    11debian/pyragua.xpm      ./usr/share/pixmaps/ 
    2 pyragua/*       ./usr/share/pyragua/pyragua 
    3 pyragua-ide     ./usr/share/pyragua/ 
     2debian/pyragua.desktop  ./usr/share/applications/ 
  • tags/pyragua-0.2.5/debian/pyragua.links

    r421 r450  
    1 /usr/share/pyragua/pyragua-ide /usr/bin/pyragua-ide 
     1/usr/share/pyragua/pyragua-ide /usr/bin/pyragua 
  • tags/pyragua-0.2.5/debian/rules

    r438 r450  
    11#!/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 -*- 
    63 
    74# Uncomment this to turn on verbose mode. 
    85#export DH_VERBOSE=1 
     6 
    97 
    108build: build-stamp 
     
    1311        touch build-stamp 
    1412 
     13 
    1514clean: 
    1615        dh_testdir 
    1716        dh_testroot 
    1817        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 
    2320 
    2421install: build 
    2522        dh_testdir 
    2623        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. 
    3031binary-indep: build install 
    3132        dh_testdir 
    3233        dh_testroot 
     34        dh_installchangelogs ChangeLog 
    3335        dh_installmenu 
    34         dh_installman doc/pyragua-ide.es.1 
    35         dh_installman doc/pyragua-ide.1 
    36         dh_installchangelogs ChangeLog 
    3736        dh_installdocs 
     37        dh_installman doc/pyragua.1 
     38        dh_installman doc/pyragua.es.1 
    3839        dh_install 
     40        dh_link 
    3941        dh_icons 
    40         dh_link 
    41         dh_compress 
     42        dh_compress -X.py 
    4243        dh_fixperms 
     44        dh_pysupport 
    4345        dh_installdeb 
    44         dh_shlibdeps 
    4546        dh_gencontrol 
    4647        dh_md5sums 
    4748        dh_builddeb 
    48         dh_compress 
    4949 
     50# Build architecture-dependent files here. 
    5051binary-arch: build install 
    5152