~ubuntu-branches/ubuntu/saucy/glew/saucy

« back to all changes in this revision

Viewing changes to auto/bin/parse_spec.pl

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi, Yaroslav Halchenko, Fabrizio Regalli, Matteo F. Vescovi
  • Date: 2011-11-29 10:56:40 UTC
  • mfrom: (1.1.7) (12.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20111129105640-p20qdtpnrwz6epdv
Tags: 1.7.0-1
[ Yaroslav Halchenko ]
* Added Vcs- header fields
* Minor tune ups of the long descriptions

[ Fabrizio Regalli ]
* Imported Upstream version 1.7.0
* Switch to 3.0 quilt format
* Update d/compat to 8
* Really update d/compat
* Added d/source/options files
* Renamed all 1.6 install files to 1.7
* Adjustin d/control with new 1.7 version number
* Added build-{indep,arch} to d/rules
* Added libglew*.symbols to debian directory
* Update d/shlibs.local with new 1.7 version

[ Matteo F. Vescovi ]
* New maintainer (Closes: #634069)
* debian/control: VCS-Links updated
* debian/control: duplicated Section fields removed.
   - Drop of "Section: libs" fields duplicated for
     libglew1.6 and libglewmx1.6
   - Short-Description field for libglewmx1.6 modified
* debian/control: libglewmx1.6-dev Short-Description fixed

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
    prefix   => qr/^(?:[aw]?gl|glX)/, # gl | agl | wgl | glX
141
141
    tprefix  => qr/^(?:[AW]?GL|GLX)_/, # GL_ | AGL_ | WGL_ | GLX_
142
142
    section  => compile_regex('^(', join('|', @sections), ')$'), # sections in spec
143
 
    token    => qr/^([A-Z0-9][A-Z0-9_]*):?\s+((?:0x)?[0-9A-F]+)(.*)$/, # define tokens
 
143
    token    => qr/^([A-Z0-9][A-Z0-9_x]*):?\s+((?:0x)?[0-9A-F]+)(.*)$/, # define tokens
144
144
    types    => compile_regex('\b(', join('|', keys %typemap), ')\b'), # var types
145
145
    voidtype => compile_regex('\b(', keys %voidtypemap, ')\b '), # void type
146
146
);