Index: Makefile =================================================================== --- Makefile (revision 482199) +++ Makefile (working copy) @@ -3,14 +3,10 @@ PORTNAME= matplotlib DISTVERSIONPREFIX= v -DISTVERSION= 2.1.2 -PORTREVISION= 3 +DISTVERSION= 2.2.3 CATEGORIES= math python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ -PATCHFILES= 5b7a21e53e11a7064b2171c0d91afda67f30c4e7.patch:-p1 # fix of the failure on 12 i386: https://github.com/matplotlib/matplotlib/issues/10698 - MAINTAINER= mainland@apeiron.net COMMENT= Plotting library uses a syntax familiar to MATLAB users Index: distinfo =================================================================== --- distinfo (revision 482199) +++ distinfo (working copy) @@ -1,5 +1,3 @@ -TIMESTAMP = 1520663268 -SHA256 (matplotlib-matplotlib-v2.1.2_GH0.tar.gz) = 613d79282a0a8ba88cfc52dbcf1b08ab070dae395c3d313d141ccc3f87e3c9fa -SIZE (matplotlib-matplotlib-v2.1.2_GH0.tar.gz) = 35181192 -SHA256 (5b7a21e53e11a7064b2171c0d91afda67f30c4e7.patch) = f332f13cd365cdc3903bed12bdb483366e0212d9481f0949474334db96cc3257 -SIZE (5b7a21e53e11a7064b2171c0d91afda67f30c4e7.patch) = 1736 +TIMESTAMP = 1539649866 +SHA256 (matplotlib-matplotlib-v2.2.3_GH0.tar.gz) = da5b804222864a8e854ed68f16dcbc8b2fa096537d84f879cc8289db368735c8 +SIZE (matplotlib-matplotlib-v2.2.3_GH0.tar.gz) = 36670351 Index: files/patch-extern_ttconv_pprdrv__tt.cpp =================================================================== --- files/patch-extern_ttconv_pprdrv__tt.cpp (revision 482199) +++ files/patch-extern_ttconv_pprdrv__tt.cpp (nonexistent) @@ -1,111 +0,0 @@ -extern/ttconv/pprdrv_tt.cpp:245:41: error: cast from pointer to smaller type 'char' loses information - font->Copyright[length]=(char)NULL; - ^~~~~~~~~~ -extern/ttconv/pprdrv_tt.cpp:261:42: error: cast from pointer to smaller type 'char' loses information - font->FamilyName[length]=(char)NULL; - ^~~~~~~~~~ -extern/ttconv/pprdrv_tt.cpp:277:37: error: cast from pointer to smaller type 'char' loses information - font->Style[length]=(char)NULL; - ^~~~~~~~~~ -extern/ttconv/pprdrv_tt.cpp:293:40: error: cast from pointer to smaller type 'char' loses information - font->FullName[length]=(char)NULL; - ^~~~~~~~~~ -extern/ttconv/pprdrv_tt.cpp:309:39: error: cast from pointer to smaller type 'char' loses information - font->Version[length]=(char)NULL; - ^~~~~~~~~~ -extern/ttconv/pprdrv_tt.cpp:325:40: error: cast from pointer to smaller type 'char' loses information - font->PostName[length]=(char)NULL; - ^~~~~~~~~~ -extern/ttconv/pprdrv_tt.cpp:340:42: error: cast from pointer to smaller type 'char' loses information - font->PostName[length/2]=(char)NULL; - ^~~~~~~~~~ -extern/ttconv/pprdrv_tt.cpp:355:41: error: cast from pointer to smaller type 'char' loses information - font->Trademark[length]=(char)NULL; - ^~~~~~~~~~ -extern/ttconv/pprdrv_tt.cpp:1041:19: error: cast from pointer to smaller type 'char' loses information - temp[len]=(char)NULL; /* a buffer and make it ASCIIz. */ - ^~~~~~~~~~ - ---- extern/ttconv/pprdrv_tt.cpp.orig 2016-09-09 02:50:50 UTC -+++ extern/ttconv/pprdrv_tt.cpp -@@ -242,7 +242,7 @@ void Read_name(struct TTFONT *font) - { - font->Copyright = (char*)calloc(sizeof(char),length+1); - strncpy(font->Copyright,(const char*)strings+offset,length); -- font->Copyright[length]=(char)NULL; -+ font->Copyright[length]='\0'; - replace_newlines_with_spaces(font->Copyright); - - #ifdef DEBUG_TRUETYPE -@@ -258,7 +258,7 @@ void Read_name(struct TTFONT *font) - free(font->FamilyName); - font->FamilyName = (char*)calloc(sizeof(char),length+1); - strncpy(font->FamilyName,(const char*)strings+offset,length); -- font->FamilyName[length]=(char)NULL; -+ font->FamilyName[length]='\0'; - replace_newlines_with_spaces(font->FamilyName); - - #ifdef DEBUG_TRUETYPE -@@ -274,7 +274,7 @@ void Read_name(struct TTFONT *font) - free(font->Style); - font->Style = (char*)calloc(sizeof(char),length+1); - strncpy(font->Style,(const char*)strings+offset,length); -- font->Style[length]=(char)NULL; -+ font->Style[length]='\0'; - replace_newlines_with_spaces(font->Style); - - #ifdef DEBUG_TRUETYPE -@@ -290,7 +290,7 @@ void Read_name(struct TTFONT *font) - free(font->FullName); - font->FullName = (char*)calloc(sizeof(char),length+1); - strncpy(font->FullName,(const char*)strings+offset,length); -- font->FullName[length]=(char)NULL; -+ font->FullName[length]='\0'; - replace_newlines_with_spaces(font->FullName); - - #ifdef DEBUG_TRUETYPE -@@ -306,7 +306,7 @@ void Read_name(struct TTFONT *font) - free(font->Version); - font->Version = (char*)calloc(sizeof(char),length+1); - strncpy(font->Version,(const char*)strings+offset,length); -- font->Version[length]=(char)NULL; -+ font->Version[length]='\0'; - replace_newlines_with_spaces(font->Version); - - #ifdef DEBUG_TRUETYPE -@@ -322,7 +322,7 @@ void Read_name(struct TTFONT *font) - free(font->PostName); - font->PostName = (char*)calloc(sizeof(char),length+1); - strncpy(font->PostName,(const char*)strings+offset,length); -- font->PostName[length]=(char)NULL; -+ font->PostName[length]='\0'; - replace_newlines_with_spaces(font->PostName); - - #ifdef DEBUG_TRUETYPE -@@ -337,7 +337,7 @@ void Read_name(struct TTFONT *font) - free(font->PostName); - font->PostName = (char*)calloc(sizeof(char),length+1); - utf16be_to_ascii(font->PostName, (char *)strings+offset, length); -- font->PostName[length/2]=(char)NULL; -+ font->PostName[length/2]='\0'; - replace_newlines_with_spaces(font->PostName); - - #ifdef DEBUG_TRUETYPE -@@ -352,7 +352,7 @@ void Read_name(struct TTFONT *font) - { - font->Trademark = (char*)calloc(sizeof(char),length+1); - strncpy(font->Trademark,(const char*)strings+offset,length); -- font->Trademark[length]=(char)NULL; -+ font->Trademark[length]='\0'; - replace_newlines_with_spaces(font->Trademark); - - #ifdef DEBUG_TRUETYPE -@@ -1038,7 +1038,7 @@ const char *ttfont_CharStrings_getname(struct TTFONT * - } - - strncpy(temp,ptr,len); /* Copy the pascal string into */ -- temp[len]=(char)NULL; /* a buffer and make it ASCIIz. */ -+ temp[len]='\0'; /* a buffer and make it ASCIIz. */ - - return temp; - } Property changes on: files/patch-extern_ttconv_pprdrv__tt.cpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property