Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package framel for openSUSE:Factory checked in at 2024-04-10 17:49:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/framel (Old) and /work/SRC/openSUSE:Factory/.framel.new.29460 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "framel" Wed Apr 10 17:49:52 2024 rev:9 rq:1166597 version:8.47.3 Changes: -------- --- /work/SRC/openSUSE:Factory/framel/framel.changes 2024-02-22 21:03:01.893063895 +0100 +++ /work/SRC/openSUSE:Factory/.framel.new.29460/framel.changes 2024-04-10 17:50:45.945302438 +0200 @@ -1,0 +2,6 @@ +Sat Apr 6 11:09:55 UTC 2024 - Atri Bhattacharya <badshah...@gmail.com> + +- Update to version 8.47.3: + * No release notes. + +------------------------------------------------------------------- Old: ---- Fr-8.47.2.tar.bz2 New: ---- Fr-8.47.3.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ framel.spec ++++++ --- /var/tmp/diff_new_pack.WAnr7s/_old 2024-04-10 17:50:46.381318483 +0200 +++ /var/tmp/diff_new_pack.WAnr7s/_new 2024-04-10 17:50:46.385318630 +0200 @@ -20,7 +20,7 @@ %define python_subpackage_only 1 %define shlib lib%{name}8 Name: framel -Version: 8.47.2 +Version: 8.47.3 Release: 0 Summary: Library to manipulate Gravitational Wave Detector data in frame format License: LGPL-2.1-or-later ++++++ Fr-8.47.2.tar.bz2 -> Fr-8.47.3.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Fr-8.47.2/.gitlab/ci/conda.yml new/Fr-8.47.3/.gitlab/ci/conda.yml --- old/Fr-8.47.2/.gitlab/ci/conda.yml 2024-02-07 16:54:04.000000000 +0100 +++ new/Fr-8.47.3/.gitlab/ci/conda.yml 2024-03-21 09:21:45.000000000 +0100 @@ -33,7 +33,7 @@ ctypesgen - conda activate build - PREFIX=${CI_PROJECT_DIR}/installdir - - tar -xf ${CI_PROJECT_NAME}-*.tar.* --strip-components=1 + - tar -xf framel-*.tar.* --strip-components=1 script: - mkdir build - cd build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Fr-8.47.2/.gitlab/ci/debian.yml new/Fr-8.47.3/.gitlab/ci/debian.yml --- old/Fr-8.47.2/.gitlab/ci/debian.yml 2024-02-07 16:54:04.000000000 +0100 +++ new/Fr-8.47.3/.gitlab/ci/debian.yml 2024-03-21 09:21:45.000000000 +0100 @@ -30,6 +30,8 @@ stage: source packages needs: - dist + variables: + TARBALL: "framel-*.tar.*" dsc:bullseye: extends: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Fr-8.47.2/.gitlab/ci/rhel.yml new/Fr-8.47.3/.gitlab/ci/rhel.yml --- old/Fr-8.47.2/.gitlab/ci/rhel.yml 2024-02-07 16:54:04.000000000 +0100 +++ new/Fr-8.47.3/.gitlab/ci/rhel.yml 2024-03-21 09:21:45.000000000 +0100 @@ -52,6 +52,8 @@ stage: source packages needs: - dist + variables: + TARBALL: "framel-*.tar.*" srpm:el7: extends: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Fr-8.47.2/.gitlab/ci/upload.yml new/Fr-8.47.3/.gitlab/ci/upload.yml --- old/Fr-8.47.2/.gitlab/ci/upload.yml 2024-02-07 16:54:04.000000000 +0100 +++ new/Fr-8.47.3/.gitlab/ci/upload.yml 2024-03-21 09:21:45.000000000 +0100 @@ -8,7 +8,7 @@ dependencies: - dist variables: - IGWN_ARCHIVE_TARGET: "Fr-*.tar.*" + IGWN_ARCHIVE_TARGET: "framel-*.tar.*" IGWN_ARCHIVE_USER: "rhys.poulton" rules: - if: '$CI_PROJECT_ROOT_NAMESPACE == "virgo" && $CI_COMMIT_TAG =~ /^\d+\.\d+\.\d+.*/' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Fr-8.47.2/CMakeLists.txt new/Fr-8.47.3/CMakeLists.txt --- old/Fr-8.47.2/CMakeLists.txt 2024-02-07 16:54:04.000000000 +0100 +++ new/Fr-8.47.3/CMakeLists.txt 2024-03-21 09:21:45.000000000 +0100 @@ -7,7 +7,7 @@ project( framel LANGUAGES C - VERSION 8.47.2 + VERSION 8.47.3 DESCRIPTION "LIGO/VIRGO frame library" HOMEPAGE_URL "https://git.ligo.org/virgo/virgoapp/Fr" ) @@ -67,8 +67,8 @@ set(CPACK_PACKAGE_PATCH ${${PROJECT_NAME}_PATCH_VERSION}) set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_MAJOR}.${CPACK_PACKAGE_MINOR}.${CPACK_PACKAGE_PATCH}") -set(CPACK_SOURCE_GENERATOR TGZ) -set(CPACK_SOURCE_PACKAGE_FILE_NAME Fr-${${PROJECT_NAME}_VERSION}) +set(CPACK_SOURCE_GENERATOR TXZ) +set(CPACK_SOURCE_PACKAGE_FILE_NAME ${PROJECT_NAME}-${${PROJECT_NAME}_VERSION}) set(CPACK_SOURCE_IGNORE_FILES "/.*~$/" ".*~$" @@ -82,6 +82,6 @@ "Makefile" "\\\\.deps/" "autom4te.cache/" - "\\\\.tar\\\\." + "\\\\.tar\\\\.xz" ) include(CPack) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Fr-8.47.2/debian/watch new/Fr-8.47.3/debian/watch --- old/Fr-8.47.2/debian/watch 2024-02-07 16:54:04.000000000 +0100 +++ new/Fr-8.47.3/debian/watch 2024-03-21 09:21:45.000000000 +0100 @@ -1,2 +1,2 @@ version=4 -https://git.ligo.org/virgo/virgoapp/Fr/-/archive/(.+)/Fr-(.+).tar\.(?:gz|bz2|xz) +https://software.igwn.org/sources/source/framel-(.+)\.tar\.(?:gz|bz2|xz) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Fr-8.47.2/rpm/framel.spec.in new/Fr-8.47.3/rpm/framel.spec.in --- old/Fr-8.47.2/rpm/framel.spec.in 2024-02-07 16:54:04.000000000 +0100 +++ new/Fr-8.47.3/rpm/framel.spec.in 2024-03-21 09:21:45.000000000 +0100 @@ -16,7 +16,7 @@ Release: 1%{?dist} Summary: LIGO/VIRGO frame library License: LGPLv3+ -Source: https://software.igwn.org/sources/source/Fr-%{version}.tar.gz +Source: https://software.igwn.org/sources/source/framel-%{version}.tar.xz URL: http://lappweb.in2p3.fr/virgo/FrameL Packager: Duncan Macleod <duncan.macl...@ligo.org> Prefix: %{_prefix} @@ -110,7 +110,7 @@ # -- build stages ----------- %prep -%autosetup -p1 -n Fr-%{version} +%autosetup -p1 -n %{name}-%{version} %build %cmake3 \ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Fr-8.47.2/src/FrameL.c new/Fr-8.47.3/src/FrameL.c --- old/Fr-8.47.2/src/FrameL.c 2024-02-07 16:54:04.000000000 +0100 +++ new/Fr-8.47.3/src/FrameL.c 2024-03-21 09:21:45.000000000 +0100 @@ -5909,12 +5909,14 @@ lenNoWhiteSpace = strcspn(start, whitespace); /*---------------------------------------first handle cache file and ffl---*/ - if(strstr(start + lenNoWhiteSpace - 4, ".ffl") != NULL) { + if(lenNoWhiteSpace > 4 && + strstr(start + lenNoWhiteSpace - 4, ".ffl") != NULL) { if(FrFileOpenFFL(start, &fileHRoot, segList) == NULL) return(NULL); fileHRoot = FrFileSortByGPS(fileHRoot); return(fileHRoot);} - if(strstr(start + lenNoWhiteSpace - 6, ".cache") != NULL) + if(lenNoWhiteSpace > 6 && + strstr(start + lenNoWhiteSpace - 6, ".cache") != NULL) return(FrFileOpenCacheFile(start)); /*---then the case of single regular file without white space in the name, @@ -16934,6 +16936,7 @@ /*-----------------------------------------------copy the auxiliary data---*/ for(vect = auxVect; vect != NULL; vect = vect->next){ + if(vect->compress != 0) FrVectExpand(vect); iS = 0; dO = (vect->GTime - output->GTime + .25*dt)/dt; iO = dO;