View | Details | Raw Unified | Return to bug 222629
Collapse All | Expand All

(-)mail/Makefile (+1 lines)
Lines 7-12 Link Here
7
    SUBDIR += adcomplain
7
    SUBDIR += adcomplain
8
    SUBDIR += addresses
8
    SUBDIR += addresses
9
    SUBDIR += addresses-goodies
9
    SUBDIR += addresses-goodies
10
    SUBDIR += afew
10
    SUBDIR += akpop3d
11
    SUBDIR += akpop3d
11
    SUBDIR += alpine
12
    SUBDIR += alpine
12
    SUBDIR += altermime
13
    SUBDIR += altermime
(-)mail/afew/Makefile (+39 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	afew
4
DISTVERSION=	1.2.0
5
CATEGORIES=	mail python
6
MASTER_SITES=	CHEESESHOP
7
8
MAINTAINER=	seschwar@gmail.com
9
COMMENT=	Initial tagging script for notmuch mail
10
11
LICENSE=	ISCL
12
13
BUILD_DEPENDS=	\
14
	${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm \
15
	${PYTHON_PKGNAMEPREFIX}sphinx>=0:textproc/py-sphinx
16
RUN_DEPENDS=	\
17
	${PYTHON_PKGNAMEPREFIX}chardet>=0:textproc/py-chardet \
18
	${PYTHON_PKGNAMEPREFIX}notmuch>=0:mail/py-notmuch \
19
	notmuch:mail/notmuch
20
21
USES=		python
22
USE_PYTHON=	autoplist distutils
23
24
NO_ARCH=	yes
25
PLIST_FILES=	man/man1/afew.1.gz
26
27
post-build:
28
	${MAKE} -C ${WRKSRC}/docs man
29
30
post-install:
31
	${INSTALL_MAN} ${WRKSRC}/docs/build/man/afew.1 ${STAGEDIR}${PREFIX}/man/man1/
32
33
.include <bsd.port.pre.mk>
34
35
.if ${PYTHON_REL} < 3000
36
RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}subprocess32>=0:devel/py-subprocess32
37
.endif
38
39
.include <bsd.port.post.mk>
(-)mail/afew/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1505037424
2
SHA256 (afew-1.2.0.tar.gz) = b94cef31f2c740ffa3100dcbb7839d015973a49cdeadde295dd1f751da3a3c88
3
SIZE (afew-1.2.0.tar.gz) = 31831
(-)mail/afew/pkg-descr (+14 lines)
Line 0 Link Here
1
This is an initial tagging script for notmuch mail.
2
3
Its basic task is to provide automatic tagging each time new
4
mail is registered with notmuch.  In a classic setup, you might
5
call it after 'notmuch new' in an offlineimap post sync hook.
6
7
It can do basic thing such as adding tags based on email headers
8
or maildir folders, handling killed threads and spam.
9
10
In move mode, afew will move mails between maildir folders
11
according to configurable rules that can contain arbitrary
12
notmuch queries to match against any searchable attributes.
13
14
WWW: https://github.com/afewmail/afew

Return to bug 222629