Nilesh Patra pushed to branch master at Debian Med / nim-lapper
Commits: 12f4a432 by Nilesh Patra at 2025-09-26T00:42:30+05:30 New upstream version 0.1.8 - - - - - 2824f6ec by Nilesh Patra at 2025-09-26T00:42:30+05:30 Update upstream source from tag 'upstream/0.1.8' Update to upstream version '0.1.8' with Debian dir da531dddfaaeae1e398269204ddd5426c1f94481 - - - - - 24d3486d by Nilesh Patra at 2025-09-26T00:43:00+05:30 Bump Standards-Version to 4.7.2 (no changes needed) - - - - - ba9858fe by Nilesh Patra at 2025-09-26T00:43:54+05:30 Drop myself from uploaders - - - - - 5bfbebf3 by Nilesh Patra at 2025-09-26T00:44:04+05:30 Upload to unstable - - - - - 5 changed files: - + CITATION.cff - debian/changelog - debian/control - lapper.nimble - src/lapper.nim Changes: ===================================== CITATION.cff ===================================== @@ -0,0 +1,12 @@ +cff-version: 1.2.0 +message: "If you use this software, please cite it as below." +authors: + - + family-names: Pedersen + given-names: Brent S. + email: [email protected] + +title: "nim-lapper: fast, simple interval overlapping" +version: 0.1.7 +date-released: 2021-01-01 +license: MIT ===================================== debian/changelog ===================================== @@ -1,3 +1,12 @@ +nim-lapper (0.1.8-1) unstable; urgency=medium + + * Team Upload. + * New upstream version 0.1.8 (Closes: #1112656) + * Bump Standards-Version to 4.7.2 (no changes needed) + * Drop myself from Uploaders. + + -- Nilesh Patra <[email protected]> Fri, 26 Sep 2025 00:43:03 +0530 + nim-lapper (0.1.7-5) unstable; urgency=medium * Team upload. ===================================== debian/control ===================================== @@ -2,10 +2,10 @@ Source: nim-lapper Section: science Priority: optional Maintainer: Debian Med Packaging Team <[email protected]> -Uploaders: Steffen Moeller <[email protected]>, Nilesh Patra <[email protected]> +Uploaders: Steffen Moeller <[email protected]> Build-Depends: debhelper-compat (= 13), nim -Standards-Version: 4.6.0 +Standards-Version: 4.7.2 Homepage: https://github.com/brentp/nim-lapper Vcs-Browser: https://salsa.debian.org/med-team/nim-lapper Vcs-Git: https://salsa.debian.org/med-team/nim-lapper.git ===================================== lapper.nimble ===================================== @@ -1,6 +1,6 @@ # Package -version = "0.1.7" +version = "0.1.8" author = "Brent Pedersen" description = "fast, simple interval overlaps with binary search" license = "MIT" ===================================== src/lapper.nim ===================================== @@ -129,7 +129,6 @@ proc empty*[T:Interval](L:Lapper[T]): bool {.inline.} = iterator find*[T:Interval](L:var Lapper[T], start:int, stop:int): T = ## fill ivs with all intervals in L that overlap start .. stop. #if ivs.len != 0: ivs.set_len(0) - shallow(L.intervals) let off = lowerBound(L.intervals, start - L.max_len) for i in off..L.intervals.high: let x = L.intervals[i] @@ -140,7 +139,6 @@ iterator find*[T:Interval](L:var Lapper[T], start:int, stop:int): T = proc find*[T:Interval](L:var Lapper[T], start:int, stop:int, ivs:var seq[T]): bool = ## fill ivs with all intervals in L that overlap start .. stop. #if ivs.len != 0: ivs.set_len(0) - shallow(L.intervals) let off = lowerBound(L.intervals, start - L.max_len) var n = 0 for i in off..L.intervals.high: @@ -158,7 +156,6 @@ proc find*[T:Interval](L:var Lapper[T], start:int, stop:int, ivs:var seq[T]): bo proc count*[T:Interval](L:var Lapper[T], start:int, stop:int): int = ## fill ivs with all intervals in L that overlap start .. stop. - shallow(L.intervals) let off = lowerBound(L.intervals, start - L.max_len) for i in off..L.intervals.high: let x = L.intervals[i] View it on GitLab: https://salsa.debian.org/med-team/nim-lapper/-/compare/7db8cf75848df9fd753983da9f7ee4fb98cd8e06...5bfbebf37a8c53c1de36be59c8ee31e0e87e1852 -- View it on GitLab: https://salsa.debian.org/med-team/nim-lapper/-/compare/7db8cf75848df9fd753983da9f7ee4fb98cd8e06...5bfbebf37a8c53c1de36be59c8ee31e0e87e1852 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ debian-med-commit mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit
