|
|
Subject: Bug#348955: vim: lost syntax/svn.vim in the latest update - msg#00117
List: debian.packages.vim.devel
Le Ven 20 Janvier 2006 09:24, Stefano Zacchiroli a Ãcrit :
> tags 348955 + confirmed
> thanks
>
> On Fri, Jan 20, 2006 at 03:23:00AM +0100, Adeodato Simà wrote:
> > Package: vim-runtime
> > Version: 1:6.4-006+2
> >
> > Hi!
> >
> > Subject is pretty descriptive, here are the details:
>
> Yup, the bug is indeed present also in the svn version of the
> package.
>
> Since I suspect you have at hand the two .deb-s, would you please be
> so kind to check if other files have been lost between the two
> versions of the vim-runtime package? Running debdiff on them should
> be enough.
>
> Many thanks for your report.
> Cheers.
only svn.vim is missing.
I wonder if it's not because of some : dh_install -X.svn from revision
458 ....
--
ÂOÂ Pierre Habouzit
ÂÂO madcoder@xxxxxxxxxx
OOO http://www.madism.org
pgpDlws4SfU0T.pgp
Description: PGP signature
Was this page helpful?
Thread at a glance:
Previous Message by Date:
click to view message preview
Re: pkg-vim @ debcamp 2006?
* Stefano Zacchiroli wrote:
> Is anyone of you guys planning to be there as well?
Of course! :-)
> If this is the case we can organize some days of vim related work.
> I've some topics in mind which may deserve work for which the
> debcamp could be a wonderful occasion!
Good idea.
Norbert
Next Message by Date:
click to view message preview
r475 - trunk/vim/debian
Author: madcoder
Date: 2006-01-20 10:16:36 +0000 (Fri, 20 Jan 2006)
New Revision: 475
Modified:
trunk/vim/debian/changelog
trunk/vim/debian/rules
Log:
fix the missing svn.vim thing
Modified: trunk/vim/debian/changelog
===================================================================
--- trunk/vim/debian/changelog 2006-01-19 17:31:07 UTC (rev 474)
+++ trunk/vim/debian/changelog 2006-01-20 10:16:36 UTC (rev 475)
@@ -9,8 +9,10 @@
* vim's syntax coloring mode should consider .sce extension.
(Closes: #338771)
* subversion commit log syntax and l10n. (Closes: #341288)
+ * debian/rules : dh_install -X.svn is incorrect, as it matches .../svn.vim.
+ uses dh_install -X\\.svn instread. (Closes: #348955)
- -- Pierre Habouzit <madcoder@xxxxxxxxxx> Mon, 16 Jan 2006 10:57:31 +0100
+ -- Pierre Habouzit <madcoder@xxxxxxxxxx> Fri, 20 Jan 2006 11:06:50 +0100
vim (1:6.4-006+2) unstable; urgency=low
Modified: trunk/vim/debian/rules
===================================================================
--- trunk/vim/debian/rules 2006-01-19 17:31:07 UTC (rev 474)
+++ trunk/vim/debian/rules 2006-01-20 10:16:36 UTC (rev 475)
@@ -307,7 +307,7 @@
debian/lintian/vim-variant > debian/lintian/vim
dh_installman
- dh_install -X.svn --fail-missing
+ dh_install -X\\.svn --fail-missing
# evim is GUI related, move its manpage to vim-gui-common
mv debian/{vim-common,vim-gui-common}/usr/share/man/man1/evim.1
dh_link
@@ -342,7 +342,7 @@
if [ "$*" = "vim-tiny" ]; then \
echo "debian/tiny/doc/ usr/share/vim/" >> debian/$*.install; \
fi
- dh_install -X.svn
+ dh_install -X\\.svn
dh_link
touch $@
Previous Message by Thread:
click to view message preview
Bug#348955: vim: lost syntax/svn.vim in the latest update
tags 348955 + confirmed
thanks
On Fri, Jan 20, 2006 at 03:23:00AM +0100, Adeodato Simó wrote:
> Package: vim-runtime
> Version: 1:6.4-006+2
>
> Hi!
>
> Subject is pretty descriptive, here are the details:
Yup, the bug is indeed present also in the svn version of the package.
Since I suspect you have at hand the two .deb-s, would you please be so
kind to check if other files have been lost between the two versions of
the vim-runtime package? Running debdiff on them should be enough.
Many thanks for your report.
Cheers.
--
Stefano Zacchiroli -*- Computer Science PhD student @ Uny Bologna, Italy
zack@{cs.unibo.it,debian.org,bononia.it} -%- http://www.bononia.it/zack/
If there's any real truth it's that the entire multidimensional infinity
of the Universe is almost certainly being run by a bunch of maniacs. -!-
signature.asc
Description: Digital signature
Next Message by Thread:
click to view message preview
Bug#348955: vim: lost syntax/svn.vim in the latest update
Le Ven 20 Janvier 2006 09:24, Stefano Zacchiroli a Ãcrit :
> tags 348955 + confirmed
> thanks
>
> On Fri, Jan 20, 2006 at 03:23:00AM +0100, Adeodato Simà wrote:
> > Package: vim-runtime
> > Version: 1:6.4-006+2
> >
> > Hi!
> >
> > Subject is pretty descriptive, here are the details:
>
> Yup, the bug is indeed present also in the svn version of the
> package.
>
> Since I suspect you have at hand the two .deb-s, would you please be
> so kind to check if other files have been lost between the two
> versions of the vim-runtime package? Running debdiff on them should
> be enough.
>
> Many thanks for your report.
> Cheers.
this is what I thought :
dh_install -X.svn generate a find command that (for the interesting
part) looks like :
find $DIR ! \( -regex .\*.svn.\* )
which excludes svn.vim for a reason I can't understand, since even with
the regex dot, ^svn.vim$ shouldn't be matched by the regex : .*.svn.*
that requires a character to be present before the `svn`.
anyway, there is a trivial fix, I'm on it. Since the same find with
\\.svn instead of .svn does what it should. I think this worth a bug
report on find.
what do you think ?
--
ÂOÂ Pierre Habouzit
ÂÂO madcoder@xxxxxxxxxx
OOO http://www.madism.org
pgpoN9pF5jRZx.pgp
Description: PGP signature
|
|