Bug 176611

Summary: [PATCH] mail/fetchmail: Chase _tkinter.so relocation
Product: Ports & Packages Reporter: Li-Wen Hsu <lwhsu>
Component: Individual Port(s)Assignee: Beech Rintoul <beech>
Status: Closed FIXED    
Severity: Affects Only Me CC: chalpin
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
fetchmail-6.3.24_1.patch none

Description Li-Wen Hsu freebsd_committer freebsd_triage 2013-03-02 23:00:00 UTC
Update script for chasing _tkinter.so relocation

Port maintainer (chalpin@cs.wisc.edu) is cc'd.

Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-03-02 23:00:08 UTC
Maintainer of mail/fetchmail,

Please note that PR ports/176611 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/176611

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2013-03-02 23:00:09 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 Corey Halpin 2013-03-02 23:42:22 UTC
  Approve.

On 2013-03-02, Edwin Groothuis wrote:
> Maintainer of mail/fetchmail,
> 
> Please note that PR ports/176611 has just been submitted.
> 
> If it contains a patch for an upgrade, an enhancement or a bug fix
> you agree on, reply to this email stating that you approve the patch
> and a committer will take care of it.
> 
> The full text of the PR can be found at:
>     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/176611
Comment 4 Beech Rintoul freebsd_committer freebsd_triage 2013-03-03 05:07:24 UTC
State Changed
From-To: feedback->open

Maintainer approved 


Comment 5 Beech Rintoul freebsd_committer freebsd_triage 2013-03-03 05:07:24 UTC
Responsible Changed
From-To: freebsd-ports-bugs->beech

I'll take it
Comment 6 dfilter service freebsd_committer freebsd_triage 2013-03-03 08:13:15 UTC
Author: beech
Date: Sun Mar  3 08:13:07 2013
New Revision: 313331
URL: http://svnweb.freebsd.org/changeset/ports/313331

Log:
  - Update script for chasing _tkinter.so relocation
  
  PR:		ports/176611
  Submitted by:	Li-Wen Hsu <lwhsu@FreeBSD.org>
  Approved by:	Corey Halpin <chalpin@cs.wisc.edu> (maintainer)

Modified:
  head/mail/fetchmail/Makefile
  head/mail/fetchmail/files/fetchmailconf.in

Modified: head/mail/fetchmail/Makefile
==============================================================================
--- head/mail/fetchmail/Makefile	Sun Mar  3 07:51:57 2013	(r313330)
+++ head/mail/fetchmail/Makefile	Sun Mar  3 08:13:07 2013	(r313331)
@@ -9,6 +9,7 @@
 
 PORTNAME=	fetchmail
 PORTVERSION=	6.3.24
+PORTREVISION=	1
 CATEGORIES=	mail ipv6
 MASTER_SITES=	SF/${PORTNAME}/branch_6.3/ \
 		http://mandree.home.pages.de/${PORTNAME}/

Modified: head/mail/fetchmail/files/fetchmailconf.in
==============================================================================
--- head/mail/fetchmail/files/fetchmailconf.in	Sun Mar  3 07:51:57 2013	(r313330)
+++ head/mail/fetchmail/files/fetchmailconf.in	Sun Mar  3 08:13:07 2013	(r313331)
@@ -9,7 +9,7 @@ LOCALBASE=%%LOCALBASE%%
 
 if [ -x $LOCALBASE/bin/python ] ; then
 	PYTHON_VERSION=python$(${LOCALBASE}/bin/python -c 'import sys; print sys.version[:3]' 2>/dev/null)
-	if [ -e ${LOCALBASE}/lib/${PYTHON_VERSION}/site-packages/_tkinter.so ]; then
+	if [ -e ${LOCALBASE}/lib/${PYTHON_VERSION}/lib-dynload/_tkinter.so ]; then
 		exec ${LOCALBASE}/libexec/fetchmailconf.py "$@"
 	fi
 fi
_______________________________________________
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 7 Beech Rintoul freebsd_committer freebsd_triage 2013-03-03 08:13:48 UTC
State Changed
From-To: open->closed

Committed, Thanks!