Advertisement
Guest User

Untitled

a guest
Jul 25th, 2012
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Control
  2. -----------------------
  3. Source: spotify-vault
  4. Section: non-free/net
  5. Priority: extra
  6. Maintainer: Timo
  7. Build-Depends: debhelper (>= 5.0.38), spotify-common, sun-java6-jdk, maven2, spotify-maven-config,
  8. spotify-supervision2-debhelper, protobuf-compiler (>= 2.4.1), libprotobuf-dev (>= 2.4.1), jzmq, libzmq3, libzmq3-dev,
  9. spotify-python-health, python-zmq, python-gevent-zeromq, spotify-python-hermes
  10. Standards-Version: 3.7.2
  11.  
  12.  
  13. Package: spotify-vault
  14. Architecture: all
  15. Depends: sun-java6-jre, spotify-supervision2, spotify-tools, jzmq, libzmq3
  16. Description: Vault service
  17.  
  18.  
  19. Package: spotify-vault-client-python
  20. Architecture: all
  21. Depends: ${python:Depends}, spotify-common, spotify-vault-proto, spotify-python-hermes, python-zmq, spotify-python-health
  22. Recommends: python-gevent-zeromq,
  23. Description: Spotify vault client library
  24.  
  25.  
  26. Package: spotify-vault-utils
  27. Architecture: all
  28. Depends: ${python:Depends}, spotify-vault-client-python, python-pycassa
  29. Description: Spotify vault utils (command line interface, setup cassandra permissions)
  30.  
  31.  
  32. Package: spotify-vault-proto
  33. Architecture: all
  34. Recommends: protobuf-compiler
  35. Description: Spotify vault protobuf definition
  36.  
  37.  
  38. rules
  39. ---------------------
  40. #!/usr/bin/make -f
  41.  
  42. DEB_DH_INSTALL_SOURCEDIR=debian/tmp
  43. DEB_DH_INSTALLINIT_ARGS=-n
  44.  
  45. export JAVA_HOME=/usr/lib/jvm/java-6-sun
  46. MVN = mvn -U -e -Dmaven.repo.local=$$PWD/.m2-repository -s/etc/maven2/spotify-settings.xml
  47. SUREFIRE = -Dsurefire.useFile=false
  48.  
  49. %:
  50. dh $@
  51.  
  52. build:
  53. dh build --until dh_auto_build
  54. $(MVN) $(SUREFIRE) package
  55. dh build --remaining
  56.  
  57. binary:
  58. dh binary --until dh_fixperms
  59. dh_supervision --no-start --no-restart-on-upgrade
  60. dh binary --remaining
  61.  
  62. clean:
  63. dh clean
  64. $(MVN) clean
  65.  
  66.  
  67.  
  68. spotify-vault.install - includes everything for reasons unknown
  69. ----------------------
  70. bin/spvaultd usr/bin
  71. vault.conf etc/spotify/default/
  72. target/vault*.jar usr/share/spotify-vault/
  73.  
  74.  
  75. spotify-vault-utils.install - works
  76. ---------------------------
  77. debian/tmp/usr/bin/spvault
  78. debian/tmp/usr/bin/spvault_setup
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement