[med-svn] [Git][med-team/blasr] Pushed new tag debian/5.3.3+dfsg-7

2021-08-21 Thread Nilesh Patra (@nilesh)


Nilesh Patra pushed new tag debian/5.3.3+dfsg-7 at Debian Med / blasr

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/blasr/-/tree/debian/5.3.3+dfsg-7
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/blasr][master] 2 commits: Make build cross-buildable

2021-08-21 Thread Nilesh Patra (@nilesh)


Nilesh Patra pushed to branch master at Debian Med / blasr


Commits:
d632810e by Nilesh Patra at 2021-08-22T01:49:03+05:30
Make build cross-buildable

- - - - -
2a8fa30e by Nilesh Patra at 2021-08-22T01:50:51+05:30
Upload to unstable

- - - - -


3 changed files:

- debian/changelog
- debian/control
- debian/rules


Changes:

=
debian/changelog
=
@@ -1,3 +1,13 @@
+blasr (5.3.3+dfsg-7) unstable; urgency=medium
+
+   * Team Upload.
+   * Fix FTCBFS: (Closes: #983631)
+ + Annotate python3 dependency with :any.
+ + Let dh_auto_configure pass a crossfile to meson.
+ Thank you, Helmut Grohne!
+
+ -- Nilesh Patra   Sun, 22 Aug 2021 01:49:16 +0530
+
 blasr (5.3.3+dfsg-6) unstable; urgency=medium
 
   * Team Upload.


=
debian/control
=
@@ -4,7 +4,7 @@ Uploaders: Andreas Tille 
 Section: science
 Priority: optional
 Build-Depends: debhelper-compat (= 13),
-   python3,
+   python3:any,
meson,
cmake,
pkg-config,


=
debian/rules
=
@@ -33,7 +33,7 @@ export DEB_CXXFLAGS_MAINT_PREPEND = $(CPPFLAGS) 
-I$(PBDATA_ROOT_DIR)
dh $@ --buildsystem=meson
 
 override_dh_auto_configure:
-   LDFLAGS="-L$(HTSLIB_LIB) -L$(HDF5_LIB) -lhdf5_cpp -lhdf5 $(LDFLAGS)" 
CPPFLAGS="-isystem $(HDF5_INC)" meson -Dtests=false -Dprefix=/usr build .
+   LDFLAGS="-L$(HTSLIB_LIB) -L$(HDF5_LIB) -lhdf5_cpp -lhdf5 $(LDFLAGS)" 
CPPFLAGS="-isystem $(HDF5_INC)" dh_auto_configure -- -Dtests=false
 
 bax2bam: utils/bax2bax/bin/bax2bam
 utils/bax2bax/bin/bax2bam:
@@ -47,7 +47,3 @@ ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
 override_dh_auto_test:
echo Tests require data not available in the source distribution
 endif
-
-override_dh_auto_build:
-   ln -s build obj-$(DEB_BUILD_GNU_TYPE)
-   dh_auto_build



View it on GitLab: 
https://salsa.debian.org/med-team/blasr/-/compare/46f80f3e43c139d791b0d17b708303ebc2da600e...2a8fa30ecc9a3629ee55b69e32edcd3b620cc536

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/blasr/-/compare/46f80f3e43c139d791b0d17b708303ebc2da600e...2a8fa30ecc9a3629ee55b69e32edcd3b620cc536
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/libdeflate][master] 2 commits: d/rules: Make build cross-buildale

2021-08-21 Thread Nilesh Patra (@nilesh)


Nilesh Patra pushed to branch master at Debian Med / libdeflate


Commits:
aca22de1 by Nilesh Patra at 2021-08-22T01:16:52+05:30
d/rules: Make build cross-buildale

- - - - -
4da18fee by Nilesh Patra at 2021-08-22T01:16:52+05:30
Upload to unstable

- - - - -


2 changed files:

- debian/changelog
- debian/rules


Changes:

=
debian/changelog
=
@@ -1,3 +1,13 @@
+libdeflate (1.7-2) unstable; urgency=medium
+
+  * Team Upload
+  * Fix FTCBFS: (Closes: #989942)
++ Let dh_auto_build pass cross tools to make.
++ Automatically skip pgo when DEB_BUILD_PROFILES contains cross.
+Thanks to Helmut Grohne!
+
+ -- Nilesh Patra   Sun, 22 Aug 2021 01:14:54 +0530
+
 libdeflate (1.7-1) unstable; urgency=medium
 
   * New upstream version


=
debian/rules
=
@@ -7,30 +7,34 @@ export DEB_BUILD_MAINT_OPTIONS=hardening=+all
 %:
dh $@
 
+ifeq (,$(filter cross,$(DEB_BUILD_PROFILES)))
+PROFILING_FLAG = -fprofile-use
+else
+PROFILING_FLAG =
+endif
 
 override_dh_auto_build:
-   make CFLAGS="$(shell dpkg-buildflags --get CFLAGS) -fprofile-generate" \
+ifeq (,$(filter cross,$(DEB_BUILD_PROFILES)))
+   dh_auto_build -- CFLAGS="$(shell dpkg-buildflags --get CFLAGS) 
-fprofile-generate" \
LDFLAGS="$(shell dpkg-buildflags --get LDFLAGS) 
-fprofile-generate"\
CPPFLAGS="$(shell dpkg-buildflags --get CPPFLAGS)"\
-   V=1 PREFIX=/usr DESTDIR=$(CURDIR)/debian/tmp -j$(shell nproc)\
-   "INSTALL=install --strip-program=true"\
+   V=1 PREFIX=/usr DESTDIR=$(CURDIR)/debian/tmp \
all test_programs
for level in $(shell seq 1 12); do \
./benchmark -$${level} ./lib/deflate_compress.c > /dev/null; \
done
-   make CFLAGS="$(shell dpkg-buildflags --get CFLAGS) -fprofile-use" \
-   LDFLAGS="$(shell dpkg-buildflags --get LDFLAGS) -fprofile-use"\
+endif
+   dh_auto_build -- CFLAGS="$(shell dpkg-buildflags --get CFLAGS) 
$(PROFILING_FLAG)" \
+   LDFLAGS="$(shell dpkg-buildflags --get LDFLAGS) 
$(PROFILING_FLAG)"\
CPPFLAGS="$(shell dpkg-buildflags --get CPPFLAGS)"\
-   V=1 PREFIX=/usr DESTDIR=$(CURDIR)/debian/tmp -j$(shell nproc)\
-   "INSTALL=install --strip-program=true"\
+   V=1 PREFIX=/usr DESTDIR=$(CURDIR)/debian/tmp \
all test_programs
 
 override_dh_auto_install:
-   make CFLAGS="$(shell dpkg-buildflags --get CFLAGS) -fprofile-use" \
-   LDFLAGS="$(shell dpkg-buildflags --get LDFLAGS) -fprofile-use"\
+   dh_auto_build -- CFLAGS="$(shell dpkg-buildflags --get CFLAGS) 
$(PROFILING_FLAG)" \
+   LDFLAGS="$(shell dpkg-buildflags --get LDFLAGS) 
$(PROFILING_FLAG)"\
CPPFLAGS="$(shell dpkg-buildflags --get CPPFLAGS)"\
-   V=1 PREFIX=/usr DESTDIR=$(CURDIR)/debian/tmp -j$(shell nproc)\
-   "INSTALL=install --strip-program=true"\
+   V=1 PREFIX=/usr DESTDIR=$(CURDIR)/debian/tmp \
install
 
 override_dh_auto_test:



View it on GitLab: 
https://salsa.debian.org/med-team/libdeflate/-/compare/6e489ec590a564dfec37a617082adbffea3062da...4da18feed77087335de9b96ff74421ea55300fec

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/libdeflate/-/compare/6e489ec590a564dfec37a617082adbffea3062da...4da18feed77087335de9b96ff74421ea55300fec
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/libdeflate] Pushed new tag debian/1.7-2

2021-08-21 Thread Nilesh Patra (@nilesh)


Nilesh Patra pushed new tag debian/1.7-2 at Debian Med / libdeflate

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/libdeflate/-/tree/debian/1.7-2
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/community/helper-scripts][master] automatic update

2021-08-21 Thread Andreas Tille (@tille)


Andreas Tille pushed to branch master at Debian Med / community / helper-scripts


Commits:
d1d7fd5e by Andreas Tille at 2021-08-21T13:42:28+00:00
automatic update

- - - - -


2 changed files:

- debian-med-tests.txt
- outdated_med-packages.txt


