New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 82814


Ignore:
Timestamp:
08/20/11 16:54:46 (4 years ago)
Author:
ryandesign@…
Message:

convmv:

  • update to 1.15
  • update homepage and master_sites to avoid redirects to an https server with an invalid certificate
  • fix livecheck
  • indicate license
Location:
trunk/dports/sysutils/convmv
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/sysutils/convmv/Portfile

    r78864 r82814  
    44 
    55name                    convmv 
    6 version                 1.14 
    7 revision                1 
     6version             1.15 
    87categories              sysutils perl 
    98platforms               darwin 
    109maintainers             nomaintainer 
     10license             GPL-2+ 
    1111supported_archs         noarch 
    1212 
     
    2424                        default. To turn this smartness off use the --nosmart switch. 
    2525 
    26 homepage                http://j3e.de/linux/convmv/man/ 
    27 master_sites    http://j3e.de/linux/convmv/ 
     26homepage                http://www.j3e.de/linux/convmv/man/ 
     27master_sites    http://www.j3e.de/linux/convmv/ 
    2828 
    29 checksums               md5     d41238051c13b2e6c0cc2310a8f69d68 \ 
    30                                 sha1    e6261eed4771014e84ffe68aac8041c02fb1834d \ 
    31                                 rmd160  3b9c2a89dccad4d0361241a71d588f37450338b0 
     29checksums           rmd160  f92c74f93ed02c1c817a6e899f9be910ce6b362e \ 
     30                    sha256  c315aec78490b588000467d1c51081b36e629de0537c5a17fd48b1acaf8a5135 
    3231 
    3332depends_lib             bin:perl:perl5 
     
    4443} 
    4544 
     45livecheck.type      regex 
     46livecheck.url       [lindex ${master_sites} 0] 
     47livecheck.regex     ${name}-(\[0-9.\]+)${extract.suffix} 
  • trunk/dports/sysutils/convmv/files/patch-convmv.diff

    r78864 r82814  
    1 --- convmv.orig 2008-12-11 18:38:34.000000000 -0600 
    2 +++ convmv      2011-05-24 11:53:29.000000000 -0500 
     1--- convmv.orig 2011-08-20 16:22:34.000000000 -0500 
     2+++ convmv      2011-08-20 18:49:09.000000000 -0500 
    33@@ -1,4 +1,4 @@ 
    44-#!/usr/bin/perl 
    55+#!/usr/bin/env perl 
    6  # convmv 1.14 - converts filenames from one encoding to another 
    7  # Copyright © 2003-2008 Bjoern JACKE <bjoern@j3e.de> 
     6 # convmv 1.15 - converts filenames from one encoding to another 
     7 # Copyright © 2003-2011 Bjoern JACKE <bjoern@j3e.de> 
    88 # 
    9 @@ -577,10 +577,8 @@ 
    10         if (-e $newname and !$opt_exec) { 
    11                 if ($opt_replace and !&compare($oldfile,$newname)) { 
    12                         if ($opt_notest) { 
    13 -                               unlink $newname or print $outerr "Error: $!\n"; 
    14                                 rename ($oldfile, $newname) or print $outerr "Error: $!\n"; 
    15                         } elsif ($opt_parsable) { 
    16 -                               print "unlink".$del.$dir."/".$oldfile.$fin_del; 
    17                                 print "rename".$del.$dir."/".$oldfile.$del.$dir."/".$newname.$fin_del; 
    18                         } 
    19                 } else { 
Note: See TracChangeset for help on using the changeset viewer.