[111076] trunk/dports/devel/mimetic

stromnov at macports.org stromnov at macports.org
Sat Sep 14 00:28:53 PDT 2013


Revision: 111076
          https://trac.macports.org/changeset/111076
Author:   stromnov at macports.org
Date:     2013-09-14 00:28:52 -0700 (Sat, 14 Sep 2013)
Log Message:
-----------
mimetic: update to version 0.9.7 (and fix for #40450)

Modified Paths:
--------------
    trunk/dports/devel/mimetic/Portfile

Added Paths:
-----------
    trunk/dports/devel/mimetic/files/
    trunk/dports/devel/mimetic/files/patch-mimetic-tokenizer.h.diff

Modified: trunk/dports/devel/mimetic/Portfile
===================================================================
--- trunk/dports/devel/mimetic/Portfile	2013-09-14 07:26:16 UTC (rev 111075)
+++ trunk/dports/devel/mimetic/Portfile	2013-09-14 07:28:52 UTC (rev 111076)
@@ -4,19 +4,25 @@
 PortSystem          1.0
 
 name                mimetic
-version             0.9.6
+version             0.9.7
+revision            0
 categories          devel
-license             GPL-2+
 platforms           darwin
+license             MIT
+
 maintainers         stromnov openmaintainer
+
 description         Email library (MIME) written in C++
 long_description    ${description}
 
 homepage            http://www.codesink.org/mimetic_mime_library.html
+master_sites        http://www.codesink.org/download/
 
-master_sites        http://codesink.org/download/ \
-                    sourceforge:mimetic
+checksums           rmd160  7a6b9005517d98a1a8367ccd7a5e1386f6ad0545 \
+                    sha256  376707dc35da2cf13313c0ac2e4a4743f73978839adb96f7b59f2d8ca609e308
 
-checksums           md5     f853036fddf3a89cdd66659776d2dbea \
-                    sha1    6cfbe43f91caea30528c354661eebd86bcc9dce4 \
-                    rmd160  2b3155b04665873c26a3cbf2b01b9455f61799d8
+patchfiles          patch-mimetic-tokenizer.h.diff
+
+livecheck.type      regex
+livecheck.url       ${homepage}
+livecheck.regex     {mimetic-(\d+(?:\.\d+)*)\.[tz]}

Added: trunk/dports/devel/mimetic/files/patch-mimetic-tokenizer.h.diff
===================================================================
--- trunk/dports/devel/mimetic/files/patch-mimetic-tokenizer.h.diff	                        (rev 0)
+++ trunk/dports/devel/mimetic/files/patch-mimetic-tokenizer.h.diff	2013-09-14 07:28:52 UTC (rev 111076)
@@ -0,0 +1,19 @@
+--- mimetic/tokenizer.h.orig	2013-09-13 18:40:51.000000000 +0400
++++ mimetic/tokenizer.h	2013-09-13 18:41:42.000000000 +0400
+@@ -140,14 +140,14 @@
+     // so "cont" MUST be in scope for all following calls
+     // to next(...). 
+     ContTokenizer(const Container* cont)
+-    : ItTokenizer<const_iterator, value_type>(cont.begin(), cont.end())
++    : ItTokenizer<const_iterator, value_type>(cont->begin(), cont->end())
+     {
+     }
+     template<typename DelimCont>
+     ContTokenizer(const Container* cont, const DelimCont& delims)
+     : ItTokenizer<const_iterator,value_type>(cont->begin(), cont->end())
+     {
+-        setDelimList(delims);
++        ItTokenizer<const_iterator,value_type>::setDelimList(delims);
+     }
+     void setSource(const Container* cont)
+     {
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20130914/c36e10dd/attachment.html>


More information about the macports-changes mailing list