svn commit: r328199 - in head/ports-mgmt/pkg: . files

Bryan Drewery bdrewery at FreeBSD.org
Tue Sep 24 21:43:44 UTC 2013


Author: bdrewery
Date: Tue Sep 24 21:43:43 2013
New Revision: 328199
URL: http://svnweb.freebsd.org/changeset/ports/328199

Log:
  - Fix staging of meta ports that have no files, such as
    mail/squirrelmail-plugins
  
  Discussed with:	bapt
  With hat:	portmgr

Added:
  head/ports-mgmt/pkg/files/patch-libpkg__pkg_create.c   (contents, props changed)
Modified:
  head/ports-mgmt/pkg/Makefile

Modified: head/ports-mgmt/pkg/Makefile
==============================================================================
--- head/ports-mgmt/pkg/Makefile	Tue Sep 24 21:39:26 2013	(r328198)
+++ head/ports-mgmt/pkg/Makefile	Tue Sep 24 21:43:43 2013	(r328199)
@@ -2,7 +2,7 @@
 
 PORTNAME=	pkg
 DISTVERSION=	1.1.4
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	ports-mgmt
 MASTER_SITES=	http://files.etoilebsd.net/pkg/ \
 		http://mirror.shatow.net/freebsd/${PORTNAME}/ \

Added: head/ports-mgmt/pkg/files/patch-libpkg__pkg_create.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/ports-mgmt/pkg/files/patch-libpkg__pkg_create.c	Tue Sep 24 21:43:43 2013	(r328199)
@@ -0,0 +1,11 @@
+--- ./libpkg/pkg_create.c.orig	2013-09-24 16:27:05.716245523 -0500
++++ ./libpkg/pkg_create.c	2013-09-24 16:27:17.642245427 -0500
+@@ -323,7 +323,7 @@
+ 		goto cleanup;
+ 	}
+ 
+-	if (pkg_files(pkg, &file) != EPKG_OK &&
++	if (0 && pkg_files(pkg, &file) != EPKG_OK &&
+ 	    pkg_dirs(pkg, &dir) != EPKG_OK) {
+ 		/* Now traverse the file directories, adding to the archive */
+ 		packing_append_tree(pkg_archive, md_dir, NULL);


More information about the svn-ports-all mailing list