[med-svn] r11578 - in trunk/packages: . vista vista/trunk vista/trunk/debian vista/trunk/debian/source

Luis Ibanez luisibanez-guest at alioth.debian.org
Fri Jul 6 02:34:22 UTC 2012


Author: luisibanez-guest
Date: 2012-07-06 02:34:21 +0000 (Fri, 06 Jul 2012)
New Revision: 11578

Added:
   trunk/packages/vista/
   trunk/packages/vista/trunk/
   trunk/packages/vista/trunk/debian/
   trunk/packages/vista/trunk/debian/changelog
   trunk/packages/vista/trunk/debian/compat
   trunk/packages/vista/trunk/debian/control
   trunk/packages/vista/trunk/debian/copyright
   trunk/packages/vista/trunk/debian/docs
   trunk/packages/vista/trunk/debian/rules
   trunk/packages/vista/trunk/debian/source/
   trunk/packages/vista/trunk/debian/source/format
Log:
ENH: First attempt at packaging VistA.


Added: trunk/packages/vista/trunk/debian/changelog
===================================================================
--- trunk/packages/vista/trunk/debian/changelog	                        (rev 0)
+++ trunk/packages/vista/trunk/debian/changelog	2012-07-06 02:34:21 UTC (rev 11578)
@@ -0,0 +1,6 @@
+vista (1.0) UNRELEASED; urgency=low
+
+  [ Luis Ibanez ]
+  * Initial attempt to package
+
+ -- Luis Ibanez <luis.ibanez at kitware.com>  Wed, 4 Jul 2012 17:16:45 -0500

Added: trunk/packages/vista/trunk/debian/compat
===================================================================
--- trunk/packages/vista/trunk/debian/compat	                        (rev 0)
+++ trunk/packages/vista/trunk/debian/compat	2012-07-06 02:34:21 UTC (rev 11578)
@@ -0,0 +1 @@
+9

Added: trunk/packages/vista/trunk/debian/control
===================================================================
--- trunk/packages/vista/trunk/debian/control	                        (rev 0)
+++ trunk/packages/vista/trunk/debian/control	2012-07-06 02:34:21 UTC (rev 11578)
@@ -0,0 +1,29 @@
+Source: vista
+Section: science
+Priority: extra
+Build-Depends: debhelper (>= 9),
+ fis-gtm, python, cmake (>= 2.8.5)
+Standards-Version: 3.9.3
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+DM-Upload-Allowed: yes
+Uploaders: Andreas Tille <tille at debian.org>,
+           Thorsten Alteholz <debian at alteholz.de>,
+           Luis Ibanez <luis.ibanez at kitware.com>
+Homepage: http://www.osehra.org
+
+Package: vista
+Architecture: amd64 i386
+Depends: fis-gtm, cmake (>= 2.8.5)
+Provides: vista
+Description: package for VistA EHR
+ VistA: the Veterans Health Information Systems and Technology Architecture.
+ This is an integrated health information system that was developed by
+ employees of the US Department of Veterans Affairs (VA). Therefore, the
+ large majority of the source code in VistA is in the Public Domain.
+ In 2011, the VA set up an Open Source custodial organization (OSEHRA)
+ to develop an open source environment for VistA. OSEHRA adopted the
+ Apache 2.0 License for all subsequent contributions to be integrated
+ with the VisA code base.
+ .
+ VistA is implemented in M/MUMPS, and on Linux depends on the GT.M
+ compiler and database being available.

Added: trunk/packages/vista/trunk/debian/copyright
===================================================================
--- trunk/packages/vista/trunk/debian/copyright	                        (rev 0)
+++ trunk/packages/vista/trunk/debian/copyright	2012-07-06 02:34:21 UTC (rev 11578)
@@ -0,0 +1,15 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0
+Upstream-Name: VistA-FOIA
+Upstream-Contact: Luis Ibanez <luis.ibanez at kitware.com>
+Source: https://github.com/OSEHRA/VistA-FOIA/tarball/master
+Comment: Open Source environment for VistA is managed by OSEHRA.
+
+
+Files: *
+Copyright: Public Domain - Employees of the Department of Veterans Affairs.
+Comment:   Modifications received by OSEHRA are copyrighted by contributors.
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2012 Luis Ibanez <luis.ibanez at kitware.com>
+License: Apache-2.0

Added: trunk/packages/vista/trunk/debian/docs
===================================================================
Added: trunk/packages/vista/trunk/debian/rules
===================================================================
--- trunk/packages/vista/trunk/debian/rules	                        (rev 0)
+++ trunk/packages/vista/trunk/debian/rules	2012-07-06 02:34:21 UTC (rev 11578)
@@ -0,0 +1,45 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# debian/rules for fis-gtm
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+VISTAINSTANCEDIR := debian/usr/share/VistA-FOIA
+GTM_INSTALL_DIR := /usr/lib/fis-gtm/V5.5-000_x86_64
+VISTA_GLOBALS_DIR := $(VISTAINSTANCEDIR)/g
+VISTA_ROUTINES_DIR := $(VISTAINSTANCEDIR)/r
+GTMPROFILE := $(GTM_INSTALL_DIR)/gtmprofile
+
+%:
+	dh $@
+
+override_dh_auto_configure:
+	dh_auto_configure -- \
+-DCMAKE_INSTALL_PREFIX:PATH=/usr \
+-DGTM_INSTALL_DIR=$(GTM_INSTALL_DIR) \
+-DGTMPROFILE:PATH=$(GTMPROFILE) \
+-DVISTA_GLOBALS_DIR:PATH=$(VISTA_GLOBALS_DIR) \
+-DVISTA_ROUTINE_DIR:PATH=$(VISTA_ROUTINES_DIR)
+
+override_dh_auto_install:
+	mkdir -p $(VISTAINSTANCEDIR)
+	mkdir -p $(VISTAINSTANCEDIR)/r
+	mkdir -p $(VISTAINSTANCEDIR)/o
+	mkdir -p $(VISTAINSTANCEDIR)/g
+	mkdir -p $(VISTAINSTANCEDIR)/inet
+	mkdir -p $(VISTAINSTANCEDIR)/inet/Logs
+	gtm_dist=$(GTM_INSTALL_DIR)
+	gtmprofilefile=$(gtm_dist)/gtmprofile
+	source $(gtmprofilefile)
+	gtmgbldir=$(VISTAINSTANCEDIR)/g/database
+	gtmroutines="$(VISTAINSTANCEDIR)/o($(VISTAINSTANCEDIR)/r) $(gtm_dist)/libgtmutil.so"
+	echo "change -s DEFAULT -f=$(VISTAINSTANCEDIR)/g/database" | $(gtm_dist)/mumps -r GDE
+	$(gtm_dist)/mupip create
+	$(gtm_dist)/dse change -f -key_max=1023 -rec=4096
+
+
+get-orig-source:
+	wget -O../OSEHRA-VistA-FOIA-d7fb400.orig.tar.gz https://github.com/OSEHRA/VistA-FOIA/tarball/master
+	wget -O../OSEHRA-OSEHRA-Automated-Testing-1bc4122.orig.tar.gz https://github.com/OSEHRA/OSEHRA-Automated-Testing/tarball/master
+


Property changes on: trunk/packages/vista/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: trunk/packages/vista/trunk/debian/source/format
===================================================================
--- trunk/packages/vista/trunk/debian/source/format	                        (rev 0)
+++ trunk/packages/vista/trunk/debian/source/format	2012-07-06 02:34:21 UTC (rev 11578)
@@ -0,0 +1 @@
+3.0 (quilt)




More information about the debian-med-commit mailing list