mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
Update to 2.4.4
This commit is contained in:
parent
1442ee12d9
commit
4417ed8f20
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=261636
@ -6,8 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= twirssi
|
||||
PORTVERSION= 2.4.3
|
||||
PORTREVISION= 2
|
||||
PORTVERSION= 2.4.4
|
||||
CATEGORIES= net-im
|
||||
MASTER_SITES= http://twirssi.com/
|
||||
EXTRACT_SUFX= .pl
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (twirssi-2.4.3.pl) = 8c5e4c34446e6f03ee7bc2c7ad29e07d
|
||||
SHA256 (twirssi-2.4.3.pl) = 284ee331bec35064bfa3a3fd9dab8330a17299dcdf5172b5be70786c008d21d7
|
||||
SIZE (twirssi-2.4.3.pl) = 64869
|
||||
MD5 (twirssi-2.4.4.pl) = 5f7f52ae30c48ef8a1435dfec8d031bd
|
||||
SHA256 (twirssi-2.4.4.pl) = 60794f9063fe1443d3ef7f6ea461aad102537e3d1efac485bfcc218a0c3fe707
|
||||
SIZE (twirssi-2.4.4.pl) = 66068
|
||||
|
@ -1,35 +0,0 @@
|
||||
--- twirssi.pl 2010-09-16 13:41:22.000000000 -0300
|
||||
+++ twirssi.pl 2010-09-16 13:37:44.000000000 -0300
|
||||
@@ -89,6 +89,10 @@
|
||||
|
||||
return unless $username = &valid_username($username);
|
||||
|
||||
+ if (!utf8::is_utf8($text)) {
|
||||
+ $text = decode("utf8", $text);
|
||||
+ }
|
||||
+
|
||||
eval {
|
||||
if ( $twits{$username}
|
||||
->new_direct_message( { user => $target, text => $text } ) )
|
||||
@@ -244,6 +248,10 @@
|
||||
|
||||
return if &too_long($data);
|
||||
|
||||
+ if (!utf8::is_utf8($data)) {
|
||||
+ $data = decode "utf8", $data;
|
||||
+ }
|
||||
+
|
||||
my $success = 1;
|
||||
my $res;
|
||||
eval {
|
||||
@@ -351,6 +359,10 @@
|
||||
|
||||
return if &too_long($data);
|
||||
|
||||
+ if (!utf8::is_utf8($data)) {
|
||||
+ $data = decode "utf8", $data;
|
||||
+ }
|
||||
+
|
||||
my $success = 1;
|
||||
eval {
|
||||
unless (
|
Loading…
Reference in New Issue
Block a user