pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/textproc



Module Name:    pkgsrc
Committed By:   taca
Date:           Sun Dec 12 13:55:13 UTC 2021

Modified Files:
        pkgsrc/textproc/marisa: Makefile Makefile.common distinfo
        pkgsrc/textproc/p5-marisa: Makefile

Log Message:
textproc/marisa: update to 0.2.6

No release note nor change log.  Please refer commit log
<https://github.com/s-yata/marisa-trie/commits/master> in detail.

0.2.5 (2018-05-19)
0.2.6 (2020-06-14)

This commit also updates language binding packages: p5-marisa, py-marisa and
ruby-marisa.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/textproc/marisa/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/marisa/Makefile.common \
    pkgsrc/textproc/marisa/distinfo
cvs rdiff -u -r1.9 -r1.10 pkgsrc/textproc/p5-marisa/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/marisa/Makefile
diff -u pkgsrc/textproc/marisa/Makefile:1.2 pkgsrc/textproc/marisa/Makefile:1.3
--- pkgsrc/textproc/marisa/Makefile:1.2 Mon Nov  4 21:43:38 2019
+++ pkgsrc/textproc/marisa/Makefile     Sun Dec 12 13:55:13 2021
@@ -1,15 +1,18 @@
-# $NetBSD: Makefile,v 1.2 2019/11/04 21:43:38 rillig Exp $
+# $NetBSD: Makefile,v 1.3 2021/12/12 13:55:13 taca Exp $
 
 .include "Makefile.common"
 COMMENT=               C++ library to provide an implementation of MARISA
 
 GNU_CONFIGURE= yes
 USE_LIBTOOL=   yes
-USE_TOOLS+=    pkg-config
+USE_TOOLS+=    pkg-config autoconf automake
 USE_LANGUAGES= c c++
 
 #TEST_TARGET=  check
 
 PKGCONFIG_OVERRIDE+=   marisa.pc.in
 
+pre-configure:
+       cd ${WRKSRC} && autoreconf --install --symlink
+
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/textproc/marisa/Makefile.common
diff -u pkgsrc/textproc/marisa/Makefile.common:1.4 pkgsrc/textproc/marisa/Makefile.common:1.5
--- pkgsrc/textproc/marisa/Makefile.common:1.4  Sat May  1 08:19:52 2021
+++ pkgsrc/textproc/marisa/Makefile.common      Sun Dec 12 13:55:13 2021
@@ -1,11 +1,13 @@
-# $NetBSD: Makefile.common,v 1.4 2021/05/01 08:19:52 taca Exp $
+# $NetBSD: Makefile.common,v 1.5 2021/12/12 13:55:13 taca Exp $
 # used by textproc/p5-marisa/Makefile
 # used by textproc/py-marisa/Makefile
 # used by textproc/ruby-marisa/Makefile
 
-DISTNAME=      marisa-0.2.4
+DISTNAME=      marisa-0.2.6
 CATEGORIES=    textproc
-MASTER_SITES=  http://marisa-trie.googlecode.com/files/
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=s-yata/}
+GITHUB_PROJECT=        marisa-trie
+GITHUB_TAG=    v${PKGVERSION_NOREV}
 
 DISTINFO_FILE= ${.CURDIR}/../../textproc/marisa/distinfo
 PATCHDIR=      ${.CURDIR}/../../textproc/marisa/patches
Index: pkgsrc/textproc/marisa/distinfo
diff -u pkgsrc/textproc/marisa/distinfo:1.4 pkgsrc/textproc/marisa/distinfo:1.5
--- pkgsrc/textproc/marisa/distinfo:1.4 Tue Oct 26 11:22:21 2021
+++ pkgsrc/textproc/marisa/distinfo     Sun Dec 12 13:55:13 2021
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.4 2021/10/26 11:22:21 nia Exp $
+$NetBSD: distinfo,v 1.5 2021/12/12 13:55:13 taca Exp $
 
-BLAKE2s (marisa-0.2.4.tar.gz) = cc7a83d2b20b99daf896d9988e71d79f3dbfcf59b45a56bdc0134adf2ae0a809
-SHA512 (marisa-0.2.4.tar.gz) = 71aee3ae034d1ce725d986bef43472d61bd64f0af3ccda01bb019cce03f0872629b6a1b305e717056bef06e036372323b2a67e5dc69705d6a74e028b5e2553e4
-Size (marisa-0.2.4.tar.gz) = 502552 bytes
+BLAKE2s (marisa-0.2.6.tar.gz) = 7d6cf163daf31423a4d13b303f5c81bb7ed1e5d0a5dc1f9d4f8038b6e65a0e64
+SHA512 (marisa-0.2.6.tar.gz) = c094e4b22e1457efdd20f2b978ee421b53e36ed94e4fdbd8944136c0ba23da4f6ba9fe3a2c64729c1426aee4dbe8098bfa5eebb943ae7fdaa4eec760485c564d
+Size (marisa-0.2.6.tar.gz) = 168332 bytes
 SHA1 (patch-bindings_python_setup.py) = 6c7d1800986077fd5c1e8d4b96b49762a381420a

Index: pkgsrc/textproc/p5-marisa/Makefile
diff -u pkgsrc/textproc/p5-marisa/Makefile:1.9 pkgsrc/textproc/p5-marisa/Makefile:1.10
--- pkgsrc/textproc/p5-marisa/Makefile:1.9      Mon May 24 19:54:58 2021
+++ pkgsrc/textproc/p5-marisa/Makefile  Sun Dec 12 13:55:13 2021
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.9 2021/05/24 19:54:58 wiz Exp $
+# $NetBSD: Makefile,v 1.10 2021/12/12 13:55:13 taca Exp $
 
 .include "../../textproc/marisa/Makefile.common"
 
 PKGNAME=       p5-${DISTNAME}
-PKGREVISION=   8
 CATEGORIES+=   perl5
 
 COMMENT=       MARISA perl module



Home | Main Index | Thread Index | Old Index