Bug 179693 - [PATCH] archivers/pxz isn't parallel when build with clang
Summary: [PATCH] archivers/pxz isn't parallel when build with clang
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Martin Matuska
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-18 23:20 UTC by Brooks Davis
Modified: 2013-06-19 08:10 UTC (History)
0 users

See Also:


Attachments
file.diff (405 bytes, patch)
2013-06-18 23:20 UTC, Brooks Davis
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Brooks Davis freebsd_committer freebsd_triage 2013-06-18 23:20:00 UTC
When build with clang pxz isn't parallel because clang does not yet support
openmp.

Fix: Build with gcc for now since there is little point in pxz without
parallelism.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-06-18 23:20:12 UTC
Responsible Changed
From-To: freebsd-ports-bugs->mm

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-06-19 08:06:28 UTC
Author: mm
Date: Wed Jun 19 07:06:16 2013
New Revision: 321231
URL: http://svnweb.freebsd.org/changeset/ports/321231

Log:
  Upgrade pxz to git version as of 20120930
  Build with gcc [1]
  
  PR:		ports/179693 [1]

Modified:
  head/archivers/pxz/Makefile
  head/archivers/pxz/distinfo

Modified: head/archivers/pxz/Makefile
==============================================================================
--- head/archivers/pxz/Makefile	Wed Jun 19 05:58:50 2013	(r321230)
+++ head/archivers/pxz/Makefile	Wed Jun 19 07:06:16 2013	(r321231)
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	pxz
-PORTVERSION=	0.20101123
+PORTVERSION=	0.20120930
 CATEGORIES=	archivers
 MASTER_SITES=	${MASTER_SITE_LOCAL}
 MASTER_SITE_SUBDIR=	mm
@@ -26,6 +26,8 @@ MAN1=	pxz.1
 MAKE_ENV+=	BINDIR=${PREFIX}/bin \
 		MANDIR=${MANPREFIX}/man
 
+USE_GCC?=	yes
+
 .include <bsd.port.pre.mk>
 
 .if ${OSVERSION} < 800505 || (${OSVERSION} >= 900000 && ${OSVERSION} < 900012)

Modified: head/archivers/pxz/distinfo
==============================================================================
--- head/archivers/pxz/distinfo	Wed Jun 19 05:58:50 2013	(r321230)
+++ head/archivers/pxz/distinfo	Wed Jun 19 07:06:16 2013	(r321231)
@@ -1,2 +1,2 @@
-SHA256 (pxz-git-20101123.tar.gz) = 8f823dd1f5d7a02a8d28420964450b63946ed10dc8435284566297be34b1e43d
-SIZE (pxz-git-20101123.tar.gz) = 50700
+SHA256 (pxz-git-20120930.tar.gz) = b8b86ae037e2d9347015c6e6e8af16699f48597e05c92ce7576d7110ea5cf3ce
+SIZE (pxz-git-20120930.tar.gz) = 69480
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Martin Matuska freebsd_committer freebsd_triage 2013-06-19 08:06:44 UTC
State Changed
From-To: open->closed

Resolved. Thanks!