Andreas Wacknitz
2022-01-17 f80ed5e262b3a3678740934663f6f1a11aaacef4
flexi-streams: update to 1.0.19

4 files modified
58 ■■■■ changed files
components/common-lisp/flexi-streams/Makefile 20 ●●●● patch | view | raw | blame | history
components/common-lisp/flexi-streams/flexi-streams.p5m 26 ●●●● patch | view | raw | blame | history
components/common-lisp/flexi-streams/manifests/sample-manifest.p5m 11 ●●●● patch | view | raw | blame | history
components/common-lisp/flexi-streams/pkg5 1 ●●●● patch | view | raw | blame | history
components/common-lisp/flexi-streams/Makefile
@@ -15,17 +15,17 @@
include ../../../make-rules/shared-macros.mk
COMPONENT_NAME=        flexi-streams
COMPONENT_VERSION=    1.0.15
COMPONENT_PROJECT_URL=    http://weitz.de/flexi-streams/
COMPONENT_FMRI=        library/common-lisp/flexi-streams
COMPONENT_SRC=        $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE=    $(COMPONENT_NAME).tar.gz
COMPONENT_ARCHIVE_HASH=    \
    sha256:f70c76e1724978100e26d9e0e0a0844939cde084b0d7f5623f1adbc8cb187d7e
COMPONENT_ARCHIVE_URL=    http://weitz.de/files/$(COMPONENT_ARCHIVE)
COMPONENT_LICENSE=    BSD-style
COMPONENT_LICENSE_FILE=    $(COMPONENT_NAME).license
COMPONENT_VERSION=    1.0.19
COMPONENT_SUMMARY=    FLEXI-STREAMS implements "virtual" bivalent streams
COMPONENT_PROJECT_URL=    http://weitz.de/flexi-streams/
COMPONENT_SRC=        $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE=    $(COMPONENT_SRC).tar.gz
COMPONENT_ARCHIVE_HASH= sha256:5e0d4cfa66496ec0ddd501de1d4c19c1d99232ee601d82dce9ef4585f2b47b29
COMPONENT_ARCHIVE_URL=    https://github.com/edicl/flexi-streams/archive/refs/tags/v$(COMPONENT_VERSION).tar.gz
COMPONENT_FMRI=
COMPONENT_CLASSIFICATION=    Development/Other Languages
COMPONENT_FMRI=        library/common-lisp/flexi-streams
COMPONENT_LICENSE=    BSD-style
include ../../../make-rules/prep.mk
include ../../../make-rules/common-lisp.mk
components/common-lisp/flexi-streams/flexi-streams.p5m
@@ -1,10 +1,11 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"). You may
# only use this file in accordance with the terms of the CDDL.
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
@@ -17,25 +18,21 @@
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
set name=info.classification value="org.opensolaris.category.2008:Development/Other Languages"
set name=info.classification value="$(COMPONENT_CLASSIFICATION)"
license $(COMPONENT_LICENSE_FILE) license='$(COMPONENT_LICENSE)'
depend fmri=library/common-lisp/trivial-gray-streams type=require
dir  path=usr
dir  path=usr/share
dir  path=usr/share/common-lisp
dir  path=usr/share/common-lisp/source
dir  path=usr/share/common-lisp/source/flexi-streams
file path=usr/share/common-lisp/source/flexi-streams/CHANGELOG
file path=usr/share/common-lisp/source/flexi-streams/README.md
file path=usr/share/common-lisp/source/flexi-streams/ascii.lisp
file path=usr/share/common-lisp/source/flexi-streams/code-pages.lisp
file path=usr/share/common-lisp/source/flexi-streams/conditions.lisp
file path=usr/share/common-lisp/source/flexi-streams/decode.lisp
dir  path=usr/share/common-lisp/source/flexi-streams/doc
file path=usr/share/common-lisp/source/flexi-streams/doc/foo.txt
file path=usr/share/common-lisp/source/flexi-streams/doc/index.html
file path=usr/share/common-lisp/source/flexi-streams/docs/foo.txt
file path=usr/share/common-lisp/source/flexi-streams/docs/index.html
file path=usr/share/common-lisp/source/flexi-streams/enc-cn-tbl.lisp
file path=usr/share/common-lisp/source/flexi-streams/encode.lisp
file path=usr/share/common-lisp/source/flexi-streams/external-format.lisp
file path=usr/share/common-lisp/source/flexi-streams/flexi-streams.asd
@@ -52,7 +49,6 @@
file path=usr/share/common-lisp/source/flexi-streams/specials.lisp
file path=usr/share/common-lisp/source/flexi-streams/stream.lisp
file path=usr/share/common-lisp/source/flexi-streams/strings.lisp
dir  path=usr/share/common-lisp/source/flexi-streams/test
file path=usr/share/common-lisp/source/flexi-streams/test/README
file path=usr/share/common-lisp/source/flexi-streams/test/hebrew_latin8_cr.txt
file path=usr/share/common-lisp/source/flexi-streams/test/hebrew_latin8_crlf.txt
@@ -98,7 +94,9 @@
file path=usr/share/common-lisp/source/flexi-streams/test/unicode_demo_utf8_cr.txt
file path=usr/share/common-lisp/source/flexi-streams/test/unicode_demo_utf8_crlf.txt
file path=usr/share/common-lisp/source/flexi-streams/test/unicode_demo_utf8_lf.txt
file path=usr/share/common-lisp/source/flexi-streams/test/xjt_gbk_cr.txt
file path=usr/share/common-lisp/source/flexi-streams/test/xjt_gbk_crlf.txt
file path=usr/share/common-lisp/source/flexi-streams/test/xjt_gbk_lf.txt
file path=usr/share/common-lisp/source/flexi-streams/util.lisp
dir  path=usr/share/common-lisp/systems
link path=usr/share/common-lisp/systems/flexi-streams.asd \
    target=../source/flexi-streams/flexi-streams.asd
