diff options
author | wiz <wiz@pkgsrc.org> | 2009-01-08 16:14:16 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2009-01-08 16:14:16 +0000 |
commit | 3241a569c14c449bf5cf4c85c934986529474a2c (patch) | |
tree | 588bae1bef6b363c48c079d9d2ce354ba29441d4 | |
parent | 0155c98d1262cce49712b7c06d589174141425ba (diff) | |
download | pkgsrc-3241a569c14c449bf5cf4c85c934986529474a2c.tar.gz |
Update to 1.13:
1.13
- move non fatal Perl bug checks into the help screen output
- fix Perl warnings when wrong/unknown charset is used
- run check for some essential Encode functionality at every startup
- add --fixdouble option to only fix files that are double-UTF-8 encoded
- add --parsable option to allow convmv output parsable suggestions for external tools to to something with it
- add --preserve-mtimes option to restore mtimes of parent directories
- allow an argv to be a symlink
- don't checksum deleted files in tar ball and use sha256 now
- allow skippig of certain test suite tests, useful for OS X to skip NFC/NFD related stuff, for example "make test SKIPTESTS=nfd-test,someothertest" will skip that test(s)
-rw-r--r-- | converters/convmv/Makefile | 4 | ||||
-rw-r--r-- | converters/convmv/distinfo | 10 | ||||
-rw-r--r-- | converters/convmv/patches/patch-aa | 20 |
3 files changed, 19 insertions, 15 deletions
diff --git a/converters/convmv/Makefile b/converters/convmv/Makefile index 3eb1ec6db8e..8665a3e6f63 100644 --- a/converters/convmv/Makefile +++ b/converters/convmv/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2008/02/16 13:17:12 wiz Exp $ +# $NetBSD: Makefile,v 1.9 2009/01/08 16:14:16 wiz Exp $ -DISTNAME= convmv-1.12 +DISTNAME= convmv-1.13 CATEGORIES= converters MASTER_SITES= http://www.j3e.de/linux/convmv/ diff --git a/converters/convmv/distinfo b/converters/convmv/distinfo index 444e431167c..04ba5d83cac 100644 --- a/converters/convmv/distinfo +++ b/converters/convmv/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2008/02/11 23:28:45 heinz Exp $ +$NetBSD: distinfo,v 1.5 2009/01/08 16:14:16 wiz Exp $ -SHA1 (convmv-1.12.tar.gz) = 7fe095e54f03b2ad689d3e970906373c4214f753 -RMD160 (convmv-1.12.tar.gz) = c805c6c7993e465ea94daa8fe9439c2a5e32ff77 -Size (convmv-1.12.tar.gz) = 23059 bytes -SHA1 (patch-aa) = 7efbad0d0007e3b67f4af8ec20a2710e33859d9d +SHA1 (convmv-1.13.tar.gz) = d226010584cae8223362287283ba5c63b079d1e8 +RMD160 (convmv-1.13.tar.gz) = a20eb333e944c3dc735e1fc8791f5a921c01caa3 +Size (convmv-1.13.tar.gz) = 26917 bytes +SHA1 (patch-aa) = 294c1713940926745dda0c15e66c585dbb8fe47e diff --git a/converters/convmv/patches/patch-aa b/converters/convmv/patches/patch-aa index 295070b473a..24baf89b7cb 100644 --- a/converters/convmv/patches/patch-aa +++ b/converters/convmv/patches/patch-aa @@ -1,16 +1,20 @@ -$NetBSD: patch-aa,v 1.2 2008/02/11 23:28:46 heinz Exp $ +$NetBSD: patch-aa,v 1.3 2009/01/08 16:14:16 wiz Exp $ - make variables overridable and thus the build process more flexible Submitted upstream. ---- Makefile.orig Thu Jul 24 16:46:30 2003 +--- Makefile.orig 2008-11-29 14:49:38.000000000 +0100 +++ Makefile -@@ -1,14 +1,18 @@ - DESTDIR= +@@ -1,17 +1,21 @@ +-DESTDIR= -PREFIX=/usr/local -MANDIR=$(PREFIX)/share/man ++DESTDIR?= +PREFIX?=/usr/local +MANDIR?=$(PREFIX)/share/man + TAR=tar + FIND=find + SED=sed +INSTALL_MAN_DIR?=mkdir -p +INSTALL_SCRIPT_DIR?=mkdir -p +INSTALL_MAN?=cp @@ -23,10 +27,10 @@ $NetBSD: patch-aa,v 1.2 2008/02/11 23:28:46 heinz Exp $ - mkdir -p $(DESTDIR)$(PREFIX)/bin/ - cp convmv.1.gz $(DESTDIR)$(MANDIR)/man1/ - install -m 755 convmv $(DESTDIR)$(PREFIX)/bin/ -+ ${INSTALL_MAN_DIR} $(DESTDIR)$(MANDIR)/man1 -+ ${INSTALL_SCRIPT_DIR} $(DESTDIR)$(PREFIX)/bin -+ ${INSTALL_MAN} convmv.1.gz $(DESTDIR)$(MANDIR)/man1 -+ ${INSTALL_SCRIPT} convmv $(DESTDIR)$(PREFIX)/bin ++ ${INSTALL_MAN_DIR} $(DESTDIR)$(MANDIR)/man1/ ++ ${INSTALL_SCRIPT_DIR} $(DESTDIR)$(PREFIX)/bin/ ++ ${INSTALL_MAN} convmv.1.gz $(DESTDIR)$(MANDIR)/man1/ ++ ${INSTALL_SCRIPT} convmv $(DESTDIR)$(PREFIX)/bin/ manpage: pod2man --section 1 --center=" " convmv | gzip > convmv.1.gz |