aboutsummaryrefslogtreecommitdiff
path: root/textproc/flex/distinfo
Commit message (Collapse)AuthorAgeFilesLines
* textproc/flex: Update 2.6.1 -> 2.6.4Yuri Victorovich2018-06-231-2/+3
| | | | | | | | | | | Changelog: https://github.com/westes/flex/releases/tag/v2.6.4 PR: 226546 Approved by: johans@FreeBSD.org (maintainer timeout; 103 days) Notes: svn path=/head/; revision=473146
* Update flex to 2.6.1Johan van Selst2016-03-101-2/+2
| | | | Notes: svn path=/head/; revision=410797
* Update to flex 2.6.0Johan van Selst2015-11-181-2/+2
| | | | | | | | Announcement: http://sourceforge.net/p/flex/mailman/message/34626590/ Add port examples Notes: svn path=/head/; revision=401847
* Update to flex 2.5.39Johan van Selst2014-03-281-2/+2
| | | | Notes: svn path=/head/; revision=349396
* Update to flex 2.5.38Johan van Selst2014-02-131-2/+2
| | | | Notes: svn path=/head/; revision=344136
* - Update flex to 2.5.37Johan van Selst2012-09-021-2/+2
| | | | | | | - Reduce Makefile header Notes: svn path=/head/; revision=303545
* Update flex to 2.5.36 (bugfix release)Johan van Selst2012-07-231-2/+2
| | | | Notes: svn path=/head/; revision=301412
* -remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276994
* - Update to 2.5.35Andrew Pantyukhin2008-02-281-3/+3
| | | | Notes: svn path=/head/; revision=208080
* - Update to 2.5.34Andrew Pantyukhin2007-12-131-3/+3
| | | | Notes: svn path=/head/; revision=203456
* Add port textproc/flex:Andrew Pantyukhin2006-08-131-0/+3
Flex is a tool for generating scanners. A scanner, sometimes called a tokenizer, is a program which recognizes lexical patterns in text. The flex program reads user-specified input files, or its standard input if no file names are given, 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 a C source file named, "lex.yy.c", which defines the function yylex(). The file "lex.yy.c" can be compiled and linked to produce an executable. When the executable is run, it analyzes its input for occurrences of text matching the regular expressions for each rule. Whenever it finds a match, it executes the corresponding C code. WWW: http://flex.sourceforge.net/ Note that there's flex 2.5.4 in the base system. This port provides a newer version for programs that require it, textproc/xxdiff for one. Notes: svn path=/head/; revision=170468