Changes:

=
debian-med-tests.txt
=
@@ -1,4 +1,4 @@
-Last-Update: Sat, 21 Aug 2021 01:42:03 +
+Last-Update: Sat, 21 Aug 2021 13:42:04 +
 
  Source| Vote   | Tasks
   | Tags   
  
 
---++-+--


=
outdated_med-packages.txt
=
@@ -1,4 +1,4 @@
-Last-Update: Sat, 21 Aug 2021 01:42:04 +
+Last-Update: Sat, 21 Aug 2021 13:42:04 +
 
  source| version |
upstream_version |   uploaders  
   |  Last uploader  | Last uploaded  
 
---+-+-+-+-+



View it on GitLab: 
https://salsa.debian.org/med-team/community/helper-scripts/-/commit/d1d7fd5eb297231789b2aed6f0462cd806ae62f0

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/community/helper-scripts/-/commit/d1d7fd5eb297231789b2aed6f0462cd806ae62f0
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/imagej][master] 2 commits: routine-update: Standards-Version: 4.6.0

2021-08-21 Thread @emollier


Étienne Mollier pushed to branch master at Debian Med / imagej


Commits:
3d8d9947 by Étienne Mollier at 2021-08-21T14:52:26+02:00
routine-update: Standards-Version: 4.6.0

- - - - -
94bb9d71 by Étienne Mollier at 2021-08-21T14:55:46+02:00
routine-update: Ready to upload to unstable

- - - - -


2 changed files:

- debian/changelog
- debian/control


Changes:

=
debian/changelog
=
@@ -1,11 +1,12 @@
-imagej (1.53k-2) UNRELEASED; urgency=medium
+imagej (1.53k-2) unstable; urgency=medium
 
   * Team Upload.
   * d/extra/imagej: adjust "free" parsing (Closes: #986041)
   * d/control: imagej depends on procps; fixes spurious missing "free" command
 messages when "free" is not available.
+  * Standards-Version: 4.6.0 (routine-update)
 
- -- Étienne Mollier   Fri, 20 Aug 2021 12:29:49 +0200
+ -- Étienne Mollier   Sat, 21 Aug 2021 14:53:50 +0200
 
 imagej (1.53k-1) unstable; urgency=medium
 


=
debian/control
=
@@ -9,7 +9,7 @@ Build-Depends-Indep: ant,
  default-jdk-headless,
  javahelper,
  maven-repo-helper
-Standards-Version: 4.5.1
+Standards-Version: 4.6.0
 Vcs-Browser: https://salsa.debian.org/med-team/imagej
 Vcs-Git: https://salsa.debian.org/med-team/imagej.git
 Homepage: https://imagej.nih.gov/ij



View it on GitLab: 
https://salsa.debian.org/med-team/imagej/-/compare/adf5d5917eb8f7acfe8a0d3c8c56f45f48b76c5f...94bb9d71d9018293ea458f3aac0e6c1087244f38

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/imagej/-/compare/adf5d5917eb8f7acfe8a0d3c8c56f45f48b76c5f...94bb9d71d9018293ea458f3aac0e6c1087244f38
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/imagej] Pushed new tag debian/1.53k-2

2021-08-21 Thread @emollier


Étienne Mollier pushed new tag debian/1.53k-2 at Debian Med / imagej

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/imagej/-/tree/debian/1.53k-2
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/libstatgen][master] Remove merged patches

2021-08-21 Thread @daissi


Dylan Aïssi pushed to branch master at Debian Med / libstatgen


Commits:
641c2a4e by Dylan Aïssi at 2021-08-21T10:40:06+02:00
Remove merged patches

- - - - -


5 changed files:

- debian/changelog
- − debian/patches/Fix_compilation_error.patch
- debian/patches/Fix_compilation_flags.patch
- − debian/patches/Remove_erroneous_deletes_in_Chromosome_constructor.patch
- debian/patches/series


Changes:

=
debian/changelog
=
@@ -6,6 +6,7 @@ libstatgen (1.0.15-1) UNRELEASED; urgency=medium
 
   [ Dylan Aïssi ]
   * New upstream version
+  * Remove merged patches
 
  -- Dylan Aïssi   Sat, 21 Aug 2021 10:34:47 +0200
 


