[26267] in Source-Commits
Re: /svn/athena r25478 - trunk/debathena/meta/syslog/debian
daemon@ATHENA.MIT.EDU (Geoffrey Thomas)
Mon May 7 15:55:28 2012
Date: Mon, 7 May 2012 12:55:26 -0700 (PDT)
From: Geoffrey Thomas <geofft@MIT.EDU>
To: Jonathan D Reed <jdreed@MIT.EDU>
cc: source-commits@MIT.EDU
In-Reply-To: <201205071947.q47JlAxG005871@drugstore.mit.edu>
Message-ID: <alpine.DEB.2.00.1205071255240.21568@dr-wily.mit.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed
ACK, thanks.
--
Geoffrey Thomas
geofft@mit.edu
On Mon, 7 May 2012, Jonathan D Reed wrote:
> Author: jdreed
> Date: 2012-05-07 15:47:10 -0400 (Mon, 07 May 2012)
> New Revision: 25478
>
> Modified:
> trunk/debathena/meta/syslog/debian/changelog
> trunk/debathena/meta/syslog/debian/rules
> Log:
> In syslog:
> * Deal with multi-arch by only accepting the first line aptitude
> returns, and stripping out any arch component that may be there
>
>
> Modified: trunk/debathena/meta/syslog/debian/changelog
> ===================================================================
> --- trunk/debathena/meta/syslog/debian/changelog 2012-05-07 18:34:01 UTC (rev 25477)
> +++ trunk/debathena/meta/syslog/debian/changelog 2012-05-07 19:47:10 UTC (rev 25478)
> @@ -1,9 +1,10 @@
> debathena-syslog (1.1) unstable; urgency=low
>
> - * Deal with multi-arch by only accepting the first line aptitude returns
> + * Deal with multi-arch by only accepting the first line aptitude
> + returns, and stripping out any arch component that may be there
> * Comment out unused DEFAULT_SYSLOG variable in rules
>
> - -- Jonathan Reed <jdreed@mit.edu> Thu, 03 May 2012 15:51:11 -0400
> + -- Jonathan Reed <jdreed@mit.edu> Mon, 07 May 2012 15:46:35 -0400
>
> debathena-syslog (1.0) unstable; urgency=low
>
>
> Modified: trunk/debathena/meta/syslog/debian/rules
> ===================================================================
> --- trunk/debathena/meta/syslog/debian/rules 2012-05-07 18:34:01 UTC (rev 25477)
> +++ trunk/debathena/meta/syslog/debian/rules 2012-05-07 19:47:10 UTC (rev 25478)
> @@ -9,7 +9,7 @@
>
> debian/deps:
> echo -n "debathena-syslog-depends=" > $@
> - $(APTITUDE) search '~Psystem-log-daemon~pimportant' -F '%p' | head -1 >> $@
> + $(APTITUDE) search '~Psystem-log-daemon~pimportant' -F '%p' | cut -d ':' -f 1 | head -1 >> $@
> echo >> $@
>
> # DEFAULT_SYSLOG = $(shell $(APTITUDE) search -F"%p" ~Psystem-log-daemon~pimportant)
>
>