Bug 186155 - [patch] Fix pkg-plist for textproc/asciidoc
Summary: [patch] Fix pkg-plist for textproc/asciidoc
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: Po-Chuan Hsieh
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-01-27 04:40 UTC by Kevin Zheng
Modified: 2014-02-04 17:00 UTC (History)
0 users

See Also:


Attachments
file.diff (399 bytes, patch)
2014-01-27 04:40 UTC, Kevin Zheng
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Kevin Zheng 2014-01-27 04:40:00 UTC
In ports/185107, 'asciidocapi.py' was requested to be installed along with textproc/asciidoc. While the commit installed the file, it did not add it to pkg-plist. Due to the (desirable) behavior of StageDir, 'asciidocapi.py' was not actually installed when running `make install`.

Fix: Add the missing files to pkg-plist (apply the attached patch).

Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-01-27 04:40:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->sunpoet

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-02-04 16:54:20 UTC
Author: sunpoet
Date: Tue Feb  4 16:54:12 2014
New Revision: 342575
URL: http://svnweb.freebsd.org/changeset/ports/342575
QAT: https://qat.redports.org/buildarchive/r342575/

Log:
  - Fix PLIST
  - Bump PORTREVISION for package change
  
  PR:		ports/186155
  Submitted by:	Kevin Zheng <kevinz5000@gmail.com>

Modified:
  head/textproc/asciidoc/Makefile
  head/textproc/asciidoc/pkg-plist

Modified: head/textproc/asciidoc/Makefile
==============================================================================
--- head/textproc/asciidoc/Makefile	Tue Feb  4 16:54:09 2014	(r342574)
+++ head/textproc/asciidoc/Makefile	Tue Feb  4 16:54:12 2014	(r342575)
@@ -3,7 +3,7 @@
 
 PORTNAME=	asciidoc
 PORTVERSION=	8.6.9
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	textproc
 MASTER_SITES=	SF
 

Modified: head/textproc/asciidoc/pkg-plist
==============================================================================
--- head/textproc/asciidoc/pkg-plist	Tue Feb  4 16:54:09 2014	(r342574)
+++ head/textproc/asciidoc/pkg-plist	Tue Feb  4 16:54:12 2014	(r342575)
@@ -139,6 +139,7 @@ bin/asciidoc.py
 @unexec if cmp -s %D/%%ETCDIR%%/xhtml11-quirks.conf.sample %D/%%ETCDIR%%/xhtml11-quirks.conf; then rm -f %D/%%ETCDIR%%/xhtml11-quirks.conf; fi
 %%ETCDIR%%/xhtml11-quirks.conf.sample
 @exec if [ ! -f %D/%%ETCDIR%%/xhtml11-quirks.conf ]; then cp -p %D/%F %B/xhtml11-quirks.conf; fi
+%%PYTHON_SITELIBDIR%%/asciidocapi.py
 man/man1/a2x.1.gz
 man/man1/asciidoc.1.gz
 @dirrm %%ETCDIR%%/themes/volnitsky
_______________________________________________
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 Po-Chuan Hsieh freebsd_committer freebsd_triage 2014-02-04 16:54:24 UTC
State Changed
From-To: open->closed

Committed. Thanks!