pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
utf8proc: Remove, used to update converters/utf8proc
Module Name: pkgsrc-wip
Committed By: Michael Baeuerle <micha%NetBSD.org@localhost>
Pushed By: micha
Date: Thu Jun 4 18:53:31 2020 +0200
Changeset: 639ddf58c8cb992154241fcd4bdca23649c34fe4
Modified Files:
Makefile
Removed Files:
utf8proc/COMMIT_MSG
utf8proc/DESCR
utf8proc/Makefile
utf8proc/PLIST
utf8proc/buildlink3.mk
utf8proc/distinfo
Log Message:
utf8proc: Remove, used to update converters/utf8proc
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=639ddf58c8cb992154241fcd4bdca23649c34fe4
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
Makefile | 1 -
utf8proc/COMMIT_MSG | 14 --------------
utf8proc/DESCR | 4 ----
utf8proc/Makefile | 49 -------------------------------------------------
utf8proc/PLIST | 4 ----
utf8proc/buildlink3.mk | 12 ------------
utf8proc/distinfo | 6 ------
7 files changed, 90 deletions(-)
diffs:
diff --git a/Makefile b/Makefile
index 1ac9d1b78c..75af488fe8 100644
--- a/Makefile
+++ b/Makefile
@@ -4837,7 +4837,6 @@ SUBDIR+= usbmuxd
SUBDIR+= uschedule
SUBDIR+= using-mpi
SUBDIR+= ussp-push
-SUBDIR+= utf8proc
SUBDIR+= util-linux
SUBDIR+= uzbl
SUBDIR+= uzbl-git
diff --git a/utf8proc/COMMIT_MSG b/utf8proc/COMMIT_MSG
deleted file mode 100644
index 837adae7b6..0000000000
--- a/utf8proc/COMMIT_MSG
+++ /dev/null
@@ -1,14 +0,0 @@
-converters/utf8proc: Update to 2.5.0nb1
-
-- Drop cmake
- Drive libtool directly (utf8proc can be build with a single compiler call).
- This removes the C++11 build dependency for cmake (C99 is now sufficient)
- and more build dependencies that are at least an order of magnitude larger
- than utf8proc itself.
-- Drop patch for cmake
-- Add support for pkg-config
- Install "libutf8proc.pc".
-- Bump PKGREVISION for additional installed files.
-- Take maintainership
-
-OK from minskim@
diff --git a/utf8proc/DESCR b/utf8proc/DESCR
deleted file mode 100644
index e681c39a08..0000000000
--- a/utf8proc/DESCR
+++ /dev/null
@@ -1,4 +0,0 @@
-utf8proc is a small, clean C library that provides Unicode
-normalization, case-folding, and other operations for data in the
-UTF-8 encoding (some of the underlying functions for UTF-32 are
-exported too).
diff --git a/utf8proc/Makefile b/utf8proc/Makefile
deleted file mode 100644
index 2dbc05cbae..0000000000
--- a/utf8proc/Makefile
+++ /dev/null
@@ -1,49 +0,0 @@
-# $NetBSD$
-
-DISTNAME= utf8proc-2.5.0
-PKGREVISION= 1
-CATEGORIES= converters
-MASTER_SITES= ${MASTER_SITE_GITHUB:=JuliaLang/}
-GITHUB_TAG= v${PKGVERSION_NOREV}
-
-MAINTAINER= micha%NetBSD.org@localhost
-HOMEPAGE= https://julialang.org/utf8proc/
-COMMENT= C library for processing Unicode data
-LICENSE= mit
-
-USE_LANGUAGES= c99
-USE_LIBTOOL= yes
-
-INSTALLATION_DIRS= include lib lib/pkgconfig
-
-# Use ABI version from CMakeLists.txt to stay compatible with cmake builds
-MAJOR= 2
-MINOR= 3
-PATCH= 2
-
-do-configure:
- cd ${WRKSRC} && ${SED} \
- -e 's#PREFIX#${PREFIX}#' \
- -e 's#LIBDIR#lib#' \
- -e 's#INCLUDEDIR#include#' \
- -e 's#VERSION#${MAJOR}.${MINOR}.${PATCH}#' \
- -e 's#Description:.*$$#Description: ${COMMENT}#' \
- libutf8proc.pc.in >libutf8proc.pc
-
-do-build:
- cd ${WRKSRC} && ${LIBTOOL} --tag=CC --mode=compile \
- ${CC} ${CPPFLAGS} ${CFLAGS} -c -o utf8proc.lo utf8proc.c
- cd ${WRKSRC} && ${LIBTOOL} --tag=CC --mode=link \
- ${CC} ${LDFLAGS} -o libutf8proc.la utf8proc.lo \
- -rpath ${PREFIX}/lib \
- -version-number ${MAJOR}:${MINOR}:${PATCH}
-
-do-install:
- cd ${WRKSRC} && ${LIBTOOL} --mode=install \
- ${INSTALL_LIB} libutf8proc.la ${DESTDIR}${PREFIX}/lib
- cd ${WRKSRC} && \
- ${INSTALL_DATA} utf8proc.h ${DESTDIR}${PREFIX}/include
- cd ${WRKSRC} && \
- ${INSTALL_DATA} libutf8proc.pc ${DESTDIR}${PREFIX}/lib/pkgconfig
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/utf8proc/PLIST b/utf8proc/PLIST
deleted file mode 100644
index 8de40cb114..0000000000
--- a/utf8proc/PLIST
+++ /dev/null
@@ -1,4 +0,0 @@
-@comment $NetBSD$
-include/utf8proc.h
-lib/libutf8proc.la
-lib/pkgconfig/libutf8proc.pc
diff --git a/utf8proc/buildlink3.mk b/utf8proc/buildlink3.mk
deleted file mode 100644
index 777c5feeea..0000000000
--- a/utf8proc/buildlink3.mk
+++ /dev/null
@@ -1,12 +0,0 @@
-# $NetBSD: buildlink3.mk,v 1.1 2018/04/30 19:31:47 minskim Exp $
-
-BUILDLINK_TREE+= utf8proc
-
-.if !defined(UTF8PROC_BUILDLINK3_MK)
-UTF8PROC_BUILDLINK3_MK:=
-
-BUILDLINK_API_DEPENDS.utf8proc+= utf8proc>=2.1.1
-BUILDLINK_PKGSRCDIR.utf8proc?= ../../converters/utf8proc
-.endif # UTF8PROC_BUILDLINK3_MK
-
-BUILDLINK_TREE+= -utf8proc
diff --git a/utf8proc/distinfo b/utf8proc/distinfo
deleted file mode 100644
index 71a27573e1..0000000000
--- a/utf8proc/distinfo
+++ /dev/null
@@ -1,6 +0,0 @@
-$NetBSD$
-
-SHA1 (utf8proc-2.5.0.tar.gz) = a868878257355456e08b5f21bc2ee6a164386865
-RMD160 (utf8proc-2.5.0.tar.gz) = 47d14e079f805d93e2896a0561e6cfb029de160e
-SHA512 (utf8proc-2.5.0.tar.gz) = 0c553faf4f3841c17c7aa4cce1e917b1585c430ac3f7f240ab98cbe01b9743f2074532e6f71faf3df030f5af00e483a3faf9716a67e6a4b1bb66a3de48308014
-Size (utf8proc-2.5.0.tar.gz) = 155485 bytes
Home |
Main Index |
Thread Index |
Old Index