commit ghc-githash for openSUSE:Factory

2020-10-27 Thread root
Hello community,

here is the log from the commit of package ghc-githash for openSUSE:Factory 
checked in at 2020-10-27 19:03:01

Comparing /work/SRC/openSUSE:Factory/ghc-githash (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-githash.new.3463 (New)


Package is "ghc-githash"

Tue Oct 27 19:03:01 2020 rev:3 rq:844307 version:0.1.5.0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-githash/ghc-githash.changes  2020-09-07 
21:21:48.593007586 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-githash.new.3463/ghc-githash.changes
2020-10-27 19:03:14.442930772 +0100
@@ -1,0 +2,8 @@
+Tue Oct 27 03:32:21 UTC 2020 - psim...@suse.com
+
+- Update githash to version 0.1.5.0.
+  ## 0.1.5.0
+
+  * Add git tag output via git-describe
+
+---

Old:

  githash-0.1.4.0.tar.gz

New:

  githash-0.1.5.0.tar.gz



Other differences:
--
++ ghc-githash.spec ++
--- /var/tmp/diff_new_pack.DGyymH/_old  2020-10-27 19:03:15.306931401 +0100
+++ /var/tmp/diff_new_pack.DGyymH/_new  2020-10-27 19:03:15.306931401 +0100
@@ -19,7 +19,7 @@
 %global pkg_name githash
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.1.4.0
+Version:0.1.5.0
 Release:0
 Summary:Compile git revision info into Haskell projects
 License:BSD-3-Clause

++ githash-0.1.4.0.tar.gz -> githash-0.1.5.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/githash-0.1.4.0/ChangeLog.md 
new/githash-0.1.5.0/ChangeLog.md
--- old/githash-0.1.4.0/ChangeLog.md2020-04-02 06:27:28.0 +0200
+++ new/githash-0.1.5.0/ChangeLog.md2020-10-26 13:48:16.0 +0100
@@ -1,5 +1,9 @@
 # ChangeLog for githash
 
+## 0.1.5.0
+
+* Add git tag output via git-describe
+
 ## 0.1.4.0
 
 * Add git-describe output
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/githash-0.1.4.0/githash.cabal 
new/githash-0.1.5.0/githash.cabal
--- old/githash-0.1.4.0/githash.cabal   2020-04-02 06:32:26.0 +0200
+++ new/githash-0.1.5.0/githash.cabal   2020-10-26 13:48:24.0 +0100
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: d5c62b9ed845682638a72f717272a1a46871ad89fc816b8f602622a6a2e17941
+-- hash: 76e20e5de8ee3f6ad531cde0a1529cbbde0158147f0560b23ab57c69d735ede2
 
 name:   githash
-version:0.1.4.0
+version:0.1.5.0
 synopsis:   Compile git revision info into Haskell projects
 description:Please see the README and documentation at 

 category:   Development
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/githash-0.1.4.0/src/GitHash.hs 
new/githash-0.1.5.0/src/GitHash.hs
--- old/githash-0.1.4.0/src/GitHash.hs  2020-04-02 06:27:28.0 +0200
+++ new/githash-0.1.5.0/src/GitHash.hs  2020-10-26 13:48:16.0 +0100
@@ -48,6 +48,7 @@
   , giCommitCount
   , giCommitMessage
   , giDescribe
+  , giTag
 -- * Creators
   , getGitInfo
   , getGitRoot
@@ -83,6 +84,7 @@
   , _giFiles :: ![FilePath]
   , _giCommitMessage :: !String
   , _giDescribe :: !String
+  , _giTag :: !String
   }
   deriving (Lift, Show)
 
@@ -119,6 +121,12 @@
 giDescribe :: GitInfo -> String
 giDescribe = _giDescribe
 
+-- | The output of @git describe --always --tags@ for the most recent commit.
+--
+-- @since 0.1.5.0
+giTag :: GitInfo -> String
+giTag = _giTag
+
 -- | Get a list of files from within a @.git@ directory.
 getGitFilesRegular :: FilePath -> IO [FilePath]
 getGitFilesRegular git = do
@@ -212,6 +220,8 @@
 
   _giDescribe <- run ["describe", "--always"]
 
+  _giTag <- run ["describe", "--always", "--tags"]
+
   return GitInfo {..}
 
 -- | Get the root directory of the Git repo containing the given file




commit ghc-githash for openSUSE:Factory