=
debian/patches/Fix_compilation_error.patch deleted
=
@@ -1,33 +0,0 @@
-Description: Fix some compilation errors.
-Bug: https://github.com/statgen/libStatGen/issues/15
- https://github.com/statgen/libStatGen/issues/17
-Origin: https://github.com/statgen/libStatGen/commit/2f1876e
-https://github.com/statgen/libStatGen/commit/9db9c23
-https://github.com/statgen/libStatGen/commit/5500464
-https://github.com/statgen/libStatGen/commit/198a43e
-
 a/general/Parameters.cpp
-+++ b/general/Parameters.cpp
-@@ -553,7 +553,7 @@
- int  line_len = 0;
- 
- bool legacy_parameters = false;
--bool legacy_count = 0;
-+int legacy_count = 0;
- 
- for (LongParameterList * ptr = list + 1; ptr->description != NULL; ptr++)
- if (ptr->type == LP_LEGACY_PARAMETERS)
 a/general/Makefile
-+++ b/general/Makefile
-@@ -8,7 +8,10 @@
-   # an error, but allow unused results and variables for the
-   # time being.
-   #
--  USER_WARNINGS ?= -Werror $(shell if [ X$(CCVERSION) \> X4.2.0 ] ; then echo 
" -Wno-strict-overflow" ; fi)
-+  # Disable format-truncation check because StringBasics specifically tests
-+  # to make sure snprintf truncates as expected.
-+  USER_WARNINGS ?= -Werror -Wno-format-truncation $(shell if [ X$(CCVERSION) 
\> X4.2.0 ] ; then echo " -Wno-strict-overflow" ; fi) 
-+#  USER_WARNINGS ?= -Werror $(shell if [ X$(CCVERSION) \> X4.2.0 ] ; then 
echo " -Wno-strict-overflow" ; fi)
- #-Wno-strict-overflow
- # -Wno-unused-variable $(shell if [ X$(CCVERSION) \> X4.2.0 ] ; then echo " 
-Wno-unused-result" ; fi)
- endif


=
debian/patches/Fix_compilation_flags.patch
=
@@ -11,7 +11,7 @@ Description: Add -fPIC to build the shared library.
  OPTFLAG_DEBUG?=-ggdb -O0
  OPTFLAG_PROFILE?=-pg
  
-@@ -59,9 +59,9 @@
+@@ -67,9 +67,9 @@
  
  REQ_SETTINGS = 
  


=
debian/patches/Remove_erroneous_deletes_in_Chromosome_constructor.patch deleted
=
@@ -1,30 +0,0 @@
-From: jonathonl 
-Date: Thu, 20 Sep 2018 11:57:06 -0400
-Origin: 
https://github.com/statgen/libStatGen/commit/3a10afe08c209dbacc3eca7794a5a8c0a42ee566
-Bug-Debian: https:bugs.debian.org/905368
-Subject: Removes erroneous deletes in Chromosome constructor.
-

- general/Chromosome.cpp | 2 --
- 1 file changed, 2 deletions(-)
-
-diff --git a/general/Chromosome.cpp b/general/Chromosome.cpp
-index ac2ff5c..2d773e8 100644
 a/general/Chromosome.cpp
