pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/textproc/cmark



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Jan 18 17:11:38 UTC 2018

Modified Files:
        pkgsrc/textproc/cmark: Makefile distinfo
Added Files:
        pkgsrc/textproc/cmark: buildlink3.mk

Log Message:
cmark: updated to 0.28.3

[0.28.3]
* Include GNUInstallDirs in src/CMakeLists.txt.
  This fixes build problems on some cmake versions.

[0.28.2]
* Fixed regression in install dest for static library.
  Due to a mistake, 0.28.1 installed libcmark.a into include/.

[0.28.1]
* --smart: open quote can never occur right after ] or ).
* Fix quadratic behavior in finalize (Vicent Marti).
* Don't use CMAKE_INSTALL_LIBDIR to create libcmark.pc.
  This wasn't getting set in processing libcmark.pc.in, and we
  were getting the wrong entry in libcmark.pc.
  The new approach sets an internal libdir variable to
  lib${LIB_SUFFIX}.  This variable is used both to set the
  install destination and in the libcmark.pc.in template.
* Update README.md, replace make astyle with make format


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/textproc/cmark/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/cmark/buildlink3.mk
cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/cmark/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/cmark/Makefile
diff -u pkgsrc/textproc/cmark/Makefile:1.5 pkgsrc/textproc/cmark/Makefile:1.6
--- pkgsrc/textproc/cmark/Makefile:1.5  Tue May 23 10:37:20 2017
+++ pkgsrc/textproc/cmark/Makefile      Thu Jan 18 17:11:38 2018
@@ -1,26 +1,24 @@
-# $NetBSD: Makefile,v 1.5 2017/05/23 10:37:20 mef Exp $
+# $NetBSD: Makefile,v 1.6 2018/01/18 17:11:38 adam Exp $
 
-DISTNAME=      cmark-0.27.1
+DISTNAME=      cmark-0.28.3
 CATEGORIES=    textproc
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=jgm/}
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/jgm/cmark/
+HOMEPAGE=      https://github.com/commonmark/cmark
 COMMENT=       CommonMark parsing and rendering library and program in C
 LICENSE=       2-clause-bsd
 
-USE_CMAKE=     yes
-USE_TOOLS+=    pkg-config
-USE_LANGUAGES= c c++
+USE_CMAKE=             yes
+USE_LANGUAGES=         c c++
+USE_TOOLS+=            pkg-config
+CONFIGURE_DIRS=                build
+CMAKE_ARG_PATH=                ${WRKSRC}
+PKGCONFIG_OVERRIDE+=   src/libcmark.pc.in
 
 PYTHON_FOR_BUILD_ONLY= yes
 
-PYTHON_VERSIONS_INCOMPATIBLE+= 27
-
-PKGCONFIG_OVERRIDE+=   src/libcmark.pc.in
-
-CONFIGURE_DIRS=                build
-CMAKE_ARG_PATH=                ${WRKSRC}
+PYTHON_VERSIONS_INCOMPATIBLE=  27
 
 TEST_ENV+=     LD_LIBRARY_PATH=${WRKSRC}/build/src
 TEST_TARGET=   test

Index: pkgsrc/textproc/cmark/distinfo
diff -u pkgsrc/textproc/cmark/distinfo:1.3 pkgsrc/textproc/cmark/distinfo:1.4
--- pkgsrc/textproc/cmark/distinfo:1.3  Tue May 23 10:37:20 2017
+++ pkgsrc/textproc/cmark/distinfo      Thu Jan 18 17:11:38 2018
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2017/05/23 10:37:20 mef Exp $
+$NetBSD: distinfo,v 1.4 2018/01/18 17:11:38 adam Exp $
 
-SHA1 (cmark-0.27.1.tar.gz) = 210e3e692ee5edb21a358463ed94caff23b98709
-RMD160 (cmark-0.27.1.tar.gz) = a3dc0b2437e69cb4f0f0e14f9b24ab29bd215c5c
-SHA512 (cmark-0.27.1.tar.gz) = a7797c9dfd54e20499666e37ba67b1902ef0d40867e7b941c1cfc93d4fbe935fb073be69aecc9f9f8c8e9524049037771635b45e071af981613431f3fbbe7b41
-Size (cmark-0.27.1.tar.gz) = 215574 bytes
+SHA1 (cmark-0.28.3.tar.gz) = b133cae62bdb0a97409a4d6bd1155057f8f3079b
+RMD160 (cmark-0.28.3.tar.gz) = 46f2cf107eee4d2893f7845106b62e1a60b32298
+SHA512 (cmark-0.28.3.tar.gz) = 409105a3228a8ae22ba6acf95cd99bc9a2c20f8603aa0e803a33172eb6ef53f80f8f0262d2258b77f9fd6e1f2e9017a6c906b88f761e053c09ef88c9ffab7d29
+Size (cmark-0.28.3.tar.gz) = 229391 bytes

Added files:

Index: pkgsrc/textproc/cmark/buildlink3.mk
diff -u /dev/null pkgsrc/textproc/cmark/buildlink3.mk:1.1
--- /dev/null   Thu Jan 18 17:11:38 2018
+++ pkgsrc/textproc/cmark/buildlink3.mk Thu Jan 18 17:11:38 2018
@@ -0,0 +1,12 @@
+# $NetBSD: buildlink3.mk,v 1.1 2018/01/18 17:11:38 adam Exp $
+
+BUILDLINK_TREE+=       cmark
+
+.if !defined(CMARK_BUILDLINK3_MK)
+CMARK_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.cmark+=  cmark>=0.28.3
+BUILDLINK_PKGSRCDIR.cmark?=    ../../textproc/cmark
+.endif # CMARK_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -cmark



Home | Main Index | Thread Index | Old Index