2020-09-07 Thread root
Hello community,

here is the log from the commit of package ghc-githash for openSUSE:Factory 
checked in at 2020-09-07 21:21:44

Comparing /work/SRC/openSUSE:Factory/ghc-githash (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-githash.new.3399 (New)


Package is "ghc-githash"

Mon Sep  7 21:21:44 2020 rev:2 rq:831207 version:0.1.4.0

Changes:

--- /work/SRC/openSUSE:Factory/ghc-githash/ghc-githash.changes  2020-01-03 
17:34:42.675225653 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-githash.new.3399/ghc-githash.changes
2020-09-07 21:21:48.593007586 +0200
@@ -1,0 +2,8 @@
+Tue Sep  1 14:41:29 UTC 2020 - psim...@suse.com
+
+- Update githash to version 0.1.4.0.
+  ## 0.1.4.0
+
+  * Add git-describe output
+
+---

Old:

  githash-0.1.3.3.tar.gz

New:

  githash-0.1.4.0.tar.gz



Other differences:
--
++ ghc-githash.spec ++
--- /var/tmp/diff_new_pack.tD96rW/_old  2020-09-07 21:21:50.265008353 +0200
+++ /var/tmp/diff_new_pack.tD96rW/_new  2020-09-07 21:21:50.269008356 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-githash
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %global pkg_name githash
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.1.3.3
+Version:0.1.4.0
 Release:0
 Summary:Compile git revision info into Haskell projects
 License:BSD-3-Clause
@@ -52,7 +52,7 @@
 This package provides the Haskell %{pkg_name} library development files.
 
 %prep
-%setup -q -n %{pkg_name}-%{version}
+%autosetup -n %{pkg_name}-%{version}
 
 %build
 %ghc_lib_build

++ githash-0.1.3.3.tar.gz -> githash-0.1.4.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/githash-0.1.3.3/ChangeLog.md 
new/githash-0.1.4.0/ChangeLog.md
--- old/githash-0.1.3.3/ChangeLog.md2019-09-15 11:41:51.0 +0200
+++ new/githash-0.1.4.0/ChangeLog.md2020-04-02 06:27:28.0 +0200
@@ -1,5 +1,9 @@
 # ChangeLog for githash
 
+## 0.1.4.0
+
+* Add git-describe output
+
 ## 0.1.3.3
 
 * Add git-worktree support [#13](https://github.com/snoyberg/githash/issues/13)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/githash-0.1.3.3/LICENSE new/githash-0.1.4.0/LICENSE
--- old/githash-0.1.3.3/LICENSE 2018-07-27 09:22:28.0 +0200
+++ new/githash-0.1.4.0/LICENSE 2020-04-02 06:06:54.0 +0200
@@ -11,7 +11,7 @@
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.
 
-* Neither the name of gitrev nor the names of its
+* Neither the name of githash nor the names of its
   contributors may be used to endorse or promote products derived from
   this software without specific prior written permission.
 
@@ -25,4 +25,3 @@
 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/githash-0.1.3.3/README.md 
new/githash-0.1.4.0/README.md
--- old/githash-0.1.3.3/README.md   2018-07-27 09:22:28.0 +0200
+++ new/githash-0.1.4.0/README.md   2020-04-02 06:28:27.0 +0200
@@ -1,7 +1,6 @@
 # githash
 
-[![Build 
Status](https://travis-ci.org/snoyberg/githash.svg?branch=master)](https://travis-ci.org/snoyberg/githash)
-[![Build 
status](https://ci.appveyor.com/api/projects/status/g5asio63nfjjhx50/branch/master?svg=true)](https://ci.appveyor.com/project/snoyberg/githash/branch/master)
+[![Build 
Status](https://dev.azure.com/snoyberg/githash/_apis/build/status/snoyberg.githash?branchName=master)](https://dev.azure.com/snoyberg/githash/_build/latest?definitionId=11=master)
 
 Some handy Template Haskell splices for including the current git hash
 and branch in the code of your project. Useful for including in panic
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/githash-0.1.3.3/githash.cabal 
new/githash-0.1.4.0/githash.cabal
--- old/githash-0.1.3.3/githash.cabal   2019-09-15 11:41:57.0 +0200
+++ new/githash-0.1.4.0/githash.cabal   2020-04-02 06:32:26.0 +0200
@@ -1,13 +1,13 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.31.2.
+-- This file has been generated from package.yaml by hpack version