pkgsrc-WIP-changes archive

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

cmark: Remove, imported to pkgsrc as textproc/cmark



Module Name:	pkgsrc-wip
Committed By:	Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By:	kamil
Date:		Sun Feb 28 14:36:57 2016 +0100
Changeset:	84d6ff624321edc86d2771023ff7ad70b8c50a61

Removed Files:
	cmark/DESCR
	cmark/Makefile
	cmark/PLIST
	cmark/distinfo
	cmark/patches/patch-man_CMakeLists.txt
	cmark/patches/patch-src_commonmark.c

Log Message:
cmark: Remove, imported to pkgsrc as textproc/cmark

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=84d6ff624321edc86d2771023ff7ad70b8c50a61

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

diffstat:
 cmark/DESCR                            |  8 --------
 cmark/Makefile                         | 32 --------------------------------
 cmark/PLIST                            | 11 -----------
 cmark/distinfo                         |  8 --------
 cmark/patches/patch-man_CMakeLists.txt | 22 ----------------------
 cmark/patches/patch-src_commonmark.c   | 19 -------------------
 6 files changed, 100 deletions(-)

diffs:
diff --git a/cmark/DESCR b/cmark/DESCR
deleted file mode 100644
index 0f304ed..0000000
--- a/cmark/DESCR
+++ /dev/null
@@ -1,8 +0,0 @@
-cmark is the C reference implementation of CommonMark, a rationalized version
-of Markdown syntax with a spec.
-
-It provides a shared library (libcmark) with functions for parsing CommonMark
-documents to an abstract syntax tree (AST), manipulating the AST, and rendering
-the document to HTML, groff man, LaTeX, CommonMark, or an XML representation of
-the AST. It also provides a command-line program (cmark) for parsing and
-rendering CommonMark documents.
diff --git a/cmark/Makefile b/cmark/Makefile
deleted file mode 100644
index 0b90867..0000000
--- a/cmark/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# $NetBSD$
-
-DISTNAME=	cmark-0.24.1
-CATEGORIES=	textproc
-MASTER_SITES=	${MASTER_SITE_GITHUB:=jgm/}
-
-MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=	${MASTER_SITE_GITHUB:=jgm/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++
-
-PYTHON_FOR_BUILD_ONLY=	yes
-
-PYTHON_VERSIONS_INCOMPATIBLE=	27
-
-PKGCONFIG_OVERRIDE+=	src/libcmark.pc.in
-
-CONFIGURE_DIRS=		${WRKDIR}/build
-CMAKE_ARG_PATH=		${WRKSRC}
-
-TEST_ENV+=	LD_LIBRARY_PATH=${WRKDIR}/build/src
-TEST_TARGET=	test
-
-post-extract:
-	${RUN} mkdir -p ${WRKDIR}/build
-
-.include "../../lang/python/tool.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/cmark/PLIST b/cmark/PLIST
deleted file mode 100644
index 158eaa0..0000000
--- a/cmark/PLIST
+++ /dev/null
@@ -1,11 +0,0 @@
-@comment $NetBSD$
-bin/cmark
-include/cmark.h
-include/cmark_export.h
-include/cmark_version.h
-lib/libcmark.a
-lib/libcmark.so
-lib/libcmark.so.${PKGVERSION}
-lib/pkgconfig/libcmark.pc
-man/man1/cmark.1
-man/man3/cmark.3
diff --git a/cmark/distinfo b/cmark/distinfo
deleted file mode 100644
index ae01ee7..0000000
--- a/cmark/distinfo
+++ /dev/null
@@ -1,8 +0,0 @@
-$NetBSD$
-
-SHA1 (cmark-0.24.1.tar.gz) = bfd17ef9cae14a74a7b2d1c3f171ced3ce9a5c8a
-RMD160 (cmark-0.24.1.tar.gz) = 70dbf24b47c9f9b8b4c8e2d55bcfa92d636056a6
-SHA512 (cmark-0.24.1.tar.gz) = ad6381b0a876472d85fa68e538caeebe3ee2f042c7cd479da1e025164f1ada7ee25ccbdb2d97cc2198de8c903950ba1648f39cef868f9c4f3ccd37db3c9c33b9
-Size (cmark-0.24.1.tar.gz) = 205568 bytes
-SHA1 (patch-man_CMakeLists.txt) = 2b6e1ce1a7a95fb026d9344628be7b8583e6378d
-SHA1 (patch-src_commonmark.c) = 1b60ecbeba5fa173264ff765730e66bde78a04c7
diff --git a/cmark/patches/patch-man_CMakeLists.txt b/cmark/patches/patch-man_CMakeLists.txt
deleted file mode 100644
index 654d7d1..0000000
--- a/cmark/patches/patch-man_CMakeLists.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD$
-
-Patch accepted upstream.
-
-Fix installation of man-pages.
-
---- man/CMakeLists.txt.orig	2016-01-18 05:53:29.000000000 +0000
-+++ man/CMakeLists.txt
-@@ -1,8 +1,10 @@
- if (NOT MSVC)
-+
-+include(GNUInstallDirs)
-+
-   install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/man1/cmark.1
--    DESTINATION share/man/man1)
-+    DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
- 
-   install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/man3/cmark.3
--    DESTINATION share/man/man3)
-+    DESTINATION ${CMAKE_INSTALL_MANDIR}/man3)
- endif(NOT MSVC)
--
diff --git a/cmark/patches/patch-src_commonmark.c b/cmark/patches/patch-src_commonmark.c
deleted file mode 100644
index cdd1b2d..0000000
--- a/cmark/patches/patch-src_commonmark.c
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD$
-
-Patch accepted upstream.
-
-Fix usage of ctype(3) functions.
-
---- src/commonmark.c.orig	2016-01-18 05:53:29.000000000 +0000
-+++ src/commonmark.c
-@@ -270,8 +270,8 @@ static int S_render_node(cmark_renderer 
-     // begin or end with a blank line, and code isn't
-     // first thing in a list item
-     if (info_len == 0 &&
--        (code_len > 2 && !isspace(code[0]) &&
--         !(isspace(code[code_len - 1]) && isspace(code[code_len - 2]))) &&
-+        (code_len > 2 && !isspace((unsigned char)code[0]) &&
-+         !(isspace((unsigned char)code[code_len - 1]) && isspace((unsigned char)code[code_len - 2]))) &&
-         !(node->prev == NULL && node->parent &&
-           node->parent->type == CMARK_NODE_ITEM)) {
-       LIT("    ");


Home | Main Index | Thread Index | Old Index