public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* mksetupini could not find pkg_resources
@ 2017-03-27 16:36 Ivan Gagis
  2017-03-27 19:59 ` Jon Turney
  0 siblings, 1 reply; 8+ messages in thread
From: Ivan Gagis @ 2017-03-27 16:36 UTC (permalink / raw)
  To: cygwin

Hi,

I'm having the following problem with mksetupini script.
On the fresh cygwin installation (both 32 and 64 bits) the script
fails with the following error message:

Traceback (most recent call last):
File "/usr/bin/mksetupini", line 5, in <module>
from pkg_resources import load_entry_point
ImportError: No module named 'pkg_resources'

Googling suggested that it cannpt find python-setuptools framework.
I found out that package 'calm' is installed to /usr/lib/python3.4
while python3-setuptools is installed to /usr/lib/python3.6. Can this
be the root cause of the problem? Any thoughts about how to
fix/workaround it?

Br,
Ivan

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: mksetupini could not find pkg_resources
  2017-03-27 16:36 mksetupini could not find pkg_resources Ivan Gagis
@ 2017-03-27 19:59 ` Jon Turney
  2017-03-27 20:30   ` Ivan Gagis
  0 siblings, 1 reply; 8+ messages in thread
From: Jon Turney @ 2017-03-27 19:59 UTC (permalink / raw)
  To: The Cygwin Mailing List; +Cc: Ivan Gagis

On 27/03/2017 16:53, Ivan Gagis wrote:
> I'm having the following problem with mksetupini script.
> On the fresh cygwin installation (both 32 and 64 bits) the script
> fails with the following error message:
>
> Traceback (most recent call last):
> File "/usr/bin/mksetupini", line 5, in <module>
> from pkg_resources import load_entry_point
> ImportError: No module named 'pkg_resources'

This error kinds of suggests that you either don't have 
python3-setuptools installed, or don't have a version which matches your 
python version

> Googling suggested that it cannpt find python-setuptools framework.
> I found out that package 'calm' is installed to /usr/lib/python3.4
> while python3-setuptools is installed to /usr/lib/python3.6. Can this
> be the root cause of the problem? Any thoughts about how to
> fix/workaround it?

The calm package needed rebuilding for the recent python 3.4 -> 3.6 update.

I've uploaded calm-20170327-1, please try that then when it reaches the 
mirrors.


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: mksetupini could not find pkg_resources
  2017-03-27 19:59 ` Jon Turney
@ 2017-03-27 20:30   ` Ivan Gagis
  2017-03-28 13:57     ` Jon Turney
  0 siblings, 1 reply; 8+ messages in thread
From: Ivan Gagis @ 2017-03-27 20:30 UTC (permalink / raw)
  To: The Cygwin Mailing List

Hi,

thanks for updating the 'calm', not it seems like it goes to python3.6 
directory:


C:\cygwin64\bin\bash -e -l -c "ls /usr/lib/python3.4/site-packages/"

README
C:\cygwin64\bin\bash -e -l -c "ls /usr/lib/python3.6/site-packages/"
__pycache__
appdirs.py
appdirs-1.4.3.dist-info
calm
calm-20170327-py3.6.egg-info
easy_install.py
packaging
packaging-16.8.dist-info
pkg_resources
pyparsing.py
pyparsing-2.1.10.dist-info
setuptools
setuptools-34.3.2.dist-info
six.py
six-1.10.0.dist-info


But still 'mksetupini' fails with same error:


Traceback (most recent call last):

File "/usr/bin/mksetupini", line 6, in <module>
from pkg_resources import load_entry_point
ImportError: No module named 'pkg_resources'


Does anybody have other ideas of what could be wrong?
What can I try to analyze the problem?

Br,
Ivan


On 03/27/2017 09:56 PM, Jon Turney wrote:
> On 27/03/2017 16:53, Ivan Gagis wrote:
>> I'm having the following problem with mksetupini script.
>> On the fresh cygwin installation (both 32 and 64 bits) the script
>> fails with the following error message:
>>
>> Traceback (most recent call last):
>> File "/usr/bin/mksetupini", line 5, in <module>
>> from pkg_resources import load_entry_point
>> ImportError: No module named 'pkg_resources'
>
> This error kinds of suggests that you either don't have 
> python3-setuptools installed, or don't have a version which matches 
> your python version
>
>> Googling suggested that it cannpt find python-setuptools framework.
>> I found out that package 'calm' is installed to /usr/lib/python3.4
>> while python3-setuptools is installed to /usr/lib/python3.6. Can this
>> be the root cause of the problem? Any thoughts about how to
>> fix/workaround it?
>
> The calm package needed rebuilding for the recent python 3.4 -> 3.6 
> update.
>
> I've uploaded calm-20170327-1, please try that then when it reaches 
> the mirrors.
>


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: mksetupini could not find pkg_resources
  2017-03-27 20:30   ` Ivan Gagis
@ 2017-03-28 13:57     ` Jon Turney
  2017-03-28 14:05       ` Ivan Gagis
  0 siblings, 1 reply; 8+ messages in thread
From: Jon Turney @ 2017-03-28 13:57 UTC (permalink / raw)
  To: The Cygwin Mailing List; +Cc: Ivan Gagis

On 27/03/2017 21:03, Ivan Gagis wrote:
> thanks for updating the 'calm', not it seems like it goes to python3.6
> directory:

not -> now?

> C:\cygwin64\bin\bash -e -l -c "ls /usr/lib/python3.4/site-packages/"
>
> README
> C:\cygwin64\bin\bash -e -l -c "ls /usr/lib/python3.6/site-packages/"
> __pycache__
> appdirs.py
> appdirs-1.4.3.dist-info
> calm
> calm-20170327-py3.6.egg-info
> easy_install.py
> packaging
> packaging-16.8.dist-info
> pkg_resources
> pyparsing.py
> pyparsing-2.1.10.dist-info
> setuptools
> setuptools-34.3.2.dist-info
> six.py
> six-1.10.0.dist-info
>
>
> But still 'mksetupini' fails with same error:
>
>
> Traceback (most recent call last):
>
> File "/usr/bin/mksetupini", line 6, in <module>
> from pkg_resources import load_entry_point
> ImportError: No module named 'pkg_resources'

Since pkg_resources clearly is there in there in the listing above, 
something a bit strange is going on here.

Do you have the PYTHONHOME env var set?

Does 'python3 -v /usr/bin/mksetupini' tell you anything?

> Does anybody have other ideas of what could be wrong?
> What can I try to analyze the problem?

cygcheck.out as per [1] might shed some light.

[1] https://cygwin.com/problems.html#cygcheck


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: mksetupini could not find pkg_resources
  2017-03-28 13:57     ` Jon Turney
@ 2017-03-28 14:05       ` Ivan Gagis
  2017-03-28 14:14         ` Jon Turney
  0 siblings, 1 reply; 8+ messages in thread
From: Ivan Gagis @ 2017-03-28 14:05 UTC (permalink / raw)
  To: The Cygwin Mailing List

