Bug 175333 - New port: sysutils/procenv Utility to show process environment
Summary: New port: sysutils/procenv Utility to show process environment
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: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-01-15 21:10 UTC by jamesodhunt
Modified: 2013-01-28 10:00 UTC (History)
0 users

See Also:


Attachments
file.shar (1.70 KB, text/plain)
2013-01-15 21:10 UTC, jamesodhunt
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description jamesodhunt 2013-01-15 21:10:03 UTC
New port for procenv utility that dumps its environment.

Procenv is a command-line tool that displays as much detail about itself and its environment as possible. It can be used as a test tool, to understand the type of environment a process runs in, and for comparing system environments.

The initial blog post with further details is here:

http://ifdeflinux.blogspot.co.uk/2012/10/procenv-and-process-environment.html

Fix: n/a.

Patch attached with submission follows:
How-To-Repeat: n/a.
Comment 1 dfilter service freebsd_committer freebsd_triage 2013-01-28 09:57:41 UTC
Author: danfe
Date: Mon Jan 28 09:57:32 2013
New Revision: 311104
URL: http://svnweb.freebsd.org/changeset/ports/311104

Log:
  New port: sysutils/procenv, utility to show process environment.
  
  PR:		ports/175333
  Submitted by:	James Hunt

Added:
  head/sysutils/procenv/
  head/sysutils/procenv/Makefile   (contents, props changed)
  head/sysutils/procenv/distinfo   (contents, props changed)
  head/sysutils/procenv/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Mon Jan 28 08:59:36 2013	(r311103)
+++ head/sysutils/Makefile	Mon Jan 28 09:57:32 2013	(r311104)
@@ -700,6 +700,7 @@
     SUBDIR += pp
     SUBDIR += pprotectd
     SUBDIR += prips
+    SUBDIR += procenv
     SUBDIR += procmap
     SUBDIR += progsreiserfs
     SUBDIR += psgconf

Added: head/sysutils/procenv/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/procenv/Makefile	Mon Jan 28 09:57:32 2013	(r311104)
@@ -0,0 +1,24 @@
+# Created by: James Hunt <james.hunt@ubuntu.com>
+# $FreeBSD$
+
+PORTNAME=	procenv
+PORTVERSION=	0.20
+CATEGORIES=	sysutils
+MASTER_SITES=	http://launchpadlibrarian.net/128556138/
+
+MAINTAINER=	james.hunt@ubuntu.com
+COMMENT=	Utility to show process environment
+
+LICENSE=	GPLv3
+
+GNU_CONFIGURE=	yes
+USE_GMAKE=	yes
+
+MAN1=		procenv.1
+PLIST_FILES=	bin/procenv
+
+.if ${OSVERSION} < 800505
+BROKEN=		does not build on old ${OPSYS} versions
+.endif
+
+.include <bsd.port.mk>

Added: head/sysutils/procenv/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/procenv/distinfo	Mon Jan 28 09:57:32 2013	(r311104)
@@ -0,0 +1,2 @@
+SHA256 (procenv-0.20.tar.gz) = 5405daba9373bc410ad227c0a1be1e960fe52f3ea070d55593cec46d11b7fe6a
+SIZE (procenv-0.20.tar.gz) = 210631

Added: head/sysutils/procenv/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/procenv/pkg-descr	Mon Jan 28 09:57:32 2013	(r311104)
@@ -0,0 +1,6 @@
+This package contains command-line tool that displays as much detail about
+itself and its environment as possible.  It can be used as a test tool, to
+understand the type of environment a process runs in, and for comparing
+system environments.
+
+WWW: https://code.launchpad.net/procenv
_______________________________________________
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 2 Alexey Dokuchaev freebsd_committer freebsd_triage 2013-01-28 09:57:54 UTC
State Changed
From-To: open->closed

Committed with minor modifications, thanks!