Mon Aug 26 09:49:06 2013 UTC ()
Update ruby-text to 1.2.2.

* Reintroduce figlet before fixing for 1.9
* Relicense as MIT


(obache)
diff -r1.1 -r1.2 pkgsrc/textproc/ruby-text/DESCR
diff -r1.1 -r1.2 pkgsrc/textproc/ruby-text/Makefile
diff -r1.1 -r1.2 pkgsrc/textproc/ruby-text/PLIST
diff -r1.1 -r1.2 pkgsrc/textproc/ruby-text/distinfo

cvs diff -r1.1 -r1.2 pkgsrc/textproc/ruby-text/DESCR (expand / switch to unified diff)

--- pkgsrc/textproc/ruby-text/DESCR 2013/04/21 12:27:11 1.1
+++ pkgsrc/textproc/ruby-text/DESCR 2013/08/26 09:49:06 1.2
@@ -1,2 +1,2 @@ @@ -1,2 +1,2 @@
1A collection of text algorithms: Levenshtein, Soundex, Metaphone, Double 1A collection of text algorithms: Levenshtein, Soundex, Metaphone, Double
2Metaphone, Porter Stemming 2Metaphone, Figlet, Porter Stemming

cvs diff -r1.1 -r1.2 pkgsrc/textproc/ruby-text/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/ruby-text/Makefile 2013/04/21 12:27:11 1.1
+++ pkgsrc/textproc/ruby-text/Makefile 2013/08/26 09:49:06 1.2
@@ -1,12 +1,12 @@ @@ -1,12 +1,12 @@
1# $NetBSD: Makefile,v 1.1 2013/04/21 12:27:11 obache Exp $ 1# $NetBSD: Makefile,v 1.2 2013/08/26 09:49:06 obache Exp $
2 2
3DISTNAME= text-1.2.1 3DISTNAME= text-1.2.2
4CATEGORIES= textproc 4CATEGORIES= textproc
5 5
6MAINTAINER= obache@NetBSD.org 6MAINTAINER= obache@NetBSD.org
7HOMEPAGE= https://github.com/threedaymonk/text 7HOMEPAGE= https://github.com/threedaymonk/text
8COMMENT= Collection of text algorithms for Ruby 8COMMENT= Collection of text algorithms for Ruby
9LICENSE= ruby-license 9LICENSE= mit
10 10
11.include "../../lang/ruby/gem.mk" 11.include "../../lang/ruby/gem.mk"
12.include "../../mk/bsd.pkg.mk" 12.include "../../mk/bsd.pkg.mk"

cvs diff -r1.1 -r1.2 pkgsrc/textproc/ruby-text/PLIST (expand / switch to unified diff)

--- pkgsrc/textproc/ruby-text/PLIST 2013/04/21 12:27:11 1.1
+++ pkgsrc/textproc/ruby-text/PLIST 2013/08/26 09:49:06 1.2
@@ -1,29 +1,35 @@ @@ -1,29 +1,35 @@
1@comment $NetBSD: PLIST,v 1.1 2013/04/21 12:27:11 obache Exp $ 1@comment $NetBSD: PLIST,v 1.2 2013/08/26 09:49:06 obache Exp $
2${GEM_HOME}/cache/${GEM_NAME}.gem 2${GEM_HOME}/cache/${GEM_NAME}.gem
3${GEM_LIBDIR}/README.rdoc 3${GEM_LIBDIR}/README.rdoc
4${GEM_LIBDIR}/Rakefile 4${GEM_LIBDIR}/Rakefile
5${GEM_LIBDIR}/lib/text.rb 5${GEM_LIBDIR}/lib/text.rb
6${GEM_LIBDIR}/lib/text/double_metaphone.rb 6${GEM_LIBDIR}/lib/text/double_metaphone.rb
 7${GEM_LIBDIR}/lib/text/figlet.rb
 8${GEM_LIBDIR}/lib/text/figlet/font.rb
 9${GEM_LIBDIR}/lib/text/figlet/smusher.rb
 10${GEM_LIBDIR}/lib/text/figlet/typesetter.rb
