]> git.ipfire.org Git - thirdparty/libsolv.git/log
thirdparty/libsolv.git
5 years agodoc: Fix typo in description about libsolv vendor policies 361/head
Neal Gompa [Tue, 7 Jan 2020 13:18:17 +0000 (08:18 -0500)] 
doc: Fix typo in description about libsolv vendor policies

5 years agoFix solv_zchunk decoding error if large chunks are used
Michael Schroeder [Thu, 19 Dec 2019 15:28:38 +0000 (16:28 +0100)] 
Fix solv_zchunk decoding error if large chunks are used

Oops. This commit is a bit embarassing.

5 years agoMake ENABLE_RPMDB_LIBRPM the default
Michael Schroeder [Wed, 11 Dec 2019 14:55:48 +0000 (15:55 +0100)] 
Make ENABLE_RPMDB_LIBRPM the default

Direct BerkeleyDB access can still be selected with ENABLE_RPMDB_BDB.

5 years agoSimplify RpmHead handling in repo_rpmdb
Michael Schroeder [Wed, 11 Dec 2019 13:01:22 +0000 (14:01 +0100)] 
Simplify RpmHead handling in repo_rpmdb

5 years agobuild with -DENABLE_RPMDB_LIBRPM=1 on SUSE
Michael Schroeder [Tue, 10 Dec 2019 20:03:29 +0000 (21:03 +0100)] 
build with -DENABLE_RPMDB_LIBRPM=1 on SUSE

5 years agoAdd changes, bump version to 0.7.10 0.7.10
Michael Schroeder [Tue, 10 Dec 2019 13:21:00 +0000 (14:21 +0100)] 
Add changes, bump version to 0.7.10

5 years agoRework repo_rpmdb.c a bit
Michael Schroeder [Tue, 10 Dec 2019 12:10:44 +0000 (13:10 +0100)] 
Rework repo_rpmdb.c a bit

- Clean up package dabase handing
- Add rpm_stat_database() function that allows to stat the
  package database
- Add rpm_hash_database_state() function that hashes the
  package database state
- Use rpm's new rpmdbFStat() function if available
- Use rpmdbNextIteratorHeaderBlob() function (SUSE extension)
  if available

5 years agoAdd changes, bump version to 0.7.9 0.7.9
Michael Schroeder [Thu, 21 Nov 2019 15:35:30 +0000 (16:35 +0100)] 
Add changes, bump version to 0.7.9

5 years agoDon't complain about constrains between two installed packages
Michael Schroeder [Fri, 15 Nov 2019 12:01:45 +0000 (13:01 +0100)] 
Don't complain about constrains between two installed packages

5 years agoDelete superflous queue_empty statements
Michael Schroeder [Fri, 15 Nov 2019 11:01:23 +0000 (12:01 +0100)] 
Delete superflous queue_empty statements

solvable_lookup_idarray already empies the queue.

5 years agoRename prereqq to depq
Michael Schroeder [Fri, 15 Nov 2019 10:58:54 +0000 (11:58 +0100)] 
Rename prereqq to depq

We use it also for conda constrains nowadays.

5 years agoIgnore constrains conflicting with itself, tweak constrains problem message
Michael Schroeder [Fri, 15 Nov 2019 10:57:02 +0000 (11:57 +0100)] 
Ignore constrains conflicting with itself, tweak constrains problem message

5 years agoRemote unused test for brokeness from addedge
Michael Schroeder [Thu, 14 Nov 2019 14:53:23 +0000 (15:53 +0100)] 
Remote unused test for brokeness from addedge

5 years agoAdd support for conda constrains
Michael Schroeder [Thu, 14 Nov 2019 13:16:59 +0000 (14:16 +0100)] 
Add support for conda constrains

5 years agoAdd changes, bump version to 0.7.8 0.7.8
Michael Schroeder [Tue, 12 Nov 2019 10:37:02 +0000 (11:37 +0100)] 
Add changes, bump version to 0.7.8

5 years agoMake arch<->noarch pkg changes work for suse patches
Michael Schroeder [Tue, 12 Nov 2019 10:22:50 +0000 (11:22 +0100)] 
Make arch<->noarch pkg changes work for suse patches

This means we add a single pkg < evr conflict for noarch packages,
and both pkg.arch < evr and pkg.noarch < evr conflicts otherwise.

