From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 2 05:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C1755E65 for ; Wed, 2 Oct 2013 05:50:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9FA6F2D90 for ; Wed, 2 Oct 2013 05:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r925o0kZ061015 for ; Wed, 2 Oct 2013 05:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r925o0qM061014; Wed, 2 Oct 2013 05:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 2 Oct 2013 05:50:00 GMT Resent-Message-Id: <201310020550.r925o0qM061014@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Max Sterling Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 300EBDC1 for ; Wed, 2 Oct 2013 05:46:24 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1C64D2D51 for ; Wed, 2 Oct 2013 05:46:24 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r925kNZ8090238 for ; Wed, 2 Oct 2013 05:46:23 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r925kNId090237; Wed, 2 Oct 2013 05:46:23 GMT (envelope-from nobody) Message-Id: <201310020546.r925kNId090237@oldred.freebsd.org> Date: Wed, 2 Oct 2013 05:46:23 GMT From: Max Sterling To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182563: [patch] Update devel/pymacs to 0.25 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Oct 2013 05:50:00 -0000 >Number: 182563 >Category: ports >Synopsis: [patch] Update devel/pymacs to 0.25 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Oct 02 05:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Max Sterling >Release: 9.1 >Organization: >Environment: FreeBSD marvin 9.1-STABLE FreeBSD 9.1-STABLE #0 r246344: Tue Feb 5 00:46:08 MST 2013 root@marvin:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update devel/pymacs to version 0.25. According to the author of Pymacs, support for xemacs is broken. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 329014) +++ Makefile (working copy) @@ -2,12 +2,10 @@ # $FreeBSD$ PORTNAME= Pymacs -PORTVERSION= 0.22 -PORTREVISION= 6 +PORTVERSION= 0.25 CATEGORIES= devel editors python elisp -MASTER_SITES= http://pymacs.progiciels-bpi.ca/archives/ \ - ${MASTER_SITE_GENTOO} -MASTER_SITE_SUBDIR= distfiles +MASTER_SITES= http://github.com/pinard/${PORTNAME}/archive/v${PORTVERSION}.tar.gz?dummy=/ +FETCH_ARGS= -Fpr MAINTAINER= mwm@mired.org COMMENT= A Python package for scripting emacs @@ -17,20 +15,16 @@ USE_PYTHON_PREFIX= yes USE_EMACS= yes -.if !defined(EMACS_PORT_NAME) -EMACS_PORT_NAME=xemacs21 -.endif - NO_STAGE= yes -post-patch: -.for f in __init__.py pymacs.py - ${REINPLACE_CMD} -e 's,# Copyright,# coding:latin1 Copyright,g' \ - ${WRKSRC}/Pymacs/$f -.endfor +post-extract: + @(cd ${WRKSRC}; \ + ${PYTHON_CMD} pppp -C ppppconfig.py Pymacs.py.in \ + pppp.rst.in pymacs.el.in pymacs.rst.in \ + contrib tests) # Install the emacs side of things post-install: - ${INSTALL_SCRIPT} ${WRKSRC}/pymacs.el ${PREFIX}/${EMACS_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/pymacs.el ${PREFIX}/${EMACS_SITE_LISPDIR} ${EMACS_NAME} -batch -f batch-byte-compile \ ${PREFIX}/${EMACS_SITE_LISPDIR}/pymacs.el Index: distinfo =================================================================== --- distinfo (revision 329014) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (Pymacs-0.22.tar.gz) = 71b465f81366a4bea4a519781e1d9cb1ad067280e86f9b385d57b74c32bf7a75 -SIZE (Pymacs-0.22.tar.gz) = 363119 +SHA256 (Pymacs-0.25.tar.gz) = bcb1af7f55c5a4c050f41413e54d7d1f3c9bf8febebd99792f4aa45cd8f41c8f +SIZE (Pymacs-0.25.tar.gz) = 120554 Index: pkg-message =================================================================== --- pkg-message (revision 329014) +++ pkg-message (working copy) @@ -1,9 +1,11 @@ Add the following to your emacs initialization file to enable pymacs: -(autoload 'pymacs-load "pymacs" nil t) -(autoload 'pymacs-eval "pymacs" nil t) (autoload 'pymacs-apply "pymacs") (autoload 'pymacs-call "pymacs") +(autoload 'pymacs-eval "pymacs" nil t) +(autoload 'pymacs-exec "pymacs" nil t) +(autoload 'pymacs-load "pymacs" nil t) +(autoload 'pymacs-autoload "pymacs") -See http://pymacs.progiciels-bpi.ca/manual/index.html for +See http://pymacs.progiciels-bpi.ca/pymacs.html for documentation on using pymacs. Index: pkg-plist =================================================================== --- pkg-plist (revision 329014) +++ pkg-plist (working copy) @@ -1,28 +1,5 @@ +%%PYTHON_SITELIBDIR%%/Pymacs.py +%%PYTHON_SITELIBDIR%%/Pymacs.pyc +%%PYTHON_SITELIBDIR%%/Pymacs.pyo %%EMACS_SITE_LISPDIR%%/pymacs.el %%EMACS_SITE_LISPDIR%%/pymacs.elc -bin/pymacs-services -bin/rebox -%%PYTHON_SITELIBDIR%%/Pymacs/pymacs.py -%%PYTHON_SITELIBDIR%%/Pymacs/__init__.py -%%PYTHON_SITELIBDIR%%/Pymacs/Nn/nncourriel.py -%%PYTHON_SITELIBDIR%%/Pymacs/Nn/folder.py -%%PYTHON_SITELIBDIR%%/Pymacs/Nn/__init__.py -%%PYTHON_SITELIBDIR%%/Pymacs/Nn/nncourriel.pyc -%%PYTHON_SITELIBDIR%%/Pymacs/Nn/folder.pyc -%%PYTHON_SITELIBDIR%%/Pymacs/Nn/__init__.pyc -%%PYTHON_SITELIBDIR%%/Pymacs/Nn/nncourriel.pyo -%%PYTHON_SITELIBDIR%%/Pymacs/Nn/folder.pyo -%%PYTHON_SITELIBDIR%%/Pymacs/Nn/__init__.pyo -%%PYTHON_SITELIBDIR%%/Pymacs/Rebox/__init__.py -%%PYTHON_SITELIBDIR%%/Pymacs/Rebox/rebox.py -%%PYTHON_SITELIBDIR%%/Pymacs/Rebox/__init__.pyc -%%PYTHON_SITELIBDIR%%/Pymacs/Rebox/rebox.pyc -%%PYTHON_SITELIBDIR%%/Pymacs/Rebox/__init__.pyo -%%PYTHON_SITELIBDIR%%/Pymacs/Rebox/rebox.pyo -%%PYTHON_SITELIBDIR%%/Pymacs/pymacs.pyc -%%PYTHON_SITELIBDIR%%/Pymacs/__init__.pyc -%%PYTHON_SITELIBDIR%%/Pymacs/pymacs.pyo -%%PYTHON_SITELIBDIR%%/Pymacs/__init__.pyo -@dirrm %%PYTHON_SITELIBDIR%%/Pymacs/Nn -@dirrm %%PYTHON_SITELIBDIR%%/Pymacs/Rebox -@dirrm %%PYTHON_SITELIBDIR%%/Pymacs >Release-Note: >Audit-Trail: >Unformatted: