Skip to content
Snippets Groups Projects
Select Git revision
  • 75c78bc76b65b417e2d0524dbc4b2010c9f9fa38
  • master default protected
  • control-single-hba-and-lba
  • L2SS-2407-swap-iers-caltable-monitoring-port
  • L2SS-2357-fix-ruff
  • sync-up-with-meta-pypcc
  • stabilise-landing-page
  • all-stations-lofar2
  • v0.39.7-backports
  • Move-sdptr-to-v1.5.0
  • fix-build-ubuntu
  • tokens-in-env-files
  • fix-build
  • L2SS-2214-deploy-cdb
  • fix-missing-init
  • add-power-hardware-apply
  • L2SS-2129-Add-Subrack-Routine
  • Also-listen-internal-to-rpc
  • fix-build-dind
  • L2SS-2153--Improve-Error-Handling
  • L2SS-2153-Add-Grpc-Gateway-support
  • 0.53.1dev1
  • v0.52.3-r2 protected
  • remove-snmp-client
  • v0.52.3 protected
  • v0.52.3dev0 protected
  • 0.53.1dev0
  • v0.52.2-rc3 protected
  • v0.52.2-rc2 protected
  • v0.52.2-rc1 protected
  • v0.52.1.1 protected
  • v0.52.1 protected
  • v0.52.1-rc1 protected
  • v0.51.9-6 protected
  • v0.51.9-5 protected
  • v0.51.9-4 protected
  • v0.51.9-3 protected
  • v0.51.9-2 protected
  • v0.51.9-1 protected
  • v0.51.9 protected
  • v0.51.8 protected
41 results

NOTICE

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    CMakeLists.txt 857 B
    # $Id$
    
    lofar_package(ResourceAssignmentDatabase 1.0 DEPENDS PyMessaging PyCommon)
    
    lofar_find_package(Python 3.4 REQUIRED)
    include(PythonInstall)
    
    set(_py_files
      __init__.py
      config.py
      radb.py
      radbpglistener.py
      radbbuslistener.py
      tests/radb_common_testing.py
    )
    
    python_install(${_py_files} DESTINATION lofar/sas/resourceassignment/database)
    
    lofar_add_bin_scripts(radbpglistener)
    
    # supervisord config files
    install(FILES
      radbpglistener.ini
      DESTINATION etc/supervisord.d)
    
    add_subdirectory(tests)
    
    set(sql_files radb/sql/add_notifications.sql
                  radb/sql/add_functions_and_triggers.sql
                  radb/sql/add_resource_allocation_statics.sql
                  radb/sql/add_virtual_instrument.sql
                  radb/sql/create_database.sql
                  radb/sql/create_and_populate_database.sql)
    
    lofar_add_data_files(${sql_files})