-+++ b/general/Chromosome.cpp
-@@ -27,7 +27,6 @@ Chromosome::Chromosome(GenomeSequence* gs, const char* 
chromosomeName)
- Chromosome::Chromosome(const char* genomseSequenceFileName, unsigned int 
chromosomeIndex, bool isColorSpace) 
- {
- std::string s(genomseSequenceFileName);
--if (this->gs) delete gs;
- gs = new GenomeSequence;
- assert(gs);
- gs->setReferenceName(s);
-@@ -39,7 +38,6 @@ Chromosome::Chromosome(const char* genomseSequenceFileName, 
unsigned int chromos
- 
- Chromosome::Chromosome(const std::string& genomseSequenceFileName, unsigned 
int chromosomeIndex, bool isColorSpace) 
- {
--if (this->gs) delete gs;
- gs = new GenomeSequence;
- assert(gs);
- gs->setReferenceName(genomseSequenceFileName);


=
debian/patches/series
=
@@ -1,3 +1 @@
-Fix_compilation_error.patch
 Fix_compilation_flags.patch
-Remove_erroneous_deletes_in_Chromosome_constructor.patch



View it on GitLab: 
https://salsa.debian.org/med-team/libstatgen/-/commit/641c2a4e1b2b3bec85adcb5971e15917cc4d4fcb

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/libstatgen/-/commit/641c2a4e1b2b3bec85adcb5971e15917cc4d4fcb
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/libstatgen][upstream] New upstream version 1.0.15

2021-08-21 Thread @daissi


Dylan Aïssi pushed to branch upstream at Debian Med / libstatgen


Commits:
ede45b74 by Dylan Aïssi at 2021-08-21T10:34:37+02:00
New upstream version 1.0.15
- - - - -


30 changed files:

- Makefile
- Makefiles/Makefile.include
- + README.md
- − README.txt
- bam/CigarHelper.cpp
- bam/GenericSamInterface.cpp
- bam/GenericSamInterface.h
- bam/SamFile.cpp
- bam/SamFile.h
- bam/SamHeaderRG.cpp
- bam/SamInterface.cpp
- bam/SamInterface.h
- bam/SamRecord.cpp
- bam/SamValidation.cpp
- bam/test/ReadFiles.cpp
- bam/test/WriteFiles.cpp
- bam/test/expected/samTest.log
- + bam/test/testFiles/testBam1.bam
- + bam/test/testFiles/testSam1.sam
- fastq/FastQFile.cpp
- fastq/FastQFile.h
- general/Chromosome.cpp
- general/Error.cpp
- general/Makefile
- general/Parameters.cpp
- vcf/VcfFile.h
- vcf/VcfRecord.cpp
- vcf/VcfRecord.h
- vcf/VcfRecordInfo.cpp
- vcf/VcfRecordInfo.h


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/med-team/libstatgen/-/commit/ede45b744d2ac252ddb10c4f1a41ed170c52f580

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/libstatgen/-/commit/ede45b744d2ac252ddb10c4f1a41ed170c52f580
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/libstatgen] Pushed new tag upstream/1.0.15

2021-08-21 Thread @daissi


Dylan Aïssi pushed new tag upstream/1.0.15 at Debian Med / libstatgen

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/libstatgen/-/tree/upstream/1.0.15
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/libstatgen][pristine-tar] pristine-tar data for libstatgen_1.0.15.orig.tar.gz

2021-08-21 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at Debian Med / libstatgen


Commits:
7cf10b01 by Dylan Aïssi at 2021-08-21T10:34:39+02:00
pristine-tar data for libstatgen_1.0.15.orig.tar.gz

- - - - -


2 changed files:

- + libstatgen_1.0.15.orig.tar.gz.delta
- + libstatgen_1.0.15.orig.tar.gz.id


Changes:

=
libstatgen_1.0.15.orig.tar.gz.delta
=
Binary files /dev/null and b/libstatgen_1.0.15.orig.tar.gz.delta differ


=
libstatgen_1.0.15.orig.tar.gz.id
=
@@ -0,0 +1 @@
+66b5de68272218570cfc0cacf303155711dc5b3e



View it on GitLab: 
https://salsa.debian.org/med-team/libstatgen/-/commit/7cf10b01fc3be4106a3f4b050705ab7ee53eea69

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/libstatgen/-/commit/7cf10b01fc3be4106a3f4b050705ab7ee53eea69
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/libstatgen][master] 3 commits: New upstream version 1.0.15

2021-08-21 Thread @daissi


Dylan Aïssi pushed to branch master at Debian Med / libstatgen


Commits:
ede45b74 by Dylan Aïssi at 2021-08-21T10:34:37+02:00
New upstream version 1.0.15
- - - - -
c31aa763 by Dylan Aïssi at 2021-08-21T10:34:39+02:00
Update upstream source from tag 'upstream/1.0.15'

Update to upstream version '1.0.15'
with Debian dir c29b9feebc68e84682dd15bbfa74d631126604b1
- - - - -
f19bb479 by Dylan Aïssi at 2021-08-21T10:35:51+02:00
Bump d/changelog

- - - - -


30 changed files:

