From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jun 13 12:00:16 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BACF10656CB for ; Sun, 13 Jun 2010 12:00:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2A4228FC14 for ; Sun, 13 Jun 2010 12:00:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o5DC0FKc042777 for ; Sun, 13 Jun 2010 12:00:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o5DC0Fvf042776; Sun, 13 Jun 2010 12:00:15 GMT (envelope-from gnats) Date: Sun, 13 Jun 2010 12:00:15 GMT Message-Id: <201006131200.o5DC0Fvf042776@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Anonymous Cc: Subject: Re: ports/147546: Update Port: editors/emacs-devel to a snapshot of 24.x X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anonymous List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jun 2010 12:00:16 -0000 The following reply was made to PR ports/147546; it has been noted by GNATS. From: Anonymous To: wahjava@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/147546: Update Port: editors/emacs-devel to a snapshot of 24.x Date: Sun, 13 Jun 2010 15:55:13 +0400 Please, don't abuse PORTREVISION. It's not meant to be a part of DISTNAME. PORTREVISION is commonly used to indicate that an update has happened that affects the *port framework itself*, but not the distributed software (e.g., local patches or Makefile changes). And it'd be better if you used Bazaar revision number for EMACS_REV along with *commit date*, not the date you checked out, e.g. EMACS_REV = bzr100530.20100604 I had to guess last commit based on lisp/ChangeLog so I could check that the sources were pristine. $ bzr log --timezone=utc --short -r100530 http://bzr.savannah.gnu.org/r/emacs/trunk/ %% @@ -6,13 +6,11 @@ # PORTNAME= emacs -PORTVERSION= ${EMACS_VER} -PORTREVISION= ${EMACS_REV} +PORTVERSION= ${EMACS_VER}.${EMACS_REV:C/^bzr.*\.//} PORTEPOCH= 1 CATEGORIES= editors ipv6 MASTER_SITES= http://wahjava.users.sourceforge.net/ MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= ${PORTNAME}-${PORTVERSION}_${EMACS_REV} MAINTAINER= ashish@FreeBSD.org COMMENT= GNU editing macros @@ -27,7 +25,7 @@ CONFLICTS= emacs-19.* emacs-21.* emacs-22.* emacs-23.* \ INSTALLS_ICONS= yes EMACS_VER= 24.0.50 -EMACS_REV= 20100605 +EMACS_REV= bzr100530.20100605 GNU_CONFIGURE= yes USE_GMAKE= yes USE_BZIP2= yes %%