New upstream version: c8940d0
This commit is contained in:
parent
a889498dd9
commit
ad17c549a3
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@
|
||||
/dnf-plugins-core-bc10258.tar.xz
|
||||
/dnf-plugins-core-87e557d.tar.xz
|
||||
/dnf-plugins-core-d8e8044.tar.xz
|
||||
/dnf-plugins-core-c8940d0.tar.xz
|
||||
|
@ -1,47 +1,49 @@
|
||||
%global gitrev d8e8044
|
||||
%global dnf_version 0.5.3
|
||||
%global gitrev c8940d0
|
||||
%global dnf_version 0.6.3
|
||||
|
||||
Name: dnf-plugins-core
|
||||
Version: 0.1.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Core Plugins for DNF
|
||||
Group: System Environment/Base
|
||||
License: GPLv2+
|
||||
URL: https://github.com/akozumpl/dnf-plugins-core
|
||||
Name: dnf-plugins-core
|
||||
Version: 0.1.4
|
||||
Release: 1%{?dist}
|
||||
Summary: Core Plugins for DNF
|
||||
Group: System Environment/Base
|
||||
License: GPLv2+
|
||||
URL: https://github.com/akozumpl/dnf-plugins-core
|
||||
|
||||
# source archive is created by running package/archive from a git checkout
|
||||
Source0: dnf-plugins-core-%{gitrev}.tar.xz
|
||||
Source0: dnf-plugins-core-%{gitrev}.tar.xz
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: cmake
|
||||
BuildRequires: dnf >= %{dnf_version}
|
||||
BuildRequires: gettext
|
||||
BuildRequires: pykickstart
|
||||
BuildRequires: python-nose
|
||||
BuildRequires: python-sphinx
|
||||
BuildRequires: python2-devel
|
||||
Requires: dnf >= %{dnf_version}
|
||||
Requires: pykickstart
|
||||
Requires: python-requests
|
||||
BuildArch: noarch
|
||||
BuildRequires: cmake
|
||||
BuildRequires: dnf = %{dnf_version}
|
||||
BuildRequires: gettext
|
||||
BuildRequires: pykickstart
|
||||
BuildRequires: python-nose
|
||||
BuildRequires: python-sphinx
|
||||
BuildRequires: python2-devel
|
||||
Requires: dnf = %{dnf_version}
|
||||
Requires: pykickstart
|
||||
Requires: python-requests
|
||||
|
||||
%description
|
||||
Core Plugins for DNF. This package enhance DNF with builddep, copr,
|
||||
debuginfo-install, download, kickstart and repoquery commands. Additionally
|
||||
provides generate_completion_cache, noroot and protected_packages passive
|
||||
plugins.
|
||||
debuginfo-install, download, kickstart, needs-restarting, repoquery and
|
||||
reposync commands. Additionally provides generate_completion_cache, noroot and
|
||||
protected_packages passive plugins.
|
||||
|
||||
%package -n python3-dnf-plugins-core
|
||||
Summary: Core Plugins for DNF
|
||||
Group: System Environment/Base
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-dnf >= %{dnf_version}
|
||||
BuildRequires: python3-nose
|
||||
BuildRequires: python3-sphinx
|
||||
Requires: python3-dnf >= %{dnf_version}
|
||||
Summary: Core Plugins for DNF
|
||||
Group: System Environment/Base
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-dnf = %{dnf_version}
|
||||
BuildRequires: python3-nose
|
||||
BuildRequires: python3-sphinx
|
||||
Requires: python3-dnf = %{dnf_version}
|
||||
|
||||
%description -n python3-dnf-plugins-core
|
||||
Core Plugins for DNF, Python 3 version.
|
||||
|
||||
Core Plugins for DNF, Python 3 version. This package enhance DNF with builddep, copr,
|
||||
debuginfo-install, download, kickstart, needs-restarting, repoquery and
|
||||
reposync commands. Additionally provides generate_completion_cache, noroot and
|
||||
protected_packages passive plugins.
|
||||
|
||||
%prep
|
||||
%setup -q -n dnf-plugins-core
|
||||
@ -74,6 +76,7 @@ PYTHONPATH=./plugins /usr/bin/nosetests-3.* -s tests/
|
||||
%files -f %{name}.lang
|
||||
%doc AUTHORS COPYING README.rst
|
||||
%dir %{_sysconfdir}/dnf/protected.d
|
||||
%ghost %{_var}/cache/dnf/packages.db
|
||||
%{python_sitelib}/dnf-plugins/*
|
||||
%{python_sitelib}/dnfpluginscore/
|
||||
%{_mandir}/man8/dnf.plugin.*
|
||||
@ -81,12 +84,28 @@ PYTHONPATH=./plugins /usr/bin/nosetests-3.* -s tests/
|
||||
%files -n python3-dnf-plugins-core -f %{name}.lang
|
||||
%doc AUTHORS COPYING README.rst
|
||||
%dir %{_sysconfdir}/dnf/protected.d
|
||||
%ghost %{_var}/cache/dnf/packages.db
|
||||
%{python3_sitelib}/dnf-plugins/*
|
||||
%{python3_sitelib}/dnfpluginscore/
|
||||
%{_mandir}/man8/dnf.plugin.*
|
||||
|
||||
%changelog
|
||||
|
||||
* Fri Dec 5 2014 Jan Silhan <jsilhan@redhat.com> - 0.1.4-1
|
||||
- revert of commit 80ae3f4 (Jan Silhan)
|
||||
- transifex update (Jan Silhan)
|
||||
- spec: binded to current dnf version (Jan Silhan)
|
||||
- generate_completion_cache: use sqlite instead of text files (Igor Gnatenko)
|
||||
- logging: renamed log file (Related:RhBug:1074715) (Jan Silhan)
|
||||
- Add reposync. (RhBug:1139738) (Ales Kozumplik)
|
||||
- download: fix traceback if rpm package has no defined sourcerpm (RhBug: 1144003) (Tim Lauridsen)
|
||||
- lint: ignore warnings of a test accessing protected attribute. (Ales Kozumplik)
|
||||
- repoquery lint: logger is not used. (Ales Kozumplik)
|
||||
- repoquery: support querying of weak deps. (Ales Kozumplik)
|
||||
- needs_restarting: fix typo (Miroslav Suchý)
|
||||
- copr: migrate copr plugin form urlgrabber to python-request (Miroslav Suchý)
|
||||
- Add needs-restarting command. (Ales Kozumplik)
|
||||
|
||||
* Thu Sep 4 2014 Jan Silhan <jsilhan@redhat.com> - 0.1.3-1
|
||||
- repoquery: output times in UTC. (Ales Kozumplik)
|
||||
- repoquery: missing help messages. (Ales Kozumplik)
|
||||
@ -245,4 +264,3 @@ PYTHONPATH=./plugins /usr/bin/nosetests-3.* -s tests/
|
||||
|
||||
* Fri Dec 20 2013 Aleš Kozumplík <ales@redhat.com> - 0.0.1-1
|
||||
- The initial package version.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user