svn commit: r428159 - in head: . devel devel/libcppformat devel/libfmt devel/libfmt/files

Jason E. Hale jhale at FreeBSD.org
Thu Dec 8 22:01:05 UTC 2016


Author: jhale
Date: Thu Dec  8 22:01:03 2016
New Revision: 428159
URL: https://svnweb.freebsd.org/changeset/ports/428159

Log:
  Move devel/libcppformat -> devel/libfmt due to upstream name change
  Update to 3.0.1
  
  PR:		215097
  Submitted by:	Slava Mikerov <SlavaMikerov at gmail.com> (maintainer)

Added:
  head/devel/libfmt/
     - copied from r428158, head/devel/libcppformat/
  head/devel/libfmt/files/
  head/devel/libfmt/files/patch-test_posix-mock-test.cc   (contents, props changed)
Deleted:
  head/devel/libcppformat/
Modified:
  head/MOVED
  head/devel/Makefile
  head/devel/libfmt/Makefile
  head/devel/libfmt/distinfo
  head/devel/libfmt/pkg-descr
  head/devel/libfmt/pkg-plist

Modified: head/MOVED
==============================================================================
--- head/MOVED	Thu Dec  8 20:35:42 2016	(r428158)
+++ head/MOVED	Thu Dec  8 22:01:03 2016	(r428159)
@@ -8828,3 +8828,4 @@ devel/py-itools||2016-12-08|Has expired:
 graphics/py-aafigure||2016-12-08|Has expired: Depends on broken and expired py-reportlab2
 converters/py-pisa||2016-12-08|Has expired: Deprecated upstream, depends on broken and expired py-reportlab2
 graphics/ocrfeeder||2016-12-08|Has expired: Depends on broken and expired py-reportlab2
+devel/libcppformat|devel/libfmt|2016-12-08|Project was renamed

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Dec  8 20:35:42 2016	(r428158)
+++ head/devel/Makefile	Thu Dec  8 22:01:03 2016	(r428159)
@@ -1228,7 +1228,6 @@
     SUBDIR += libconcurrent
     SUBDIR += libconfig
     SUBDIR += libconfuse
-    SUBDIR += libcppformat
     SUBDIR += libcrossguid
     SUBDIR += libcutl
     SUBDIR += libcwd
@@ -1277,6 +1276,7 @@
     SUBDIR += libffi
     SUBDIR += libfirm
     SUBDIR += libflatarray
+    SUBDIR += libfmt
     SUBDIR += libfortuna
     SUBDIR += libfreefare
     SUBDIR += libfsntfs

Modified: head/devel/libfmt/Makefile
==============================================================================
--- head/devel/libcppformat/Makefile	Thu Dec  8 20:35:42 2016	(r428158)
+++ head/devel/libfmt/Makefile	Thu Dec  8 22:01:03 2016	(r428159)
@@ -1,18 +1,18 @@
 # Created by: Viacheslav Mikerov <SlavaMikerov at gmail.com>
 # $FreeBSD$
 
-PORTNAME=	libcppformat
-PORTVERSION=	2.1.0
+PORTNAME=	libfmt
+PORTVERSION=	3.0.1
 CATEGORIES=	devel
 
 MAINTAINER=	SlavaMikerov at gmail.com
-COMMENT=	C++ Format is an open-source formatting library for C++
+COMMENT=	Fmt is an open-source formatting library for C++
 
 LICENSE=	BSD2CLAUSE
 
 USE_GITHUB=	yes
-GH_ACCOUNT=	cppformat
-GH_PROJECT=	cppformat
+GH_ACCOUNT=	fmtlib
+GH_PROJECT=	fmt
 
 USES=		cmake:outsource compiler:c++11-lib
 CMAKE_ARGS=	-DFMT_DOC=OFF

Modified: head/devel/libfmt/distinfo
==============================================================================
--- head/devel/libcppformat/distinfo	Thu Dec  8 20:35:42 2016	(r428158)
+++ head/devel/libfmt/distinfo	Thu Dec  8 22:01:03 2016	(r428159)
@@ -1,2 +1,3 @@
-SHA256 (cppformat-cppformat-2.1.0_GH0.tar.gz) = 561d5d3628bcba65b9ceaba5266603572535c8ba5f9e4e17e7afd4c55ff31941
-SIZE (cppformat-cppformat-2.1.0_GH0.tar.gz) = 592656
+TIMESTAMP = 1480615869
+SHA256 (fmtlib-fmt-3.0.1_GH0.tar.gz) = dce62ab75a161dd4353a98364feb166d35e7eea382169d59d9ce842c49c55bad
+SIZE (fmtlib-fmt-3.0.1_GH0.tar.gz) = 606603

Added: head/devel/libfmt/files/patch-test_posix-mock-test.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libfmt/files/patch-test_posix-mock-test.cc	Thu Dec  8 22:01:03 2016	(r428159)
@@ -0,0 +1,11 @@
+--- test/posix-mock-test.cc.orig	2016-12-01 18:09:30 UTC
++++ test/posix-mock-test.cc
+@@ -502,7 +502,7 @@ LocaleType newlocale(int category_mask, 
+   return LocaleMock::instance->newlocale(category_mask, locale, base);
+ }
+ 
+-#ifdef __APPLE__
++#if defined(__APPLE__) || defined(__FreeBSD__)
+ typedef int FreeLocaleResult;
+ #else
+ typedef void FreeLocaleResult;

Modified: head/devel/libfmt/pkg-descr
==============================================================================
--- head/devel/libcppformat/pkg-descr	Thu Dec  8 20:35:42 2016	(r428158)
+++ head/devel/libfmt/pkg-descr	Thu Dec  8 22:01:03 2016	(r428159)
@@ -1,4 +1,4 @@
-C++ Format is an open-source formatting library for C++. It can be used as a
+fmt is an open-source formatting library for C++. It can be used as a
 safe alternative to printf or as a fast alternative to IOStreams.
 
-WWW: https://github.com/cppformat/cppformat/
+WWW: http://fmtlib.net/

Modified: head/devel/libfmt/pkg-plist
==============================================================================
--- head/devel/libcppformat/pkg-plist	Thu Dec  8 20:35:42 2016	(r428158)
+++ head/devel/libfmt/pkg-plist	Thu Dec  8 22:01:03 2016	(r428159)
@@ -1,8 +1,11 @@
-include/cppformat/format.cc
-include/cppformat/format.h
-include/cppformat/posix.h
-lib/cmake/cppformat/cppformat-config-version.cmake
-lib/cmake/cppformat/cppformat-config.cmake
-lib/cmake/cppformat/cppformat-targets-%%CMAKE_BUILD_TYPE%%.cmake
-lib/cmake/cppformat/cppformat-targets.cmake
-lib/libcppformat.a
+include/fmt/format.cc
+include/fmt/format.h
+include/fmt/ostream.cc
+include/fmt/ostream.h
+include/fmt/posix.h
+include/fmt/time.h
+lib/cmake/fmt/fmt-config-version.cmake
+lib/cmake/fmt/fmt-config.cmake
+lib/cmake/fmt/fmt-targets-%%CMAKE_BUILD_TYPE%%.cmake
+lib/cmake/fmt/fmt-targets.cmake
+lib/libfmt.a


More information about the svn-ports-all mailing list