5 years agoAdd another SUSE hack: complex requires in ptf packages should only match package...
Michael Schroeder [Mon, 11 Nov 2019 11:53:55 +0000 (12:53 +0100)] 
Add another SUSE hack: complex requires in ptf packages should only match package names

5 years agoAdd experimental support for self-destruct packages
Michael Schroeder [Fri, 8 Nov 2019 14:09:54 +0000 (15:09 +0100)] 
Add experimental support for self-destruct packages

Self-destruct packages will not be part of the transaction. But
they still will obsolete packages, thus updating to a self-destruct
package will lead to the erasure of the old package.

5 years agoAdd support for blacklisted packages
Michael Schroeder [Fri, 8 Nov 2019 13:34:18 +0000 (14:34 +0100)] 
Add support for blacklisted packages

This will be used in SUSE's ptf packages and also to retract
released updates. The idea is that it is not possible to pull in
a blacklisted package via a dependency, they can only be installed
by a job that directly addresses them (the SETEVR bit is set).

5 years agoMove marker argument in solvable_matchessolvable()
Michael Schroeder [Tue, 22 Oct 2019 12:16:11 +0000 (14:16 +0200)] 
Move marker argument in solvable_matchessolvable()

This makes it similar to the pool_whatmatchessolvable() function.

5 years agoAdd solvable_matchessolvable() function
Michael Schroeder [Tue, 22 Oct 2019 12:08:23 +0000 (14:08 +0200)] 
Add solvable_matchessolvable() function

Checks if one of the dependencies of a solvable is matched by
the provides of another solvable. It is also possible to get
the list of matching dependencies.

5 years agoAdd workaround to stat_database() to find other database backends
Michael Schroeder [Mon, 21 Oct 2019 12:52:31 +0000 (14:52 +0200)] 
Add workaround to stat_database() to find other database backends

This is pretty horrible. Rpm upstream wants to add a function
that stats the database for us, so we may use that in some future
version.

5 years agorepo_rpmdb.c: move "Packages" string into backend implementations
Michael Schroeder [Mon, 21 Oct 2019 11:17:29 +0000 (13:17 +0200)] 
repo_rpmdb.c: move "Packages" string into backend implementations

Other rpm database implementations like "ndb" use different names.

5 years agoAdd UPDATE_STATUS to knownids
Michael Schroeder [Fri, 18 Oct 2019 11:30:21 +0000 (13:30 +0200)] 
Add UPDATE_STATUS to knownids

Should have been in last commit.

5 years agoParse the patch status in the updateinfo xml
Michael Schroeder [Fri, 18 Oct 2019 09:04:36 +0000 (11:04 +0200)] 
Parse the patch status in the updateinfo xml

The status is usually 'stable', but can also be things like
'testing' or 'retracted'

5 years agoAdd changes, bump version to 0.7.7 0.7.7
Michael Schroeder [Fri, 18 Oct 2019 08:54:57 +0000 (10:54 +0200)] 
Add changes, bump version to 0.7.7

5 years agoFix lto_cflags definition
Michael Schroeder [Mon, 14 Oct 2019 10:06:09 +0000 (12:06 +0200)] 
Fix lto_cflags definition

5 years agoRemove ununsed inline functions
Michael Schroeder [Tue, 8 Oct 2019 12:11:55 +0000 (14:11 +0200)] 
Remove ununsed inline functions

5 years agoAdd testcases for POOL_FLAG_WHATPROVIDESWITHDISABLED
Michael Schroeder [Tue, 8 Oct 2019 11:41:45 +0000 (13:41 +0200)] 
Add testcases for POOL_FLAG_WHATPROVIDESWITHDISABLED

5 years agoFix handling of disabled installed packages in distupgrade
Michael Schroeder [Tue, 8 Oct 2019 11:40:45 +0000 (13:40 +0200)] 
Fix handling of disabled installed packages in distupgrade

Such packages must not be touched, i.e. they must stay installed.

5 years agoAdd POOL_FLAG_WHATPROVIDESWITHDISABLED pool flag
Michael Schroeder [Mon, 30 Sep 2019 12:35:57 +0000 (14:35 +0200)] 
Add POOL_FLAG_WHATPROVIDESWITHDISABLED pool flag

This makes libsolv keep disabled packages (i.e. packages
not in the considered map) in the whatprovides hash.

It is useful if you want to modify the considered map after
the whatprovides hash is generated.

Note that using the flag will change the reported problems
as disabled packages are now seen by the solver but
considered uninstallable.

