New version: 9e8fd6b
This commit is contained in:
parent
cf384c6532
commit
4634698c66
1
.gitignore
vendored
1
.gitignore
vendored
@ -67,3 +67,4 @@
|
|||||||
/dnf-2c846d0.tar.xz
|
/dnf-2c846d0.tar.xz
|
||||||
/dnf-da278da.tar.xz
|
/dnf-da278da.tar.xz
|
||||||
/dnf-e1a35e5.tar.xz
|
/dnf-e1a35e5.tar.xz
|
||||||
|
/dnf-9e8fd6b.tar.xz
|
||||||
|
45
dnf.spec
45
dnf.spec
@ -1,5 +1,5 @@
|
|||||||
%global gitrev e1a35e5
|
%global gitrev 9e8fd6b
|
||||||
%global hawkey_version 0.5.0
|
%global hawkey_version 0.5.2
|
||||||
%global librepo_version 1.7.5
|
%global librepo_version 1.7.5
|
||||||
%global libcomps_version 0.1.6
|
%global libcomps_version 0.1.6
|
||||||
%global rpm_version 4.12.0
|
%global rpm_version 4.12.0
|
||||||
@ -7,14 +7,14 @@
|
|||||||
%global confdir %{_sysconfdir}/dnf
|
%global confdir %{_sysconfdir}/dnf
|
||||||
|
|
||||||
Name: dnf
|
Name: dnf
|
||||||
Version: 0.6.2
|
Version: 0.6.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Package manager forked from Yum, using libsolv as a dependency resolver
|
Summary: Package manager forked from Yum, using libsolv as a dependency resolver
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
# For a breakdown of the licensing, see PACKAGE-LICENSING
|
# For a breakdown of the licensing, see PACKAGE-LICENSING
|
||||||
License: GPLv2+ and GPLv2 and GPL
|
License: GPLv2+ and GPLv2 and GPL
|
||||||
URL: https://github.com/akozumpl/dnf
|
URL: https://github.com/rpm-software-management/dnf
|
||||||
Source0: http://akozumpl.fedorapeople.org/dnf-%{gitrev}.tar.xz
|
Source0: http://rpm-software-management.fedorapeople.org/dnf-%{gitrev}.tar.xz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
BuildRequires: pygpgme
|
BuildRequires: pygpgme
|
||||||
@ -38,6 +38,7 @@ Requires: python-hawkey >= %{hawkey_version}
|
|||||||
Requires: python-iniparse
|
Requires: python-iniparse
|
||||||
Requires: python-libcomps >= %{libcomps_version}
|
Requires: python-libcomps >= %{libcomps_version}
|
||||||
Requires: python-librepo >= %{librepo_version}
|
Requires: python-librepo >= %{librepo_version}
|
||||||
|
Requires: rpm-plugin-systemd-inhibit
|
||||||
Requires: rpm-python >= %{rpm_version}
|
Requires: rpm-python >= %{rpm_version}
|
||||||
Requires(post): systemd
|
Requires(post): systemd
|
||||||
Requires(preun): systemd
|
Requires(preun): systemd
|
||||||
@ -72,6 +73,7 @@ Requires: python3-iniparse
|
|||||||
Requires: python3-libcomps >= %{libcomps_version}
|
Requires: python3-libcomps >= %{libcomps_version}
|
||||||
Requires: python3-librepo >= %{librepo_version}
|
Requires: python3-librepo >= %{librepo_version}
|
||||||
Requires: python3-pygpgme
|
Requires: python3-pygpgme
|
||||||
|
Requires: rpm-plugin-systemd-inhibit
|
||||||
Requires: rpm-python3 >= %{rpm_version}
|
Requires: rpm-python3 >= %{rpm_version}
|
||||||
|
|
||||||
%description -n python3-dnf
|
%description -n python3-dnf
|
||||||
@ -140,6 +142,8 @@ popd
|
|||||||
%config(noreplace) %{confdir}/protected.d/dnf.conf
|
%config(noreplace) %{confdir}/protected.d/dnf.conf
|
||||||
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
||||||
%ghost %{_localstatedir}/log/%{name}.log
|
%ghost %{_localstatedir}/log/%{name}.log
|
||||||
|
%ghost %{_localstatedir}/log/%{name}-rpm.log
|
||||||
|
%ghost %{_localstatedir}/log/%{name}-plugin.log
|
||||||
%config %{_sysconfdir}/bash_completion.d/dnf-completion.bash
|
%config %{_sysconfdir}/bash_completion.d/dnf-completion.bash
|
||||||
%{_sysconfdir}/libreport/events.d/collect_dnf.conf
|
%{_sysconfdir}/libreport/events.d/collect_dnf.conf
|
||||||
%{_mandir}/man8/dnf.8.gz
|
%{_mandir}/man8/dnf.8.gz
|
||||||
@ -190,6 +194,37 @@ popd
|
|||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|
||||||
|
* Mon Dec 8 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.3-1
|
||||||
|
- transifex update (Jan Silhan)
|
||||||
|
- bash-completion: don't query if we trying to use local file (RhBug:1153543) (Igor Gnatenko)
|
||||||
|
- bash-completion: fix local completion (RhBug:1151231) (Igor Gnatenko)
|
||||||
|
- bash-completion: use sqlite cache from dnf-plugins-core (Igor Gnatenko)
|
||||||
|
- base: output a whole list of installed packages with glob pattern (RhBug:1163063) (Michal Luscon)
|
||||||
|
- cli: _process_demands() does not respect --caheonly (RhBug:1151854) (Michal Luscon)
|
||||||
|
- new authors added (Jan Silhan)
|
||||||
|
- install: allow installation of provides with glob (Related:RhBug:1148353) (Michal Luscon)
|
||||||
|
- tests: removed mock patch for _, P_ (Jan Silhan)
|
||||||
|
- fixed error summary traceback (RhBug:1151740) (Jan Silhan)
|
||||||
|
- doc: swap command alternative mentioned (RhBug:1110780) (Jan Silhan)
|
||||||
|
- base: package_reinstall works only with the same package versions (Jan Silhan)
|
||||||
|
- base: package_install allows install different arch of installed package (Jan Silhan)
|
||||||
|
- base: package_downgrade prints message on failure (Jan Silhan)
|
||||||
|
- base: package_upgrade does not reinstall or downgrade (RhBug:1149972) (Jan Silhan)
|
||||||
|
- groups: searches also within localized names (RhBug:1150474) (Jan Silhan)
|
||||||
|
- Run tests with C locales. (Daniel Mach)
|
||||||
|
- Adds new motd emitter for dnf-automatic (RhBug:995537) (Kushal Das)
|
||||||
|
- Fix wrong cache directory path used to clean up binary cache (Satoshi Matsumoto)
|
||||||
|
- fix: traceback in history info <name> (RhBug: 1149952) (Tim Lauridsen)
|
||||||
|
- logging: added logrotate script for hawkey.log (RhBug:1149350) (Jan Silhan)
|
||||||
|
- output: renamed displayPkgsInGroups (Jan Silhan)
|
||||||
|
- logging: renamed log files (RhBug:1074715)" (Jan Silhan)
|
||||||
|
- comps: Environment differentiates optional and mandatory groups (Jan Silhan)
|
||||||
|
- group info handles environments (RhBug:1147523) (Jan Silhan)
|
||||||
|
- deltarpm enabled by default (RhBug:1148208) (Jan Silhan)
|
||||||
|
- doc: deplist command (Jan Silhan)
|
||||||
|
- doc: minor fixes + repo references changed (Jan Silhan)
|
||||||
|
- spec: requires rpm-plugin-systemd-inhibit (RhBug:1109927) (Jan Silhan)
|
||||||
|
|
||||||
* Fri Oct 3 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.2-1
|
* Fri Oct 3 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.2-1
|
||||||
- transifex update (Jan Silhan)
|
- transifex update (Jan Silhan)
|
||||||
- refactor: move MakeCacheCommand out into its own file. (Ales Kozumplik)
|
- refactor: move MakeCacheCommand out into its own file. (Ales Kozumplik)
|
||||||
|
Loading…
Reference in New Issue
Block a user