diff options
author | tota <tota@FreeBSD.org> | 2012-03-05 23:41:48 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2012-03-05 23:41:48 +0800 |
commit | d9f500bc9e677d30df75abc4a5d15f6c65596897 (patch) | |
tree | 9dc9f0012c56f69fa36ce595ea423b51c375abe8 /misc | |
parent | 338f4492dda2b54e19618940eb517b14e4781c90 (diff) | |
download | freebsd-ports-gnome-d9f500bc9e677d30df75abc4a5d15f6c65596897.tar.gz freebsd-ports-gnome-d9f500bc9e677d30df75abc4a5d15f6c65596897.tar.zst freebsd-ports-gnome-d9f500bc9e677d30df75abc4a5d15f6c65596897.zip |
- Update to 1.0.6
Diffstat (limited to 'misc')
-rw-r--r-- | misc/rabbit/Makefile | 2 | ||||
-rw-r--r-- | misc/rabbit/distinfo | 4 | ||||
-rw-r--r-- | misc/rabbit/files/patch-coderay.rb | 64 |
3 files changed, 3 insertions, 67 deletions
diff --git a/misc/rabbit/Makefile b/misc/rabbit/Makefile index f3f02fc14996..0e8e5359887e 100644 --- a/misc/rabbit/Makefile +++ b/misc/rabbit/Makefile @@ -6,7 +6,7 @@ # PORTNAME= rabbit -PORTVERSION= 1.0.5 +PORTVERSION= 1.0.6 CATEGORIES= misc ruby MASTER_SITES= http://rabbit-shockers.org/download/ \ LOCAL diff --git a/misc/rabbit/distinfo b/misc/rabbit/distinfo index f644545afd26..a8fbe2abdd05 100644 --- a/misc/rabbit/distinfo +++ b/misc/rabbit/distinfo @@ -1,2 +1,2 @@ -SHA256 (rabbit-1.0.5.tar.gz) = 8d10e8affbdf4507e1481f8409dceca3ee43b5ff1beb9476788594782576e44a -SIZE (rabbit-1.0.5.tar.gz) = 5886310 +SHA256 (rabbit-1.0.6.tar.gz) = 2413dd3679c4782204f45f19e98ed2f3d8e063a1e79f9d40fd36f56355382576 +SIZE (rabbit-1.0.6.tar.gz) = 5886935 diff --git a/misc/rabbit/files/patch-coderay.rb b/misc/rabbit/files/patch-coderay.rb deleted file mode 100644 index ce52bee2985f..000000000000 --- a/misc/rabbit/files/patch-coderay.rb +++ /dev/null @@ -1,64 +0,0 @@ ---- lib/rabbit/parser/ext/coderay.rb.orig 2011-07-16 05:59:37.000000000 +0900 -+++ lib/rabbit/parser/ext/coderay.rb 2012-02-05 11:24:16.000000000 +0900 -@@ -21,7 +21,7 @@ - def setup(options) - super - @out = SyntaxHighlightingBlock.new -- @elements = [@out] -+ @containers = [@out] - end - - def text_token(text, type=:plain) -@@ -29,36 +29,39 @@ - escaped_text = Escape.escape_meta_character(text) - text_element = SyntaxHighlightingText.new(Text.new(escaped_text)) - tag_name = type.to_s.gsub(/_/, '-') -- CustomTag.new("syntax-#{tag_name}", text_element) -+ tag = CustomTag.new("syntax-#{tag_name}", text_element) -+ current_container << tag - end - -- def open_token(kind) -- p [:open, kind] if Utils.syntax_highlighting_debug? -- @out = TextContainer.new -- @elements << @out -- CustomTag.new("syntax-#{kind}") -+ def begin_group(kind) -+ p [:begin_group, kind] if Utils.syntax_highlighting_debug? -+ @containers << TextContainer.new -+ tag = CustomTag.new("syntax-#{kind}") -+ current_container << tag - end - - def begin_line(kind) - p [:begin_line, kind] if Utils.syntax_highlighting_debug? -- nil - end - - def end_line(kind) - p [:end_line, kind] if Utils.syntax_highlighting_debug? -- nil - end - -- def close_token(kind) -- p [:close, kind] if Utils.syntax_highlighting_debug? -- block = @elements.pop -- @out = @elements.last -- block -+ def end_group(kind) -+ p [:end_group, kind] if Utils.syntax_highlighting_debug? -+ block = @containers.pop -+ current_container << block - end - - def finish(options) - super - end -+ -+ private -+ def current_container -+ @containers.last -+ end - end - end - end |