5 years agoFix updating of too many packages in focusbest mode
Michael Schroeder [Wed, 25 Sep 2019 13:37:11 +0000 (15:37 +0200)] 
Fix updating of too many packages in focusbest mode

5 years agoAdd changes, bump version to 0.7.6 0.7.6
Michael Schroeder [Wed, 28 Aug 2019 12:56:21 +0000 (14:56 +0200)] 
Add changes, bump version to 0.7.6

5 years agoMerge pull request #344 from haoren3696/master
Michael Schroeder [Wed, 28 Aug 2019 12:45:51 +0000 (14:45 +0200)] 
Merge pull request #344 from haoren3696/master

repodata_schema2id: fix heap-buffer-overflow in memcmp

5 years agoMake code compatible with swig 4.0, remove obj0 instances
StefanBruens [Mon, 12 Aug 2019 22:27:42 +0000 (00:27 +0200)] 
Make code compatible with swig 4.0, remove obj0 instances

The deprecated "-aliasobj0" option was removed in swig 4.0, and
obj0, which was only meant as a porting helper, is no longer available:
https://github.com/swig/swig/commit/cd8fc0a025fb
Use the correct "$self" notation, which is expanded to the correct
code regardless of swig version and options.

6 years agorepodata_schema2id: fix heap-buffer-overflow in memcmp 344/head
Zhipeng Xie [Tue, 6 Aug 2019 01:50:57 +0000 (09:50 +0800)] 
repodata_schema2id: fix heap-buffer-overflow in memcmp

When the length of last schema in data->schemadata is
less than length of input schema, we got a read overflow
in asan test.

Signed-off-by: Zhipeng Xie <xiezhipeng1@huawei.com>
6 years agoImprove fix for issue #343
Michael Schroeder [Fri, 2 Aug 2019 14:33:00 +0000 (16:33 +0200)] 
Improve fix for issue #343

The old commit just checked if the package was identical to the
one we're updating. But we need to check against all the installed
packages.

6 years agoAdd a TODO entry
Michael Schroeder [Fri, 2 Aug 2019 09:43:28 +0000 (11:43 +0200)] 
Add a TODO entry

6 years agoSpecial updaters handling: put identical to installed also on the list
Michael Schroeder [Thu, 1 Aug 2019 14:28:00 +0000 (16:28 +0200)] 
Special updaters handling: put identical to installed also on the list

We need to do this so that repo priority pruning does the right thing.
Fixes issue #343

6 years agotypo
Mikhail Terekhov [Mon, 29 Jul 2019 03:17:45 +0000 (23:17 -0400)] 
typo

6 years agoExpose pool_whatcontainsdep() in the bindings
Daniel Alley [Wed, 17 Jul 2019 18:40:25 +0000 (14:40 -0400)] 
Expose pool_whatcontainsdep() in the bindings

Document both pool_whatcontainsdep() and pool_whatmatchesdep()

closes #335

6 years agoparseRichDep: merge duplicated code into a skipnonwhite() inline function
Michael Schroeder [Tue, 16 Jul 2019 11:20:12 +0000 (13:20 +0200)] 
parseRichDep: merge duplicated code into a skipnonwhite() inline function

6 years agopool_match_dep: support interval REL_WITH deps
Michael Schroeder [Mon, 15 Jul 2019 14:49:02 +0000 (16:49 +0200)] 
pool_match_dep: support interval REL_WITH deps

See https://bugzilla.redhat.com/show_bug.cgi?id=1534123
I have a feeling that I'm going to regret this...

6 years agoMerge pull request #336 from marxin/fix-static-library-lto-bytecode
Michael Schroeder [Fri, 12 Jul 2019 12:12:51 +0000 (14:12 +0200)] 
Merge pull request #336 from marxin/fix-static-library-lto-bytecode

Fix lto-bytecode errors:

6 years agoFix lto-bytecode errors: 336/head
Martin Liska [Wed, 10 Jul 2019 13:31:21 +0000 (15:31 +0200)] 
Fix lto-bytecode errors:

[  250s] libsolv-devel.x86_64: E: lto-bytecode (Badness: 10000) /usr/lib64/libsolv.a
[  250s] libsolv-devel.x86_64: E: lto-bytecode (Badness: 10000) /usr/lib64/libsolvext.a

- Add -ffat-lto-objects to $optflags as the package provides
  static libraries
- Remove NO_BRP_STRIP_DEBUG=true as brp-15-strip-debug will
  not strip debug info for archives

6 years agobindings: make the selection filters return the self object
Michael Schroeder [Tue, 9 Jul 2019 12:44:36 +0000 (14:44 +0200)] 
bindings: make the selection filters return the self object

6 years agoAlways do nevr check for src rpms, even if there are provides
Michael Schroeder [Mon, 1 Jul 2019 12:52:24 +0000 (14:52 +0200)] 
Always do nevr check for src rpms, even if there are provides

Newer rpm versions add a "rpmlib(DynamicBuildRequires)" provides
to source rpms in some cases. Sigh.

6 years agoDocument get/set_considered/disabled_list
Michael Schroeder [Mon, 1 Jul 2019 11:12:26 +0000 (13:12 +0200)] 
Document get/set_considered/disabled_list

6 years agoMerge pull request #323 from wolfv/osx_rpath_cmake
Michael Schroeder [Mon, 1 Jul 2019 09:29:22 +0000 (11:29 +0200)] 
Merge pull request #323 from wolfv/osx_rpath_cmake

OS X rpath handling

6 years agoenable os x rpath usage in cmake 323/head
Wolf Vollprecht [Fri, 19 Apr 2019 10:16:07 +0000 (12:16 +0200)] 
enable os x rpath usage in cmake

6 years agorepo2solv: support zchunk compressed data
Michael Schroeder [Mon, 17 Jun 2019 11:11:02 +0000 (13:11 +0200)] 
repo2solv: support zchunk compressed data

6 years agobindings: add get_disabled_list() and set_disabled_list()
Michael Schroeder [Mon, 17 Jun 2019 09:20:04 +0000 (11:20 +0200)] 
bindings: add get_disabled_list() and set_disabled_list()

6 years agoAdd changes
Michael Schroeder [Thu, 13 Jun 2019 14:16:19 +0000 (16:16 +0200)] 
Add changes

6 years agoExtend the job to the install buddy for erase and lock jobs
Michael Schroeder [Thu, 13 Jun 2019 14:07:46 +0000 (16:07 +0200)] 
Extend the job to the install buddy for erase and lock jobs

This is needed so that a cleandeps erase of a pattern propagates
to the packages, as pattern packages are automagically marked
as userinstalled.

6 years agoAdd changes, bump version to 0.7.5 0.7.5
Michael Schroeder [Wed, 12 Jun 2019 11:39:44 +0000 (13:39 +0200)] 
Add changes, bump version to 0.7.5

6 years agoDo not use the broken RPMLIB_VERSION_LT macro
Michael Schroeder [Wed, 5 Jun 2019 14:35:30 +0000 (16:35 +0200)] 
Do not use the broken RPMLIB_VERSION_LT macro

6 years agorpm-5.2 still had an array index
Michael Schroeder [Wed, 5 Jun 2019 14:16:09 +0000 (16:16 +0200)] 
rpm-5.2 still had an array index

6 years agoMake libsolv work with rpm 5.2
Michael Schroeder [Wed, 5 Jun 2019 13:58:55 +0000 (15:58 +0200)] 
Make libsolv work with rpm 5.2

Version 5.2 still used native endian encoding for the database ids.

6 years agoAdd some casts for clarification
Michael Schroeder [Wed, 5 Jun 2019 13:19:28 +0000 (15:19 +0200)] 
Add some casts for clarification

The rpm database id is a num, thus unsigned. But it gets stored into
an id array.

6 years agoAllow the complete 32bit for the rpm database id
Michael Schroeder [Wed, 5 Jun 2019 13:18:26 +0000 (15:18 +0200)] 
Allow the complete 32bit for the rpm database id

6 years agoRemove unused 'basefile' var
Michael Schroeder [Mon, 3 Jun 2019 14:12:24 +0000 (16:12 +0200)] 
Remove unused 'basefile' var

6 years agoFix warnings found by clang
Michael Schroeder [Mon, 3 Jun 2019 14:08:13 +0000 (16:08 +0200)] 
Fix warnings found by clang

6 years agoAnother deb tweak
Michael Schroeder [Mon, 3 Jun 2019 14:01:07 +0000 (16:01 +0200)] 
Another deb tweak

6 years agoMake testcase run on debian
Michael Schroeder [Mon, 3 Jun 2019 13:59:46 +0000 (15:59 +0200)] 
Make testcase run on debian

