Compare commits

...
Sign in to create a new pull request.

15 commits

Author SHA1 Message Date
Ondřej Pohořelský
4d4cf9a5d3 update to 2.47.0 2024-10-08 15:23:28 +02:00
Ondřej Pohořelský
6b0295543d update to 2.46.2 2024-09-24 15:08:12 +02:00
Ondřej Pohořelský
731cd49e58 update to 2.46.1 2024-09-16 12:12:53 +02:00
Ondřej Pohořelský
5785f17ca5 mark git@.service as config(noreplace)
Each update git@.service has been overwritten, removing users custom configurations.
Marking it as config(noreplace) should prevent this behaviour.
2024-09-04 12:17:32 +02:00
Ondřej Pohořelský
8a9e06723d update to 2.46.0 2024-08-05 14:11:01 +02:00
Ondřej Pohořelský
d3b2275bd2 update to 2.45.2 2024-06-03 12:50:14 +02:00
Ondřej Pohořelský
6487458306 update to 2.45.1 2024-05-15 09:34:23 +02:00
Ondřej Pohořelský
7e154d01bc update to 2.45.0 2024-04-30 17:26:57 +02:00
Ondřej Pohořelský
5f6f6148fb update to 2.44.0 2024-02-26 11:56:57 +01:00
Ondřej Pohořelský
5e509955fd update to 2.43.2 2024-02-15 09:40:30 +01:00
Ondřej Pohořelský
8c050d4793 update to 2.43.1 2024-02-12 11:21:13 +01:00
Yaakov Selkowitz
593065c6eb Fix perl-podlators dependency
With /app-prefixed builds of perl now existing for flatpaks, file
dependencies must not be used for perl components.
2024-02-12 11:19:56 +01:00
Ondřej Pohořelský
c5521825e0 apache.conf set DavLockDBType to sdbm
With the recent change that drops apr-util-bdb build require, in
favor of httpd, t5540 started failing on tests using git-httpd-push.
This patch sets DavLockDBType to sdbm, fixing these failures.
2024-02-12 11:19:38 +01:00
Ondřej Pohořelský
6919047c94 update to 2.43.0 2023-11-22 11:00:38 +01:00
Ondřej Pohořelský
c9cc5d346c update to 2.42.1 2023-11-22 10:59:51 +01:00
3 changed files with 60 additions and 13 deletions

View file

@ -0,0 +1,14 @@
diff -ur b/t/lib-httpd/apache.conf a/t/lib-httpd/apache.conf
--- b/t/lib-httpd/apache.conf 2024-01-09 11:06:46.660868023 +0100
+++ a/t/lib-httpd/apache.conf 2024-01-09 11:09:09.572713625 +0100
@@ -272,7 +272,9 @@
<IfDefine DAV>
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
-
+ <IfDirective DavLockDBType>
+ DavLockDBType sdbm
+ </IfDirective>
DAVLockDB DAVLock
<Location /dumb/>
Dav on

View file

