Bug 188755 - [PATCH] archivers/dpkg: Add shebangfixes
Summary: [PATCH] archivers/dpkg: Add shebangfixes
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: Bryan Drewery
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-04-18 13:00 UTC by Johannes Jost Meixner
Modified: 2014-04-19 01:50 UTC (History)
1 user (show)

See Also:


Attachments
dpkg-1.17.6.patch (529 bytes, patch)
2014-04-18 13:00 UTC, Johannes Jost Meixner
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Johannes Jost Meixner freebsd_committer freebsd_triage 2014-04-18 13:00:00 UTC
- Add shebangfixes for setup/update/install.

  Nearly fix build on 11/head with pkg-1.2.7, poudriere and DEVELOPER=yes.

There are two remaining leftovers:

man/hu/man1
man/hu/man5

and I think both do not belong in the pkg-plist as they should be filtered out
just like all other languages do.
 

Port maintainer (pawel@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 1.01 (mode: change, diff: SVN)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-04-18 13:00:03 UTC
Responsible Changed
From-To: freebsd-ports-bugs->pawel

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 Bryan Drewery freebsd_committer freebsd_triage 2014-04-18 23:40:35 UTC
Responsible Changed
From-To: pawel->bdrewery

I'll take it.
Comment 3 dfilter service freebsd_committer freebsd_triage 2014-04-19 01:49:52 UTC
Author: bdrewery
Date: Sat Apr 19 00:49:48 2014
New Revision: 351578
URL: http://svnweb.freebsd.org/changeset/ports/351578
QAT: https://qat.redports.org/buildarchive/r351578/

Log:
  - Fix shebang issues [1]
  - Properly install and cleanup man dirs not in BSD.local.dist
  
  PR:		ports/188755 [1]
  Submitted by:	xmj [1]

Modified:
  head/archivers/dpkg/Makefile
  head/archivers/dpkg/pkg-plist

Modified: head/archivers/dpkg/Makefile
==============================================================================
--- head/archivers/dpkg/Makefile	Sat Apr 19 00:01:30 2014	(r351577)
+++ head/archivers/dpkg/Makefile	Sat Apr 19 00:49:48 2014	(r351578)
@@ -3,6 +3,7 @@
 
 PORTNAME=	dpkg
 PORTVERSION=	1.17.6
+PORTREVISION=	1
 CATEGORIES=	archivers sysutils
 MASTER_SITES=	${MASTER_SITE_DEBIAN_POOL}
 DISTNAME=	dpkg_${PORTVERSION}
@@ -18,8 +19,10 @@ RUN_DEPENDS=	gtar:${PORTSDIR}/archivers/
 		gmd5sum:${PORTSDIR}/sysutils/coreutils
 
 GNU_CONFIGURE=	yes
-USES=		gmake iconv perl5 pkgconfig tar:xz
+USES=		gmake iconv perl5 pkgconfig tar:xz shebangfix
 WRKSRC=		${WRKDIR}/dpkg-${PORTVERSION}
+SHEBANG_FILES=	dselect/methods/ftp/update dselect/methods/ftp/install \
+		dselect/methods/ftp/setup
 
 DPKGDIR?=	/var/db/dpkg
 PLIST_SUB+=	DPKGDIR=${DPKGDIR:C,^/,,}

Modified: head/archivers/dpkg/pkg-plist
==============================================================================
--- head/archivers/dpkg/pkg-plist	Sat Apr 19 00:01:30 2014	(r351577)
+++ head/archivers/dpkg/pkg-plist	Sat Apr 19 00:49:48 2014	(r351578)
@@ -635,6 +635,34 @@ sbin/start-stop-daemon
 @dirrmtry etc/dpkg/dpkg.cfg.d
 @dirrmtry etc/dpkg
 @dirrmtry etc/alternatives
+%%NLS%%@dirrmtry man/sv/man8
+%%NLS%%@dirrmtry man/sv/man5
+%%NLS%%@dirrmtry man/sv/man1
+%%NLS%%@dirrmtry man/sv
+%%NLS%%@dirrmtry man/pl/man8
+%%NLS%%@dirrmtry man/pl/man5
+%%NLS%%@dirrmtry man/pl/man1
+%%NLS%%@dirrmtry man/pl
+%%NLS%%@dirrmtry man/it/man8
+%%NLS%%@dirrmtry man/it/man5
+%%NLS%%@dirrmtry man/it/man1
+%%NLS%%@dirrmtry man/it
+%%NLS%%@dirrmtry man/hu/man8
+%%NLS%%@dirrmtry man/hu/man5
+%%NLS%%@dirrmtry man/hu/man1
+%%NLS%%@dirrmtry man/hu
+%%NLS%%@dirrmtry man/fr/man8
+%%NLS%%@dirrmtry man/fr/man5
+%%NLS%%@dirrmtry man/fr/man1
+%%NLS%%@dirrmtry man/fr
+%%NLS%%@dirrmtry man/es/man8
+%%NLS%%@dirrmtry man/es/man5
+%%NLS%%@dirrmtry man/es/man1
+%%NLS%%@dirrmtry man/es
+%%NLS%%@dirrmtry man/de/man8
+%%NLS%%@dirrmtry man/de/man5
+%%NLS%%@dirrmtry man/de/man1
+%%NLS%%@dirrmtry man/de
 @cwd /
 @exec mkdir -p %%DPKGDIR%%/alternatives
 @exec mkdir -p %%DPKGDIR%%/info
_______________________________________________
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 4 Bryan Drewery freebsd_committer freebsd_triage 2014-04-19 01:49:58 UTC
State Changed
From-To: open->closed

Committed. Thanks!