6 years agoAdd testcases for last commit
Michael Schroeder [Mon, 3 Jun 2019 13:45:37 +0000 (15:45 +0200)] 
Add testcases for last commit

6 years agoMake lock jobs trump dup and forcebest jobs
Michael Schroeder [Mon, 3 Jun 2019 13:45:00 +0000 (15:45 +0200)] 
Make lock jobs trump dup and forcebest jobs

6 years agoMake repo_lookup_type return the correct type for data stored in the solvable
Michael Schroeder [Mon, 3 Jun 2019 13:21:28 +0000 (15:21 +0200)] 
Make repo_lookup_type return the correct type for data stored in the solvable

Also clean up and speed up the code a bit.

6 years agoMake peace with swig-4.0.0
Michael Schroeder [Tue, 14 May 2019 09:48:28 +0000 (11:48 +0200)] 
Make peace with swig-4.0.0

Patch by Jitka PlesnĂ­ková, thanks!

6 years agoAdd CVE numbers so that SUSE's maintenance engine is happy
Michael Schroeder [Mon, 29 Apr 2019 12:26:27 +0000 (14:26 +0200)] 
Add CVE numbers so that SUSE's maintenance engine is happy

6 years agoDelete superfluous spaces
Michael Schroeder [Thu, 18 Apr 2019 13:48:08 +0000 (15:48 +0200)] 
Delete superfluous spaces

6 years agoMove move_installed_to_front call after sort_by_common_dep
Michael Schroeder [Thu, 18 Apr 2019 13:44:38 +0000 (15:44 +0200)] 
Move move_installed_to_front call after sort_by_common_dep

Staying with the already installed package name is more important
than a common dependency.

6 years agoDeal with update/feature jobs in alternative printing
Michael Schroeder [Thu, 18 Apr 2019 13:43:59 +0000 (15:43 +0200)] 
Deal with update/feature jobs in alternative printing

6 years agoAlso compare build version if only one of the solvables has it
Michael Schroeder [Wed, 17 Apr 2019 11:30:36 +0000 (13:30 +0200)] 
Also compare build version if only one of the solvables has it

Spotted by Wolf Vollprecht

6 years agoMake the conda.h header file available
Michael Schroeder [Wed, 17 Apr 2019 09:57:32 +0000 (11:57 +0200)] 
Make the conda.h header file available

We have the pool_conda_matchspec() function in the public API.

6 years agorepo_conda: Fix type check of build_number
Michael Schroeder [Wed, 17 Apr 2019 09:55:51 +0000 (11:55 +0200)] 
repo_conda: Fix type check of build_number

It's a number, not a string. Problem spotted by Wolf Vollprecht,
thanks!

6 years agoFix two mem leaks
Michael Schroeder [Mon, 15 Apr 2019 13:46:46 +0000 (15:46 +0200)] 
Fix two mem leaks

6 years agopool_conda_matchspec: Use '*' as version when creating a simple name glob
Michael Schroeder [Mon, 15 Apr 2019 11:24:27 +0000 (13:24 +0200)] 
pool_conda_matchspec: Use '*' as version when creating a simple name glob

6 years agoAlso compare buildflavor in version comparison code
Michael Schroeder [Mon, 15 Apr 2019 11:21:05 +0000 (13:21 +0200)] 
Also compare buildflavor in version comparison code

This makes the solver result more deterministic.

6 years agoAdd strfncs.h include for conda.c
Michael Schroeder [Fri, 12 Apr 2019 12:07:05 +0000 (14:07 +0200)] 
Add strfncs.h include for conda.c

6 years agoAdd strfncs.h include
Michael Schroeder [Fri, 12 Apr 2019 12:04:41 +0000 (14:04 +0200)] 
Add strfncs.h include

6 years agoAdd credits for the win32 port
Michael Schroeder [Fri, 12 Apr 2019 11:54:37 +0000 (13:54 +0200)] 
Add credits for the win32 port

6 years agofmemopen.c: free handle if _fdopen fails
Michael Schroeder [Fri, 12 Apr 2019 11:52:58 +0000 (13:52 +0200)] 
fmemopen.c: free handle if _fdopen fails

6 years agoDebug: also dump dup flags
Michael Schroeder [Fri, 12 Apr 2019 10:56:52 +0000 (12:56 +0200)] 
Debug: also dump dup flags

