Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package opi for openSUSE:Factory checked in 
at 2022-04-25 23:35:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/opi (Old)
 and      /work/SRC/openSUSE:Factory/.opi.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "opi"

Mon Apr 25 23:35:39 2022 rev:30 rq:972524 version:2.4.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/opi/opi.changes  2022-04-22 21:56:17.138944880 
+0200
+++ /work/SRC/openSUSE:Factory/.opi.new.1538/opi.changes        2022-04-25 
23:35:49.686441738 +0200
@@ -1,0 +2,9 @@
+Mon Apr 25 08:55:19 UTC 2022 - Dominik Heidler <dheid...@suse.de>
+
+- Version 2.4.7
+- Fix release script
+- Fix numbering in --help
+- Update README.md
+- Add release helper script
+
+-------------------------------------------------------------------

Old:
----
  opi-2.4.6.tar.gz

New:
----
  opi-2.4.7.tar.gz

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

Other differences:
------------------
++++++ opi.spec ++++++
--- /var/tmp/diff_new_pack.sxHi9G/_old  2022-04-25 23:35:50.262442545 +0200
+++ /var/tmp/diff_new_pack.sxHi9G/_new  2022-04-25 23:35:50.270442556 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           opi
-Version:        2.4.6
+Version:        2.4.7
 Release:        0
 Summary:        OBS Package Installer (CLI)
 License:        GPL-3.0-only

++++++ opi-2.4.6.tar.gz -> opi-2.4.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.4.6/README.md new/opi-2.4.7/README.md
--- old/opi-2.4.6/README.md     2022-04-22 14:43:09.000000000 +0200
+++ new/opi-2.4.7/README.md     2022-04-25 10:55:07.000000000 +0200
@@ -88,7 +88,7 @@
 Search and install almost all packages available for openSUSE and SLE:
   1. openSUSE Build Service
   2. Packman
-  2. Popular packages for various vendors
+  3. Popular packages for various vendors
 
 positional arguments:
   query                 can be any package name or part of it and will be
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.4.6/bin/opi new/opi-2.4.7/bin/opi
--- old/opi-2.4.6/bin/opi       2022-04-22 14:43:09.000000000 +0200
+++ new/opi-2.4.7/bin/opi       2022-04-25 10:55:07.000000000 +0200
@@ -42,7 +42,7 @@
                        Search and install almost all packages available for 
openSUSE and SLE:
                          1. openSUSE Build Service
                          2. Packman
-                         2. Popular packages for various vendors
+                         3. Popular packages for various vendors
 
                '''),
                epilog=textwrap.dedent('''\
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.4.6/opi/version.py new/opi-2.4.7/opi/version.py
--- old/opi-2.4.6/opi/version.py        2022-04-22 14:43:09.000000000 +0200
+++ new/opi-2.4.7/opi/version.py        2022-04-25 10:55:07.000000000 +0200
@@ -1 +1 @@
-__version__ = '2.4.6'
+__version__ = '2.4.7'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.4.6/opi.changes new/opi-2.4.7/opi.changes
--- old/opi-2.4.6/opi.changes   2022-04-22 14:43:09.000000000 +0200
+++ new/opi-2.4.7/opi.changes   2022-04-25 10:55:07.000000000 +0200
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Mon Apr 25 08:54:45 UTC 2022 - Dominik Heidler <dheid...@suse.de>
+
+- Version 2.4.7
+- Fix numbering in --help
+- Add release helper script
+
+-------------------------------------------------------------------
 Fri Apr 22 12:43:05 UTC 2022 - Dominik Heidler <dheid...@suse.de>
 
 - Version 2.4.6
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/opi-2.4.6/release.sh new/opi-2.4.7/release.sh
--- old/opi-2.4.6/release.sh    1970-01-01 01:00:00.000000000 +0100
+++ new/opi-2.4.7/release.sh    2022-04-25 10:55:07.000000000 +0200
@@ -0,0 +1,27 @@
+#!/bin/bash -ex
+
+version=$1
+changes=$(git log $(git describe --tags --abbrev=0)..HEAD --no-merges 
--format="- %s")
+
+echo "__version__ = '${version}'" > opi/version.py
+osc vc -m "Version ${version}\n${changes}" opi.changes
+vi opi.changes
+git commit opi/version.py opi.changes -m "Version ${version}"
+git tag "v${version}"
+read -p "Push now? "
+git push
+git push --tags
+gh release create "v${version}"  --generate-notes
+
+read -p "Update RPM? "
+cd ~/devel/obs/utilities/opi
+sed -i -e "s/^\(Version: *\)[^ ]*$/\1${version}/" opi.spec
+osc vc -m "Version ${version}\n${changes}"
+osc rm opi-*.tar.gz
+osc service dr
+osc add opi-*.tar.gz
+osc st
+osc diff|bat
+
+osc ci
+osc sr

Reply via email to