summaryrefslogtreecommitdiff
path: root/textproc/syck
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/syck')
-rw-r--r--textproc/syck/Makefile24
-rw-r--r--textproc/syck/distinfo2
-rw-r--r--textproc/syck/files/patch-lib_gram.y22
-rw-r--r--textproc/syck/files/patch-lib_syck.h11
-rw-r--r--textproc/syck/files/patch-lib_token.c34
-rw-r--r--textproc/syck/pkg-descr6
-rw-r--r--textproc/syck/pkg-plist3
7 files changed, 0 insertions, 102 deletions
diff --git a/textproc/syck/Makefile b/textproc/syck/Makefile
deleted file mode 100644
index 89c529376c8f..000000000000
--- a/textproc/syck/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-PORTNAME= syck
-PORTVERSION= 0.70
-CATEGORIES= textproc devel
-MASTER_SITES= GHC
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Library for reading and writing YAML 1.0
-WWW= http://wiki.github.com/indeyets/syck
-
-BROKEN= Unfetchable
-DEPRECATED= Unfetchable, no response from upstream in a year
-EXPIRATION_DATE=2025-04-30
-
-USES= bison
-
-USE_GITHUB= yes
-GH_ACCOUNT= indeyets
-
-GNU_CONFIGURE= yes
-MAKE_JOBS_UNSAFE= yes
-
-CFLAGS+= -fPIC
-
-.include <bsd.port.mk>
diff --git a/textproc/syck/distinfo b/textproc/syck/distinfo
deleted file mode 100644
index 56c2e8b6dbd5..000000000000
--- a/textproc/syck/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (syck-0.70.tar.gz) = 4c94c472ee8314e0d76eb2cca84f6029dc8fc58bfbc47748d50dcb289fda094e
-SIZE (syck-0.70.tar.gz) = 401917
diff --git a/textproc/syck/files/patch-lib_gram.y b/textproc/syck/files/patch-lib_gram.y
deleted file mode 100644
index 5664bcd94686..000000000000
--- a/textproc/syck/files/patch-lib_gram.y
+++ /dev/null
@@ -1,22 +0,0 @@
---- lib/gram.y.orig 2013-03-14 21:31:55.000000000 +0800
-+++ lib/gram.y 2013-03-14 21:32:31.000000000 +0800
-@@ -9,7 +9,8 @@
-
- %start doc
- %pure-parser
--
-+%parse-param {void* parser}
-+%lex-param {void* parser}
-
- %{
-
-@@ -24,9 +25,6 @@
-
- void apply_seq_in_map( SyckParser *parser, SyckNode *n );
-
--#define YYPARSE_PARAM parser
--#define YYLEX_PARAM parser
--
- #define NULL_NODE(parser, node) \
- SyckNode *node = syck_new_str( "", scalar_plain ); \
- if ( ((SyckParser *)parser)->taguri_expansion == 1 ) \
diff --git a/textproc/syck/files/patch-lib_syck.h b/textproc/syck/files/patch-lib_syck.h
deleted file mode 100644
index 43ce75290936..000000000000
--- a/textproc/syck/files/patch-lib_syck.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- lib/syck.h.orig 2013-03-14 21:32:03.000000000 +0800
-+++ lib/syck.h 2013-03-14 21:32:45.000000000 +0800
-@@ -467,7 +467,7 @@
- /*
- * Lexer prototypes
- */
--void syckerror( const char * );
-+void syckerror( void *, const char * );
- int syckparse( void * );
-
- #if defined(__cplusplus)
diff --git a/textproc/syck/files/patch-lib_token.c b/textproc/syck/files/patch-lib_token.c
deleted file mode 100644
index 83d31be8d93a..000000000000
--- a/textproc/syck/files/patch-lib_token.c
+++ /dev/null
@@ -1,34 +0,0 @@
---- lib/token.c.orig 2013-03-14 21:32:08.000000000 +0800
-+++ lib/token.c 2013-03-14 21:33:14.000000000 +0800
-@@ -200,7 +200,7 @@
- { \
- if ( *indent == '\t' ) \
- { \
-- syckerror("TAB found in your indentation, please remove"); \
-+ syckerror(0, "TAB found in your indentation, please remove"); \
- return 0; \
- } \
- else if ( is_newline( ++indent ) ) \
-@@ -266,11 +266,11 @@
- return sycklex_yaml_utf8( sycklval, parser );
-
- case syck_yaml_utf16:
-- syckerror( "UTF-16 is not currently supported in Syck.\nPlease contribute code to help this happen!" );
-+ syckerror( 0, "UTF-16 is not currently supported in Syck.\nPlease contribute code to help this happen!" );
- break;
-
- case syck_yaml_utf32:
-- syckerror( "UTF-32 is not currently supported in Syck.\nPlease contribute code to help this happen!" );
-+ syckerror( 0, "UTF-32 is not currently supported in Syck.\nPlease contribute code to help this happen!" );
- break;
-
- case syck_bytecode_utf8:
-@@ -2758,7 +2758,7 @@
- }
-
- void
--syckerror( const char *msg )
-+syckerror( void * parser, const char *msg )
- {
- if ( syck_parser_ptr->error_handler == NULL )
- syck_parser_ptr->error_handler = syck_default_error_handler;
diff --git a/textproc/syck/pkg-descr b/textproc/syck/pkg-descr
deleted file mode 100644
index 5ff4ae5a5c7e..000000000000
--- a/textproc/syck/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-Syck is an extension for reading and writing YAML swiftly in popular
-scripting languages. As Syck loads the YAML, it stores the data
-directly in your language's symbol table. This means speed. This
-means power. This means Do not disturb Syck because it is so focused
-on the task at hand that it will slay you mortally if you get in its
-way.
diff --git a/textproc/syck/pkg-plist b/textproc/syck/pkg-plist
deleted file mode 100644
index 9ecb1bfa671f..000000000000
--- a/textproc/syck/pkg-plist
+++ /dev/null
@@ -1,3 +0,0 @@
-include/syck.h
-include/syck_st.h
-lib/libsyck.a