Fri Mar 3 09:59:58 2023 UTC ()
google-glog: updated to 0.6.0

google-glog 0.6.0

bazel: Use glog 0.5.0 in README
Expose IsGoogleLoggingInitialized() in public API.
Fix cmake configuration for cygwin environment
Allow updating vmodule levels after vmodule level has been cached
Export COPYING
cmake: fixed msvc snprintf detection
cmake: allow to override -fPIC
cmake: export <atomic> availability
Remove ubuntu1604 from presubmit.yml
bazel: add GLOG_CUSTOM_PREFIX_SUPPORT
log messages periodically (time-based)
ci: support more targets
cmake: prefer linking against gflags::gflags
Fix syscall deprecation warning on macOS >= 10.12
fixed exception specification mismatch
readme: fix wrong header id
eliminate warnings
fixed additional warnings
Add an static cast to compare unsigned with unsigned
Fix: not implement virtual class when WITH_CUSTOM_PREFIX on
Change size type in AnnotateBenignRaceSized to size_t from long
Fix link error for Emscripten
raw_logging.h depends on type definition in logging.h.
export OS_* defines
Fix syscall warning in Bazel Build
Add -Werror to Bazel presubmits
added gmock support
Support stack unwind on Android
add linux github workflow
ci: replace generated headers by templates
add mock log test
added log cleaner tests and fixed paths
Make LogCleaner support relative paths
cmake: Fix incorrect relative-path concatenation
Restore the stream format after writing the log prefix
fix glog-modules.cmake install
protect VLOG by use_logging
Fix log filename format
Add Zhuoran Shen to AUTHORS and CONTRIBUTORS
ci: reworked windows builds
cmake: set CMP0074 policy
ci: use codecov token
Added gmtoff() method in 'LogMessageTime' to get GMT offset
LogCleaner: Fix relative paths and add a new test
eliminate msvc warnings
cmake: require at least version 3.16
ci: enable warnings as errors
LogCleaner: make overdue_days_ unsigned int
ci: remove deprecated msvc runner
provide backward compatible send overload
run clang-tidy
eliminate clang warnings
ensure _Unwind_Backtrace to actually be available
cmake: do not search for platform specific unwind
revert to signed int atomics
Add the "FLAG_log_year_in_prefix"
use uint32 for --max-log-size
stdcxx: eliminate excessive use of std::string::c_str()
cmake: require at least gflags 2.2.2
Changed my Email ID
On Solaris, GetHostName() returns empty string
LogCleaner: avoid scanning logs too frequently
libglog.pc: Set Libs.private for static linking
cmake: enable custom prefix by default
simplify flags export
rename GOOGLE_GLOG_DLL_DECL to GLOG_EXPORT
cmake_package_config_generate: Fix CMake warnings with CMake 3.23
Tests: Respect TEST_TMPDIR, TMPDIR, TMP environmental variables
Add the logtostdout and colorlogtostdout flag to allow logging to stdout
Add clang-cl.exe to Bazel CI
Fix "'GLOG_EXPORT' macro redefined" on clang-cl
Fix namespace resolution issue in LOG_EVERY_T


(adam)
diff -r1.10 -r1.11 pkgsrc/devel/google-glog/Makefile
diff -r1.2 -r1.3 pkgsrc/devel/google-glog/PLIST
diff -r1.8 -r1.9 pkgsrc/devel/google-glog/distinfo

cvs diff -r1.10 -r1.11 pkgsrc/devel/google-glog/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/google-glog/Makefile 2022/03/27 13:41:06 1.10
+++ pkgsrc/devel/google-glog/Makefile 2023/03/03 09:59:58 1.11
@@ -1,34 +1,30 @@ @@ -1,34 +1,30 @@
1# $NetBSD: Makefile,v 1.10 2022/03/27 13:41:06 tnn Exp $ 1# $NetBSD: Makefile,v 1.11 2023/03/03 09:59:58 adam Exp $
2 2
3DISTNAME= glog-0.4.0 3DISTNAME= glog-0.6.0
4PKGNAME= google-${DISTNAME} 4PKGNAME= google-${DISTNAME}
5CATEGORIES= devel 5CATEGORIES= devel
6MASTER_SITES= ${MASTER_SITE_GITHUB:=google/} 6MASTER_SITES= ${MASTER_SITE_GITHUB:=google/}
7GITHUB_PROJECT= glog 7GITHUB_PROJECT= glog
8GITHUB_TAG= v${PKGVERSION_NOREV} 8GITHUB_TAG= v${PKGVERSION_NOREV}
9 9
10MAINTAINER= pkgsrc-users@NetBSD.org 10MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= https://github.com/google/glog/ 11HOMEPAGE= https://github.com/google/glog
12COMMENT= Application Level Logging library for C++ 12COMMENT= Application Level Logging library for C++
13LICENSE= modified-bsd 13LICENSE= modified-bsd
14 14
15GNU_CONFIGURE= yes 
16USE_LIBTOOL= yes 
17USE_TOOLS+= automake pkg-config 
18USE_LANGUAGES= c c++11 15USE_LANGUAGES= c c++11
 16USE_TOOLS+= pkg-config
