[med-svn] r11610 - trunk/packages/vista/trunk/debian

Luis Ibanez luisibanez-guest at alioth.debian.org
Sat Jul 7 00:18:54 UTC 2012


Author: luisibanez-guest
Date: 2012-07-07 00:18:54 +0000 (Sat, 07 Jul 2012)
New Revision: 11610

Modified:
   trunk/packages/vista/trunk/debian/changelog
   trunk/packages/vista/trunk/debian/rules
Log:
ENH: Completed implementation of get-orig-source.

It downloads from their Git repositories, the VistA-FOIA project, then the
OSEHRA Testing project, and combine them together into a vista tar file.



Modified: trunk/packages/vista/trunk/debian/changelog
===================================================================
--- trunk/packages/vista/trunk/debian/changelog	2012-07-06 23:31:43 UTC (rev 11609)
+++ trunk/packages/vista/trunk/debian/changelog	2012-07-07 00:18:54 UTC (rev 11610)
@@ -3,5 +3,8 @@
   [ Luis Ibanez ]
   * Initial attempt to package (Closes: #541242)
   * Added README.Debian with summarized description of the VistA ecosystem.
+  * debian/rules:
+    Implemented get-orig-source. Get VistA-FOIA and OSEHRA-Testing and
+    recombine them into a single vista tar file.
 
  -- Luis Ibanez <luis.ibanez at kitware.com>  Wed, 4 Jul 2012 17:16:45 -0500

Modified: trunk/packages/vista/trunk/debian/rules
===================================================================
--- trunk/packages/vista/trunk/debian/rules	2012-07-06 23:31:43 UTC (rev 11609)
+++ trunk/packages/vista/trunk/debian/rules	2012-07-07 00:18:54 UTC (rev 11610)
@@ -42,18 +42,12 @@
 get-orig-source:
 	wget -O../OSEHRA-VistA-FOIA.orig.tar.gz https://github.com/OSEHRA/VistA-FOIA/tarball/master
 	wget -O../OSEHRA-OSEHRA-Automated-Testing.orig.tar.gz https://github.com/OSEHRA/OSEHRA-Automated-Testing/tarball/master
-	cd ..
-	mkdir tarballs
-	cd tarballs
+	mkdir -p tarballs
+	mkdir -p tarballs/vista
+	mkdir -p tarballs/vista/VistA-FOIA
 	tar -xzf ../OSEHRA-OSEHRA-Automated-Testing.orig.tar.gz
-	cd OSEHRA-OSEHRA-Automated-Testing-0ba5890/
-	tar -xzf ../../OSEHRA-VistA-FOIA.orig.tar.gz
-	cd OSEHRA-VistA-FOIA-d7fb400
-	sed -i.bak -e '82 i\
-	 TCOMMIT  ;' ./Packages/Kernel/Routines/ZTLOAD1.m
-	sed -i.bak -e '84 d' ./Packages/Kernel/Routines/ZTLOAD1.m
-	cd ../../
-	mkdir vista
-	cp -a OSEHRA-OSEHRA-Automated-Testing-0ba5890/* vista
-	tar -czf ../vista.orig.tar.gz vista
+	tar -xzf ../OSEHRA-VistA-FOIA.orig.tar.gz
+	cp -a OSEHRA-OSEHRA-Automated-Testing-0ba5890/* ./tarballs/vista
+	cp -a OSEHRA-VistA-FOIA-d7fb400/*               ./tarballs/vista/VistA-FOIA
+	tar -czf ../vista.orig.tar.gz ./tarballs/vista
 




More information about the debian-med-commit mailing list