7${GEM_LIBDIR}/lib/text/levenshtein.rb 11${GEM_LIBDIR}/lib/text/levenshtein.rb
8${GEM_LIBDIR}/lib/text/metaphone.rb 12${GEM_LIBDIR}/lib/text/metaphone.rb
9${GEM_LIBDIR}/lib/text/porter_stemming.rb 13${GEM_LIBDIR}/lib/text/porter_stemming.rb
10${GEM_LIBDIR}/lib/text/soundex.rb 14${GEM_LIBDIR}/lib/text/soundex.rb
11${GEM_LIBDIR}/lib/text/version.rb 15${GEM_LIBDIR}/lib/text/version.rb
12${GEM_LIBDIR}/lib/text/white_similarity.rb 16${GEM_LIBDIR}/lib/text/white_similarity.rb
 17${GEM_LIBDIR}/test/data/big.flf
13${GEM_LIBDIR}/test/data/big.txt 18${GEM_LIBDIR}/test/data/big.txt
14${GEM_LIBDIR}/test/data/chunky.flf 19${GEM_LIBDIR}/test/data/chunky.flf
15${GEM_LIBDIR}/test/data/chunky.txt 20${GEM_LIBDIR}/test/data/chunky.txt
16${GEM_LIBDIR}/test/data/double_metaphone.csv 21${GEM_LIBDIR}/test/data/double_metaphone.csv
17${GEM_LIBDIR}/test/data/metaphone.txt 22${GEM_LIBDIR}/test/data/metaphone.txt
18${GEM_LIBDIR}/test/data/metaphone_buggy.txt 23${GEM_LIBDIR}/test/data/metaphone_buggy.txt
19${GEM_LIBDIR}/test/data/porter_stemming_input.txt 24${GEM_LIBDIR}/test/data/porter_stemming_input.txt
20${GEM_LIBDIR}/test/data/porter_stemming_output.txt 25${GEM_LIBDIR}/test/data/porter_stemming_output.txt
21${GEM_LIBDIR}/test/preamble.rb 26${GEM_LIBDIR}/test/preamble.rb
22${GEM_LIBDIR}/test/test_double_metaphone.rb 27${GEM_LIBDIR}/test/test_double_metaphone.rb
 28${GEM_LIBDIR}/test/test_figlet.rb
23${GEM_LIBDIR}/test/test_levenshtein.rb 29${GEM_LIBDIR}/test/test_levenshtein.rb
24${GEM_LIBDIR}/test/test_metaphone.rb 30${GEM_LIBDIR}/test/test_metaphone.rb
25${GEM_LIBDIR}/test/test_porter_stemming.rb 31${GEM_LIBDIR}/test/test_porter_stemming.rb
26${GEM_LIBDIR}/test/test_soundex.rb 32${GEM_LIBDIR}/test/test_soundex.rb
27${GEM_LIBDIR}/test/test_text.rb 33${GEM_LIBDIR}/test/test_text.rb
28${GEM_LIBDIR}/test/test_white_similarity.rb 34${GEM_LIBDIR}/test/test_white_similarity.rb
29${GEM_HOME}/specifications/${GEM_NAME}.gemspec 35${GEM_HOME}/specifications/${GEM_NAME}.gemspec

cvs diff -r1.1 -r1.2 pkgsrc/textproc/ruby-text/distinfo (expand / switch to unified diff)

--- pkgsrc/textproc/ruby-text/distinfo 2013/04/21 12:27:11 1.1
+++ pkgsrc/textproc/ruby-text/distinfo 2013/08/26 09:49:06 1.2
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.1 2013/04/21 12:27:11 obache Exp $ 1$NetBSD: distinfo,v 1.2 2013/08/26 09:49:06 obache Exp $
2 2
3SHA1 (text-1.2.1.gem) = 41c196e5e93288aa3c4d9357c540b6d6cd33aa28 3SHA1 (text-1.2.2.gem) = 676a6870a7bf808650dfa8148e5cb9b29f2a0877
4RMD160 (text-1.2.1.gem) = 773844ff7d3e689a509f9eb3ec203656dd097681 4RMD160 (text-1.2.2.gem) = 9dc358fd5c57407a54bc58f29171aec3f818469a
5Size (text-1.2.1.gem) = 136704 bytes 5Size (text-1.2.2.gem) = 143872 bytes