Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:44669 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 19212 invoked from network); 2 Jul 2009 19:15:24 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 2 Jul 2009 19:15:24 -0000 Received: from [127.0.0.1] ([127.0.0.1:12541]) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ECSTREAM id 77/10-18647-C470D4A4 for ; Thu, 02 Jul 2009 15:15:24 -0400 Authentication-Results: pb1.pair.com smtp.mail=xyntrixbitz@stupidhosting.net; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=xyntrix@bitz.org; sender-id=pass Received-SPF: pass (pb1.pair.com: domain stupidhosting.net designates 64.202.189.56 as permitted sender) X-PHP-List-Original-Sender: xyntrixbitz@stupidhosting.net X-Host-Fingerprint: 64.202.189.56 k2smtpout05-01.prod.mesa1.secureserver.net Linux 2.4/2.6 Received: from [64.202.189.56] ([64.202.189.56:48053] helo=k2smtpout05-01.prod.mesa1.secureserver.net) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id ED/E8-09230-6530D4A4 for ; Thu, 02 Jul 2009 14:58:31 -0400 Received: (qmail 14861 invoked from network); 2 Jul 2009 18:58:27 -0000 Received: from unknown (HELO stupidhosting.net) (208.109.97.10) by k2smtpout05-01.prod.mesa1.secureserver.net (64.202.189.56) with ESMTP; 02 Jul 2009 18:58:25 -0000 Received: by stupidhosting.net (Postfix, from userid 501) id 165B21C04B; Thu, 2 Jul 2009 12:16:53 -0700 (MST) Date: Thu, 2 Jul 2009 12:16:53 -0700 To: internals@lists.php.net Message-ID: <20090702191653.GA28525@bitz.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Subject: PHP 5.3.0, phar symlink breaks rpm building. From: xyntrix@bitz.org (Xyntrix) Congratulations on the 5.3 milestone! Packaging the 5.3.0 stable release into an RPM (linux) will error as the bin/phar symlink is created using the build-time path variable. This has been submitted as bug: http://bugs.php.net/bug.php?id=48740 Patch: --- php-5.3.0/ext/phar/Makefile.frag.orig 2009-07-02 11:44:24.000000000 -0700 +++ php-5.3.0/ext/phar/Makefile.frag 2009-07-02 11:45:42.000000000 -0700 @@ -43,4 +43,4 @@ install-pharcmd: pharcmd -@$(mkinstalldirs) $(INSTALL_ROOT)$(bindir) $(INSTALL) $(builddir)/phar.phar $(INSTALL_ROOT)$(bindir) - $(LN_S) -f $(INSTALL_ROOT)$(bindir)/phar.phar $(INSTALL_ROOT)$(bindir)/phar + $(LN_S) -f phar.phar $(INSTALL_ROOT)$(bindir)/phar I encourage this to be included in the next 5.3 release as it is likely cause some woe for vendors that are packaging php. I didn't see any specific rpm building automation tests available and the makerpm script included in the source is a bit dated. Would it be of any benefit to the community to provide an updated reference spec file and makerpm script for rpm capabable platforms? --- Michael McLane On Tue, Jun 30, 2009 at 03:01 PM, Lukas Kahwe Smith said: > Hello! > > The PHP Development Team would like to announce the immediate release > of PHP 5.3.0. This release is a major improvement in the 5.X series, > which includes a large number of new features and bug fixes. > > Release Announcement: http://www.php.net/release/5_3_0.php > Downloads: http://php.net/downloads.php#v5.3.0 > Changelog: http://www.php.net/ChangeLog-5.php#5.3.0 > > regards, > Johannes and Lukas > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php