Was the downgrade from gnupg2 to gnupg-unified intentional?
Optional but preferable: can you change the *Depends: fields to use the multiline format in ABC order:
Depends: <<
pkg1,
pkg2
<<
instead? It makes tracking dependencies significantly easier.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Here is an update with the perferred format. I did intend to use gpg-unified. I believe that the code does not use gpg2. Also since it is only compatible with parmiko version 2 I removed that backend.
What happens if someone has a non-Fink python2.7 first in the path? Will this affect all the #!/usr/bin/env python2.7 in the scripts? I think it would be better to change those to #!/sw/bin/python2.7 instead (I can do the change locally before committing).
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Ok, go ahead. Should that be a %p expansion since not all fink is in /sw? I was reluctant to hard code a path.
It should work with other installations of python27 so if someone boosted the priority of their version over the fink version then that is their issue. I am fairly sure it works with the stock python on OS X. I kept using 2.7 since that is on many legacy systems and it should be backwards compatible.
-Scott
On Feb 2, 2017, at 10:32 PM, Hanspeter Niederstrasser nieder@users.sf.net wrote:
What happens if someone has a non-Fink python2.7 first in the path? Will this affect all the #!/usr/bin/env python2.7 in the scripts? I think it would be better to change those to #!/sw/bin/python2.7 instead (I can do the change locally before committing).
And here is the dpkg output as promised...
Was the downgrade from gnupg2 to gnupg-unified intentional?
Optional but preferable: can you change the
*Depends:fields to use the multiline format in ABC order:instead? It makes tracking dependencies significantly easier.
Hanspeter,
Here is an update with the perferred format. I did intend to use gpg-unified. I believe that the code does not use gpg2. Also since it is only compatible with parmiko version 2 I removed that backend.
What happens if someone has a non-Fink python2.7 first in the path? Will this affect all the
#!/usr/bin/env python2.7in the scripts? I think it would be better to change those to#!/sw/bin/python2.7instead (I can do the change locally before committing).Ok, go ahead. Should that be a %p expansion since not all fink is in /sw? I was reluctant to hard code a path.
It should work with other installations of python27 so if someone boosted the priority of their version over the fink version then that is their issue. I am fairly sure it works with the stock python on OS X. I kept using 2.7 since that is on many legacy systems and it should be backwards compatible.
-Scott
You can use a @TOKEN@ in the patch file that is then replaced on the fly in PatchScript time with this construct:
sed 's|@PREFIX@|%p|g' < %{PatchFile} | patch -p1Thanks for the package update.