View | Details | Raw Unified | Return to bug 256879 | Differences between
and this patch

Collapse All | Expand All

(-)b/textproc/Makefile (+1 lines)
Lines 1951-1956 Link Here
1951
    SUBDIR += yali
1951
    SUBDIR += yali
1952
    SUBDIR += yamcha
1952
    SUBDIR += yamcha
1953
    SUBDIR += yaml-mode.el
1953
    SUBDIR += yaml-mode.el
1954
    SUBDIR += yaml.el
1954
    SUBDIR += ydiff
1955
    SUBDIR += ydiff
1955
    SUBDIR += yelp-tools
1956
    SUBDIR += yelp-tools
1956
    SUBDIR += yelp-xsl
1957
    SUBDIR += yelp-xsl
(-)b/textproc/yaml.el/Makefile (+30 lines)
Added Link Here
1
PORTNAME=	yaml.el
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	0.3.3
4
CATEGORIES=	textproc elisp
5
PKGNAMESUFFIX=	${EMACS_PKGNAMESUFFIX}
6
7
MAINTAINER=	yasu@utahime.org
8
COMMENT=	YAML parser in Elisp
9
10
LICENSE=	GPLv3+
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
USES=		emacs
14
USE_GITHUB=	yes
15
GH_ACCOUNT=	zkry
16
17
NO_ARCH=	yes
18
PLIST_FILES=	${EMACS_VERSION_SITE_LISPDIR}/yaml.el \
19
		${EMACS_VERSION_SITE_LISPDIR}/yaml.elc
20
21
do-build:
22
	(cd ${WRKSRC} \
23
	&& ${EMACS_CMD} -Q -batch -L . -f batch-byte-compile yaml.el)
24
25
do-install:
26
	${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
27
	(cd ${WRKSRC} && ${INSTALL_DATA} yaml.el* \
28
	    ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR})
29
30
.include <bsd.port.mk>
(-)b/textproc/yaml.el/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1624917207
2
SHA256 (zkry-yaml.el-v0.3.3_GH0.tar.gz) = 82399187c1d982d6de02e94b49f907ada50bb7afadb008ec931e464d8474c5cb
3
SIZE (zkry-yaml.el-v0.3.3_GH0.tar.gz) = 43264
(-)b/textproc/yaml.el/pkg-descr (-1 / +5 lines)
Added Link Here
0
- 
1
yaml.el is a YAML parser written in Emacs List without any external
2
dependencies. It provides an interface similar to the Emacs JSON
3
parsing utility.
4
5
WWW: https://github.com/zkry/yaml.el

Return to bug 256879