components/common-lisp/flexi-streams/manifests/sample-manifest.p5m
@@ -10,7 +10,7 @@
#
#
# Copyright 2016 <contributor>
# Copyright 2022 <contributor>
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
@@ -23,12 +23,14 @@
license $(COMPONENT_LICENSE_FILE) license='$(COMPONENT_LICENSE)'
file path=usr/share/common-lisp/source/flexi-streams/CHANGELOG
file path=usr/share/common-lisp/source/flexi-streams/README.md
file path=usr/share/common-lisp/source/flexi-streams/ascii.lisp
file path=usr/share/common-lisp/source/flexi-streams/code-pages.lisp
file path=usr/share/common-lisp/source/flexi-streams/conditions.lisp
file path=usr/share/common-lisp/source/flexi-streams/decode.lisp
file path=usr/share/common-lisp/source/flexi-streams/doc/foo.txt
file path=usr/share/common-lisp/source/flexi-streams/doc/index.html
file path=usr/share/common-lisp/source/flexi-streams/docs/foo.txt
file path=usr/share/common-lisp/source/flexi-streams/docs/index.html
file path=usr/share/common-lisp/source/flexi-streams/enc-cn-tbl.lisp
file path=usr/share/common-lisp/source/flexi-streams/encode.lisp
file path=usr/share/common-lisp/source/flexi-streams/external-format.lisp
file path=usr/share/common-lisp/source/flexi-streams/flexi-streams.asd
@@ -90,6 +92,9 @@
file path=usr/share/common-lisp/source/flexi-streams/test/unicode_demo_utf8_cr.txt
file path=usr/share/common-lisp/source/flexi-streams/test/unicode_demo_utf8_crlf.txt
file path=usr/share/common-lisp/source/flexi-streams/test/unicode_demo_utf8_lf.txt
file path=usr/share/common-lisp/source/flexi-streams/test/xjt_gbk_cr.txt
file path=usr/share/common-lisp/source/flexi-streams/test/xjt_gbk_crlf.txt
file path=usr/share/common-lisp/source/flexi-streams/test/xjt_gbk_lf.txt
file path=usr/share/common-lisp/source/flexi-streams/util.lisp
link path=usr/share/common-lisp/systems/flexi-streams.asd \
    target=../source/flexi-streams/flexi-streams.asd
components/common-lisp/flexi-streams/pkg5
@@ -1,6 +1,7 @@
{
    "dependencies": [
        "SUNWcs",
        "shell/ksh93",
        "system/library"
    ],
    "fmris": [