Removed pushed ports. Added libxml2
This commit is contained in:
66
textproc/libxml2/Makefile
Normal file
66
textproc/libxml2/Makefile
Normal file
@ -0,0 +1,66 @@
|
||||
PORTNAME= libxml2
|
||||
DISTVERSION= 2.11.9
|
||||
PORTREVISION?= 0
|
||||
CATEGORIES?= textproc gnome
|
||||
MASTER_SITES= GNOME
|
||||
DIST_SUBDIR= gnome
|
||||
|
||||
MAINTAINER= desktop@FreeBSD.org
|
||||
COMMENT?= XML parser library for GNOME
|
||||
WWW= http://xmlsoft.org/
|
||||
|
||||
LICENSE= MIT
|
||||
|
||||
USES+= cmake:testing cpe iconv localbase:ldflags pathfix \
|
||||
pkgconfig tar:xz
|
||||
CPE_VENDOR= xmlsoft
|
||||
USE_LDCONFIG= yes
|
||||
# Don't build with Python support unless requested
|
||||
CMAKE_${LIBXML2_SLAVE:DON:UOFF}=LIBXML2_WITH_PYTHON
|
||||
|
||||
# Many symbols in the linker version script libxml2.syms are only defined when
|
||||
# --with-xptr-locs is enabled at configure time. Suppress errors with lld >= 17
|
||||
# due to these undefined symbols.
|
||||
LDFLAGS+= -Wl,--undefined-version
|
||||
|
||||
CMAKE_TESTING_ON= LIBXML2_WITH_TESTS
|
||||
|
||||
CMAKE_ARGS= -DCMAKE_INSTALL_SYSCONFDIR=share
|
||||
CMAKE_OFF+= LIBXML2_WITH_TESTS
|
||||
|
||||
PLIST_SUB+= LIBVERSION=${DISTVERSION}
|
||||
|
||||
OPTIONS_DEFINE= DOCS ICU MEM_DEBUG READLINE THREAD_ALLOC
|
||||
OPTIONS_DEFAULT= READLINE
|
||||
OPTIONS_SUB= yes
|
||||
|
||||
MEM_DEBUG_DESC= Memory debugging (DEVELOPERS ONLY!)
|
||||
READLINE_DESC= History for xmllint
|
||||
THREAD_ALLOC_DESC= Per-thread memory (DEVELOPERS ONLY!)
|
||||
|
||||
ICU_LIB_DEPENDS= libicudata.so:devel/icu
|
||||
ICU_CMAKE_BOOL= LIBXML2_WITH_ICU
|
||||
MEM_DEBUG_CONFIGURE_WITH= LIBXML2_WITH_MEM_DEBUG
|
||||
READLINE_LIB_DEPENDS= libreadline.so:devel/readline
|
||||
READLINE_CMAKE_OFF= -DHAVE_LIBHISTORY=false \
|
||||
-DHAVE_LIBREADLINE=false
|
||||
THREAD_ALLOC_CMAKE_BOOL= LIBXML2_WITH_THREAD_ALLOC
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e \
|
||||
's|/etc/xml/catalog|${LOCALBASE}/share/xml/catalog|g; \
|
||||
s|/etc/sgml/catalog|${LOCALBASE}/share/sgml/catalog|g' \
|
||||
${WRKSRC}/doc/xmllint.1
|
||||
|
||||
post-install:
|
||||
.if defined(LIBXML2_SLAVE)
|
||||
${STRIP_CMD} ${STAGEDIR}${PYTHON_LIBDIR}/site-packages/libxml2mod.so
|
||||
${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \
|
||||
-f -d ${PYTHONPREFIX_SITELIBDIR} \
|
||||
${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
|
||||
${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \
|
||||
-f -d ${PYTHONPREFIX_SITELIBDIR} \
|
||||
${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
textproc/libxml2/distinfo
Normal file
3
textproc/libxml2/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1725749707
|
||||
SHA256 (gnome/libxml2-2.11.9.tar.xz) = 780157a1efdb57188ec474dca87acaee67a3a839c2525b2214d318228451809f
|
||||
SIZE (gnome/libxml2-2.11.9.tar.xz) = 2627500
|
||||
33
textproc/libxml2/files/patch-CMakeLists.txt
Normal file
33
textproc/libxml2/files/patch-CMakeLists.txt
Normal file
@ -0,0 +1,33 @@
|
||||
--- CMakeLists.txt.orig 2023-08-11 18:59:11 UTC
|
||||
+++ CMakeLists.txt
|
||||
@@ -395,13 +395,17 @@ if(LIBXML2_WITH_ICU)
|
||||
if(WIN32)
|
||||
set(ICU_LIBS "-licudt -licuin -licuuc")
|
||||
else()
|
||||
- set(ICU_LIBS "-licudata -licui18n -licuuc")
|
||||
+ set(ICU_LIBS_DIR "${ICU_INCLUDE_DIRS}")
|
||||
+ STRING(REGEX REPLACE "include" "lib" ICU_LIBS_DIR ${ICU_LIBS_DIR})
|
||||
+ set(ICU_LIBS "-L${ICU_LIBS_DIR} -licudata -licui18n -licuuc")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(LIBXML2_WITH_LZMA)
|
||||
target_link_libraries(LibXml2 PRIVATE LibLZMA::LibLZMA)
|
||||
- set(LZMA_LIBS "-llzma")
|
||||
+ set(LZMA_LIBS_DIR "${LIBLZMA_INCLUDE_DIRS}")
|
||||
+ STRING(REGEX REPLACE "include" "lib" LZMA_LIBS_DIR ${LZMA_LIBS_DIR})
|
||||
+ set(LZMA_LIBS "-L${LZMA_LIBS_DIR} -llzma")
|
||||
endif()
|
||||
|
||||
if(LIBXML2_WITH_THREADS)
|
||||
@@ -411,7 +415,9 @@ endif()
|
||||
|
||||
if(LIBXML2_WITH_ZLIB)
|
||||
target_link_libraries(LibXml2 PRIVATE ZLIB::ZLIB)
|
||||
- set(Z_LIBS "-lz")
|
||||
+ set(Z_LIBS_DIR "${ZLIB_INCLUDE_DIRS}")
|
||||
+ STRING(REGEX REPLACE "include" "lib" Z_LIBS_DIR ${Z_LIBS_DIR})
|
||||
+ set(Z_LIBS "-L${Z_LIBS_DIR} -lz")
|
||||
endif()
|
||||
|
||||
set_target_properties(
|
||||
25
textproc/libxml2/files/patch-uri.c
Normal file
25
textproc/libxml2/files/patch-uri.c
Normal file
@ -0,0 +1,25 @@
|
||||
Revert the following commit, it makes the freebsd doc chain fail.
|
||||
|
||||
From 8eb55d782a2b9afacc7938694891cc6fad7b42a5 Mon Sep 17 00:00:00 2001
|
||||
From: Dennis Filder <d.filder@web.de>
|
||||
Date: Fri, 13 Jun 2014 14:56:14 +0800
|
||||
Subject: xmlSaveUri() incorrectly recomposes URIs with rootless paths
|
||||
|
||||
For https://bugzilla.gnome.org/show_bug.cgi?id=731063
|
||||
|
||||
xmlSaveUri() of libxml2 (snapshot 2014-05-31 and earlier) returns
|
||||
bogus values when called with URIs that have rootless paths
|
||||
(e.g. "urx:b:b" becomes "urx://b%3Ab" where "urx:b%3Ab" would be
|
||||
correct)
|
||||
|
||||
--- uri.c.orig 2019-10-22 18:46:01 UTC
|
||||
+++ uri.c
|
||||
@@ -1201,6 +1201,8 @@ xmlSaveUri(xmlURIPtr uri) {
|
||||
if (temp == NULL) goto mem_error;
|
||||
ret = temp;
|
||||
}
|
||||
+ ret[len++] = '/';
|
||||
+ ret[len++] = '/';
|
||||
}
|
||||
if (uri->path != NULL) {
|
||||
p = uri->path;
|
||||
4
textproc/libxml2/pkg-descr
Normal file
4
textproc/libxml2/pkg-descr
Normal file
@ -0,0 +1,4 @@
|
||||
Libxml2 is the XML C parser and toolkit developed for the Gnome project (but
|
||||
usable outside of the Gnome platform). XML itself is a metalanguage to design
|
||||
markup languages, i.e. text language where semantic and structure are added to
|
||||
the content using extra "markup" information enclosed between angle brackets.
|
||||
182
textproc/libxml2/pkg-plist
Normal file
182
textproc/libxml2/pkg-plist
Normal file
@ -0,0 +1,182 @@
|
||||
bin/xml2-config
|
||||
bin/xmlcatalog
|
||||
bin/xmllint
|
||||
include/libxml2/libxml/HTMLparser.h
|
||||
include/libxml2/libxml/HTMLtree.h
|
||||
include/libxml2/libxml/SAX.h
|
||||
include/libxml2/libxml/SAX2.h
|
||||
include/libxml2/libxml/c14n.h
|
||||
include/libxml2/libxml/catalog.h
|
||||
include/libxml2/libxml/chvalid.h
|
||||
include/libxml2/libxml/debugXML.h
|
||||
include/libxml2/libxml/dict.h
|
||||
include/libxml2/libxml/encoding.h
|
||||
include/libxml2/libxml/entities.h
|
||||
include/libxml2/libxml/globals.h
|
||||
include/libxml2/libxml/hash.h
|
||||
include/libxml2/libxml/list.h
|
||||
include/libxml2/libxml/nanoftp.h
|
||||
include/libxml2/libxml/nanohttp.h
|
||||
include/libxml2/libxml/parser.h
|
||||
include/libxml2/libxml/parserInternals.h
|
||||
include/libxml2/libxml/pattern.h
|
||||
include/libxml2/libxml/relaxng.h
|
||||
include/libxml2/libxml/schemasInternals.h
|
||||
include/libxml2/libxml/schematron.h
|
||||
include/libxml2/libxml/threads.h
|
||||
include/libxml2/libxml/tree.h
|
||||
include/libxml2/libxml/uri.h
|
||||
include/libxml2/libxml/valid.h
|
||||
include/libxml2/libxml/xinclude.h
|
||||
include/libxml2/libxml/xlink.h
|
||||
include/libxml2/libxml/xmlIO.h
|
||||
include/libxml2/libxml/xmlautomata.h
|
||||
include/libxml2/libxml/xmlerror.h
|
||||
include/libxml2/libxml/xmlexports.h
|
||||
include/libxml2/libxml/xmlmemory.h
|
||||
include/libxml2/libxml/xmlmodule.h
|
||||
include/libxml2/libxml/xmlreader.h
|
||||
include/libxml2/libxml/xmlregexp.h
|
||||
include/libxml2/libxml/xmlsave.h
|
||||
include/libxml2/libxml/xmlschemas.h
|
||||
include/libxml2/libxml/xmlschemastypes.h
|
||||
include/libxml2/libxml/xmlstring.h
|
||||
include/libxml2/libxml/xmlunicode.h
|
||||
include/libxml2/libxml/xmlversion.h
|
||||
include/libxml2/libxml/xmlwriter.h
|
||||
include/libxml2/libxml/xpath.h
|
||||
include/libxml2/libxml/xpathInternals.h
|
||||
include/libxml2/libxml/xpointer.h
|
||||
lib/cmake/libxml2-%%LIBVERSION%%/libxml2-config-version.cmake
|
||||
lib/cmake/libxml2-%%LIBVERSION%%/libxml2-config.cmake
|
||||
lib/cmake/libxml2-%%LIBVERSION%%/libxml2-export-%%CMAKE_BUILD_TYPE%%.cmake
|
||||
lib/cmake/libxml2-%%LIBVERSION%%/libxml2-export.cmake
|
||||
lib/libxml2.so
|
||||
lib/libxml2.so.2
|
||||
lib/libxml2.so.%%LIBVERSION%%
|
||||
libdata/pkgconfig/libxml-2.0.pc
|
||||
share/man/man1/xml2-config.1.gz
|
||||
share/man/man1/xmlcatalog.1.gz
|
||||
share/man/man1/xmllint.1.gz
|
||||
share/aclocal/libxml.m4
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/general.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/home.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/index.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/left.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-HTMLparser.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-HTMLtree.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-SAX.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-SAX2.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-c14n.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-catalog.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-chvalid.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-debugXML.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-dict.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-encoding.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-entities.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-globals.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-hash.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-list.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-nanoftp.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-nanohttp.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-parser.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-parserInternals.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-pattern.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-relaxng.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-schemasInternals.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-schematron.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-threads.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-tree.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-uri.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-valid.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xinclude.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xlink.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlIO.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlautomata.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlerror.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlexports.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlmemory.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlmodule.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlreader.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlregexp.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlsave.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlschemas.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlschemastypes.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlstring.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlunicode.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlversion.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xmlwriter.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xpath.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xpathInternals.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2-xpointer.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/libxml2.devhelp2
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/right.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/style.css
|
||||
%%PORTDOCS%%%%DOCSDIR%%/devhelp/up.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/index.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/io1.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/io2.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/parse1.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/parse2.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/parse3.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/parse4.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/reader1.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/reader2.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/reader3.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/reader4.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/testWriter.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/tree1.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/tree2.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/xpath1.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/examples/xpath2.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/apa.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/apb.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/apc.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/apd.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/ape.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/apf.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/apg.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/aph.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/api.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/ar01s02.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/ar01s03.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/ar01s04.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/ar01s05.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/ar01s06.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/ar01s07.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/ar01s08.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/ar01s09.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/blank.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/callouts/1.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/callouts/10.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/callouts/2.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/callouts/3.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/callouts/4.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/callouts/5.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/callouts/6.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/callouts/7.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/callouts/8.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/callouts/9.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/caution.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/draft.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/home.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/important.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/next.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/note.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/prev.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/tip.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/toc-blank.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/toc-minus.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/toc-plus.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/up.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/images/warning.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/includeaddattribute.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/includeaddkeyword.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/includeconvert.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/includegetattribute.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/includekeyword.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/includexpath.c
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/index.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial/ix01.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/xmlcatalog.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/xmllint.html
|
||||
Reference in New Issue
Block a user