Hello community, here is the log from the commit of package yum for openSUSE:Factory checked in at 2014-04-26 11:44:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yum (Old) and /work/SRC/openSUSE:Factory/.yum.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yum" Changes: -------- --- /work/SRC/openSUSE:Factory/yum/yum.changes 2014-03-15 17:35:53.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.yum.new/yum.changes 2014-04-26 11:44:54.000000000 +0200 @@ -1,0 +2,8 @@ +Mon Apr 14 12:54:31 UTC 2014 - [email protected] + +- fix "repotag" support in modifyrepo + new patch: yum-3.4.3-fix-repo-tag.patch +- include debian build descriptions, since we require this + for travis-ci testing + +------------------------------------------------------------------- New: ---- debian.changelog debian.rules debian.series debian.tar.gz yum-3.4.3-fix-repo-tag.patch yum.dsc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yum.spec ++++++ --- /var/tmp/diff_new_pack.HcUBhb/_old 2014-04-26 11:44:55.000000000 +0200 +++ /var/tmp/diff_new_pack.HcUBhb/_new 2014-04-26 11:44:55.000000000 +0200 @@ -38,6 +38,8 @@ Patch7: %{name}-3.4.3-updatesd-dbus-conf-syntax.patch # PATCH-FIX-UPSTREAM Patch8: %{name}-3.4.3-speedup-bnc810074.patch +# PATCH-FIX-OPENSUSE +Patch9: %{name}-3.4.3-fix-repo-tag.patch BuildRequires: dbus-1 BuildRequires: intltool BuildRequires: python-devel @@ -93,10 +95,11 @@ %setup -q %patch1 -p1 %patch2 -p1 -%patch3 +%patch3 -p1 %patch6 -p1 %patch7 -p1 %patch8 -p1 +%patch9 -p1 # Fix non-executable scripts rpmlint issue: sed -i "s|#!.*/usr/bin/python.*||" rpmUtils/{arch,__init__,miscutils,oldUtils,transaction,updates}.py ++++++ debian.changelog ++++++ yum (2011.10.10-1) unstable; urgency=low * initial debian packaging for travis -- Adrian Schroeter <[email protected]> Tue, 11 Jun 2013 19:30:22 +0200 ++++++ debian.rules ++++++ #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany # This file and all modifications and additions to the pristine package # are under the same license as the package itself. # # Please submit bugfixes or commens via http://bugs.opensuse.org # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 configure: configure-stamp configure-stamp: touch configure-stamp build: build-stamp build-stamp: configure-stamp touch build-stamp clean: dh $@ install: install-stamp install-stamp: dh install dh_perl dh_gencontrol -a dh_md5sums -a dh_builddeb -a touch $@ override_dh_auto_test: true override_dh_auto_install: make install DESTDIR=/.build.packages/BUILD/debian/yum cd yum && make install 'PKGDIR=$$(PYLIBDIR)/$$(PACKAGE)' DESTDIR=/.build.packages/BUILD/debian/yum cd rpmUtils && make install 'PKGDIR=$$(PYLIBDIR)/$$(PACKAGE)' DESTDIR=/.build.packages/BUILD/debian/yum binary-arch: binary-indep: install dh $@ binary: binary-arch binary-indep .PHONY: binary binary-arch binary-indep install clean build ++++++ debian.series ++++++ # Patch series file for quilt, created by quilt setup # Source: yum-3.4.3.tar.gz # Patchdir: yum-3.4.3 # yum-3.4.3-license-to-confirm.patch yum-3.4.3-suse-changelogs.patch yum-3.4.3-suse-missing-tags.patch yum-3.4.3-add-lib-cpp-file.patch yum-3.4.3-updatesd-dbus-conf-syntax.patch yum-3.4.3-speedup-bnc810074.patch yum-3.4.3-fix-repo-tag.patch ++++++ yum-3.4.3-fix-repo-tag.patch ++++++ --- a/yum/repoMDObject.py.orig 2014-04-14 16:38:41.520300670 +0000 +++ b/yum/repoMDObject.py 2014-04-14 16:40:58.680570788 +0000 @@ -187,6 +187,8 @@ class RepoMD: child_name = ns_cleanup(child.tag) if child_name == 'content': self.tags['content'].add(child.text) + if child_name == 'repo': + self.tags['repo'].add(child.text) if child_name == 'distro': cpeid = child.attrib.get('cpeid', '') distro = self.tags['distro'].setdefault(cpeid,set()) @@ -218,6 +220,8 @@ class RepoMD: print 'revision: %s' % self.revision if self.tags['content']: print 'tags content: %s' % ", ".join(sorted(self.tags['content'])) + if self.tags['repo']: + print 'tags repo: %s' % ", ".join(sorted(self.tags['repo'])) if self.tags['distro']: for distro in sorted(self.tags['distro']): print 'tags distro: %s' % distro ++++++ yum-3.4.3-suse-missing-tags.patch ++++++ --- /var/tmp/diff_new_pack.HcUBhb/_old 2014-04-26 11:44:55.000000000 +0200 +++ /var/tmp/diff_new_pack.HcUBhb/_new 2014-04-26 11:44:55.000000000 +0200 @@ -1,5 +1,5 @@ ---- ./yum/mdparser.py.orig 2014-03-13 11:04:20.753615026 +0000 -+++ ./yum/mdparser.py 2014-03-13 11:04:51.698614971 +0000 +--- a/yum/mdparser.py.orig 2014-03-13 11:04:20.753615026 +0000 ++++ b/yum/mdparser.py 2014-03-13 11:04:51.698614971 +0000 @@ -155,7 +155,8 @@ class PrimaryEntry(BaseEntry): p[name] = child.text ++++++ yum.dsc ++++++ Format: 1.0 Source: yum Version: 3.4.3 Binary: yum Maintainer: Adrian Schroeter <[email protected]> Architecture: all Standards-Version: 3.7.2 Build-Depends: debhelper (>= 4), python-dev, python-libxml2, python-rpm, python-urlgrabber, python-sqlitecachec -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
