Advertisement
goatbar

my (goatbar) fink packages that need python 3.4 (py34)

Mar 29th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. # fink list -m goatbar py > packages
  2. lines = open('packages').readlines()
  3. packages = [line.split('\t')[1] for line in lines]
  4. versions = {}
  5. import collections
  6. versions = collections.defaultdict(list)
  7.  
  8. for pkg in packages:
  9. name = pkg[:-5]
  10. ver = pkg[-2:]
  11. versions[name].append(ver)
  12.  
  13. for val in sorted([key for key in versions if '34' not in versions[key]]):
  14. print val
  15.  
  16.  
  17. # remove yolk and system-virtualenv
  18. # Not all of these will be possible for a while and possible not ever
  19.  
  20. amqplib
  21. async
  22. bigquery
  23. carrot
  24. celery
  25. cheetah
  26. crcmod
  27. dap
  28. django
  29. django-gis
  30. ellipt2d
  31. epydoc
  32. featureserver
  33. file
  34. fiona
  35. formencode
  36. gdal
  37. genshi
  38. geojson
  39. gflags
  40. gnuplot
  41. google-api-python-client
  42. google-apputils
  43. gsutil
  44. h5py
  45. httplib2
  46. ipython
  47. jinja2
  48. lockfile
  49. magicdate
  50. mako
  51. markdown
  52. matplotlib
  53. matplotlib-basemap
  54. modern-package-template
  55. mox
  56. ntplib
  57. numexpr
  58. oauth2
  59. oauth2client
  60. obspy-core
  61. obspy-gse2
  62. obspy-mseed
  63. owslib
  64. pandas
  65. paste
  66. pastedeploy
  67. pastescript
  68. pcl-core
  69. protobuf
  70. psycopg2
  71. pychecker
  72. pychecker-py2
  73. pyexcelerator
  74. pygments
  75. pylint
  76. pyodbc
  77. pypi-mirrors
  78. pyproj
  79. pyserial
  80. pysqlite2
  81. pyxml
  82. quadtree
  83. queuelib
  84. scientificpython
  85. scrapy
  86. shapely
  87. simplesegy
  88. smmap
  89. socksipy
  90. sphinx
  91. sqlobject
  92. twisted
  93. uritemplate
  94. virtualenv
  95. w3lib
  96. zmq
  97. zopeinterface
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement