Bug 184716 - games/freera: Typo cause invalid manifest; port can't be packaged
Summary: games/freera: Typo cause invalid manifest; port can't be packaged
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: Dmitry Marakasov
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-12-12 09:00 UTC by John Marino
Modified: 2013-12-12 11:30 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description John Marino 2013-12-12 09:00:00 UTC
There is an unfortunately typo in games/freera/Makefile on line 23:

PLIST_FILES=    bin/${PORTNMAE}


This causes an empty manifest, and thus an invalid package:
Generating repository catalog in /packages: -pkg-static: /packages/All/freera-080203_3.txz is not a valid package: no manifest found

Fix: 

Spell "PORTNAME" correctly on line 23
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-12-12 09:00:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->amdmi3

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 Dmitry Marakasov freebsd_committer freebsd_triage 2013-12-12 11:19:42 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-12-12 11:19:59 UTC
Author: amdmi3
Date: Thu Dec 12 11:19:51 2013
New Revision: 336256
URL: http://svnweb.freebsd.org/changeset/ports/336256

Log:
  - Fix packaging by fixing a typo
  
  PR:		184716
  Submitted by:	John Marino <freebsd@marino.st>

Modified:
  head/games/freera/Makefile

Modified: head/games/freera/Makefile
==============================================================================
--- head/games/freera/Makefile	Thu Dec 12 11:14:49 2013	(r336255)
+++ head/games/freera/Makefile	Thu Dec 12 11:19:51 2013	(r336256)
@@ -3,7 +3,7 @@
 
 PORTNAME=	freera
 PORTVERSION=	080203
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	games
 MASTER_SITES=	SF/${PORTNAME}/${PORTVERSION}%20${PORTNAME}%2B%2B/0.47%20beta
 DISTNAME=	${PORTVERSION}_freera++_src
@@ -20,7 +20,7 @@ WRKSRC=		${WRKDIR}/freera++
 
 SUB_FILES=	pkg-message
 
-PLIST_FILES=	bin/${PORTNMAE}
+PLIST_FILES=	bin/${PORTNAME}
 PORTDATA=	*
 
 post-patch:
_______________________________________________
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"