[-- Attachment #1: Type: text/plain, Size: 1809 bytes --]

On 03/28/2017 04:10 PM, Jon Turney wrote:
> On 27/03/2017 21:03, Ivan Gagis wrote:
>> thanks for updating the 'calm', not it seems like it goes to python3.6
>> directory:
>
> not -> now?
Yes, sorry for the typo.
>
>> C:\cygwin64\bin\bash -e -l -c "ls /usr/lib/python3.4/site-packages/"
>>
>> README
>> C:\cygwin64\bin\bash -e -l -c "ls /usr/lib/python3.6/site-packages/"
>> __pycache__
>> appdirs.py
>> appdirs-1.4.3.dist-info
>> calm
>> calm-20170327-py3.6.egg-info
>> easy_install.py
>> packaging
>> packaging-16.8.dist-info
>> pkg_resources
>> pyparsing.py
>> pyparsing-2.1.10.dist-info
>> setuptools
>> setuptools-34.3.2.dist-info
>> six.py
>> six-1.10.0.dist-info
>>
>>
>> But still 'mksetupini' fails with same error:
>>
>>
>> Traceback (most recent call last):
>>
>> File "/usr/bin/mksetupini", line 6, in <module>
>> from pkg_resources import load_entry_point
>> ImportError: No module named 'pkg_resources'
>
> Since pkg_resources clearly is there in there in the listing above, 
> something a bit strange is going on here.
>
> Do you have the PYTHONHOME env var set?
No, PYTHONHOME is not set.
>
> Does 'python3 -v /usr/bin/mksetupini' tell you anything?
It tells a lot and among that there is this "pkg_resources not found" 
message. See full output in attached log.out file.
>
>> Does anybody have other ideas of what could be wrong?
>> What can I try to analyze the problem?
>
> cygcheck.out as per [1] might shed some light.
See cygcheck.out in attachment.

I'm building my stuff on Appveyor, so it uses a clean cygwin64 
installation every time, at least I hope it is clean, but no guarantee 
that it is very recent cygwin there. Just in case, you can see the 
faulty log here: 
https://ci.appveyor.com/project/igagis/prorab/build/master-36
>
> [1] https://cygwin.com/problems.html#cygcheck
>


[-- Attachment #2: cygcheck.out --]
[-- Type: text/plain, Size: 42203 bytes --]

Cygwin Configuration Diagnostics
Current System Time: Tue Mar 28 14:47:56 2017
Windows 2012 R2 Server Datacenter Ver 6.3 Build 9600 
Path:	C:\cygwin64\usr\local\bin
	C:\cygwin64\bin
	C:\Perl\site\bin
	C:\Perl\bin
	C:\Windows\system32
	C:\Windows
	C:\Windows\System32\Wbem
	C:\Windows\System32\WindowsPowerShell\v1.0
	C:\Program Files\7-Zip
	C:\Program Files\Microsoft\Web Platform Installer
	C:\Tools\GitVersion
	C:\Tools\PsTools
	C:\Program Files\Git LFS
	C:\Program Files (x86)\Subversion\bin
	C:\Program Files\Microsoft SQL Server\120\Tools\Binn
	C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn
	C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn
	C:\Program Files\Microsoft SQL Server\120\DTS\Binn
	C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\ManagementStudio
	C:\Tools\WebDriver
	C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.4
	C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\PrivateAssemblies
	C:\Program Files (x86)\Microsoft SDKs\Azure\CLI\wbin
	C:\Ruby193\bin
	C:\Tools\NUnit\bin
	C:\Tools\xUnit
	C:\Tools\MSpec
	C:\Tools\Coverity\bin
	C:\Program Files (x86)\CMake\bin
	C:\go\bin
	C:\Program Files\Java\jdk1.8.0\bin
	C:\Python27
	C:\Program Files\nodejs
	C:\Program Files (x86)\iojs
	C:\Program Files\iojs
	C:\Users\appveyor\AppData\Roaming\npm
	C:\Program Files\Microsoft SQL Server\130\Tools\Binn
	C:\Program Files (x86)\MSBuild\14.0\Bin
	C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\Microsoft\SQLDB\DAC\120
	C:\Tools\NuGet
	C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow
	C:\Program Files\Amazon\AWSCLI
	C:\Program Files\Microsoft DNX\Dnvm
	C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn
	C:\Program Files (x86)\Microsoft SQL Server\130\Tools\Binn
	C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn
	C:\Program Files\Microsoft SQL Server\130\DTS\Binn
	C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn
	C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn
	C:\Program Files (x86)\Apache\Maven\bin
	C:\Python27\Scripts
	C:\Tools\NUnit3
	C:\ProgramData\chocolatey\bin
	C:\Program Files\Mercurial
	C:\Program Files (x86)\Yarn\bin
	C:\Program Files\LLVM\bin
	C:\Program Files\dotnet
	C:\Program Files\erl8.3\bin
	C:\Program Files (x86)\nodejs
	C:\Program Files\Git\cmd
	C:\Program Files\Git\usr\bin
	C:\Tools\curl\bin
	C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code
	C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager
	C:\Users\appveyor\AppData\Local\Yarn\.bin
	C:\Users\appveyor\AppData\Roaming\npm
	C:\Program Files\AppVeyor\BuildAgent
Output from C:\cygwin64\bin\id.exe
UID: 197609(appveyor)
GID: 197121(None)
197121(None)
114(Local account and member of Administrators group)
544(Administrators)
578(Hyper-V Administrators)
559(Performance Log Users)
545(Users)
4(INTERACTIVE)
66049(CONSOLE LOGON)
11(Authenticated Users)
15(This Organization)
113(Local account)
4095(CurrentSession)
66048(LOCAL)
262154(NTLM Authentication)
405504(High Mandatory Level)
SysDir: C:\windows\system32
WinDir: C:\windows
USER = 'appveyor'
PWD = '/home/appveyor'
HOME = '/home/appveyor'
USERDOMAIN = 'APPVYR-WIN'
OS = 'Windows_NT'
VS90COMNTOOLS = 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\Tools\'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
VSSDK140Install = 'C:\Program Files (x86)\Microsoft Visual Studio 14.0\VSSDK\'
PROCESSOR_LEVEL = '6'
PSModulePath = 'C:\Users\appveyor\Documents\WindowsPowerShell\Modules;C:\Users\appveyor\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\PowerShell\Modules\;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\PowerShell\Modules\;C:\Program Files (x86)\AWS Tools\PowerShell\;C:\Program Files\AppVeyor\BuildAgent\Modules;C:\Program Files (x86)\Microsoft SQL Server\130\Tools\PowerShell\Modules\;C:\Program Files\WindowsPowerShell\Modules\;C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ResourceManager\AzureResourceManager\;C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ServiceManagement\;C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\Storage\'
CommonProgramW6432 = 'C:\Program Files\Common Files'
M2_HOME = 'C:\Program Files (x86)\Apache\Maven'
CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
FP_NO_HOST_CHECK = 'NO'
LANG = 'en_US.UTF-8'
TZ = 'Etc/GMT'
APPVEYOR_REPO_NAME = 'igagis/prorab'
OPENSSL_CONF = 'C:\OpenSSL-Win32\bin\openssl.cfg'
APPVEYOR_REPO_COMMIT_AUTHOR = 'Ivan Gagis'
HOSTNAME = 'APPVYR-WIN'
PUBLIC = 'C:\Users\Public'
OLDPWD = '/cygdrive/c/projects/build'
MAVEN_HOME = 'C:\Program Files (x86)\Apache\Maven'
APPVEYOR_REPO_COMMIT_MESSAGE = 'Update appveyor.yml'
USERNAME = 'appveyor'
ChocolateyInstall = 'C:\ProgramData\chocolatey'
JAVA_HOME = 'C:\Progra~1\Java\jdk1.8.0'
LOGONSERVER = '\\APPVYR-WIN'
PROCESSOR_ARCHITECTURE = 'AMD64'
VSSDK120Install = 'C:\Program Files (x86)\Microsoft Visual Studio 12.0\VSSDK\'
APR_ICONV_PATH = 'C:\Program Files (x86)\Subversion\iconv'
xunit20 = 'C:\Tools\xUnit20'
ERLANG_HOME = 'C:\Program Files\erl8.3'
LOCALAPPDATA = 'C:\Users\appveyor\AppData\Local'
CI = 'True'
EnableNuGetPackageRestore = 'true'
COMPUTERNAME = 'APPVYR-WIN'
APPVEYOR_REPO_COMMIT = 'a32127c3f162f0d7f33d07ab9e8797af411ed265'
APPVEYOR_BUILD_WORKER_IMAGE = 'Visual Studio 2015'
SYSTEMDRIVE = 'C:'
USERPROFILE = 'C:\Users\appveyor'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.CPL'
SYSTEMROOT = 'C:\windows'
APPVEYOR_PROJECT_NAME = 'prorab'
USERDOMAIN_ROAMINGPROFILE = 'APPVYR-WIN'
PROCESSOR_IDENTIFIER = 'Intel64 Family 6 Model 63 Stepping 2, GenuineIntel'
PRORAB_GIT_USERNAME = 'igagis'
GOROOT = 'C:\go'
TMP = '/tmp'
APPVEYOR_JOB_ID = '8kwq5iw8pg8r61hx'
MSYS2_PATH_TYPE = 'inherit'
APPVEYOR_REPO_PROVIDER = 'gitHub'
APPVEYOR_URL = 'https://ci.appveyor.com'
VS100COMNTOOLS = 'c:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\'
DXSDK_DIR = 'C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\'
APPVEYOR_REPO_TAG = 'false'
APPVEYOR_API_URL = 'http://localhost:1030/'
VS120COMNTOOLS = 'C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\'
!C: = 'C:\projects\build'
PROCESSOR_REVISION = '3f02'
APPVEYOR_BUILD_NUMBER = '35'
PROFILEREAD = 'true'
APPVEYOR_REPO_COMMIT_TIMESTAMP = '2017-03-28T13:46:31.0000000Z'
7zip = '"C:\Program Files\7-Zip\7z.exe"'
PROMPT = '$P$G'
APPVEYOR_ACCOUNT_NAME = 'igagis'
NUMBER_OF_PROCESSORS = '2'
ProgramW6432 = 'C:\Program Files'
APPVEYOR_BUILD_FOLDER = 'c:\projects\build'
APPVEYOR_BUILD_ID = '7739941'
GIT_LFS_PATH = 'C:\Program Files\Git LFS'
COMSPEC = 'C:\windows\system32\cmd.exe'
APPDATA = 'C:\Users\appveyor\AppData\Roaming'
SHELL = '/bin/bash'
TERM = 'cygwin'
APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL = 'igagis@gmail.com'
CodeContractsInstallDir = 'C:\Program Files (x86)\Microsoft\Contracts\'
WINDIR = 'C:\windows'
AVVM_DOWNLOAD_URL = 'http://av1southus4workers.blob.core.windows.net/downloads/avvm'
ProgramData = 'C:\ProgramData'
SHLVL = '1'
DEPS = 'make,gcc-g++'
PRINTER = 'Microsoft XPS Document Writer'
PROGRAMFILES = 'C:\Program Files'
APPVEYOR_JOB_NUMBER = '1'
ALLUSERSPROFILE = 'C:\ProgramData'
TEMP = '/tmp'
APPVEYOR_BUILD_VERSION = 'master-35'
PRORAB_GIT_ACCESS_TOKEN = 'cb528ba4df575af14ceceb333ea5f659aeeecfb3'
SESSIONNAME = 'Console'
APPVEYOR_REPO_BRANCH = 'master'
ProgramFiles(x86) = 'C:\Program Files (x86)'
APPVEYOR_PROJECT_ID = '299680'
APPVEYOR_REPO_SCM = 'git'
APPVEYOR_PROJECT_SLUG = 'prorab'
WIX = 'C:\Program Files (x86)\WiX Toolset v3.10\'
HOMEDRIVE = 'C:'
ChocolateyLastPathUpdate = 'Wed Dec 28 22:23:13 2016'
lastexitcode = '0'
INFOPATH = '/usr/local/info:/usr/share/info:/usr/info'
HOMEPATH = '\Users\appveyor'
ORIGINAL_PATH = '/cygdrive/c/Perl/site/bin:/cygdrive/c/Perl/bin:/cygdrive/c/Windows/system32:/cygdrive/c/Windows:/cygdrive/c/Windows/System32/Wbem:/cygdrive/c/Windows/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program Files/7-Zip:/cygdrive/c/Program Files/Microsoft/Web Platform Installer:/cygdrive/c/Tools/GitVersion:/cygdrive/c/Tools/PsTools:/cygdrive/c/Program Files/Git LFS:/cygdrive/c/Program Files (x86)/Subversion/bin:/cygdrive/c/Program Files/Microsoft SQL Server/120/Tools/Binn:/cygdrive/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/110/Tools/Binn:/cygdrive/c/Program Files (x86)/Microsoft SQL Server/120/Tools/Binn:/cygdrive/c/Program Files/Microsoft SQL Server/120/DTS/Binn:/cygdrive/c/Program Files (x86)/Microsoft SQL Server/120/Tools/Binn/ManagementStudio:/cygdrive/c/Tools/WebDriver:/cygdrive/c/Program Files (x86)/Microsoft SDKs/TypeScript/1.4:/cygdrive/c/Program Files (x86)/Microsoft Visual Studio 12.0/Common7/IDE/PrivateAssemblies:/cygdrive/c/Program Files (x86)/Microsoft SDKs/Azure/CLI/wbin:/cygdrive/c/Ruby193/bin:/cygdrive/c/Tools/NUnit/bin:/cygdrive/c/Tools/xUnit:/cygdrive/c/Tools/MSpec:/cygdrive/c/Tools/Coverity/bin:/cygdrive/c/Program Files (x86)/CMake/bin:/cygdrive/c/go/bin:/cygdrive/c/Program Files/Java/jdk1.8.0/bin:/cygdrive/c/Python27:/cygdrive/c/Program Files/nodejs:/cygdrive/c/Program Files (x86)/iojs:/cygdrive/c/Program Files/iojs:/cygdrive/c/Users/appveyor/AppData/Roaming/npm:/cygdrive/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/cygdrive/c/Program Files (x86)/MSBuild/14.0/Bin:/cygdrive/c/Program Files (x86)/Microsoft Visual Studio 14.0/Common7/IDE/Extensions/Microsoft/SQLDB/DAC/120:/cygdrive/c/Tools/NuGet:/cygdrive/c/Program Files (x86)/Microsoft Visual Studio 14.0/Common7/IDE/CommonExtensions/Microsoft/TestWindow:/cygdrive/c/Program Files/Amazon/AWSCLI:/cygdrive/c/Program Files/Microsoft DNX/Dnvm:/cygdrive/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/130/Tools/Binn:/cygdrive/c/Program Files (x86)/Microsoft SQL Server/130/Tools/Binn:/cygdrive/c/Program Files (x86)/Microsoft SQL Server/130/DTS/Binn:/cygdrive/c/Program Files/Microsoft SQL Server/130/DTS/Binn:/cygdrive/c/Program Files (x86)/Microsoft SQL Server/110/DTS/Binn:/cygdrive/c/Program Files (x86)/Microsoft SQL Server/120/DTS/Binn:/cygdrive/c/Program Files (x86)/Apache/Maven/bin:/cygdrive/c/Python27/Scripts:/cygdrive/c/Tools/NUnit3:/cygdrive/c/ProgramData/chocolatey/bin:/cygdrive/c/Program Files/Mercurial:/cygdrive/c/Program Files (x86)/Yarn/bin:/cygdrive/c/Program Files/LLVM/bin:/cygdrive/c/Program Files/dotnet:/cygdrive/c/Program Files/erl8.3/bin:/cygdrive/c/Program Files (x86)/nodejs:/cygdrive/c/Program Files/Git/cmd:/cygdrive/c/Program Files/Git/usr/bin:/cygdrive/c/Tools/curl/bin:/cygdrive/c/Program Files/Microsoft Service Fabric/bin/Fabric/Fabric.Code:/cygdrive/c/Program Files/Microsoft SDKs/Service Fabric/Tools/ServiceFabricLocalClusterManager:/cygdrive/c/Users/appveyor/AppData/Local/Yarn/.bin:/cygdrive/c/Users/appveyor/AppData/Roaming/npm:/cygdrive/c/Program Files/AppVeyor/BuildAgent'
APPVEYOR = 'True'
VS140COMNTOOLS = 'C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\'
VS110COMNTOOLS = 'C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\'
_ = '/usr/bin/cygcheck'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Installations
  (default) = '\??\C:\cygwin64'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup
  (default) = 'C:\cygwin64'
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin\Installations
  (default) = '\??\C:\cygwin'
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin\setup
  (default) = 'C:\cygwin'
obcaseinsensitive set to 1
Cygwin installations found in the registry:
  System: Key: e022582115c10879 Path: C:\cygwin64
c:  hd  NTFS    224620Mb  87% CP CS UN PA FC     EN
C:\cygwin64      /          system  binary,auto
C:\cygwin64\bin  /usr/bin   system  binary,auto
C:\cygwin64\lib  /usr/lib   system  binary,auto
cygdrive prefix  /cygdrive  user    binary,posix=0,auto
Found: C:\cygwin64\bin\awk
Found: C:\Program Files\Git\usr\bin\awk.exe
Warning: C:\cygwin64\bin\awk hides C:\Program Files\Git\usr\bin\awk.exe
 -> C:\cygwin64\bin\gawk.exe
Found: C:\cygwin64\bin\bash.exe
Found: C:\Program Files\Git\usr\bin\bash.exe
Warning: C:\cygwin64\bin\bash.exe hides C:\Program Files\Git\usr\bin\bash.exe
Found: C:\cygwin64\bin\cat.exe
Found: C:\Program Files\Git\usr\bin\cat.exe
Warning: C:\cygwin64\bin\cat.exe hides C:\Program Files\Git\usr\bin\cat.exe
Found: C:\cygwin64\bin\cp.exe
Found: C:\Program Files\Git\usr\bin\cp.exe
Warning: C:\cygwin64\bin\cp.exe hides C:\Program Files\Git\usr\bin\cp.exe
Found: C:\cygwin64\bin\cpp.exe
Not Found: crontab
Found: C:\cygwin64\bin\find.exe
Found: C:\Windows\system32\find.exe
Warning: C:\cygwin64\bin\find.exe hides C:\Windows\system32\find.exe
Found: C:\Program Files\Git\usr\bin\find.exe
Warning: C:\cygwin64\bin\find.exe hides C:\Program Files\Git\usr\bin\find.exe
Found: C:\cygwin64\bin\gcc.exe
Not Found: gdb
Found: C:\cygwin64\bin\grep.exe
Found: C:\Program Files\Git\usr\bin\grep.exe
Warning: C:\cygwin64\bin\grep.exe hides C:\Program Files\Git\usr\bin\grep.exe
Found: C:\cygwin64\bin\kill.exe
Found: C:\Program Files\Git\usr\bin\kill.exe
Warning: C:\cygwin64\bin\kill.exe hides C:\Program Files\Git\usr\bin\kill.exe
Found: C:\cygwin64\bin\ld.exe
Found: C:\cygwin64\bin\ls.exe
Found: C:\Program Files\Git\usr\bin\ls.exe
Warning: C:\cygwin64\bin\ls.exe hides C:\Program Files\Git\usr\bin\ls.exe
Found: C:\cygwin64\bin\make.exe
Found: C:\cygwin64\bin\mv.exe
Found: C:\Program Files\Git\usr\bin\mv.exe
Warning: C:\cygwin64\bin\mv.exe hides C:\Program Files\Git\usr\bin\mv.exe
Found: C:\cygwin64\bin\patch.exe
Found: C:\Program Files\Git\usr\bin\patch.exe
Warning: C:\cygwin64\bin\patch.exe hides C:\Program Files\Git\usr\bin\patch.exe
Found: C:\cygwin64\bin\perl.exe
Found: C:\Perl\bin\perl.exe
Warning: C:\cygwin64\bin\perl.exe hides C:\Perl\bin\perl.exe
Found: C:\Program Files\Git\usr\bin\perl.exe
Warning: C:\cygwin64\bin\perl.exe hides C:\Program Files\Git\usr\bin\perl.exe
Found: C:\cygwin64\bin\rm.exe
Found: C:\Program Files\Git\usr\bin\rm.exe
Warning: C:\cygwin64\bin\rm.exe hides C:\Program Files\Git\usr\bin\rm.exe
Found: C:\cygwin64\bin\sed.exe
Found: C:\Program Files\Git\usr\bin\sed.exe
Warning: C:\cygwin64\bin\sed.exe hides C:\Program Files\Git\usr\bin\sed.exe
Found: C:\cygwin64\bin\ssh.exe
Found: C:\Program Files\Git\usr\bin\ssh.exe
Warning: C:\cygwin64\bin\ssh.exe hides C:\Program Files\Git\usr\bin\ssh.exe
Found: C:\cygwin64\bin\sh.exe
Found: C:\Program Files\Git\usr\bin\sh.exe
Warning: C:\cygwin64\bin\sh.exe hides C:\Program Files\Git\usr\bin\sh.exe
Found: C:\cygwin64\bin\tar.exe
Found: C:\Program Files\Git\usr\bin\tar.exe
Warning: C:\cygwin64\bin\tar.exe hides C:\Program Files\Git\usr\bin\tar.exe
Found: C:\cygwin64\bin\test.exe
Found: C:\Program Files\Git\usr\bin\test.exe
Warning: C:\cygwin64\bin\test.exe hides C:\Program Files\Git\usr\bin\test.exe
Found: C:\cygwin64\bin\vi.exe
Found: C:\Program Files\Git\usr\bin\vi
Warning: C:\cygwin64\bin\vi.exe hides C:\Program Files\Git\usr\bin\vi
Found: C:\Program Files\Git\usr\bin\vim.exe
   39k 2016/09/19 C:\cygwin64\bin\cygargp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygargp-0.dll" v0.0 ts=2016-09-19 02:13
   88k 2016/06/13 C:\cygwin64\bin\cygatomic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygatomic-1.dll" v0.0 ts=2016-06-13 17:14
   16k 2013/03/26 C:\cygwin64\bin\cygattr-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygattr-1.dll" v0.0 ts=2013-03-26 18:26
  180k 2015/03/23 C:\cygwin64\bin\cygblkid-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygblkid-1.dll" v0.0 ts=2015-03-23 09:46
   64k 2017/02/22 C:\cygwin64\bin\cygbz2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygbz2-1.dll" v0.0 ts=2017-02-22 07:22
   13k 2015/03/19 C:\cygwin64\bin\cygcom_err-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcom_err-2.dll" v0.0 ts=2015-03-19 02:44
  203k 2016/05/31 C:\cygwin64\bin\cygcroco-0.6-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygcroco-0.6-3.dll" v0.0 ts=2016-05-31 18:31
   10k 2016/06/09 C:\cygwin64\bin\cygcrypt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypt-0.dll" v0.0 ts=2016-06-09 16:02
 2235k 2017/01/26 C:\cygwin64\bin\cygcrypto-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypto-1.0.0.dll" v0.0 ts=2017-01-26 20:10
  478k 2016/12/29 C:\cygwin64\bin\cygcurl-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygcurl-4.dll" v0.0 ts=2016-12-29 04:33
 1549k 2016/08/22 C:\cygwin64\bin\cygdb-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb-5.3.dll" v0.0 ts=2016-08-22 09:51
  124k 2016/08/22 C:\cygwin64\bin\cygdb_cxx-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb_cxx-5.3.dll" v0.0 ts=2016-08-22 09:52
  570k 2016/08/22 C:\cygwin64\bin\cygdb_sql-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb_sql-5.3.dll" v0.0 ts=2016-08-22 09:52
  154k 2013/10/20 C:\cygwin64\bin\cygedit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygedit-0.dll" v0.0 ts=2013-10-20 21:56
  145k 2016/06/21 C:\cygwin64\bin\cygexpat-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygexpat-1.dll" v0.0 ts=2016-06-21 23:15
   30k 2014/10/14 C:\cygwin64\bin\cygfam-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygfam-0.dll" v0.0 ts=2014-10-14 21:33
   27k 2015/11/17 C:\cygwin64\bin\cygffi-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygffi-6.dll" v0.0 ts=2015-11-17 22:14
   55k 2017/01/25 C:\cygwin64\bin\cygformw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygformw-10.dll" v0.0 ts=2017-01-25 04:57
   70k 2016/06/13 C:\cygwin64\bin\cyggcc_s-seh-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggcc_s-seh-1.dll" v0.0 ts=2016-06-13 16:18
   39k 2016/10/10 C:\cygwin64\bin\cyggdbm-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm-4.dll" v0.0 ts=2016-10-10 09:26
   13k 2016/10/10 C:\cygwin64\bin\cyggdbm_compat-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm_compat-4.dll" v0.0 ts=2016-10-10 09:26
  203k 2016/10/23 C:\cygwin64\bin\cyggettextlib-0-19-8-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggettextlib-0-19-8-1.dll" v0.0 ts=2016-10-23 07:22
  272k 2016/10/23 C:\cygwin64\bin\cyggettextsrc-0-19-8-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggettextsrc-0-19-8-1.dll" v0.0 ts=2016-10-23 07:27
 1276k 2016/06/02 C:\cygwin64\bin\cyggio-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggio-2.0-0.dll" v0.0 ts=2016-06-02 21:16
  958k 2016/06/02 C:\cygwin64\bin\cygglib-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygglib-2.0-0.dll" v0.0 ts=2016-06-02 21:13
   14k 2016/06/02 C:\cygwin64\bin\cyggmodule-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggmodule-2.0-0.dll" v0.0 ts=2016-06-02 21:14
  527k 2017/01/21 C:\cygwin64\bin\cyggmp-10.dll - os=4.0 img=0.0 sys=5.2
                  "cyggmp-10.dll" v0.0 ts=2017-01-21 18:25
  931k 2015/08/28 C:\cygwin64\bin\cyggnutls-28.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutls-28.dll" v0.0 ts=2015-08-28 17:05
   24k 2015/08/28 C:\cygwin64\bin\cyggnutls-openssl-27.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutls-openssl-27.dll" v0.0 ts=2015-08-28 17:06
   41k 2015/08/28 C:\cygwin64\bin\cyggnutlsxx-28.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnutlsxx-28.dll" v0.0 ts=2015-08-28 17:06
  284k 2016/06/02 C:\cygwin64\bin\cyggobject-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggobject-2.0-0.dll" v0.0 ts=2016-06-02 21:14
  105k 2016/06/13 C:\cygwin64\bin\cyggomp-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggomp-1.dll" v0.0 ts=2016-06-13 16:22
   10k 2016/06/13 C:\cygwin64\bin\cyggomp-plugin-host_nonshm-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggomp-plugin-host_nonshm-1.dll" v0.0 ts=2016-06-13 16:23
  258k 2016/09/26 C:\cygwin64\bin\cyggssapi_krb5-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyggssapi_krb5-2.dll" v0.0 ts=2016-09-26 06:55
    9k 2016/06/02 C:\cygwin64\bin\cyggthread-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggthread-2.0-0.dll" v0.0 ts=2016-06-02 21:14
  691k 2013/04/22 C:\cygwin64\bin\cygguile-17.dll - os=4.0 img=0.0 sys=5.2
                  "cygguile-17.dll" v0.0 ts=2013-04-22 03:15
   33k 2017/02/13 C:\cygwin64\bin\cyghistory7.dll - os=4.0 img=0.0 sys=5.2
                  "cyghistory7.dll" v0.0 ts=2017-02-11 22:39
  167k 2016/03/13 C:\cygwin64\bin\cyghogweed-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyghogweed-2.dll" v0.0 ts=2016-03-13 14:46
 1009k 2015/02/20 C:\cygwin64\bin\cygiconv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygiconv-2.dll" v0.0 ts=2015-02-20 17:07
  196k 2014/12/06 C:\cygwin64\bin\cygidn-11.dll - os=4.0 img=0.0 sys=5.2
                  "cygidn-11.dll" v0.0 ts=2014-12-06 13:17
  212k 2016/11/03 C:\cygwin64\bin\cygidn2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygidn2-0.dll" v0.0 ts=2016-11-03 18:28
   42k 2016/10/23 C:\cygwin64\bin\cygintl-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygintl-8.dll" v0.0 ts=2016-10-23 07:17
 1039k 2015/09/20 C:\cygwin64\bin\cygisl-13.dll - os=4.0 img=0.0 sys=5.2
                  "cygisl-13.dll" v0.0 ts=2015-09-20 12:39
  177k 2016/09/26 C:\cygwin64\bin\cygk5crypto-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygk5crypto-3.dll" v0.0 ts=2016-09-26 06:55
  722k 2016/09/26 C:\cygwin64\bin\cygkrb5-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5-3.dll" v0.0 ts=2016-09-26 06:55
   35k 2016/09/26 C:\cygwin64\bin\cygkrb5support-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5support-0.dll" v0.0 ts=2016-09-26 06:54
   45k 2015/11/19 C:\cygwin64\bin\cyglber-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyglber-2-4-2.dll" v0.0 ts=2015-11-19 14:17
  246k 2015/11/19 C:\cygwin64\bin\cygldap-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygldap-2-4-2.dll" v0.0 ts=2015-11-19 14:18
  262k 2015/11/19 C:\cygwin64\bin\cygldap_r-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygldap_r-2-4-2.dll" v0.0 ts=2015-11-19 14:19
    6k 2017/02/12 C:\cygwin64\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2
                  "cyglsa64.dll" v0.0 ts=2017-02-12 12:18
   35k 2016/06/28 C:\cygwin64\bin\cygltdl-7.dll - os=4.0 img=0.0 sys=5.2
                  "cygltdl-7.dll" v0.0 ts=2016-06-28 18:41
  139k 2015/11/09 C:\cygwin64\bin\cyglzma-5.dll - os=4.0 img=0.0 sys=5.2
                  "cyglzma-5.dll" v0.0 ts=2015-11-09 06:12
  114k 2016/01/11 C:\cygwin64\bin\cygmagic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygmagic-1.dll" v0.0 ts=2016-01-11 22:19
  169k 2016/10/10 C:\cygwin64\bin\cygman-2-7-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygman-2-7-5.dll" v0.0 ts=2016-10-10 22:07
   22k 2016/10/10 C:\cygwin64\bin\cygmandb-2-7-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygmandb-2-7-5.dll" v0.0 ts=2016-10-10 22:07
   29k 2017/01/25 C:\cygwin64\bin\cygmenuw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygmenuw-10.dll" v0.0 ts=2017-01-25 04:57
   42k 2013/08/12 C:\cygwin64\bin\cygmetalink-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmetalink-3.dll" v0.0 ts=2013-08-13 00:02
   89k 2015/03/01 C:\cygwin64\bin\cygmpc-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpc-3.dll" v0.0 ts=2015-03-01 20:24
  346k 2016/09/27 C:\cygwin64\bin\cygmpfr-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpfr-4.dll" v0.0 ts=2016-09-27 20:42
   53k 2017/01/25 C:\cygwin64\bin\cygncurses++w-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncurses++w-10.dll" v0.0 ts=2017-01-25 05:01
  279k 2017/01/25 C:\cygwin64\bin\cygncursesw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncursesw-10.dll" v0.0 ts=2017-01-25 04:55
  180k 2016/03/13 C:\cygwin64\bin\cygnettle-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygnettle-4.dll" v0.0 ts=2016-03-13 14:46
  137k 2016/09/08 C:\cygwin64\bin\cygnghttp2-14.dll - os=4.0 img=0.0 sys=5.2
                  "cygnghttp2-14.dll" v0.0 ts=2016-09-08 02:42
  319k 2015/06/01 C:\cygwin64\bin\cygp11-kit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygp11-kit-0.dll" v0.0 ts=2015-06-01 19:02
   14k 2017/01/25 C:\cygwin64\bin\cygpanelw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygpanelw-10.dll" v0.0 ts=2017-01-25 04:56
  475k 2017/03/05 C:\cygwin64\bin\cygpcre-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpcre-1.dll" v0.0 ts=2017-03-05 03:32
 2020k 2017/01/15 C:\cygwin64\bin\cygperl5_22.dll - os=4.0 img=0.0 sys=5.2
                  "cygperl5_22.dll" v0.0 ts=2017-01-15 12:12
   39k 2015/04/09 C:\cygwin64\bin\cygpipeline-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpipeline-1.dll" v0.0 ts=2015-04-09 21:04
   41k 2016/07/13 C:\cygwin64\bin\cygpopt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpopt-0.dll" v0.0 ts=2016-07-13 06:16
   52k 2017/01/17 C:\cygwin64\bin\cygpsl-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygpsl-5.dll" v0.0 ts=2017-01-17 17:10
  308k 2016/06/13 C:\cygwin64\bin\cygquadmath-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygquadmath-0.dll" v0.0 ts=2016-06-13 17:17
  219k 2017/02/13 C:\cygwin64\bin\cygreadline7.dll - os=4.0 img=0.0 sys=5.2
                  "cygreadline7.dll" v0.0 ts=2017-02-11 22:39
   97k 2014/11/24 C:\cygwin64\bin\cygsasl2-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygsasl2-3.dll" v0.0 ts=2014-11-24 18:22
   11k 2015/07/17 C:\cygwin64\bin\cygsigsegv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygsigsegv-2.dll" v0.0 ts=2015-07-17 22:35
   89k 2015/03/23 C:\cygwin64\bin\cygsmartcols-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygsmartcols-1.dll" v0.0 ts=2015-03-23 09:46
  982k 2017/01/09 C:\cygwin64\bin\cygsqlite3-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsqlite3-0.dll" v0.0 ts=2017-01-09 13:40
  156k 2016/03/02 C:\cygwin64\bin\cygssh2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygssh2-1.dll" v0.0 ts=2016-03-02 18:03
  399k 2017/01/26 C:\cygwin64\bin\cygssl-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssl-1.0.0.dll" v0.0 ts=2017-01-26 20:10
   12k 2016/06/13 C:\cygwin64\bin\cygssp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssp-0.dll" v0.0 ts=2016-06-13 17:10
 1325k 2016/06/13 C:\cygwin64\bin\cygstdc++-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygstdc++-6.dll" v0.0 ts=2016-06-13 16:38
   66k 2016/08/22 C:\cygwin64\bin\cygtasn1-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygtasn1-6.dll" v0.0 ts=2016-08-22 20:11
   52k 2017/01/25 C:\cygwin64\bin\cygticw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygticw-10.dll" v0.0 ts=2017-01-25 04:56
 1538k 2015/10/16 C:\cygwin64\bin\cygunistring-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygunistring-2.dll" v0.0 ts=2015-10-16 21:40
   15k 2015/03/23 C:\cygwin64\bin\cyguuid-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyguuid-1.dll" v0.0 ts=2015-03-23 09:46
    8k 2016/06/13 C:\cygwin64\bin\cygvtv-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygvtv-0.dll" v0.0 ts=2016-06-13 17:12
    8k 2016/06/13 C:\cygwin64\bin\cygvtv_stubs-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygvtv_stubs-0.dll" v0.0 ts=2016-06-13 17:12
 1213k 2016/08/26 C:\cygwin64\bin\cygxml2-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygxml2-2.dll" v0.0 ts=2016-08-26 20:06
   80k 2014/11/19 C:\cygwin64\bin\cygz.dll - os=4.0 img=0.0 sys=5.2
                  "cygz.dll" v0.0 ts=2014-11-19 23:08
 3243k 2017/02/12 C:\cygwin64\bin\cygwin1.dll - os=4.0 img=0.0 sys=5.2
                  "cygwin1.dll" v0.0 ts=2017-02-12 12:18
    Cygwin DLL version info:
        DLL version: 2.7.0
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 306
        Shared data: 5
        DLL identifier: cygwin1
        Mount registry: 3
        Cygwin registry name: Cygwin
        Installations name: Installations
        Cygdrive default prefix: 
        Build date: 
        Shared id: cygwin1S5
No Cygwin services found.
Cygwin Package Information
Last downloaded files to: C:/cygwin64/var/cache/setup
Last downloaded files from: http://cygwin.mirror.constant.com/
Package                                 Version                Status
_autorebase                             001004-1               OK
alternatives                            1.3.30c-10             OK
autoconf                                13-1                   OK
autoconf2.1                             2.13-12                OK
autoconf2.5                             2.69-3                 OK
automake                                9-1                    OK
automake1.10                            1.10.3-2               OK
automake1.11                            1.11.6-2               OK
automake1.12                            1.12.6-2               OK
automake1.13                            1.13.4-1               OK
automake1.14                            1.14.1-2               OK
automake1.15                            1.15-1                 OK
automake1.4                             1.4p6-11               OK
automake1.5                             1.5-11                 OK
automake1.6                             1.6.3-12               OK
automake1.7                             1.7.9-11               OK
automake1.8                             1.8.5-11               OK
automake1.9                             1.9.6-11               OK
base-cygwin                             3.8-1                  OK
base-files                              4.2-4                  OK
bash                                    4.4.12-3               OK
binutils                                2.25-4                 OK
bison                                   3.0.4-1                OK
bzip2                                   1.0.6-3                OK
ca-certificates                         2.11-1                 OK
calm                                    20170327-1             OK
coreutils                               8.26-2                 OK
csih                                    0.9.9-1                OK
curl                                    7.52.1-1               OK
cygport                                 0.24.0-1               OK
cygrunsrv                               1.62-1                 OK
cygutils                                1.4.15-2               OK
cygwin                                  2.7.0-1                OK
cygwin-devel                            2.7.0-1                OK
dash                                    0.5.9.1-1              OK
desktop-file-utils                      0.23-1                 OK
diffstat                                1.61-1                 OK
diffutils                               3.5-2                  OK
dos2unix                                7.3.4-1                OK
editrights                              1.03-1                 OK
file                                    5.25-1                 OK
findutils                               4.6.0-1                OK
gamin                                   0.1.10-15              OK
gawk                                    4.1.4-3                OK
gcc-core                                5.4.0-1                OK
gcc-g++                                 5.4.0-1                OK
getent                                  2.18.90-4              OK
gettext                                 0.19.8.1-2             OK
gettext-devel                           0.19.8.1-2             OK
git                                     2.8.3-1                OK
grep                                    3.0-2                  OK
groff                                   1.22.3-1               OK
gsettings-desktop-schemas               3.18.1-1               OK
gzip                                    1.8-1                  OK
hostname                                3.13-1                 OK
info                                    6.3-1                  OK
intltool                                0.51.0-1               OK
ipc-utils                               1.0-2                  OK
less                                    481-1                  OK
lftp                                    4.7.7-1                OK
libargp                                 20110921-3             OK
libatomic1                              5.4.0-1                OK
libattr1                                2.4.46-1               OK
libblkid1                               2.25.2-2               OK
libbz2_1                                1.0.6-3                OK
libcom_err2                             1.42.12-2              OK
libcroco0.6_3                           0.6.11-1               OK
libcrypt0                               1.4-1                  OK
libcurl4                                7.52.1-1               OK
libdb5.3                                5.3.28-1               OK
libedit0                                20130712-1             OK
libexpat1                               2.2.0-0                OK
libfam0                                 0.1.10-15              OK
libffi6                                 3.2.1-2                OK
libgcc1                                 5.4.0-1                OK
libgdbm4                                1.12-1                 OK
libglib2.0_0                            2.46.2-4               OK
libgmp10                                6.1.2-1                OK
libgnutls28                             3.3.17-1               OK
libgomp1                                5.4.0-1                OK
libgssapi_krb5_2                        1.14.4-1               OK
libguile17                              1.8.8-1                OK
libhogweed2                             2.7.1-1                OK
libiconv                                1.14-3                 OK
libiconv2                               1.14-3                 OK
libidn11                                1.29-1                 OK
libidn2_0                               0.11-1                 OK
libintl-devel                           0.19.8.1-2             OK
libintl8                                0.19.8.1-2             OK
libisl13                                0.14.1-1               OK
libk5crypto3                            1.14.4-1               OK
libkrb5_3                               1.14.4-1               OK
libkrb5support0                         1.14.4-1               OK
libltdl7                                2.4.6-4                OK
liblzma5                                5.2.2-1                OK
libmetalink3                            0.1.2-1                OK
libmpc3                                 1.0.3-1                OK
libmpfr4                                3.1.5-1                OK
libncursesw10                           6.0-9.20170121         OK
libnettle4                              2.7.1-1                OK
libnghttp2_14                           1.14.0-1               OK
libopenldap2_4_2                        2.4.42-1               OK
libopenssl100                           1.0.2k-1               OK
libp11-kit0                             0.22.1-1               OK
libpcre1                                8.40-2                 OK
libpipeline1                            1.4.0-1                OK
libpopt-common                          1.16-2                 OK
libpopt0                                1.16-2                 OK
libpsl5                                 0.17.0-1               OK
libquadmath0                            5.4.0-1                OK
libreadline7                            7.0.3-3                OK
libsasl2_3                              2.1.26-9               OK
libsigsegv2                             2.10-2                 OK
libsmartcols1                           2.25.2-2               OK
libsqlite3_0                            3.16.2-1               OK
libssh2_1                               1.7.0-1                OK
libssp0                                 5.4.0-1                OK
libstdc++6                              5.4.0-1                OK
libtasn1_6                              4.9-1                  OK
libtool                                 2.4.6-4                OK
libunistring2                           0.9.6-1                OK
libuuid-devel                           2.25.2-2               OK
libuuid1                                2.25.2-2               OK
libvtv0                                 5.4.0-1                OK
libxml2                                 2.9.4-1                OK
lndir                                   1.0.3-1                OK
login                                   1.11-1                 OK
lynx                                    2.8.7-2                OK
m4                                      1.4.18-1               OK
make                                    4.2.1-1                OK
man-db                                  2.7.5-2                OK
mingw64-i686-binutils                   2.25.0.1.23f238d-1     OK
mingw64-i686-gcc-core                   5.4.0-4                OK
mingw64-i686-gcc-g++                    5.4.0-4                OK
mingw64-i686-headers                    5.0.1-1                OK
mingw64-i686-runtime                    5.0.1-1                OK
mingw64-i686-windows-default-manifest   6.4-1                  OK
mingw64-i686-winpthreads                5.0.1-1                OK
mingw64-x86_64-binutils                 2.25.0.1.23f238d-1     OK
mingw64-x86_64-gcc-core                 5.4.0-3                OK
mingw64-x86_64-gcc-g++                  5.4.0-3                OK
mingw64-x86_64-headers                  5.0.1-1                OK
mingw64-x86_64-runtime                  5.0.1-1                OK
mingw64-x86_64-windows-default-manifest 6.4-1                  OK
mingw64-x86_64-winpthreads              5.0.1-1                OK
mintty                                  2.7.5-0                OK
ncurses                                 6.0-9.20170121         OK
openssh                                 7.4p1-1                OK
openssl                                 1.0.2k-1               OK
p11-kit                                 0.22.1-1               OK
p11-kit-trust                           0.22.1-1               OK
patch                                   2.7.4-1                OK
perl                                    5.22.3-1               OK
perl-Authen-SASL                        2.16-2                 OK
perl-Authen-SASL-XS                     1.00-1                 OK
perl-Carp                               1.38-1                 OK
perl-Digest-HMAC                        1.03-5                 OK
perl-Encode-Locale                      1.05-1                 OK
perl-Error                              0.17024-1              OK
perl-File-Listing                       6.04-5                 OK
perl-HTML-Parser                        3.72-1                 OK
perl-HTML-Tagset                        3.20-5                 OK
perl-HTTP-Cookies                       6.01-5                 OK
perl-HTTP-Daemon                        6.01-5                 OK
perl-HTTP-Date                          6.02-5                 OK
perl-HTTP-Message                       6.11-1                 OK
perl-HTTP-Negotiate                     6.01-5                 OK
perl-IO-HTML                            1.001-2                OK
perl-IO-Socket-SSL                      2.047-1                OK
perl-libwww-perl                        6.22-1                 OK
perl-LWP-MediaTypes                     6.02-5                 OK
perl-MailTools                          2.18-1                 OK
perl-MIME-tools                         5.508-1                OK
perl-Net-HTTP                           6.13-1                 OK
perl-Net-SMTP-SSL                       1.04-1                 OK
perl-Net-SSLeay                         1.80-1                 OK
perl-Pod-Simple                         3.35-1                 OK
perl-TermReadKey                        2.37-1                 OK
perl-TimeDate                           2.30-2                 OK
perl-Try-Tiny                           0.28-1                 OK
perl-Unicode-Normalize                  1.25-1                 OK
perl-URI                                1.71-1                 OK
perl-WWW-RobotRules                     6.02-5                 OK
perl-XML-Parser                         2.44-2                 OK
perl_autorebase                         5.22.3-1               OK
perl_base                               5.22.3-1               OK
pkg-config                              0.29.1-1               OK
publicsuffix-list-dafsa                 20170206-1             OK
python                                  2.7.12-1               OK
python2                                 2.7.13-1               OK
python3                                 3.4.5-1                OK
python3-appdirs                         1.4.3-1                OK
python3-packaging                       16.8-1                 OK
python3-pyparsing                       2.1.10-1               OK
python3-setuptools                      34.3.2-1               OK
python3-six                             1.10.0-1               OK
rebase                                  4.4.2-1                OK
rsync                                   3.1.2-1                OK
run                                     1.3.4-2                OK
sed                                     4.4-1                  OK
shared-mime-info                        1.7-1                  OK
tar                                     1.29-1                 OK
terminfo                                6.0-9.20170121         OK
texinfo                                 6.3-1                  OK
tzcode                                  2016j-1                OK
tzdata                                  2017a-1                OK
unzip                                   6.0-16                 OK
util-linux                              2.25.2-2               OK
vim-minimal                             8.0.0329-1             OK
w32api-headers                          4.0.4-1                OK
w32api-runtime                          4.0.4-1                OK
wget                                    1.19.1-1               OK
which                                   2.20-2                 OK
windows-default-manifest                6.4-1                  OK
xz                                      5.2.2-1                OK
zlib0                                   1.2.8-3                OK
Use -h to see help about each section

[-- Attachment #3: log.out --]
[-- Type: text/plain, Size: 9419 bytes --]

C:\cygwin64\bin\bash -e -l -c "python3 -v /usr/bin/mksetupini"
import _frozen_importlib # frozen
import imp # builtin
import sys # builtin
# installing zipimport hook
# installed zipimport hook
# /usr/lib/python3.4/encodings/__pycache__/__init__.cpython-34.pyc matches /usr/lib/python3.4/encodings/__init__.py
# code object from '/usr/lib/python3.4/encodings/__pycache__/__init__.cpython-34.pyc'
# /usr/lib/python3.4/__pycache__/codecs.cpython-34.pyc matches /usr/lib/python3.4/codecs.py
# code object from '/usr/lib/python3.4/__pycache__/codecs.cpython-34.pyc'
import 'codecs' # <_frozen_importlib.SourceFileLoader object at 0x6ffffdec550>
# /usr/lib/python3.4/encodings/__pycache__/aliases.cpython-34.pyc matches /usr/lib/python3.4/encodings/aliases.py
# code object from '/usr/lib/python3.4/encodings/__pycache__/aliases.cpython-34.pyc'
import 'encodings.aliases' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd85198>
import 'encodings' # <_frozen_importlib.SourceFileLoader object at 0x6ffffdec128>
# /usr/lib/python3.4/encodings/__pycache__/utf_8.cpython-34.pyc matches /usr/lib/python3.4/encodings/utf_8.py
# code object from '/usr/lib/python3.4/encodings/__pycache__/utf_8.cpython-34.pyc'
import 'encodings.utf_8' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd8be48>
# /usr/lib/python3.4/encodings/__pycache__/latin_1.cpython-34.pyc matches /usr/lib/python3.4/encodings/latin_1.py
# code object from '/usr/lib/python3.4/encodings/__pycache__/latin_1.cpython-34.pyc'
import 'encodings.latin_1' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd8fa90>
# /usr/lib/python3.4/__pycache__/io.cpython-34.pyc matches /usr/lib/python3.4/io.py
# code object from '/usr/lib/python3.4/__pycache__/io.cpython-34.pyc'
# /usr/lib/python3.4/__pycache__/abc.cpython-34.pyc matches /usr/lib/python3.4/abc.py
# code object from '/usr/lib/python3.4/__pycache__/abc.cpython-34.pyc'
# /usr/lib/python3.4/__pycache__/_weakrefset.cpython-34.pyc matches /usr/lib/python3.4/_weakrefset.py
# code object from '/usr/lib/python3.4/__pycache__/_weakrefset.cpython-34.pyc'
import '_weakrefset' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd937b8>
import 'abc' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd8ff60>
import 'io' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd8fcc0>
# /usr/lib/python3.4/__pycache__/_bootlocale.cpython-34.pyc matches /usr/lib/python3.4/_bootlocale.py
# code object from '/usr/lib/python3.4/__pycache__/_bootlocale.cpython-34.pyc'
import '_bootlocale' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd9be80>
Python 3.4.5 (default, Oct 10 2016, 14:41:48) 
[GCC 5.4.0] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
# /usr/lib/python3.4/__pycache__/site.cpython-34.pyc matches /usr/lib/python3.4/site.py
# code object from '/usr/lib/python3.4/__pycache__/site.cpython-34.pyc'
# /usr/lib/python3.4/__pycache__/os.cpython-34.pyc matches /usr/lib/python3.4/os.py
# code object from '/usr/lib/python3.4/__pycache__/os.cpython-34.pyc'
# /usr/lib/python3.4/__pycache__/stat.cpython-34.pyc matches /usr/lib/python3.4/stat.py
# code object from '/usr/lib/python3.4/__pycache__/stat.cpython-34.pyc'
import 'stat' # <_frozen_importlib.SourceFileLoader object at 0x6ffffdbf908>
# /usr/lib/python3.4/__pycache__/posixpath.cpython-34.pyc matches /usr/lib/python3.4/posixpath.py
# code object from '/usr/lib/python3.4/__pycache__/posixpath.cpython-34.pyc'
# /usr/lib/python3.4/__pycache__/genericpath.cpython-34.pyc matches /usr/lib/python3.4/genericpath.py
# code object from '/usr/lib/python3.4/__pycache__/genericpath.cpython-34.pyc'
import 'genericpath' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd47240>
import 'posixpath' # <_frozen_importlib.SourceFileLoader object at 0x6ffffdbfba8>
# /usr/lib/python3.4/__pycache__/_collections_abc.cpython-34.pyc matches /usr/lib/python3.4/_collections_abc.py
# code object from '/usr/lib/python3.4/__pycache__/_collections_abc.cpython-34.pyc'
import '_collections_abc' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd47160>
import 'os' # <_frozen_importlib.SourceFileLoader object at 0x6ffffdaf2e8>
# /usr/lib/python3.4/__pycache__/_sitebuiltins.cpython-34.pyc matches /usr/lib/python3.4/_sitebuiltins.py
# code object from '/usr/lib/python3.4/__pycache__/_sitebuiltins.cpython-34.pyc'
import '_sitebuiltins' # <_frozen_importlib.SourceFileLoader object at 0x6ffffdaf358>
# /usr/lib/python3.4/__pycache__/sysconfig.cpython-34.pyc matches /usr/lib/python3.4/sysconfig.py
# code object from '/usr/lib/python3.4/__pycache__/sysconfig.cpython-34.pyc'
import 'sysconfig' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd776d8>
# /usr/lib/python3.4/__pycache__/_sysconfigdata.cpython-34.pyc matches /usr/lib/python3.4/_sysconfigdata.py
# code object from '/usr/lib/python3.4/__pycache__/_sysconfigdata.cpython-34.pyc'
import '_sysconfigdata' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd02048>
import 'site' # <_frozen_importlib.SourceFileLoader object at 0x6ffffda7e10>
# /usr/lib/python3.4/__pycache__/re.cpython-34.pyc matches /usr/lib/python3.4/re.py
# code object from '/usr/lib/python3.4/__pycache__/re.cpython-34.pyc'
# /usr/lib/python3.4/__pycache__/sre_compile.cpython-34.pyc matches /usr/lib/python3.4/sre_compile.py
# code object from '/usr/lib/python3.4/__pycache__/sre_compile.cpython-34.pyc'
# /usr/lib/python3.4/__pycache__/sre_parse.cpython-34.pyc matches /usr/lib/python3.4/sre_parse.py
# code object from '/usr/lib/python3.4/__pycache__/sre_parse.cpython-34.pyc'
# /usr/lib/python3.4/__pycache__/sre_constants.cpython-34.pyc matches /usr/lib/python3.4/sre_constants.py
# code object from '/usr/lib/python3.4/__pycache__/sre_constants.cpython-34.pyc'
import 'sre_constants' # <_frozen_importlib.SourceFileLoader object at 0x6ffffcc05c0>
import 'sre_parse' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd32cc0>
import 'sre_compile' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd2db70>
# /usr/lib/python3.4/__pycache__/copyreg.cpython-34.pyc matches /usr/lib/python3.4/copyreg.py
# code object from '/usr/lib/python3.4/__pycache__/copyreg.cpython-34.pyc'
import 'copyreg' # <_frozen_importlib.SourceFileLoader object at 0x6ffffcc9320>
import 're' # <_frozen_importlib.SourceFileLoader object at 0x6ffffd2ac50>
Traceback (most recent call last):
  File "/usr/bin/mksetupini", line 6, in <module>
    from pkg_resources import load_entry_point
  File "<frozen importlib._bootstrap>", line 2237, in _find_and_load
  File "<frozen importlib._bootstrap>", line 2224, in _find_and_load_unlocked
ImportError: No module named 'pkg_resources'
# clear builtins._
# clear sys.path
# clear sys.argv
# clear sys.ps1
# clear sys.ps2
# clear sys.last_type
# clear sys.last_value
# clear sys.last_traceback
# clear sys.path_hooks
# clear sys.path_importer_cache
# clear sys.meta_path
# clear sys.__interactivehook__
# clear sys.flags
# clear sys.float_info
# restore sys.stdin
# restore sys.stdout
# restore sys.stderr
# cleanup[2] removing posix
# cleanup[2] removing zipimport
# cleanup[2] removing _stat
# cleanup[2] removing signal
# cleanup[2] removing genericpath
# cleanup[2] removing encodings.aliases
# cleanup[2] removing encodings
# destroy encodings
# cleanup[2] removing _locale
# cleanup[2] removing copyreg
# cleanup[2] removing _codecs
# cleanup[2] removing _imp
# cleanup[2] removing stat
# cleanup[2] removing _sitebuiltins
# cleanup[2] removing re
# cleanup[2] removing _thread
# cleanup[2] removing _warnings
# cleanup[2] removing os.path
# cleanup[2] removing errno
# cleanup[2] removing _weakrefset
# destroy _weakrefset
# cleanup[2] removing sys
# cleanup[2] removing _collections_abc
# destroy _collections_abc
# cleanup[2] removing _weakref
# cleanup[2] removing _sysconfigdata
# destroy _sysconfigdata
# cleanup[2] removing builtins
# cleanup[2] removing posixpath
# cleanup[2] removing sysconfig
# destroy sysconfig
# cleanup[2] removing abc
# cleanup[2] removing encodings.latin_1
# cleanup[2] removing sre_compile
# cleanup[2] removing encodings.utf_8
# cleanup[2] removing codecs
# cleanup[2] removing sre_parse
# cleanup[2] removing io
# destroy io
# destroy abc
# cleanup[2] removing os
# cleanup[2] removing sre_constants
# destroy sre_constants
# cleanup[2] removing _frozen_importlib
# cleanup[2] removing __main__
# destroy __main__
# destroy re
# cleanup[2] removing _bootlocale
# destroy _bootlocale
# cleanup[2] removing _sre
# cleanup[2] removing _io
# cleanup[2] removing marshal
# cleanup[2] removing site
# destroy site
# destroy zipimport
# destroy signal
# destroy _sitebuiltins
# destroy errno
# destroy posixpath
# destroy _stat
# destroy genericpath
# destroy stat
# destroy os
# destroy copyreg
# destroy _locale
# destroy sre_compile
# destroy _sre
# destroy sre_parse
# cleanup[3] wiping posix
# cleanup[3] wiping encodings.aliases
# cleanup[3] wiping _codecs
# cleanup[3] wiping _imp
# cleanup[3] wiping _thread
# cleanup[3] wiping _warnings
# cleanup[3] wiping _weakref
# cleanup[3] wiping encodings.latin_1
# cleanup[3] wiping encodings.utf_8
# cleanup[3] wiping codecs
# cleanup[3] wiping _frozen_importlib
# destroy _warnings
# destroy posix
# destroy _weakref
# destroy _imp
# destroy _thread
# cleanup[3] wiping _io
# destroy io
# cleanup[3] wiping marshal
# destroy marshal
# cleanup[3] wiping sys
# cleanup[3] wiping builtins
# destroy _frozen_importlib
Command exited with code 1

[-- Attachment #4: Type: text/plain, Size: 219 bytes --]


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: mksetupini could not find pkg_resources
  2017-03-28 14:05       ` Ivan Gagis
@ 2017-03-28 14:14         ` Jon Turney
  2017-03-28 14:20           ` Jon Turney
  2017-03-28 16:47           ` Ivan Gagis
  0 siblings, 2 replies; 8+ messages in thread
From: Jon Turney @ 2017-03-28 14:14 UTC (permalink / raw)
  To: The Cygwin Mailing List; +Cc: Ivan Gagis

On 28/03/2017 14:57, Ivan Gagis wrote:

On 03/28/2017 04:10 PM, Jon Turney wrote:

On 27/03/2017 21:03, Ivan Gagis wrote:

Does 'python3 -v /usr/bin/mksetupini' tell you anything?

It tells a lot and among that there is this "pkg_resources not found"
message. See full output in attached log.out file.



Does anybody have other ideas of what could be wrong?
What can I try to analyze the problem?


cygcheck.out as per [1] might shed some light.

See cygcheck.out in attachment.


Immediately I notice:


python3                                 3.4.5-1                OK
python3-appdirs                         1.4.3-1                OK
python3-packaging                       16.8-1                 OK
python3-pyparsing                       2.1.10-1               OK
python3-setuptools                      34.3.2-1               OK
python3-six                             1.10.0-1               OK


Somehow you have python3 3.4, but python3-setuptools for 3.6.

The output of 'python3 -v'


I'm building my stuff on Appveyor, so it uses a clean cygwin64
installation every time, at least I hope it is clean, but no guarantee
that it is very recent cygwin there. Just in case, you can see the
faulty log here:
https://ci.appveyor.com/project/igagis/prorab/build/master-36


I think you need to add the -g flag to the setup invocation you are 
using, to allow it also upgrade any installed packages which need it.


(If setup understood about versioned dependencies, it wouldn't leave you 
in this mess, but "someone has to do it"...)



--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: mksetupini could not find pkg_resources
  2017-03-28 14:14         ` Jon Turney
@ 2017-03-28 14:20           ` Jon Turney
  2017-03-28 16:47           ` Ivan Gagis
  1 sibling, 0 replies; 8+ messages in thread
From: Jon Turney @ 2017-03-28 14:20 UTC (permalink / raw)
  To: The Cygwin Mailing List; +Cc: Ivan Gagis

On 28/03/2017 14:57, Ivan Gagis wrote:
> On 03/28/2017 04:10 PM, Jon Turney wrote:
>> On 27/03/2017 21:03, Ivan Gagis wrote:
>>
>> Does 'python3 -v /usr/bin/mksetupini' tell you anything?
> It tells a lot and among that there is this "pkg_resources not found"
> message. See full output in attached log.out file.
>>
>>> Does anybody have other ideas of what could be wrong?
>>> What can I try to analyze the problem?
>>
>> cygcheck.out as per [1] might shed some light.
> See cygcheck.out in attachment.

Immediately I notice:

> python3                                 3.4.5-1                OK
> python3-appdirs                         1.4.3-1                OK
> python3-packaging                       16.8-1                 OK
> python3-pyparsing                       2.1.10-1               OK
> python3-setuptools                      34.3.2-1               OK
> python3-six                             1.10.0-1               OK

Somehow you have python3 3.4, but python3-setuptools for 3.6.

The output of 'python3 -v'

> I'm building my stuff on Appveyor, so it uses a clean cygwin64
> installation every time, at least I hope it is clean, but no guarantee
> that it is very recent cygwin there. Just in case, you can see the
> faulty log here:
> https://ci.appveyor.com/project/igagis/prorab/build/master-36

I think you need to add the -g flag to the setup invocation you are 
using, to allow it also upgrade any installed packages which need it.

(If setup understood about versioned dependencies, it wouldn't leave you 
in this mess, but "someone has to do it"...)


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: mksetupini could not find pkg_resources
  2017-03-28 14:14         ` Jon Turney
  2017-03-28 14:20           ` Jon Turney
@ 2017-03-28 16:47           ` Ivan Gagis
  1 sibling, 0 replies; 8+ messages in thread
From: Ivan Gagis @ 2017-03-28 16:47 UTC (permalink / raw)
  To: The Cygwin Mailing List

Thank you for help! It works now with -g option to setup invocation!


On 03/28/2017 05:14 PM, Jon Turney wrote:
> On 28/03/2017 14:57, Ivan Gagis wrote:
>> On 03/28/2017 04:10 PM, Jon Turney wrote:
>>> On 27/03/2017 21:03, Ivan Gagis wrote:
>>>
>>> Does 'python3 -v /usr/bin/mksetupini' tell you anything?
>> It tells a lot and among that there is this "pkg_resources not found"
>> message. See full output in attached log.out file.
>>>
>>>> Does anybody have other ideas of what could be wrong?
>>>> What can I try to analyze the problem?
>>>
>>> cygcheck.out as per [1] might shed some light.
>> See cygcheck.out in attachment.
>
> Immediately I notice:
>
>> python3 3.4.5-1                OK
>> python3-appdirs                         1.4.3-1 OK
>> python3-packaging                       16.8-1 OK
>> python3-pyparsing                       2.1.10-1 OK
>> python3-setuptools                      34.3.2-1 OK
>> python3-six                             1.10.0-1 OK
>
> Somehow you have python3 3.4, but python3-setuptools for 3.6.
>
> The output of 'python3 -v'
>
>> I'm building my stuff on Appveyor, so it uses a clean cygwin64
>> installation every time, at least I hope it is clean, but no guarantee
>> that it is very recent cygwin there. Just in case, you can see the
>> faulty log here:
>> https://ci.appveyor.com/project/igagis/prorab/build/master-36
>
> I think you need to add the -g flag to the setup invocation you are 
> using, to allow it also upgrade any installed packages which need it.
>
> (If setup understood about versioned dependencies, it wouldn't leave 
> you in this mess, but "someone has to do it"...)
>


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-03-28 15:07 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-27 16:36 mksetupini could not find pkg_resources Ivan Gagis
2017-03-27 19:59 ` Jon Turney
2017-03-27 20:30   ` Ivan Gagis
2017-03-28 13:57     ` Jon Turney
2017-03-28 14:05       ` Ivan Gagis
2017-03-28 14:14         ` Jon Turney
2017-03-28 14:20           ` Jon Turney
2017-03-28 16:47           ` Ivan Gagis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).