@ -77,8 +77,8 @@
%global _package_note_file %{_builddir}/%{name}-%{real_version}/.package_note-%{name}-%{version}-%{release}.%{_arch}.ld
Name: git
Version: 2.42.0
Release: 2%{?dist}
Version: 2.47.0
Release: 1%{?dist}
Summary: Fast Version Control System
License: BSD-3-Clause AND GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later AND MIT
URL: https://git-scm.com/
@ -127,9 +127,13 @@ Patch2: 0002-t-lib-git-daemon-try-harder-to-find-a-port.patch
# https://github.com/tmzullinger/git/commit/aa5105dc11
Patch3: 0003-t-lib-git-svn-try-harder-to-find-a-port.patch
# Configurates Apache test server to use `DavLockDBType sdbm`
# Prevents t5540 failures on i686, s390x and ppc64le
Patch5: git-test-apache-davlockdbtype-config.patch
%if %{with docs}
# pod2man is needed to build Git.3pm
BuildRequires: /usr/bin/pod2man
BuildRequires: perl-podlators
%if %{with asciidoctor}
BuildRequires: docbook5-style-xsl
BuildRequires: rubygem-asciidoctor
@ -635,13 +639,6 @@ rm -rf contrib/fast-import/import-zips.py
%endif
# endif with python2
# Use python3 to avoid an unnecessary python2 dependency, if possible.
%if %{with python3}
sed -i -e '1s@#!\( */usr/bin/env python\|%{__python2}\)$@#!%{__python3}@' \
contrib/hg-to-git/hg-to-git.py
%endif
# endif with python3
%install
%make_install %{?with_docs:install-doc}
@ -965,7 +962,7 @@ rmdir --ignore-fail-on-non-empty "$testdir"
%files daemon
%{_pkgdocdir}/git-daemon*.txt
%{_unitdir}/git.socket
%{_unitdir}/git@.service
%config(noreplace) %{_unitdir}/git@.service
%{gitexecdir}/git-daemon
%{_localstatedir}/lib/git
%{?with_docs:%{_mandir}/man1/git-daemon*.1*}
@ -1041,6 +1038,42 @@ rmdir --ignore-fail-on-non-empty "$testdir"
%{?with_docs:%{_pkgdocdir}/git-svn.html}
%changelog
* Tue Oct 08 2024 Ondřej Pohořelský <opohorel@redhat.com> - 2.47.0-1
- update to 2.47.0
* Tue Sep 24 2024 Ondřej Pohořelský <opohorel@redhat.com> - 2.46.2-1
- update to 2.46.2
* Mon Sep 16 2024 Ondřej Pohořelský <opohorel@redhat.com> - 2.46.1-1
- update to 2.46.1
* Mon Aug 05 2024 Ondřej Pohořelský <opohorel@redhat.com> - 2.46.0-1
- update to 2.46.0
* Mon Jun 03 2024 Ondřej Pohořelský <opohorel@redhat.com> - 2.45.2-1
- update to 2.45.2
* Wed May 15 2024 Ondřej Pohořelský <opohorel@redhat.com> - 2.45.1-1
- update to 2.45.1
* Tue Apr 30 2024 Ondřej Pohořelský <opohorel@redhat.com> - 2.45.0-1
- update to 2.45.0
* Mon Feb 26 2024 Ondřej Pohořelský <opohorel@redhat.com> - 2.44.0-1
- update to 2.44.0
* Thu Feb 15 2024 Ondřej Pohořelský <opohorel@redhat.com> - 2.43.2-1
- update to 2.43.2
* Mon Feb 12 2024 Ondřej Pohořelský <opohorel@redhat.com> - 2.43.1-1
- update to 2.43.1
* Tue Nov 21 2023 Ondřej Pohořelský <opohorel@redhat.com> - 2.43.0-1
- update to 2.43.0
* Tue Nov 14 2023 Ondřej Pohořelský <opohorel@redhat.com> - 2.42.1-1
- update to 2.42.1
* Wed Nov 1 2023 Joe Orton <jorton@redhat.com> - 2.42.0-2
- remove explicit BR for apr-util-bdb (#2247532)

View file

@ -1,2 +1,2 @@
SHA512 (git-2.42.0.tar.xz) = afe5bca3c084d4ddd66f20afa820ba10f61007f66846108929e0d4ee7b7eaa896fcf00917dead16881d840f674dec6dd0e353a05e62a31016694af3d7d22a51d
SHA512 (git-2.42.0.tar.sign) = 847914db4f035095643cf38af87e53be82b0d10c0fdcb862f5015df01662c15d6d77410e4f4aaa5ad510d9d82c830a0218465d10905f3ec048929b1c02be6d5d
SHA512 (git-2.47.0.tar.xz) = 58683aa59dba25ffec9fe2c185267c77b34d573e9738c133a15d25071e37095e99486c231c35b8f71aabe3c1e305238b56d2c10039318bfc08f137919bad66ec
SHA512 (git-2.47.0.tar.sign) = 7ccfe729598d3efd5cf1507c5132782f4e17d030745b4684284e691156cfe150d8911fa05f26d31382f505c6a4fbc1cc261e289e239ec9cc812ddfe20d026511