flex 2.5.35-10ubuntu1 source package in Bilimbi Test

Changelog

flex (2.5.35-10ubuntu1) natty; urgency=low

  * debian/control: flex should be declared Multi-Arch: allowed since it
    contains both an executable and a library.
 -- Steve Langasek <email address hidden>   Wed, 26 Jan 2011 14:48:22 -0800

Upload details

Uploaded by:
Steve Langasek
Uploaded to:
Natty
Original maintainer:
Ubuntu Developers
Architectures:
any
Section:
devel
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Angry Aardvark release universe devel

Builds

Natty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
flex_2.5.35.orig.tar.gz 1.4 MiB a6fe3ac80b5f89769d833efde712f95bb0255bcf9089fa324636a9b8a005c717
flex_2.5.35-10ubuntu1.diff.gz 41.1 KiB 87efa87bd902725270a7a37ac100dadc1c8c75f556169227c40226161a0dd830
flex_2.5.35-10ubuntu1.dsc 1.9 KiB 6c825c8daa00f78d2e752c850061685a938c8092a5088ff00970a8cebea410fc

Available diffs

View changes file

Binary packages built by this source

flex: A fast lexical analyzer generator.

 Flex is a tool for generating scanners: programs which recognized lexical
 patterns in text. It reads the given input files for a description of a
 scanner to generate. The description is in the form of pairs of regular
 expressions and C code, called rules. Flex generates as output a C source
 file, lex.yy.c, which defines a routine yylex(). This file is compiled
 and linked with the -lfl library to produce an executable. When the
 executable is run, it analyzes its input for occurrences of the regular
 expressions. Whenever it finds one, it executes the corresponding C code.