Hello community,

here is the log from the commit of package git-annex for openSUSE:Factory 
checked in at 2020-11-12 22:45:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/git-annex (Old)
 and      /work/SRC/openSUSE:Factory/.git-annex.new.24930 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "git-annex"

Thu Nov 12 22:45:34 2020 rev:8 rq:847883 version:8.20201103

Changes:
--------
--- /work/SRC/openSUSE:Factory/git-annex/git-annex.changes      2020-10-23 
15:15:44.930174808 +0200
+++ /work/SRC/openSUSE:Factory/.git-annex.new.24930/git-annex.changes   
2020-11-12 22:45:38.638533388 +0100
@@ -1,0 +2,14 @@
+Sat Nov  7 22:15:09 UTC 2020 - Ondřej Súkup <[email protected]>
+
+- add ./0001-enable-extensions-needed-by-new-version-of-persisten.patch 
+
+-------------------------------------------------------------------
+Sat Nov  7 15:34:35 UTC 2020 - [email protected]
+
+- Update git-annex to version 8.20201103.
+  Upstream has edited the change log file since the last release in
+  a non-trivial way, i.e. they did more than just add a new entry
+  at the top. You can review the file at:
+  http://hackage.haskell.org/package/git-annex-8.20201103/src/CHANGELOG
+
+-------------------------------------------------------------------

Old:
----
  git-annex-8.20201007.tar.gz

New:
----
  0001-enable-extensions-needed-by-new-version-of-persisten.patch
  git-annex-8.20201103.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ git-annex.spec ++++++
--- /var/tmp/diff_new_pack.wh7ZL9/_old  2020-11-12 22:45:39.634534427 +0100
+++ /var/tmp/diff_new_pack.wh7ZL9/_new  2020-11-12 22:45:39.638534432 +0100
@@ -17,12 +17,13 @@
 
 
 Name:           git-annex
-Version:        8.20201007
+Version:        8.20201103
 Release:        0
 Summary:        Manage files with git, without checking their contents into git
 License:        AGPL-3.0-or-later AND GPL-3.0-or-later AND BSD-2-Clause AND 
MIT AND GPL-2.0-only
 URL:            https://hackage.haskell.org/package/%{name}
 Source0:        
https://github.com/peti/git-annex/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+Patch0:         0001-enable-extensions-needed-by-new-version-of-persisten.patch
 BuildRequires:  bash-completion
 BuildRequires:  chrpath
 BuildRequires:  curl
@@ -168,7 +169,7 @@
 Optional dependency offering bash completion for git-annex
 
 %prep
-%autosetup
+%autosetup -p1
 
 %build
 %define cabal_configure_options -ftestsuite

++++++ 0001-enable-extensions-needed-by-new-version-of-persisten.patch ++++++
From 028d4517c7cf9e0f031aa71db15924c09be36cf5 Mon Sep 17 00:00:00 2001
From: Joey Hess <[email protected]>
Date: Sat, 7 Nov 2020 14:09:17 -0400
Subject: [PATCH] enable extensions needed by new version of persistent

Needed in order to use mkPersist in
persistent version 2.11.0.1
persistent-template version 2.9.1.0
---
 Database/ContentIdentifier.hs | 1 +
 Database/Export.hs            | 1 +
 Database/Fsck.hs              | 1 +
 Database/Keys/SQL.hs          | 1 +
 4 files changed, 4 insertions(+)

diff --git a/Database/ContentIdentifier.hs b/Database/ContentIdentifier.hs
index 0508a386e..da7f9545d 100644
--- a/Database/ContentIdentifier.hs
+++ b/Database/ContentIdentifier.hs
@@ -10,6 +10,7 @@
 {-# LANGUAGE OverloadedStrings, GADTs, FlexibleContexts, EmptyDataDecls #-}
 {-# LANGUAGE MultiParamTypeClasses, GeneralizedNewtypeDeriving #-}
 {-# LANGUAGE RankNTypes #-}
+{-# LANGUAGE DataKinds, FlexibleInstances #-}
 {-# LANGUAGE UndecidableInstances #-}
 #if MIN_VERSION_persistent_template(2,8,0)
 {-# LANGUAGE DerivingStrategies #-}
diff --git a/Database/Export.hs b/Database/Export.hs
index 1eba4dd40..99a481703 100644
--- a/Database/Export.hs
+++ b/Database/Export.hs
@@ -10,6 +10,7 @@
 {-# LANGUAGE OverloadedStrings, GADTs, FlexibleContexts #-}
 {-# LANGUAGE MultiParamTypeClasses, GeneralizedNewtypeDeriving #-}
 {-# LANGUAGE RankNTypes #-}
+{-# LANGUAGE DataKinds, FlexibleInstances #-}
 {-# LANGUAGE UndecidableInstances #-}
 #if MIN_VERSION_persistent_template(2,8,0)
 {-# LANGUAGE DerivingStrategies #-}
diff --git a/Database/Fsck.hs b/Database/Fsck.hs
index 528f3a007..c1e984197 100644
--- a/Database/Fsck.hs
+++ b/Database/Fsck.hs
@@ -9,6 +9,7 @@
 {-# LANGUAGE QuasiQuotes, TypeFamilies, TemplateHaskell #-}
 {-# LANGUAGE OverloadedStrings, GADTs, FlexibleContexts #-}
 {-# LANGUAGE MultiParamTypeClasses, GeneralizedNewtypeDeriving #-}
+{-# LANGUAGE DataKinds, FlexibleInstances #-}
 {-# LANGUAGE RankNTypes #-}
 {-# LANGUAGE UndecidableInstances #-}
 #if MIN_VERSION_persistent_template(2,8,0)
diff --git a/Database/Keys/SQL.hs b/Database/Keys/SQL.hs
index f96433b36..26108b196 100644
--- a/Database/Keys/SQL.hs
+++ b/Database/Keys/SQL.hs
@@ -10,6 +10,7 @@
 {-# LANGUAGE OverloadedStrings, GADTs, FlexibleContexts #-}
 {-# LANGUAGE MultiParamTypeClasses, GeneralizedNewtypeDeriving #-}
 {-# LANGUAGE RankNTypes, ScopedTypeVariables #-}
+{-# LANGUAGE DataKinds, FlexibleInstances #-}
 {-# LANGUAGE UndecidableInstances #-}
 #if MIN_VERSION_persistent_template(2,8,0)
 {-# LANGUAGE DerivingStrategies #-}
-- 
2.28.0.297.g1956fa8f8d

++++++ git-annex-8.20201007.tar.gz -> git-annex-8.20201103.tar.gz ++++++
/work/SRC/openSUSE:Factory/git-annex/git-annex-8.20201007.tar.gz 
/work/SRC/openSUSE:Factory/.git-annex.new.24930/git-annex-8.20201103.tar.gz 
differ: char 29, line 2
_______________________________________________
openSUSE Commits mailing list -- [email protected]
To unsubscribe, email [email protected]
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/[email protected]

Reply via email to