This is an automated email from the git hooks/post-receive script. luisibanez-guest pushed a commit to branch master in repository vista.
commit 6cc3237a73f29b28687fdfd52649017e4025e4c3 Author: Luis Ibanez <[email protected]> Date: Thu Jan 30 07:34:54 2014 -0500 Now get source from Alioth git. Then composes it with the source of VistA-M, to create the fully self-contained tree from which we can build the package. --- debian/changelog | 1 + debian/rules | 16 +++++++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 5c35b8e..8d5462b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -36,5 +36,6 @@ vista-foia (0.20140106-1) UNRELEASED; urgency=low * In rules, only installing selected directories. Skipping .o files. * In rules, enabled parallel build. * In rules, added VISTA_FOIA_VERSION to installation directory path. + * In rules, now gets source from Alioth git, then composes with VistA-M. -- Luis Ibanez <[email protected]> Wed, 4 Jul 2012 17:16:45 -0500 diff --git a/debian/rules b/debian/rules index 7026332..c4c9eab 100755 --- a/debian/rules +++ b/debian/rules @@ -88,12 +88,18 @@ override_dh_auto_install: get-orig-source: - wget -O../OSEHRA-VistA-M-897bff2a.orig.tar.gz https://github.com/OSEHRA/VistA-M/tarball/897bff2a - wget -O../vista-foia_0.20140106.infrastructure.orig.tar.gz https://github.com/OSEHRA/VistA/tarball/fdc8ff2b - (cd .. && mkdir -p vista-foia-orig-source && cd vista-foia-orig-source && \ -tar -xzf ../vista-foia_0.20140106.infrastructure.orig.tar.gz && \ + (cd .. && \ +mkdir -p vista-foia-orig-source && \ +cd vista-foia-orig-source && \ +wget -O./OSEHRA-VistA-M-897bff2a.orig.tar.gz https://github.com/OSEHRA/VistA-M/tarball/897bff2a && \ +git clone git+ssh://git.debian.org/git/debian-med/vista.git && \ +cd vista && \ +git archive -o ../debian-vista.tar.gz --format tar.gz HEAD && \ +cd .. && \ +mkdir -p OSEHRA-VistA-fdc8ff2 && \ cd OSEHRA-VistA-fdc8ff2 && \ -tar -xzf ../../OSEHRA-VistA-M-897bff2a.orig.tar.gz && \ +tar -xzf ../debian-vista.tar.gz && \ +tar -xzf ../OSEHRA-VistA-M-897bff2a.orig.tar.gz && \ cd .. && \ tar -czf vista-foia_0.20140106.orig.tar.gz OSEHRA-VistA-fdc8ff2 \ ) -- Alioth's /git/debian-med/git-commit-notice on /srv/git.debian.org/git/debian-med/vista.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
