-
Notifications
You must be signed in to change notification settings - Fork 558
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[_61] tarball fine on win32, zip isn't #671
Comments
From jbley@cs.cmu.eduWriting Makefile for B There is no defsubs.h.PL in the _61 zip file, but That's weird. |
From @janduboisOn Fri, 1 Oct 1999 21:43:40 -0400, John Bley <jbley@cs.cmu.edu> wrote:
The devel.zip file seems to be missing all files with more than one '.' in -Jan |
From @jhiJan Dubois writes:
Sigh. I seem never to get the .zip right. If somebody on Win* platforms (who cares enough to demand a .zip in -- |
From @janduboisOn Sun, 3 Oct 1999 14:53:21 +0300 (EET DST), Jarkko Hietaniemi
I have to admit that I don't really see the point of providing a zip file But in any case, doesn't zip -ro9 devel perl5.005_61 create the correct thing? At least that's my mental equivalent of tar cvf devel.tar perl5.005_61 -Jan |
From [Unknown Contact. See original ticket]
I vote for this point of view. At least cygwin will help to unzip and untar.
-zip -ro9 devel perl5.005_61 If I understand correctly -R stands for 'Recurse subdirectories' and is Good luck, |
From @janduboisOn Sun, 3 Oct 1999 16:38:10 +0400 , "Konovalov, Vadim"
They are similar, but not the same: -r Travel the directory structure recursively; for zip -r foo foo In this case, all the files and directories in foo -R Travel the directory structure recursively starting zip -R foo *.c In this case, all the files matching *.c in the pkzip -rP foo *.c I maintain for zipping the complete tree -r is preferable. -Jan |
From @jhiJan Dubois writes:
Neither do I. But people ask from me for such a thing. No, explaining -- |
From [Unknown Contact. See original ticket]Jarkko Hietaniemi <jhi@iki.fi> writes:
I think that is UNIX box's overzealous applying the 8.3 rule that causes -- |
From @jhiOkay, I will redo the zips using the aforementioned zip incantation, -- |
From [Unknown Contact. See original ticket]
Sometimes it *does* so, and if it does, noone can convince it not to do it Win32 have many (mis)features in it's shell that designed to make things Good luck, |
From [Unknown Contact. See original ticket]At 17:22 03/10/1999 +0300, Jarkko Hietaniemi wrote:
Wouldn't a latest.zip link to latest.tar.gz make them go away ? .Robin |
From @doughera88On Sun, 3 Oct 1999, Jarkko Hietaniemi wrote:
Sometimes it's just less work to eliminate the non-problem than it is to More succinctly, it shouldn't be hard to keep the distribution free of -- |
From [Unknown Contact. See original ticket]At 09:31 AM 10/4/99 -0400, Andy Dougherty wrote:
The VMS uncompressing/unarchiving tools take care of this automagically, Dan ----------------------------------------"it's like this"------------------- |
From @jhiAndy Dougherty writes:
The defsubs_h.PL has been taken care of already. -- |
From @doughera88On Mon, 4 Oct 1999, Dan Sugalski wrote:
Well it sort of still is p5p's problem because you still have to special Nick already handled renaming defsubs.h.PL to defsubs_h.PL in the -- |
From @doughera88On Mon, 4 Oct 1999, Jarkko Hietaniemi wrote:
Thanks. This patch removes the now-unnecessary VMS-specific code in Andy Dougherty doughera@lafayette.edu #!/bin/sh Index: perl-andy/MANIFEST Inline Patch--- perl-p4/MANIFEST Tue Sep 28 13:52:49 1999
+++ perl-andy/MANIFEST Mon Oct 4 13:03:47 1999
@@ -91,7 +91,7 @@
eg/cgi/crash.cgi CGI example
eg/cgi/customize.cgi CGI example
eg/cgi/diff_upload.cgi CGI example
-eg/cgi/dna.small.gif.uu Small image for CGI examples
+eg/cgi/dna_small_gif.uu Small image for CGI examples
eg/cgi/file_upload.cgi CGI example
eg/cgi/frameset.cgi CGI example
eg/cgi/index.html Index page for CGI examples
@@ -104,7 +104,7 @@
eg/cgi/popup.cgi CGI example
eg/cgi/save_state.cgi CGI example
eg/cgi/tryit.cgi CGI example
-eg/cgi/wilogo.gif.uu Small image for CGI examples
+eg/cgi/wilogo_gif.uu Small image for CGI examples
eg/changes A program to list recently changed files
eg/client A sample client
eg/down A program to do things to subdirectories
Inline Patch--- perl-p4/eg/cgi/dna_small_gif.uu Tue May 25 15:06:22 1999
+++ perl-andy/eg/cgi/dna_small_gif.uu Mon Oct 4 13:10:32 1999
@@ -1,4 +1,4 @@
-begin 444 dna.small.gif
+begin 444 dna_small.gif
M1TE&.#=A)0`J`.<``+9%&Y<R0M<F'ID\,!<07%<G1:P<0Q`A2Q`P;"L9/L$:
M,"480N5"&RL7:4LD0T,G144[7BHL2B4?3\0I+"</)BQ.9KD0/S878\96$Z\@
M(:\1*RL:3L0W&QL?2#4?9>@_&A$_5<I"&C`A3*,3-A`//9X<)\@Q(L`@.#\E
Inline Patch--- perl-p4/ext/B/defsubs_h.PL Tue Sep 21 12:28:15 1999
+++ perl-andy/ext/B/defsubs_h.PL Mon Oct 4 13:03:47 1999
@@ -3,7 +3,6 @@
# Extracting defsubs.h (with variable substitutions)
#!perl
my ($out) = __FILE__ =~ /(^.*)\.PL/;
-if ($^O eq 'VMS') { ($out) = __FILE__ =~ /^(.+)_PL$/i; }
$out =~ s/_h$/.h/;
open(OUT,">$out") || die "Cannot open $file:$!";
print "Extracting $out . . .\n";
End of patch. |
From @jhiPlease try these, just updated in the CPAN/src master. 5176 -rw-r--r-- 1 jhi ftp 5294200 Oct 5 12:56 devel.zip -- |
From [Unknown Contact. See original ticket]
The devel builds and tests fine with VC++ 6 on NT4. Thanks, |
Migrated from rt.perl.org#1551 (status was 'resolved')
Searchable as RT1551$
The text was updated successfully, but these errors were encountered: