|
From: Brad L. <bra...@gm...> - 2019-10-09 18:23:03
|
And another good variable for bash to get rid of the message
about bash deprecation and zsh shell default:
export BASH_SILENCE_DEPRECATION_WARNING=1
put in your .bash_profile
Before, in PackageInfo, I had
install-location="/tmp"
and I moved or copied the package into its final install location
($HOME/Desktop/BallroomDJ.app).
Yes, that's not so normal, but it works for me.
Did not work so well with the new installer.
I don't have code-signing (can't afford that), not to mention, I don't use
XCode to generate the package.
So with Catalina I *must* install in the user home directory.
PackageInfo:
install-location="/tmp"
enable_localSystem="false"
enable_anywhere="true"
enable_currentUserHome="true"
This ignores install-location and installs to the desktop automatically.
I don't know if all of those new enable_* are needed, but it seems to work.
On Wed, Oct 9, 2019 at 11:06 AM Marc Culler <cul...@gm...> wrote:
> It is specifically mentioned when you run /usr/bin/wish
>
> $ /usr/bin/wish
> DEPRECATION WARNING: The system version of Tk is deprecated and may be
> removed in a future release. Please don't rely on it. Set
> TK_SILENCE_DEPRECATION=1 to suppress this warning.
>
> What changes did you have to make to your package??
>
> - Marc
>
> On Wed, Oct 9, 2019 at 12:57 PM Brad Lanam <bra...@gm...>
> wrote:
>
>> Mac OS Catalina has a new security model.
>> Anyone producing .pkg or .dmg files needs to check and make
>> sure their installation process works.
>>
>> Fortunately, with a little research and much flailing around, my .pkg is
>> working again.
>>
>> Python2, ruby, perl will be removed from the next release of Mac OS.
>> Tcl (8.5.9) is not specifically mentioned, but I would not surprised if it
>> got removed also.
>>
>>
>> On Wed, Oct 9, 2019 at 7:20 AM Donal K. Fellows <
>> don...@ma...> wrote:
>>
>>> On 09/10/2019 04:43, Marc Culler wrote:
>>> > I am not in favor of accepting test failures.
>>>
>>> Nobody is, but if we can't fix (or define a way to reliably skip when
>>> the test is known to fail for silly reasons unrelated to what is really
>>> being tested) then what other alternative is there?
>>>
>>> Donal.
>>> _______________________________________________
>>> Tcl-Core mailing list
>>> Tcl...@li...
>>> https://lists.sourceforge.net/lists/listinfo/tcl-core
>>>
>> _______________________________________________
>> Tcl-Core mailing list
>> Tcl...@li...
>> https://lists.sourceforge.net/lists/listinfo/tcl-core
>>
>
|