6 years agoFix mem leak in solv_jsonparser
Michael Schroeder [Fri, 12 Apr 2019 09:20:34 +0000 (11:20 +0200)] 
Fix mem leak in solv_jsonparser

jsonparser_free did not free the string buffer

6 years agoFix buildflavor position in testcase_solvid2str
Michael Schroeder [Thu, 11 Apr 2019 15:17:00 +0000 (17:17 +0200)] 
Fix buildflavor position in testcase_solvid2str

The flavor is supposed to come right after the evr.

6 years agoCleanup jsonparser a bit
Michael Schroeder [Thu, 11 Apr 2019 15:01:59 +0000 (17:01 +0200)] 
Cleanup jsonparser a bit

We now no longer set nextc in skipspace(). This should make the
code a bit easier to understand.

6 years agoAdd RESULT_USERINSTALLED testcase output
Michael Schroeder [Thu, 11 Apr 2019 15:00:11 +0000 (17:00 +0200)] 
Add RESULT_USERINSTALLED testcase output

Also allow both '/' and '\' as path separator on windows.

6 years agoMerge pull request #306 from wolfv/msvc_support
Michael Schroeder [Thu, 11 Apr 2019 14:46:23 +0000 (16:46 +0200)] 
Merge pull request #306 from wolfv/msvc_support

Adding MSVC support

6 years agoAdd MSVC compilation support with musl, enable OS X testing 306/head
Wolf Vollprecht [Tue, 19 Mar 2019 08:31:36 +0000 (09:31 +0100)] 
Add MSVC compilation support with musl, enable OS X testing

6 years agoBe more correct with multiversion packages that obsolete their own name
Michael Schroeder [Thu, 11 Apr 2019 12:13:46 +0000 (14:13 +0200)] 
Be more correct with multiversion packages that obsolete their own name

We used to simply ignore the obsoletes. There are use cases which
need them, though. So do the right thing.

6 years agoUse buildversion for comparison if two versions are identical
Michael Schroeder [Tue, 9 Apr 2019 14:32:01 +0000 (16:32 +0200)] 
Use buildversion for comparison if two versions are identical

6 years agopool_conda_matchspec: return a simple dependency if we can
Michael Schroeder [Tue, 9 Apr 2019 14:30:47 +0000 (16:30 +0200)] 
pool_conda_matchspec: return a simple dependency if we can

6 years agoTest last commit
Michael Schroeder [Tue, 9 Apr 2019 11:11:22 +0000 (13:11 +0200)] 
Test last commit

6 years agoFix SOLVER_FLAG_FOCUS_BEST updateing packages without reason
Michael Schroeder [Tue, 9 Apr 2019 11:04:25 +0000 (13:04 +0200)] 
Fix SOLVER_FLAG_FOCUS_BEST updateing packages without reason

6 years agoBetter support for SOLVABLE_BUILDFLAVOR
Michael Schroeder [Tue, 9 Apr 2019 09:36:40 +0000 (11:36 +0200)] 
Better support for SOLVABLE_BUILDFLAVOR

This changes pool_solvable2str, testcase_str2solvid and
testcase_solvid2str to append the build flavor.

6 years agoFix a couple of signed/unsigned comparisons
Michael Schroeder [Tue, 9 Apr 2019 09:35:31 +0000 (11:35 +0200)] 
Fix a couple of signed/unsigned comparisons

6 years agoAllow to lookup a single id with repodata_lookup_idarray
Michael Schroeder [Tue, 9 Apr 2019 09:13:17 +0000 (11:13 +0200)] 
Allow to lookup a single id with repodata_lookup_idarray

I don't see any harm in allowing this and it makes dealing with
things like SOLVABLE_LICENSE easier which can be either an id
(the old way) or an id array (the new way).

6 years agoUse system type rpm in testcase
Michael Schroeder [Mon, 8 Apr 2019 13:07:14 +0000 (15:07 +0200)] 
Use system type rpm in testcase

Otherwise arch 'noarch' is unknown

6 years agoFix tests
Michael Schroeder [Mon, 8 Apr 2019 12:49:07 +0000 (14:49 +0200)] 
Fix tests

All tests should have a results section

6 years agoMerge pull request #315 from ignatenkobrain/todo
Michael Schroeder [Mon, 8 Apr 2019 11:25:55 +0000 (13:25 +0200)] 
Merge pull request #315 from ignatenkobrain/todo

trivial: Drop implemented items from TODO