commit rpmrebuild for openSUSE:Factory

2020-09-08 Thread root
Hello community,

here is the log from the commit of package rpmrebuild for openSUSE:Factory 
checked in at 2020-09-08 22:47:24

Comparing /work/SRC/openSUSE:Factory/rpmrebuild (Old)
 and  /work/SRC/openSUSE:Factory/.rpmrebuild.new.3399 (New)


Package is "rpmrebuild"

Tue Sep  8 22:47:24 2020 rev:26 rq:832828 version:2.15

Changes:

--- /work/SRC/openSUSE:Factory/rpmrebuild/rpmrebuild.changes2020-02-22 
19:08:41.398615750 +0100
+++ /work/SRC/openSUSE:Factory/.rpmrebuild.new.3399/rpmrebuild.changes  
2020-09-08 22:47:56.903534487 +0200
@@ -1,0 +2,5 @@
+Mon Sep  7 10:49:51 UTC 2020 - Callum Farmer 
+
+- Fixes for %_libexecdir changing to /usr/libexec (bsc#1174075)
+
+---



Other differences:
--
++ rpmrebuild.spec ++
--- /var/tmp/diff_new_pack.St1YNr/_old  2020-09-08 22:48:01.307536631 +0200
+++ /var/tmp/diff_new_pack.St1YNr/_new  2020-09-08 22:48:01.311536633 +0200
@@ -68,7 +68,7 @@
 %license COPYING COPYRIGHT
 %doc AUTHORS Changelog News README Todo
 %{_bindir}/rpmrebuild
-%{_libexecdir}/rpmrebuild
+%{_prefix}/lib/rpmrebuild
 %{_mandir}/fr/man1/*
 %{_mandir}/man1/*
 






commit rpmrebuild for openSUSE:Factory

2020-02-22 Thread root
Hello community,

here is the log from the commit of package rpmrebuild for openSUSE:Factory 
checked in at 2020-02-22 19:08:35

Comparing /work/SRC/openSUSE:Factory/rpmrebuild (Old)
 and  /work/SRC/openSUSE:Factory/.rpmrebuild.new.26092 (New)


Package is "rpmrebuild"

Sat Feb 22 19:08:35 2020 rev:25 rq:778164 version:2.15

Changes:

--- /work/SRC/openSUSE:Factory/rpmrebuild/rpmrebuild.changes2018-11-05 
22:55:23.62004 +0100
+++ /work/SRC/openSUSE:Factory/.rpmrebuild.new.26092/rpmrebuild.changes 
2020-02-22 19:08:41.398615750 +0100
@@ -1,0 +2,20 @@
+Fri Feb 21 20:01:01 UTC 2020 - Bruno Friedmann 
+
+- Update to version 2.15
+  + fix error on rpmrebuild_files.sh line 204 (verify tag)
+  + use env in shebang to avoid path problemes (/bin versus /usr/bin)
+*** This is reverted on openSUSE to static /usr/bin/bash ***
+  + updated htmc doc (features, usage)
+  + avoid shebang translation for rpmrebuild packages
+(__brp_mangle_shebangs macro)
+  + fix bug on change-spec-preamble (move processing_init before
+CommandLineParsing) thanks Nerijus
+  + fix cpio problem : add --no-absolute-filenames option
+  + better diagnostic on internal error
+  + fix bug on conditional requires (with space)
+- Packaging
+  + renew spec with spec-cleaner
+  + use %autopatch macro
+  + Add sed instruction to remove all env calls in code
+
+---

Old:

  rpmrebuild-2.14.tar.gz
  rpmrebuild-2.14.tar.gz.sig

New:

  rpmrebuild-2.15.tar.gz
  rpmrebuild-2.15.tar.gz.sig



Other differences:
--
++ rpmrebuild.spec ++
--- /var/tmp/diff_new_pack.LJtcyz/_old  2020-02-22 19:08:42.586618117 +0100
+++ /var/tmp/diff_new_pack.LJtcyz/_new  2020-02-22 19:08:42.590618125 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rpmrebuild
 #
-# Copyright (c) 2018 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
@@ -17,7 +17,7 @@
 
 
 Name:   rpmrebuild
-Version:2.14
+Version:2.15
 Release:0
 Summary:A tool to build a rpm file from the rpm database
 License:GPL-2.0-or-later
@@ -44,14 +44,18 @@
 
 %prep
 %setup -q -c
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
+%autopatch -p1
 
 %build
 make %{?_smp_mflags}
 # Remove shebang on script that are sourced and not executed
-find . -iname "*.src" -exec sed -i 's,^#!/bin/bash,,g' {} \;
+find . -iname "*.src" -exec sed -i 's,^#!%{_bindir}/env bash,,g' {} \;
+# As in 2.15 remove env usage to static path
+find . -iname "*.sh" -exec sed -i 's,^#!%{_bindir}/env bash,#!%{_bindir}/sh,g' 
{} \;
+# Same for those
+find . -iname "*.sh" -exec sed -i 's,^#!%{_bindir}/env sh,#!%{_bindir}/sh,g' 
{} \;
+# and last
+sed -i 's,^#!%{_bindir}/env sh,#!%{_bindir}/sh,g' rpmrebuild
 
 %install
 make DESTDIR=%{buildroot} install %{?_smp_mflags} 
@@ -61,8 +65,8 @@
 
 %files
 %defattr(-,root,root,-)
-%license COPYING
-%doc AUTHORS Changelog COPYRIGHT News README Todo
+%license COPYING COPYRIGHT
+%doc AUTHORS Changelog News README Todo
 %{_bindir}/rpmrebuild
 %{_libexecdir}/rpmrebuild
 %{_mandir}/fr/man1/*

++ rpmrebuild-2.14.tar.gz -> rpmrebuild-2.15.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Changelog new/Changelog
--- old/Changelog   2018-10-19 17:48:29.0 +0200
+++ new/Changelog   2020-02-21 13:49:11.0 +0100
@@ -1,3 +1,13 @@
+* Fri Feb 21 2020  2.15-1
+- fix error on rpmrebuild_files.sh line 204 (verify tag)
+- use env in shebang to avoid path problemes (/bin versus /usr/bin)
+- updated htmc doc (features, usage)
+- avoid shebang translation for rpmrebuild packages (__brp_mangle_shebangs 
macro)
+- fix bug on change-spec-preamble (move processing_init before 
CommandLineParsing) thanks Nerijus
+- fix cpio problem : add --no-absolute-filenames option
+- better diagnostic on internal error
+- fix bug on conditional requires (with space)
+
 * Fri Oct 19 2018  2.14-1
 - add list of optional tags, to allow rpmrebuild work with old rpm versions
 - add dependency on setarch
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Makefile.include new/Makefile.include
--- old/Makefile.include2018-10-19 17:48:29.0 +0200
+++ new/Makefile.include2020-02-21 11:18:45.0 +0100
@@ -50,8 +50,8 @@
 
 # rules to convert man page into html pages
 %.1.html: %.1
-   faire_doc2.sh $< $@
+   ./faire_doc2.sh $< $@
 
 %.1.html: %.1rrp
-   faire_doc2.sh $< $@
+   ./faire_doc2.sh $< $@
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit rpmrebuild for openSUSE:Factory

2018-11-05 Thread root
Hello community,

here is the log from the commit of package rpmrebuild for openSUSE:Factory 
checked in at 2018-11-05 22:55:16

Comparing /work/SRC/openSUSE:Factory/rpmrebuild (Old)
 and  /work/SRC/openSUSE:Factory/.rpmrebuild.new (New)


Package is "rpmrebuild"

Mon Nov  5 22:55:16 2018 rev:24 rq:646085 version:2.14

Changes:

--- /work/SRC/openSUSE:Factory/rpmrebuild/rpmrebuild.changes2018-09-26 
16:11:21.499492440 +0200
+++ /work/SRC/openSUSE:Factory/.rpmrebuild.new/rpmrebuild.changes   
2018-11-05 22:55:23.62004 +0100
@@ -1,0 +2,16 @@
+Fri Nov  2 13:54:14 UTC 2018 - Bruno Friedmann 
+
+- Update to version 2.14
+  + add list of optional tags, to allow rpmrebuild work with old 
+rpm versions
+  + add dependency on setarch
+  + add debug code (calls on functions)
+  + use local variables to avoid conflicts
+  + rewrite html target in Makefile
+  + suppress VERSION (use Version)
+  + add comments in rpmrebuild_rpmqf.src to avoid bad syntax after
+GenRpmQf
+  + test if awk support non-posix lshift (qf_spec_requires_raw)
+  + workaround for redhat 6.x / rpm 3.x, merci Francesco
+
+---

Old:

  rpmrebuild-2.13.tar.gz
  rpmrebuild-2.13.tar.gz.sig

New:

  rpmrebuild-2.14.tar.gz
  rpmrebuild-2.14.tar.gz.sig



Other differences:
--
++ rpmrebuild.spec ++
--- /var/tmp/diff_new_pack.LsV4Am/_old  2018-11-05 22:55:24.224054790 +0100
+++ /var/tmp/diff_new_pack.LsV4Am/_new  2018-11-05 22:55:24.228054785 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   rpmrebuild
-Version:2.13
+Version:2.14
 Release:0
 Summary:A tool to build a rpm file from the rpm database
 License:GPL-2.0-or-later

++ rpmrebuild-2.13.tar.gz -> rpmrebuild-2.14.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Changelog new/Changelog
--- old/Changelog   2018-09-12 16:07:44.0 +0200
+++ new/Changelog   2018-10-19 17:48:29.0 +0200
@@ -1,3 +1,14 @@
+* Fri Oct 19 2018  2.14-1
+- add list of optional tags, to allow rpmrebuild work with old rpm versions
+- add dependency on setarch
+- add debug code (calls on functions)
+- use local variables to avoid conflicts
+- rewrite html target in Makefile
+- suppress VERSION (use Version)
+- add comments in rpmrebuild_rpmqf.src to avoid bad syntax after GenRpmQf
+- test if awk support non-posix lshift (qf_spec_requires_raw)
+- workaround for redhat 6.x / rpm 3.x, thanks Francesco
+
 * Wed Sep 12 2018  2.13-1
 - can handle recommends / supplements rpm tags
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Makefile new/Makefile
--- old/Makefile2018-06-10 17:23:54.0 +0200
+++ new/Makefile2018-10-19 17:48:29.0 +0200
@@ -37,6 +37,7 @@
rpmrebuild_rpmqf.src  \
rpmrebuild_parser.src \
spec_func.src \
+   optional_tags.cfg
 
 MANPAGES_BASE :=\
rpmrebuild.1 \
@@ -52,6 +53,9 @@
 
 MANPAGES_SRC := $(addsuffix .in,$(MANPAGES))
 
+MANPAGES_DEF := $(foreach lang,$(LANG_DEF),$(addprefix 
man/$(lang)/,$(MANPAGES_BASE)))
+HTML_PAGES=$(MANPAGES_DEF:.1=.1.html)
+
 DOC_FILES :=  \
AUTHORS\
Changelog  \
@@ -95,7 +99,7 @@
}
 endef
 
-all: rpmrebuild.spec VERSION $(MANPAGES) 
+all: rpmrebuild.spec $(MANPAGES)
$(MAKE) -C plugins $@
 
 rpmrebuild.spec: rpmrebuild.spc Version Release Changelog 
@@ -105,17 +109,13 @@
 $(MANPAGES): %: %.in $(TOP_DIR)/Version
$(MakeManPage)
 
-VERSION: Version
-   $(RM) $@
-   read VERSION < $< && echo "VERSION='$$VERSION'" > $@ || { $(RM) $@; 
exit 1; }
-
 install:
$(MKDIR)  $(TARGET_DIR)
$(INSTALL_RUN) $(SCRIPTS) $(TARGET_DIR)
 
$(MKDIR) $(TARGET_LIB)
$(INSTALL_RUN) $(LIB_SCRIPTS)$(TARGET_LIB)
-   $(INSTALL_RO) $(INCLUDE_SCRIPTS) VERSION $(TARGET_LIB)
+   $(INSTALL_RO) $(INCLUDE_SCRIPTS) Version $(TARGET_LIB)
$(InstallManPages)
$(InstallLocales)
$(MAKE) -C plugins $@
@@ -133,14 +133,19 @@
 
 clean: unexpand
$(RMDIR) $(ROOT) $(RPM_BUILD_DIR)
-   $(RM)VERSION rpmrebuild.spec *.rpm rpmrebuild.tar.gz 
rpmrebuild.tar.gz.sig
+   $(RM)rpmrebuild.spec *.rpm rpmrebuild.tar.gz rpmrebuild.tar.gz.sig
$(RM)$(MANPAGES)
+   $(RM)$(HTML_PAGES)
$(MAKE) -C plugins $@
 
 man: $(MANPAGES)
+   $(MAKE) -C plugins $@
+
+$(HTML_PAGES) : $(MANPAGES_DEF)
 
-html:
-   ./faire_doc.sh
+html: man $(HTML_PAGES)
+   cp $(HTML_PAGES) ../web
+   $(MAKE) -C plugins $@
 
 # build all packages
 alldist: 

commit rpmrebuild for openSUSE:Factory

2018-09-26 Thread root
Hello community,

here is the log from the commit of package rpmrebuild for openSUSE:Factory 
checked in at 2018-09-26 16:11:21

Comparing /work/SRC/openSUSE:Factory/rpmrebuild (Old)
 and  /work/SRC/openSUSE:Factory/.rpmrebuild.new (New)


Package is "rpmrebuild"

Wed Sep 26 16:11:21 2018 rev:23 rq:636343 version:2.13

Changes:

--- /work/SRC/openSUSE:Factory/rpmrebuild/rpmrebuild.changes2017-09-17 
22:40:07.277533025 +0200
+++ /work/SRC/openSUSE:Factory/.rpmrebuild.new/rpmrebuild.changes   
2018-09-26 16:11:21.499492440 +0200
@@ -1,0 +2,19 @@
+Fri Sep 14 06:29:00 UTC 2018 - Bruno Friedmann 
+
+- Update to version 2.13
+  + can handle recommends / supplements rpm tags
+  + previous 2.12-1
+- apply patch on requires from Bruce Jerrick : Handle 
+Requires(pre,post,preun,postun)
+- add new requires syntax with if ( redhat-rpm-config )
+  + previous 2.11-3
+- Made minor grammatical fixes to English language translations
+(patch from beroset)
+  + previous 2.11-2
+- fix bad day of week in changelog (rpmbuild warning)
+- add dependency to rpm-build package instead rpmbuild binary
+- Packaging:
+  + spec-cleanup minimal (date,%licence)
+  + fix executable bit in %libexec/rpmrebuild
+
+---

Old:

  rpmrebuild-2.11.tar.gz
  rpmrebuild-2.11.tar.gz.sig

New:

  rpmrebuild-2.13.tar.gz
  rpmrebuild-2.13.tar.gz.sig



Other differences:
--
++ rpmrebuild.spec ++
--- /var/tmp/diff_new_pack.WpKjL8/_old  2018-09-26 16:11:22.039491543 +0200
+++ /var/tmp/diff_new_pack.WpKjL8/_new  2018-09-26 16:11:22.043491537 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rpmrebuild
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,17 +12,17 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   rpmrebuild
-Version:2.11
+Version:2.13
 Release:0
 Summary:A tool to build a rpm file from the rpm database
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  System/Packages
-Url:http://rpmrebuild.sourceforge.net
+URL:http://rpmrebuild.sourceforge.net
 Source0:
http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
 Source1:
http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz.sig
 Source2:%{name}.keyring
@@ -50,15 +50,19 @@
 
 %build
 make %{?_smp_mflags}
+# Remove shebang on script that are sourced and not executed
+find . -iname "*.src" -exec sed -i 's,^#!/bin/bash,,g' {} \;
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags} "DESTDIR=%{buildroot}"
+make DESTDIR=%{buildroot} install %{?_smp_mflags} 
 mv %{buildroot}%{_mandir}/fr_FR.UTF-8/ %{buildroot}%{_mandir}/fr
 rm -rf %{buildroot}%{_mandir}/fr_FR/
+# chmod 0755 %%{buildroot}%%{_libexecdir}/rpmrebuild/*.sh
 
 %files
 %defattr(-,root,root,-)
-%doc AUTHORS Changelog COPYING COPYRIGHT News README Todo
+%license COPYING
+%doc AUTHORS Changelog COPYRIGHT News README Todo
 %{_bindir}/rpmrebuild
 %{_libexecdir}/rpmrebuild
 %{_mandir}/fr/man1/*

++ rpmrebuild-2.11.tar.gz -> rpmrebuild-2.13.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Changelog new/Changelog
--- old/Changelog   2017-09-10 15:23:42.0 +0200
+++ new/Changelog   2018-09-12 16:07:44.0 +0200
@@ -1,3 +1,13 @@
+* Wed Sep 12 2018  2.13-1
+- can handle recommends / supplements rpm tags
+
+* Fri Jul 20 2018  2.12-1
+- apply patch from Bruce Jerrick : Handle Requires(pre,post,preun,postun)
+- add new requires syntax with if ( redhat-rpm-config )
+
+* Sun Jun 10 2018  2.11-3
+- Made minor grammatical fixes to English language translations (patch from 
beroset)
+
 * Sun Sep 10 2017  2.11-2
 - fix bad day of week in changelog (rpmbuild warning)
 - add dependency to rpm-build package instead rpmbuild binary
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Makefile new/Makefile
--- old/Makefile2017-09-10 15:19:53.0 +0200
+++ new/Makefile2018-06-10 17:23:54.0 +0200
@@ -163,3 +163,4 @@
@echo "- man : build man pages"
@echo "- html : build html pages"
@echo "- alldist : build all packages"
+   @echo "- clean : clean 

commit rpmrebuild for openSUSE:Factory

2017-09-17 Thread root
Hello community,

here is the log from the commit of package rpmrebuild for openSUSE:Factory 
checked in at 2017-09-17 22:39:13

Comparing /work/SRC/openSUSE:Factory/rpmrebuild (Old)
 and  /work/SRC/openSUSE:Factory/.rpmrebuild.new (New)


Package is "rpmrebuild"

Sun Sep 17 22:39:13 2017 rev:22 rq:526523 version:2.11

Changes:

--- /work/SRC/openSUSE:Factory/rpmrebuild/rpmrebuild.changes2015-05-10 
10:46:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.rpmrebuild.new/rpmrebuild.changes   
2017-09-17 22:40:07.277533025 +0200
@@ -1,0 +2,10 @@
+Sat Sep 16 10:01:10 UTC 2017 - br...@ioda-net.ch
+
+- New release of source code (2.11) release -2
+  + fix bad day of week in changelog (rpmbuild warning)
+  + add dependency to rpm-build package instead rpmbuild binary
+- Adjust patch rpmrebuild-fix-bashims.patch
+- Pick new gpg block for rpmrebuild.keyring
+- Spec cleanup
+
+---



Other differences:
--
++ rpmrebuild.spec ++
--- /var/tmp/diff_new_pack.i1YsZ2/_old  2017-09-17 22:40:07.889446989 +0200
+++ /var/tmp/diff_new_pack.i1YsZ2/_new  2017-09-17 22:40:07.909444178 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rpmrebuild
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -34,7 +34,6 @@
 Requires:   cpio
 Requires:   rpm-build
 Requires:   sed
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
 %description

++ rpmrebuild-2.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Changelog new/Changelog
--- old/Changelog   2013-11-22 10:17:12.0 +0100
+++ new/Changelog   2017-09-10 15:23:42.0 +0200
@@ -1,10 +1,14 @@
-* Wed Nov 22 2013  2.11
+* Sun Sep 10 2017  2.11-2
+- fix bad day of week in changelog (rpmbuild warning)
+- add dependency to rpm-build package instead rpmbuild binary
+
+* Fri Nov 22 2013  2.11
 - add install option
 
 * Sun Aug 11 2013  2.10-2
 - bugfix from 2.10 on test install : test was inverted (applied on rpm files 
instead installed rpm)
 
-* Tue Aug 01 2013  2.10
+* Thu Aug 01 2013  2.10
 - add tag DISTTAG (feature request)
 - do not test install if work on rpm files
 - applied patch from Olivier Bourdon for pretrans and postrans
@@ -12,12 +16,12 @@
 * Sun Jan 13 2013  2.9
 - fix to work with rpm 4.10 (Fedora 18) - error: incorrect format: invalid 
field width
 
-* Thu Jul 11 2012  2.8
+* Wed Jul 11 2012  2.8
 - can handle SUGGESTS/ENHANCES rpm tag
 - add --cap-from-fs/cap-from-db options
 - build rpmrebuild-version.tar.gz to allow rpmbuild -tb work
 
-* Thu Jun 06 2012  2.7
+* Wed Jun 06 2012  2.7
 - patch from Andreas Kainz for package file checking
 - add new unset_tag plugin
 - add support for rpm version 5 (mandriva)
@@ -42,10 +46,10 @@
 * Fri Dec 11 2009  2.4
 - add -l / --list-plugin option
 
-* Tue Nov 12 2009 
+* Thu Nov 12 2009 
 - add -5 / --md5-compat-digest option
 
-* Wed Jan 09 2009  2.3
+* Fri Jan 09 2009  2.3
 - release version 2.3
 
 * Tue Dec 16 2008 
@@ -54,7 +58,7 @@
 * Tue Dec 16 2008 
 - fix for rpm 4.6 (fedora 10), that ignore BuildRoot in the spec file flag
 
-* Wed Dec 05 2008  
+* Fri Dec 05 2008 
 - do not use popt any more
 
 * Wed Aug 06 2008  2.2.3-1
@@ -126,18 +130,18 @@
 * Sun Nov 14 2004  2.0.0-1
 - rpmrebuild_parser.src - added '--help-plugins' option
 
-* Wed Oct 26 2004  2.0.0-1
+* Tue Oct 26 2004  2.0.0-1
 - processing of /change/modify/edit was moved to the processng_func.src
 - changes to support --change-spec-* ane --edit-* (in the processing_func, 
rpmrebuild_popt and rpmrebuild_parser)
 - added '--include' option
 
-* Wed Sep 28 2004  2.0.0-1
+* Tue Sep 28 

commit rpmrebuild for openSUSE:Factory

2015-05-10 Thread h_root
Hello community,

here is the log from the commit of package rpmrebuild for openSUSE:Factory 
checked in at 2015-05-10 10:46:06

Comparing /work/SRC/openSUSE:Factory/rpmrebuild (Old)
 and  /work/SRC/openSUSE:Factory/.rpmrebuild.new (New)


Package is rpmrebuild

Changes:

--- /work/SRC/openSUSE:Factory/rpmrebuild/rpmrebuild.changes2015-01-03 
22:00:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.rpmrebuild.new/rpmrebuild.changes   
2015-05-10 10:46:08.0 +0200
@@ -1,0 +2,6 @@
+Tue May  5 13:40:47 UTC 2015 - mplus...@suse.com
+
+- Remove obsolete dependency on gpg-offline
+- Cleanup spec file with spec-cleaner
+
+---



Other differences:
--
++ rpmrebuild.spec ++
--- /var/tmp/diff_new_pack.vpC7V6/_old  2015-05-10 10:46:09.0 +0200
+++ /var/tmp/diff_new_pack.vpC7V6/_new  2015-05-10 10:46:09.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rpmrebuild
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,9 +29,6 @@
 Patch1: gpl-license.patch
 Patch2: gpl-COPYRIGHT-address.patch
 Patch3: rpmrebuild-fix-bashisms.patch
-%if 0%{?suse_version} = 1230
-BuildRequires:  gpg-offline
-%endif
 Requires:   bash
 Requires:   coreutils
 Requires:   cpio
@@ -47,9 +44,6 @@
 a software after some configuration's change.
 
 %prep
-%if 0%{?gpg_verify:1}
-%gpg_verify %{SOURCE1}
-%endif
 %setup -q -c
 %patch1 -p1
 %patch2 -p1
@@ -59,7 +53,7 @@
 make %{?_smp_mflags}
 
 %install
-%makeinstall DESTDIR=%{buildroot}
+make DESTDIR=%{buildroot} install %{?_smp_mflags} DESTDIR=%{buildroot}
 mv %{buildroot}%{_mandir}/fr_FR.UTF-8/ %{buildroot}%{_mandir}/fr
 rm -rf %{buildroot}%{_mandir}/fr_FR/
 
@@ -67,8 +61,8 @@
 %defattr(-,root,root,-)
 %doc AUTHORS Changelog COPYING COPYRIGHT News README Todo
 %{_bindir}/rpmrebuild
-%{_prefix}/lib/rpmrebuild
-%doc %{_mandir}/fr/man1/*
-%doc %{_mandir}/man1/*
+%{_libexecdir}/rpmrebuild
+%{_mandir}/fr/man1/*
+%{_mandir}/man1/*
 
 %changelog





commit rpmrebuild for openSUSE:Factory

2015-01-03 Thread h_root
Hello community,

here is the log from the commit of package rpmrebuild for openSUSE:Factory 
checked in at 2015-01-03 22:00:54

Comparing /work/SRC/openSUSE:Factory/rpmrebuild (Old)
 and  /work/SRC/openSUSE:Factory/.rpmrebuild.new (New)


Package is rpmrebuild

Changes:

--- /work/SRC/openSUSE:Factory/rpmrebuild/rpmrebuild.changes2013-12-06 
09:48:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.rpmrebuild.new/rpmrebuild.changes   
2015-01-03 22:00:58.0 +0100
@@ -1,0 +2,7 @@
+Sun Dec 28 14:00:00 UTC 2014 - Led led...@gmail.com
+
+- fix bashisms in demofiles.sh script
+- add patches:
+  * rpmrebuild-fix-bashisms.patch
+
+---

New:

  rpmrebuild-fix-bashisms.patch



Other differences:
--
++ rpmrebuild.spec ++
--- /var/tmp/diff_new_pack.pPXHWE/_old  2015-01-03 22:00:59.0 +0100
+++ /var/tmp/diff_new_pack.pPXHWE/_new  2015-01-03 22:00:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rpmrebuild
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,6 +28,7 @@
 Source2:%{name}.keyring
 Patch1: gpl-license.patch
 Patch2: gpl-COPYRIGHT-address.patch
+Patch3: rpmrebuild-fix-bashisms.patch
 %if 0%{?suse_version} = 1230
 BuildRequires:  gpg-offline
 %endif
@@ -52,6 +53,7 @@
 %setup -q -c
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 make %{?_smp_mflags}


++ rpmrebuild-fix-bashisms.patch ++
diff -Ndur rpmrebuild/plugins/demofiles.sh 
rpmrebuild-fix-bashisms/plugins/demofiles.sh
--- rpmrebuild/plugins/demofiles.sh 2008-04-03 09:27:39.0 +0300
+++ rpmrebuild-fix-bashisms/plugins/demofiles.sh2014-12-28 
15:58:30.290727796 +0200
@@ -25,11 +25,11 @@
 # with a file plugin
 version=1.0
 ###
-function msg () {
+msg() {
echo 2 $*
 }
 ###
-function syntaxe () {
+syntaxe() {
msg this plugin just show how to modifiy files
msg it must be called with --change-files option
msg -h|--help : this help
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rpmrebuild for openSUSE:Factory

2013-12-06 Thread h_root


bin94tX2QtzAj.bin
Description: Binary data


commit rpmrebuild for openSUSE:Factory

2013-03-12 Thread h_root
Hello community,

here is the log from the commit of package rpmrebuild for openSUSE:Factory 
checked in at 2013-03-12 22:38:10

Comparing /work/SRC/openSUSE:Factory/rpmrebuild (Old)
 and  /work/SRC/openSUSE:Factory/.rpmrebuild.new (New)


Package is rpmrebuild, Maintainer is hvo...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rpmrebuild/rpmrebuild.changes2011-10-13 
19:46:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.rpmrebuild.new/rpmrebuild.changes   
2013-03-12 22:38:12.0 +0100
@@ -1,0 +2,24 @@
+Tue Mar 12 09:58:02 UTC 2013 - lazy.k...@opensuse.org
+
+- Update to 2.9.
+  * Fix to work with rpm 4.10 - error: incorrect format: invalid
+field width.
+- Changes in 2.8.
+  * Can handle SUGGESTS/ENHANCES rpm tag.
+  * Add --cap-from-fs/cap-from-db options.
+- Changes in 2.7.
+  * Patch from Andreas Kainz for package file checking.
+  * Add new unset_tag plugin.
+  * Fix -l / --list-plugin option.
+  * Add support of posix capability.
+  * Add new un_prelink plugin.
+  * Add RPMREBUILD_OPTS environment variable.
+  * Fix problem with different architecture (build 32bit on
+64bits).
+  * Fix bad arch on gpg-pubkey packages.
+- Use full URL as a source.
+- Verify GPG signature.
+- Package docs.
+- Mark man pages as doc.
+
+---

Old:

  rpmrebuild-2.6.tar.bz2

New:

  rpmrebuild-2.9.tar.gz
  rpmrebuild-2.9.tar.gz.sig
  rpmrebuild.keyring



Other differences:
--
++ rpmrebuild.spec ++
--- /var/tmp/diff_new_pack.uqJUpN/_old  2013-03-12 22:38:13.0 +0100
+++ /var/tmp/diff_new_pack.uqJUpN/_new  2013-03-12 22:38:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rpmrebuild
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,19 @@
 #
 
 
-
 Name:   rpmrebuild
-Version:2.6
-Release:1
-License:GPL-2.0+
+Version:2.9
+Release:0
 Summary:A tool to build a rpm file from the rpm database
-Url:http://rpmrebuild.sourceforge.net
+License:GPL-2.0+
 Group:  System/Packages
-Source: %{name}-%{version}.tar.bz2
+Url:http://rpmrebuild.sourceforge.net
+Source0:
http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
+Source1:
http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz.sig
+Source2:%{name}.keyring
+%if 0%{?suse_version} = 1230
+BuildRequires:  gpg-offline
+%endif
 Requires:   bash
 Requires:   coreutils
 Requires:   cpio
@@ -39,10 +43,13 @@
 a software after some configuration's change.
 
 %prep
+%if 0%{?gpg_verify:1}
+%gpg_verify %{SOURCE1}
+%endif
 %setup -q -c
 
 %build
-%__make %{?_smp_mflags};
+make %{?_smp_mflags}
 
 %install
 %makeinstall DESTDIR=%{buildroot} 
@@ -50,10 +57,11 @@
 rm -rf %{buildroot}%{_mandir}/fr_FR/
 
 %files
-%defattr(-,root,root)
+%defattr(-,root,root,-)
+%doc AUTHORS Changelog COPYING COPYRIGHT News README Todo
 %{_bindir}/rpmrebuild
 %{_prefix}/lib/rpmrebuild
-%{_mandir}/fr/man1/*
-%{_mandir}/man1/*
+%doc %{_mandir}/fr/man1/*
+%doc %{_mandir}/man1/*
 
 %changelog

++ rpmrebuild.keyring ++
pub   1024D/CB6FA42A 2000-01-24
uid  Eric Gerbier gerb...@users.sourceforge.net
uid  Eric Gerbier eric.gerb...@meteo.fr
sub   1024g/11A58047 2000-01-24

-BEGIN PGP PUBLIC KEY BLOCK-

mQGiBDiME6sRBADJ8UHnF6QoOyHpxTXIGGfR9D29Eqa8eLS+/21wkW7b9bxiwxuR
j4Gle3wpoAL2gQaFd6XUEWCmK30XxaXBGuHcs8y5j+L/5XCi0TYZmjXaM4iCvr9V
dX9B20zzIxseSZx0gy1dm/Eg6llsXMQtKAi/wf4VeI+NbMkd3/cF26eU4wCgi+v1
vclaLJN8Bjg/ssHVALEIZLkD/3GyhS8cWQMZQ2pNXcsCupnpYPnyppqbXy5R73ZY
7TYjpRcu4JOoef49Nhn0UGIDZuJoQzHAuQt/VWPsC2+4oZBHSpyqDmcritEQOUXa
OeXZilRgpOLMwehGHXV5Tr4otDcncvyOeZdK/BMRN4qQu+JumAg4LrzlhuCU/mJB
s81xBADEELbi5b7np59QKnttJjS8CWYPX/S8L+ZRcWdmVb7ZUPvq61MHfbWGHcy9
EawEzNVe9mSpx3zLRBA7rBOrK6y+RE7F+q+VeUcjuD3zpFi4PL7pQgMc7n6wzlN/
1q4+f9rkFaEf4PSYDH2lGw9wa56fogzYFzMwUcTAo4cSRIJht7QkRXJpYyBHZXJi
aWVyIDxlcmljLmdlcmJpZXJAbWV0ZW8uZnI+iFUEExECABUFAjiME6sDCwoDAxUD
AgMWAgECF4AACgkQNzh6q8tvpCpR4gCfbAXqIwSt3FwLI0Smx8OdiZPlYiwAnj7i
yTbvSRFOiP2EsfjeAE+GkxTPtCxFcmljIEdlcmJpZXIgPGdlcmJpZXJAdXNlcnMu
c291cmNlZm9yZ2UubmV0PohXBBMRAgAXBQI9kHRTBQsHCgMEAxUDAgMWAgECF4AA
CgkQNzh6q8tvpCrqmACePb3TmZMjNYXASHUojoUZWS0WkYwAn0ZYj5Hz5fTjBAwb
foa9STgnfCqIuQENBDiME78QBADRuWfo/WubYn2E5V/fCvbaCUq2OKsW/2qfudFe
OXr/Z3T2bE2ZayvpFUBVo/psvCP1MgWqQYXzaibZxnfstQ7Z00nBmRemIsMPdBPa
PMZr00SSSeb22MF3JlTTvUYilqVDnekwHs3X+Jm8iPL3VnfdpDqEw/uXJIOY0hry

commit rpmrebuild for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package rpmrebuild for openSUSE:Factory 
checked in at 2011-12-06 19:00:33

Comparing /work/SRC/openSUSE:Factory/rpmrebuild (Old)
 and  /work/SRC/openSUSE:Factory/.rpmrebuild.new (New)


Package is rpmrebuild, Maintainer is hvo...@suse.com

Changes:




Other differences:
--
++ rpmrebuild.spec ++
--- /var/tmp/diff_new_pack.kLkg9r/_old  2011-12-06 19:33:19.0 +0100
+++ /var/tmp/diff_new_pack.kLkg9r/_new  2011-12-06 19:33:19.0 +0100
@@ -20,7 +20,7 @@
 Name:   rpmrebuild
 Version:2.6
 Release:1
-License:GPLv2+
+License:GPL-2.0+
 Summary:A tool to build a rpm file from the rpm database
 Url:http://rpmrebuild.sourceforge.net
 Group:  System/Packages

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rpmrebuild for openSUSE:Factory

2011-10-13 Thread h_root

Hello community,

here is the log from the commit of package rpmrebuild for openSUSE:Factory
checked in at Thu Oct 13 19:43:44 CEST 2011.




--- openSUSE:Factory/rpmrebuild/rpmrebuild.changes  2011-09-23 
12:44:42.0 +0200
+++ /mounts/work_src_done/STABLE/rpmrebuild/rpmrebuild.changes  2011-10-13 
14:45:30.0 +0200
@@ -1,0 +2,9 @@
+Thu Oct 13 12:42:06 UTC 2011 - br...@ioda-net.ch
+
+- Update to version 2.6
+- spec cleaner
+- Remove redundant tags/sections from specfile
+  (cf. packaging guidelines)
+- Use %_smp_mflags for parallel build- 
+
+---

calling whatdependson for head-i586


Old:

  rpmrebuild-2.4.tar.bz2

New:

  rpmrebuild-2.6.tar.bz2



Other differences:
--
++ rpmrebuild.spec ++
--- /var/tmp/diff_new_pack.5S0dEH/_old  2011-10-13 19:43:40.0 +0200
+++ /var/tmp/diff_new_pack.5S0dEH/_new  2011-10-13 19:43:40.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package rpmrebuild (Version 2.4)
+# spec file for package rpmrebuild
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,21 +15,22 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   rpmrebuild
-License:GPLv2+
-Group:  System/Packages
-AutoReqProv:on
-Version:2.4
+Version:2.6
 Release:1
+License:GPLv2+
 Summary:A tool to build a rpm file from the rpm database
 Url:http://rpmrebuild.sourceforge.net
-Source: %name-%version.tar.bz2
+Group:  System/Packages
+Source: %{name}-%{version}.tar.bz2
+Requires:   bash
+Requires:   coreutils
+Requires:   cpio
+Requires:   sed
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-Requires:   bash cpio coreutils sed
 
 %description
 rpmrebuild allows to build an rpm file from an installed rpm, or from
@@ -37,32 +38,22 @@
 can be extended by a plugin system. A typical use is to easy repackage
 a software after some configuration's change.
 
-
-
-Authors:
-
-Eric Gerbier gerb...@users.sourceforge.net
-Valery Reznic valery_rez...@users.sourceforge.net
-
 %prep
 %setup -q -c
 
 %build
-make
+%__make %{?_smp_mflags};
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT install
-mv $RPM_BUILD_ROOT%_mandir/fr_FR.UTF-8/ $RPM_BUILD_ROOT%_mandir/fr
-rm -rf $RPM_BUILD_ROOT%_mandir/fr_FR/
-
-%clean
-rm -rf $RPM_BUILD_ROOT
+%makeinstall DESTDIR=%{buildroot} 
+mv %{buildroot}%{_mandir}/fr_FR.UTF-8/ %{buildroot}%{_mandir}/fr
+rm -rf %{buildroot}%{_mandir}/fr_FR/
 
 %files
 %defattr(-,root,root)
-%_bindir/rpmrebuild
-%_prefix/lib/rpmrebuild
-%_mandir/fr/man1/*
-%_mandir/man1/*
+%{_bindir}/rpmrebuild
+%{_prefix}/lib/rpmrebuild
+%{_mandir}/fr/man1/*
+%{_mandir}/man1/*
 
 %changelog

++ rpmrebuild-2.4.tar.bz2 - rpmrebuild-2.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Changelog new/Changelog
--- old/Changelog   2009-12-11 09:53:36.0 +0100
+++ new/Changelog   2011-07-12 10:06:45.0 +0200
@@ -1,3 +1,14 @@
+* Tue Jul 12 2011 gerb...@users.sourceforge.net 2.6
+- fix bug when working on source packages
+
+* Fri Apr 15 2011 gerb...@users.sourceforge.net 2.5
+- add -5/-l options in man pages
+- Added support for obsolete version and flags (bugfix by Valery Reznic)
+- shell compatibility (mkdir) for AIX : use -p option instead --parents
+- new Mkdir_p function to check for mkdir result
+- apply patch from ndyankov : support for broken symlinks
+- specfile will allow build package for rpm version 4 or 3
+
 * Fri Dec 11 2009 gerb...@users.sourceforge.net 2.4
 - add -l / --list-plugin option
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Makefile new/Makefile
--- old/Makefile2008-12-19 09:05:02.0 +0100
+++ new/Makefile2011-07-12 10:06:45.0 +0200
@@ -1,4 +1,4 @@
-# $Id: Makefile 609 2008-12-14 16:30:40Z valery_reznic $
+# $Id: Makefile 688 2011-07-11 12:36:37Z gerbier $
 #
 TOP_DIR := .
 include $(TOP_DIR)/Makefile.include
@@ -29,6 +29,7 @@
rpmrebuild_ghost.sh \
 
 INCLUDE_SCRIPTS :=   \
+   rpmrebuild_lib.src   \
processing_func.src   \
rpmrebuild_rpmqf.src  \
rpmrebuild_parser.src \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Makefile.include new/Makefile.include
--- old/Makefile.include2007-11-08 19:12:41.0 +0100
+++ new/Makefile.include2010-09-23 09:19:19.0 +0200
@@ -3,7 +3,7 @@
 INSTALL_MAN := install