19 17
20PKGCONFIG_OVERRIDE+= libglog.pc.in 18CMAKE_ARGS+= -DWITH_UNWIND=OFF
21 19
22BUILDLINK_TRANSFORM.SunOS+= rm:-pie 20BUILDLINK_TRANSFORM.SunOS+= rm:-pie
23 21
24.include "../../mk/bsd.prefs.mk" 22.include "../../mk/bsd.prefs.mk"
25 
26.if (${OPSYS} == "NetBSD" || ${OPSYS} == "FreeBSD") && exists(/usr/include/execinfo.h) 23.if (${OPSYS} == "NetBSD" || ${OPSYS} == "FreeBSD") && exists(/usr/include/execinfo.h)
27LIBS+= -lexecinfo 24LDFLAGS+= -lexecinfo
28.endif 25.endif
29 26
30pre-configure: 27.include "../../devel/cmake/build.mk"
31 cd ${WRKSRC} && ${SH} autogen.sh 28.include "../../devel/gflags/buildlink3.mk"
32 
33.include "../../devel/googletest/buildlink3.mk" 29.include "../../devel/googletest/buildlink3.mk"
34.include "../../mk/bsd.pkg.mk" 30.include "../../mk/bsd.pkg.mk"

cvs diff -r1.2 -r1.3 pkgsrc/devel/google-glog/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/google-glog/PLIST 2021/02/20 20:46:13 1.2
+++ pkgsrc/devel/google-glog/PLIST 2023/03/03 09:59:58 1.3
@@ -1,16 +1,17 @@ @@ -1,16 +1,17 @@
1@comment $NetBSD: PLIST,v 1.2 2021/02/20 20:46:13 ryoon Exp $ 1@comment $NetBSD: PLIST,v 1.3 2023/03/03 09:59:58 adam Exp $
 2include/glog/export.h
2include/glog/log_severity.h 3include/glog/log_severity.h
3include/glog/logging.h 4include/glog/logging.h
 5include/glog/platform.h
4include/glog/raw_logging.h 6include/glog/raw_logging.h
5include/glog/stl_logging.h 7include/glog/stl_logging.h
6include/glog/vlog_is_on.h 8include/glog/vlog_is_on.h
7lib/libglog.la 9lib/cmake/glog/glog-config-version.cmake
 10lib/cmake/glog/glog-config.cmake
 11lib/cmake/glog/glog-modules.cmake
 12lib/cmake/glog/glog-targets-noconfig.cmake
 13lib/cmake/glog/glog-targets.cmake
 14lib/libglog.so
 15lib/libglog.so.0.6.0
 16lib/libglog.so.1
8lib/pkgconfig/libglog.pc 17lib/pkgconfig/libglog.pc
9share/doc/glog-${PKGVERSION}/AUTHORS 
10share/doc/glog-${PKGVERSION}/COPYING 
11share/doc/glog-${PKGVERSION}/ChangeLog 
12share/doc/glog-${PKGVERSION}/INSTALL 
13share/doc/glog-${PKGVERSION}/README.md 
14share/doc/glog-${PKGVERSION}/README.windows 
15share/doc/glog-${PKGVERSION}/designstyle.css 
16share/doc/glog-${PKGVERSION}/glog.html 

cvs diff -r1.8 -r1.9 pkgsrc/devel/google-glog/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/google-glog/distinfo 2021/10/26 10:14:47 1.8
+++ pkgsrc/devel/google-glog/distinfo 2023/03/03 09:59:58 1.9
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.8 2021/10/26 10:14:47 nia Exp $ 1$NetBSD: distinfo,v 1.9 2023/03/03 09:59:58 adam Exp $
2 2
3BLAKE2s (glog-0.4.0.tar.gz) = b2f19edce18f97725df4a6929b2c93fa16955747c661d6a6264e2121ed7f0a4c 3BLAKE2s (glog-0.6.0.tar.gz) = a0acac39582645d921743be6dfc9263fb3d7aca5829e59b2815a9272f44b58b0
4SHA512 (glog-0.4.0.tar.gz) = b585f1819ade2075f6b61dc5aaca5c3f9d25601dba2bd08b6c49b96ac5f79db23c6b7f2042df003f7130497dd7241fcaa8b107d1f97385cb66ce52d3c554b176 4SHA512 (glog-0.6.0.tar.gz) = fd2c42583d0dd72c790a8cf888f328a64447c5fb9d99b2e2a3833d70c102cb0eb9ae874632c2732424cc86216c8a076a3e24b23a793eaddb5da8a1dc52ba9226
5Size (glog-0.4.0.tar.gz) = 200955 bytes 5Size (glog-0.6.0.tar.gz) = 193267 bytes