diff -Nru libgit2-1.7.2+ds/debian/changelog libgit2-1.7.2+ds/debian/changelog --- libgit2-1.7.2+ds/debian/changelog 2024-02-08 08:10:45.000000000 +0000 +++ libgit2-1.7.2+ds/debian/changelog 2024-02-13 08:12:02.000000000 +0000 @@ -1,3 +1,12 @@ +libgit2 (1.7.2+ds-1ubuntu1) noble; urgency=low + + * Merge from Debian unstable. Remaining changes: + - Use OpenSSL as the crypto backend + - Use cmake:native in d/tests/control + - Lower optimization level to O2 on ppc64el to fix a test failure + + -- Gianfranco Costamagna Tue, 13 Feb 2024 09:12:02 +0100 + libgit2 (1.7.2+ds-1) unstable; urgency=medium * New upstream version 1.7.2+ds @@ -9,6 +18,15 @@ -- Timo Röhling Thu, 08 Feb 2024 09:10:45 +0100 +libgit2 (1.7.1+ds-2ubuntu1) noble; urgency=low + + * Merge from Debian unstable. Remaining changes: + - Use OpenSSL as the crypto backend + - Use cmake:native in d/tests/control + - Lower optimization level to O2 on ppc64el to fix a test failure + + -- Gianfranco Costamagna Sun, 03 Dec 2023 09:29:52 +0100 + libgit2 (1.7.1+ds-2) unstable; urgency=medium * Upload to unstable. @@ -34,6 +52,15 @@ -- Timo Röhling Mon, 19 Jun 2023 20:45:38 +0200 +libgit2 (1.5.1+ds-1ubuntu1) lunar; urgency=low + + * Merge from Debian unstable. Remaining changes: + - Use OpenSSL as the crypto backend + - Use cmake:native in d/tests/control + - Lower optimization level to O2 on ppc64el to fix a test failure + + -- Gianfranco Costamagna Thu, 26 Jan 2023 22:12:51 +0100 + libgit2 (1.5.1+ds-1) unstable; urgency=high * Team upload. @@ -43,6 +70,15 @@ -- Timo Röhling Sun, 22 Jan 2023 22:03:29 +0100 +libgit2 (1.5.0+ds-6ubuntu2) lunar; urgency=medium + + * Merge from Debian unstable. Remaining changes: + - Use OpenSSL as the crypto backend + - Use cmake:native in d/tests/control + - Lower optimization level to O2 on ppc64el to fix a test failure + + -- Gianfranco Costamagna Fri, 04 Nov 2022 12:25:02 +0100 + libgit2 (1.5.0+ds-6) unstable; urgency=medium * Team upload. @@ -101,6 +137,22 @@ -- Mohammed Bilal Thu, 05 May 2022 17:17:21 +0530 +libgit2 (1.3.2+dfsg.1-0ubuntu1) kinetic; urgency=medium + + * New upstream bugfix version (LP: #1991636) + * d/watch: switch to the GH tags page as the release page broke + tarball links + * d/p/fix-warnings-atomic-exchange.patch: cherry-picked from upstream + to silence a particularly loud warning + + -- Simon Chopin Tue, 04 Oct 2022 09:55:21 +0200 + +libgit2 (1.3.0+dfsg.1-3ubuntu1) kinetic; urgency=medium + + * d/control: Use OpenSSL as the crypto backend + + -- Simon Chopin Fri, 01 Jul 2022 12:05:54 +0200 + libgit2 (1.3.0+dfsg.1-3) unstable; urgency=medium * Reupload to unstable diff -Nru libgit2-1.7.2+ds/debian/control libgit2-1.7.2+ds/debian/control --- libgit2-1.7.2+ds/debian/control 2024-02-08 08:10:45.000000000 +0000 +++ libgit2-1.7.2+ds/debian/control 2024-02-12 20:50:16.000000000 +0000 @@ -11,7 +11,7 @@ ca-certificates, cmake, zlib1g-dev, - libmbedtls-dev, + libssl-dev, libssh2-1-dev, libhttp-parser-dev, libpcre2-dev, @@ -29,7 +29,7 @@ Multi-Arch: same Depends: libgit2-1.7 (= ${binary:Version}), zlib1g-dev, - libmbedtls-dev, + libssl-dev, libssh2-1-dev, libhttp-parser-dev, libpcre2-dev, diff -Nru libgit2-1.7.2+ds/debian/rules libgit2-1.7.2+ds/debian/rules --- libgit2-1.7.2+ds/debian/rules 2024-02-08 08:10:45.000000000 +0000 +++ libgit2-1.7.2+ds/debian/rules 2024-02-12 20:50:16.000000000 +0000 @@ -19,12 +19,16 @@ -DENABLE_REPRODUCIBLE_BUILDS=ON \ -DREGEX_BACKEND=pcre2 \ -DUSE_GSSAPI=ON \ - -DUSE_HTTPS=mbedTLS \ + -DUSE_HTTPS=OpenSSL \ -DUSE_HTTP_PARSER=system \ -DUSE_NTLMCLIENT=OFF \ -DUSE_SSH=ON +ifeq ($(DEB_HOST_ARCH),ppc64el) + export DEB_CFLAGS_MAINT_APPEND = -O2 +endif + # The stat() in the Git fs layer has some issues export GITTEST_FLAKY_STAT = true diff -Nru libgit2-1.7.2+ds/debian/tests/control libgit2-1.7.2+ds/debian/tests/control --- libgit2-1.7.2+ds/debian/tests/control 2024-02-08 08:10:45.000000000 +0000 +++ libgit2-1.7.2+ds/debian/tests/control 2024-02-12 20:50:16.000000000 +0000 @@ -1,2 +1,2 @@ Test-Command: cmake debian/tests;make;./libgit2_test -Depends: @, cmake, gcc, g++ +Depends: @, cmake:native, gcc:native, g++:native