- Makefile
- Makefiles/Makefile.include
- + README.md
- − README.txt
- bam/CigarHelper.cpp
- bam/GenericSamInterface.cpp
- bam/GenericSamInterface.h
- bam/SamFile.cpp
- bam/SamFile.h
- bam/SamHeaderRG.cpp
- bam/SamInterface.cpp
- bam/SamInterface.h
- bam/SamRecord.cpp
- bam/SamValidation.cpp
- bam/test/ReadFiles.cpp
- bam/test/WriteFiles.cpp
- bam/test/expected/samTest.log
- + bam/test/testFiles/testBam1.bam
- + bam/test/testFiles/testSam1.sam
- debian/changelog
- fastq/FastQFile.cpp
- fastq/FastQFile.h
- general/Chromosome.cpp
- general/Error.cpp
- general/Makefile
- general/Parameters.cpp
- vcf/VcfFile.h
- vcf/VcfRecord.cpp
- vcf/VcfRecord.h
- vcf/VcfRecordInfo.cpp


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/med-team/libstatgen/-/compare/716b212dc2ec191db6516d4d20818621d03d9f4a...f19bb479c69177737d7dcf7fac2328b18f13035d

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/libstatgen/-/compare/716b212dc2ec191db6516d4d20818621d03d9f4a...f19bb479c69177737d7dcf7fac2328b18f13035d
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/plink2] Pushed new tag debian/2.00_a3-210816+dfsg-1

2021-08-21 Thread @daissi


Dylan Aïssi pushed new tag debian/2.00_a3-210816+dfsg-1 at Debian Med / plink2

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/plink2/-/tree/debian/2.00_a3-210816+dfsg-1
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/plink2][master] Upload to unstable

2021-08-21 Thread @daissi


Dylan Aïssi pushed to branch master at Debian Med / plink2


Commits:
eb30f9d0 by Dylan Aïssi at 2021-08-21T09:51:52+02:00
Upload to unstable

- - - - -


1 changed file:

- debian/changelog


Changes:

=
debian/changelog
=
@@ -1,8 +1,8 @@
-plink2 (2.00~a3-210816+dfsg-1) UNRELEASED; urgency=medium
+plink2 (2.00~a3-210816+dfsg-1) unstable; urgency=medium
 
   * New upstream version
 
- -- Dylan Aïssi   Fri, 23 Jul 2021 21:49:33 +0200
+ -- Dylan Aïssi   Sat, 21 Aug 2021 09:51:33 +0200
 
 plink2 (2.00~a3-210203+dfsg-1) unstable; urgency=medium
 



View it on GitLab: 
https://salsa.debian.org/med-team/plink2/-/commit/eb30f9d06e474c2f1a93e374a2dd6813108a9fc7

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/plink2/-/commit/eb30f9d06e474c2f1a93e374a2dd6813108a9fc7
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/plink2] Pushed new tag upstream/2.00_a3-210816+dfsg

2021-08-21 Thread @daissi


Dylan Aïssi pushed new tag upstream/2.00_a3-210816+dfsg at Debian Med / plink2

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/plink2/-/tree/upstream/2.00_a3-210816+dfsg
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/plink2][pristine-tar] pristine-tar data for plink2_2.00~a3-210816+dfsg.orig.tar.xz

2021-08-21 Thread @daissi


Dylan Aïssi pushed to branch pristine-tar at Debian Med / plink2


Commits:
dbf50f83 by Dylan Aïssi at 2021-08-21T09:50:26+02:00
pristine-tar data for plink2_2.00~a3-210816+dfsg.orig.tar.xz

- - - - -


2 changed files:

- + plink2_2.00~a3-210816+dfsg.orig.tar.xz.delta
- + plink2_2.00~a3-210816+dfsg.orig.tar.xz.id


Changes:

=
plink2_2.00~a3-210816+dfsg.orig.tar.xz.delta
=
Binary files /dev/null and b/plink2_2.00~a3-210816+dfsg.orig.tar.xz.delta differ


=
plink2_2.00~a3-210816+dfsg.orig.tar.xz.id
=
@@ -0,0 +1 @@
+59c6aae1d47672bdaade53f897403073b59f19fc



View it on GitLab: 
https://salsa.debian.org/med-team/plink2/-/commit/dbf50f833beba97835c199d2fdf80b4236612f41

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/plink2/-/commit/dbf50f833beba97835c199d2fdf80b4236612f41
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/plink1-9] Pushed new tag debian/1.90_b6.24-210606-1

2021-08-21 Thread @daissi


Dylan Aïssi pushed new tag debian/1.90_b6.24-210606-1 at Debian Med / plink1.9

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/plink1-9/-/tree/debian/1.90_b6.24-210606-1
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/plink1-9][master] Upload to unstable

2021-08-21 Thread @daissi


Dylan Aïssi pushed to branch master at Debian Med / plink1.9


Commits:
04731eb1 by Dylan Aïssi at 2021-08-21T09:38:33+02:00
Upload to unstable

- - - - -


1 changed file:

- debian/changelog


Changes:

=
debian/changelog
=
@@ -1,8 +1,8 @@
-plink1.9 (1.90~b6.24-210606-1) UNRELEASED; urgency=medium
+plink1.9 (1.90~b6.24-210606-1) unstable; urgency=medium
 
   * New upstream release.
 
- -- Dylan Aïssi   Fri, 23 Jul 2021 19:12:34 +0200
+ -- Dylan Aïssi   Sat, 21 Aug 2021 09:38:06 +0200
 
 plink1.9 (1.90~b6.21-201019-1) unstable; urgency=medium
 



View it on GitLab: 
https://salsa.debian.org/med-team/plink1-9/-/commit/04731eb1f50168407cd92e09616eb8c3c7230d55

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/plink1-9/-/commit/04731eb1f50168407cd92e09616eb8c3c7230d55
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/bolt-lmm] Pushed new tag debian/2.3.5+dfsg-1

2021-08-21 Thread @daissi


Dylan Aïssi pushed new tag debian/2.3.5+dfsg-1 at Debian Med / bolt-lmm

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/bolt-lmm/-/tree/debian/2.3.5+dfsg-1
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/bolt-lmm][master] Upload to unstable

2021-08-21 Thread @daissi


Dylan Aïssi pushed to branch master at Debian Med / bolt-lmm


Commits:
2a90e9c5 by Dylan Aïssi at 2021-08-21T09:34:56+02:00
Upload to unstable

- - - - -


1 changed file:

- debian/changelog


Changes:

=
debian/changelog
=
@@ -1,8 +1,8 @@
-bolt-lmm (2.3.5+dfsg-1) UNRELEASED; urgency=medium
+bolt-lmm (2.3.5+dfsg-1) unstable; urgency=medium
 
   * New upstream release.
 
- -- Dylan Aïssi   Fri, 23 Jul 2021 18:58:52 +0200
+ -- Dylan Aïssi   Sat, 21 Aug 2021 09:34:36 +0200
 
 bolt-lmm (2.3.4+dfsg-3) unstable; urgency=medium
 



View it on GitLab: 
https://salsa.debian.org/med-team/bolt-lmm/-/commit/2a90e9c5706968996dc0c6eb31b1ba86039007ee

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/bolt-lmm/-/commit/2a90e9c5706968996dc0c6eb31b1ba86039007ee
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/beagle] Pushed new tag debian/5.2-210628-1

2021-08-21 Thread @daissi


Dylan Aïssi pushed new tag debian/5.2-210628-1 at Debian Med / beagle

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/beagle/-/tree/debian/5.2-210628-1
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit


[med-svn] [Git][med-team/beagle][master] Upload to unstable

2021-08-21 Thread @daissi


Dylan Aïssi pushed to branch master at Debian Med / beagle


Commits:
52feefad by Dylan Aïssi at 2021-08-21T09:31:06+02:00
Upload to unstable

- - - - -


1 changed file:

- debian/changelog


Changes:

=
debian/changelog
=
@@ -1,11 +1,11 @@
-beagle (5.2-210628-1) UNRELEASED; urgency=medium
+beagle (5.2-210628-1) unstable; urgency=medium
 
   * New upstream release.
   * Update d/copyright
   * Remove d/patches/*, not needed anymore
   * Remove a former directory from the list in d/rules
 
- -- Dylan Aïssi   Fri, 23 Jul 2021 18:14:29 +0200
+ -- Dylan Aïssi   Sat, 21 Aug 2021 09:30:40 +0200
 
 beagle (5.1-200518+dfsg-1) unstable; urgency=medium
 



View it on GitLab: 
https://salsa.debian.org/med-team/beagle/-/commit/52feefada14f87548c76b50a2c9480ffca60a0a0

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/beagle/-/commit/52feefada14f87548c76b50a2c9480ffca60a0a0
You're receiving this email because of your account on salsa.debian.org.


___
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit