[dnf] Initial drop.

Ales Kozumplik akozumpl at fedoraproject.org
Mon Jul 16 10:43:58 UTC 2012


commit 74edd96bb2f6c9a7d7db12e9ecdaffd6a178f8a7
Author: Ales Kozumplik <ales at redhat.com>
Date:   Mon Jul 16 12:37:13 2012 +0200

    Initial drop.
    
    Version: 0.2.7-1

 .gitignore |    1 +
 dnf.spec   |   87 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources    |    1 +
 3 files changed, 89 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..907ba0d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/dnf-3f2389e.tar.xz
diff --git a/dnf.spec b/dnf.spec
new file mode 100644
index 0000000..ae4df1a
--- /dev/null
+++ b/dnf.spec
@@ -0,0 +1,87 @@
+%global gitrev 3f2389e
+%global confdir %{_sysconfdir}/dnf
+
+Name:		dnf
+Version:	0.2.7
+Release:	1.git%{gitrev}%{?dist}
+Summary:	Package manager forked from Yum, using libsolv as a dependency resolver
+Group:		System Environment/Base
+# For a breakdown of the licensing, see PACKAGE-LICENSING
+License:	GPLv2+ and GPLv2 and GPL
+URL:		https://github.com/akozumpl/dnf
+Source0:	http://akozumpl.fedorapeople.org/dnf-%{gitrev}.tar.xz
+BuildArch:	noarch
+BuildRequires:	cmake
+BuildRequires:	python2
+Requires:	python-hawkey >= 0.2.6-1
+Requires:	crontabs
+
+%description
+Package manager forked from Yum, using libsolv as a dependency resolver.
+
+%prep
+%setup -q -n dnf
+
+%build
+%cmake .
+make %{?_smp_mflags}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+
+%files
+%doc AUTHORS README.md COPYING PACKAGE-LICENSING
+%{_bindir}/dnf
+%{python_sitelib}/dnf/
+%dir %{confdir}
+%config(noreplace) %{confdir}/dnf.conf
+%{_sysconfdir}/cron.hourly/dnf-makecache.cron
+
+%changelog
+* Mon Jul 16 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.7-1.git3f2389e
+- First Fedora rawhide build.
+
+* Wed Jul 11 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-11.gitb1f1c08
+- More licensing changes.
+
+* Mon Jul 9 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-10.git964faae
+- Licensing changes.
+
+* Tue Jun 21 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-9.gitb4aa5c1
+- More spec fixes.
+
+* Tue Jun 19 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-8.gitb4aa5c1
+- Fix rpmlint issues.
+
+* Wed Jun 13 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-6.git9d95cc5
+- Depend on the latest python-hawkey.
+
+* Tue Jun 12 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-4.git2791093
+- Fix missing cli/__init__.py
+
+* Fri Jun 8 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-3	.git365322d
+- Logging improvements.
+
+* Wed May 16 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.5-2.gitf594065
+- erase: remove dependants along with their dependency.
+
+* Mon May 14 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.4-3.gite3adb52
+- Use cron to prefetch metadata.
+- Always loads filelists (attempts to fix some resolving problems).
+
+* Mon May 7 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.3-1.gitbbc0801
+- Fix assert in hawkey's sack.c.
+
+* Fri May 4 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.2-6.git6787583
+- support plain 'dnf update'.
+- disable plugins.
+
+* Thu Apr 26 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.1-2.gitde732f5
+- Create 'etc/dnf/dnf.conf'.
+
+* Wed Apr 25 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.0-2.git70753dd
+- New version.
+
+* Thu Apr 12 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.1-0.git833c054
+- Initial package.
diff --git a/sources b/sources
index e69de29..3d58447 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+ba3a4691910b4e0cde21dfee9c863803  dnf-3f2389e.tar.xz


More information about the scm-commits mailing list