From owner-svn-ports-head@freebsd.org Thu Nov 29 22:23:38 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE804114ED12; Thu, 29 Nov 2018 22:23:38 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7849485C96; Thu, 29 Nov 2018 22:23:38 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5AA911FBCC; Thu, 29 Nov 2018 22:23:38 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wATMNc8Y015118; Thu, 29 Nov 2018 22:23:38 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wATMNbp7015114; Thu, 29 Nov 2018 22:23:37 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201811292223.wATMNbp7015114@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Thu, 29 Nov 2018 22:23:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r486215 - in head/sysutils/magicrescue: . files X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in head/sysutils/magicrescue: . files X-SVN-Commit-Revision: 486215 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7849485C96 X-Spamd-Result: default: False [0.69 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_SHORT(0.04)[0.041,0]; NEURAL_SPAM_MEDIUM(0.31)[0.312,0]; NEURAL_SPAM_LONG(0.34)[0.335,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Nov 2018 22:23:38 -0000 Author: ehaupt Date: Thu Nov 29 22:23:37 2018 New Revision: 486215 URL: https://svnweb.freebsd.org/changeset/ports/486215 Log: - Update to 1.1.10 - Move to GitHub, project moved - Update WWW - Pacify portlint - Don't install changelog and build instructions, it is not really documentation Deleted: head/sysutils/magicrescue/files/patch-Makefile.in Modified: head/sysutils/magicrescue/Makefile head/sysutils/magicrescue/distinfo head/sysutils/magicrescue/files/patch-magicsort head/sysutils/magicrescue/pkg-descr head/sysutils/magicrescue/pkg-plist Modified: head/sysutils/magicrescue/Makefile ============================================================================== --- head/sysutils/magicrescue/Makefile Thu Nov 29 22:00:24 2018 (r486214) +++ head/sysutils/magicrescue/Makefile Thu Nov 29 22:23:37 2018 (r486215) @@ -2,11 +2,9 @@ # $FreeBSD$ PORTNAME= magicrescue -PORTVERSION= 1.1.9 -PORTREVISION= 1 +PORTVERSION= 1.1.10 +DISTVERSIONPREFIX= v CATEGORIES= sysutils -MASTER_SITES= http://www.itu.dk/people/jobr/magicrescue/release/ \ - LOCAL/ehaupt MAINTAINER= ehaupt@FreeBSD.org COMMENT= File recovery tool which recovers deleted files from a block device @@ -15,25 +13,23 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= perl5 shebangfix +USE_PERL5= run + HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX} -USE_PERL5= run -SHEBANG_FILES= magicsort tools/gimp-resave.pl +USE_GITHUB= yes +GH_ACCOUNT= jbj -OPTIONS_DEFINE= DOCS +SHEBANG_FILES= magicsort tools/*.pl tools/checkrecipe MAKE_ENV+= STAGEDIR=${STAGEDIR} post-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR} -.for f in NEWS README - ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} -.endfor - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/magicrescue - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/dupemap + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/magicrescue \ + ${STAGEDIR}${PREFIX}/bin/dupemap .for f in safecat inputseek textextract - @${STRIP_CMD} ${STAGEDIR}${DATADIR}/tools/${f} + ${STRIP_CMD} ${STAGEDIR}${DATADIR}/tools/${f} .endfor .include Modified: head/sysutils/magicrescue/distinfo ============================================================================== --- head/sysutils/magicrescue/distinfo Thu Nov 29 22:00:24 2018 (r486214) +++ head/sysutils/magicrescue/distinfo Thu Nov 29 22:23:37 2018 (r486215) @@ -1,2 +1,3 @@ -SHA256 (magicrescue-1.1.9.tar.gz) = a920b174efd664afe9760a43700588c9c5e6182cb13d7421e07ab613bceeb3c7 -SIZE (magicrescue-1.1.9.tar.gz) = 92621 +TIMESTAMP = 1543528315 +SHA256 (jbj-magicrescue-v1.1.10_GH0.tar.gz) = 060c77be3e86a328a4f90f45d2da41b2b78cb74f13d44f69e29909cf68e98cad +SIZE (jbj-magicrescue-v1.1.10_GH0.tar.gz) = 227237 Modified: head/sysutils/magicrescue/files/patch-magicsort ============================================================================== --- head/sysutils/magicrescue/files/patch-magicsort Thu Nov 29 22:00:24 2018 (r486214) +++ head/sysutils/magicrescue/files/patch-magicsort Thu Nov 29 22:23:37 2018 (r486215) @@ -1,6 +1,6 @@ ---- ./magicsort.orig 2013-10-26 09:06:33.969663571 +0200 -+++ ./magicsort 2013-10-26 09:06:33.972663781 +0200 -@@ -13,7 +13,7 @@ +--- magicsort.orig 2018-11-29 21:59:50 UTC ++++ magicsort +@@ -13,7 +13,7 @@ opendir DH, "." or die "opening $dir: $! while (defined(my $file = readdir DH)) { next unless -f $file; @@ -9,7 +9,7 @@ my $idstring = ; close FILE; -@@ -25,7 +25,7 @@ +@@ -25,7 +25,7 @@ while (defined(my $file = readdir DH)) { next; } my $dir = substr($idstring, length($file) + 2); Modified: head/sysutils/magicrescue/pkg-descr ============================================================================== --- head/sysutils/magicrescue/pkg-descr Thu Nov 29 22:00:24 2018 (r486214) +++ head/sysutils/magicrescue/pkg-descr Thu Nov 29 22:23:37 2018 (r486215) @@ -8,4 +8,4 @@ It works on any file system, but on very fragmented fi recover the first chunk of each file. Practical experience shows, however, that chunks of 30-50MB are not uncommon. -WWW: http://www.itu.dk/people/jobr/magicrescue/ +WWW: https://github.com/jbj/magicrescue/ Modified: head/sysutils/magicrescue/pkg-plist ============================================================================== --- head/sysutils/magicrescue/pkg-plist Thu Nov 29 22:00:24 2018 (r486214) +++ head/sysutils/magicrescue/pkg-plist Thu Nov 29 22:23:37 2018 (r486215) @@ -5,12 +5,19 @@ man/man1/dupemap.1.gz man/man1/magicrescue.1.gz man/man1/magicsort.1.gz %%DATADIR%%/recipes/avi +%%DATADIR%%/recipes/canon-cr2 %%DATADIR%%/recipes/elf +%%DATADIR%%/recipes/empathy +%%DATADIR%%/recipes/flac +%%DATADIR%%/recipes/flv %%DATADIR%%/recipes/gimp-xcf %%DATADIR%%/recipes/gpl %%DATADIR%%/recipes/gzip %%DATADIR%%/recipes/jpeg-exif %%DATADIR%%/recipes/jpeg-jfif +%%DATADIR%%/recipes/mbox +%%DATADIR%%/recipes/mbox-mozilla-inbox +%%DATADIR%%/recipes/mbox-mozilla-sent %%DATADIR%%/recipes/mp3-id3v1 %%DATADIR%%/recipes/mp3-id3v2 %%DATADIR%%/recipes/msoffice @@ -18,12 +25,9 @@ man/man1/magicsort.1.gz %%DATADIR%%/recipes/perl %%DATADIR%%/recipes/png %%DATADIR%%/recipes/ppm +%%DATADIR%%/recipes/rar +%%DATADIR%%/recipes/sqlite %%DATADIR%%/recipes/zip -%%DATADIR%%/recipes/canon-cr2 -%%DATADIR%%/recipes/flac -%%DATADIR%%/recipes/mbox-mozilla-sent -%%DATADIR%%/recipes/mbox-mozilla-inbox -%%DATADIR%%/recipes/mbox %%DATADIR%%/tools/checkrecipe %%DATADIR%%/tools/elfextract.pl %%DATADIR%%/tools/gimp-resave.pl @@ -37,5 +41,3 @@ man/man1/magicsort.1.gz %%DATADIR%%/tools/safecat %%DATADIR%%/tools/script_rename.pl %%DATADIR%%/tools/textextract -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README