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

Collapse All | Expand All

(-)b/databases/Makefile (+1 lines)
Lines 558-563 Link Here
558
    SUBDIR += percona57-client
558
    SUBDIR += percona57-client
559
    SUBDIR += percona57-pam-for-mysql
559
    SUBDIR += percona57-pam-for-mysql
560
    SUBDIR += percona57-server
560
    SUBDIR += percona57-server
561
    SUBDIR += pg.el
561
    SUBDIR += pgFormatter
562
    SUBDIR += pgFormatter
562
    SUBDIR += pg_activity
563
    SUBDIR += pg_activity
563
    SUBDIR += pg_citus
564
    SUBDIR += pg_citus
(-)b/databases/pg.el/Makefile (+31 lines)
Added Link Here
1
PORTNAME=	pg.el
2
DISTVERSION=	0.13
3
CATEGORIES=	databases elisp
4
PKGNAMESUFFIX=	${EMACS_PKGNAMESUFFIX}
5
6
MAINTAINER=	yasu@utahime.org
7
COMMENT=	PostgreSQL Elisp interface
8
9
LICENSE=	GPLv2+
10
11
USES=		emacs
12
13
USE_GITHUB=	yes
14
GH_ACCOUNT=	cbbrowne
15
GH_TAGNAME=	4f6516e
16
17
NO_ARCH=	yes
18
19
PLIST_FILES=	${EMACS_VERSION_SITE_LISPDIR}/pg.el \
20
		${EMACS_VERSION_SITE_LISPDIR}/pg.elc
21
22
do-build:
23
	(cd ${WRKSRC} \
24
	&& ${EMACS_CMD} -Q -batch -L . -f batch-byte-compile *.el)
25
26
do-install:
27
	${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
28
	(cd ${WRKSRC} && ${INSTALL_DATA} *.el* \
29
	    ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR})
30
31
.include <bsd.port.mk>
(-)b/databases/pg.el/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1621273465
2
SHA256 (cbbrowne-pg.el-0.13-4f6516e_GH0.tar.gz) = d040b0783c4700bd07b8cea803fb1da6e202979acbeeeea127cbe17784eafa6e
3
SIZE (cbbrowne-pg.el-0.13-4f6516e_GH0.tar.gz) = 15299
(-)b/databases/pg.el/pkg-descr (-1 / +9 lines)
Added Link Here
0
- 
1
This is an Emacs Lisp interface for PostgreSQL
2
3
This module lets you access the PostgreSQL object-relational DBMS from
4
Emacs, using its socket-level frontend/backend protocol. The module is
5
capable of automatic type coercions from a range of SQL types to the
6
equivalent Emacs Lisp type. This is a low level API, and won't be
7
useful to end users.
8
9
WWW: https://github.com/cbbrowne/pg.el

Return to bug 255951