Compare commits

...
Sign in to create a new pull request.

24 commits

Author SHA1 Message Date
Richard Hughes
6f5b410f07 This has been obsoleted by hawkey and librepo 2013-12-11 15:50:43 +00:00
Dennis Gilmore
c7af0200c1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild 2013-08-04 04:52:26 -05:00
Richard Hughes
d2c4f88c3e New upstream release 2013-05-08 09:18:36 +01:00
Dennis Gilmore
4f8e63e0cf - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild 2013-02-14 22:20:29 -06:00
Tomas Bzatek
f1e22a491f Rebuilt for new libarchive 2013-01-17 14:24:18 +01:00
Richard Hughes
8d95d49eb2 New upstream release
- Don't fail 'zif refresh-cache' if a repo is unavailable
- Fix 'zif remove-with-deps' to not remove user-action packages
- Set the correct basearch for ARM processors
2013-01-08 09:43:22 +00:00
Richard Hughes
0d1d352a58 New upstream release
- Cold startup is now much quicker. Typically this makes the command
  line 'zif' executable 80% faster to startup.
- Store the metdata checksum in an xattr to speed up checking metadata
- Turn off header validation when loading the rpmdb
2012-11-25 12:38:49 +00:00
Richard Hughes
d3d4c9b3ff New upstream release
- Enable any debuginfo repos if the user searches for a debuginfo package
- Fix a lot of GObject Introspection tags and add a small python example
- Support the skip_if_unavailable config option
2012-10-26 10:26:30 +01:00
Richard Hughes
a91b21aaf1 New upstream release
- Import all the GPG keys found from gpgkey in a repo file
2012-09-21 10:39:26 +01:00
Richard Hughes
3ac045fc6b New upstream release with new soname, rebuilds required. 2012-08-06 11:17:20 +01:00
Dennis Gilmore
4b64214a26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild 2012-07-22 03:19:03 -05:00
Richard Hughes
b0b25dde3f New upstream release with new soname, rebuilds required. 2012-06-02 20:16:08 +01:00
Richard Hughes
807fe28deb New upstream release 2012-04-11 15:06:23 +01:00
Richard Hughes
74fcd191df Rebuild for new librpm. 2012-03-26 13:12:17 +01:00
Richard Hughes
773bd2f993 New upstream release 2012-02-22 17:03:17 +00:00
Richard Hughes
f8fcc07c27 New upstream release
- Check the mirrorlist contains at least one non-comment or empty line
- Fix getting the update details for packages that installed multiarch
- Fix 'zif update kernel' to not remove the running version
2012-02-03 10:58:07 +00:00
Tomas Bzatek
73447ef5d2 Rebuilt for new libarchive 2012-01-26 11:53:01 +01:00
Dennis Gilmore
e7fe2a08f6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild 2012-01-14 03:36:59 -06:00
Alex Lancaster
fcceefe87f Rebuild for new libarchive soname bump 2011-11-15 01:52:13 -05:00
Richard Hughes
c6e4c5cd63 New upstream release with a few bugfixes and new features. 2011-11-01 10:24:42 +00:00
Richard Hughes
89577fde2b New upstream release with a few bugfixes and new features. 2011-10-03 11:07:47 +01:00
Richard Hughes
87a911925a New upstream release with a few bugfixes and new features.
The 'zif' binary has been split out into a -tools subpackage
2011-09-23 16:31:32 +01:00
Richard Hughes
7948a68ace New upstream release with a few bugfixes and new features. 2011-09-05 14:10:52 +01:00
Richard Hughes
c185605f92 New upstream release with a few bugfixes and new features. 2011-08-01 10:08:44 +01:00
4 changed files with 1 additions and 140 deletions

8
.gitignore vendored
View file

@ -1,8 +0,0 @@
/zif-0.1.0.tar.gz
/zif-0.1.1.tar.gz
/zif-0.1.2.tar.gz
/zif-0.1.3.tar.gz
/zif-0.1.4.tar.gz
/zif-0.1.5.tar.gz
/zif-0.2.0.tar.gz
/zif-0.2.1.tar.gz

1
dead.package Normal file
View file

@ -0,0 +1 @@
This has been obsoleted by hawkey and librepo

View file

@ -1 +0,0 @@
cba692ac3547c4eab874471119336f96 zif-0.2.1.tar.gz

131
zif.spec
View file

@ -1,131 +0,0 @@
Summary: Simple wrapper for rpm and the Fedora package metadata
Name: zif
Version: 0.2.1
Release: 1%{?dist}
License: GPLv2+
URL: http://github.com/hughsie/zif
Source0: http://www.packagekit.org/releases/%{name}-%{version}.tar.gz
BuildRequires: glib2-devel >= 2.16.1
BuildRequires: rpm-devel
BuildRequires: sqlite-devel
BuildRequires: libsoup-devel
BuildRequires: libtool
BuildRequires: libarchive-devel
BuildRequires: docbook-utils
BuildRequires: gnome-doc-utils
BuildRequires: gtk-doc
BuildRequires: bzip2-devel
BuildRequires: zlib-devel
BuildRequires: gpgme-devel
BuildRequires: intltool
BuildRequires: gettext
%description
Zif is a simple yum-compatible library that provides read-write
access to the rpm database and the Fedora metadata for PackageKit.
Zif is not designed as a replacement to yum, nor to be used by end users.
%package devel
Summary: GLib Libraries and headers for zif
Requires: %{name} = %{version}-%{release}
Requires: bzip2-devel
Requires: zlib-devel
Requires: gpgme-devel
%description devel
GLib headers and libraries for zif.
%prep
%setup -q
%build
%configure \
--enable-gtk-doc \
--disable-static \
--disable-dependency-tracking
make %{?_smp_mflags}
%install
make install DESTDIR=$RPM_BUILD_ROOT
rm -f $RPM_BUILD_ROOT%{_libdir}/libzif*.la
%find_lang Zif
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files -f Zif.lang
%defattr(-,root,root,-)
%doc README AUTHORS NEWS COPYING
%{_bindir}/zif
%{_libdir}/*libzif*.so.*
%{_mandir}/man1/*.1.gz
%dir %{_sysconfdir}/zif
%config %{_sysconfdir}/bash_completion.d/*-completion.bash
%config %{_sysconfdir}/zif/zif.conf
%files devel
%defattr(-,root,root,-)
%{_libdir}/libzif*.so
%{_libdir}/pkgconfig/zif.pc
%dir %{_includedir}/libzif
%{_includedir}/libzif/*.h
%{_datadir}/gtk-doc
%changelog
* Mon Jul 04 2011 Richard Hughes <richard@hughsie.com> 0.2.1-1
- New upstream release with many bugfixes and performance improvements.
* Tue Jun 07 2011 Richard Hughes <richard@hughsie.com> 0.2.0-2
- Actually upload the new sources.
* Tue Jun 07 2011 Richard Hughes <richard@hughsie.com> 0.2.0-1
- New upstream release with many bugfixes and performance improvements.
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Mon Jan 24 2011 Richard Hughes <richard@hughsie.com> 0.1.5-1
- New upstream release with many bugfixes and performance improvements.
* Wed Jan 19 2011 Matthias Clasen <mclasen@redhat.com> 0.1.4-2
- Rebuild against new rpm
* Fri Jan 07 2011 Richard Hughes <richard@hughsie.com> 0.1.4-1
- New upstream release with many bugfixes and performance improvements.
* Mon Dec 13 2010 Richard Hughes <richard@hughsie.com> 0.1.3-3
- Make zif-devel BR gpgme-devel to fix PackageKit compile in mock.
* Mon Dec 13 2010 Richard Hughes <richard@hughsie.com> 0.1.3-2
- Backport a patch to fix the compile of external applications which use
libzif and complain about a missing ZifDelta header.
* Mon Dec 13 2010 Richard Hughes <richard@hughsie.com> 0.1.3-1
- New upstream release with many bugfixes and performance improvements.
* Mon Nov 01 2010 Richard Hughes <richard@hughsie.com> 0.1.2-1
- New upstream release with many bugfixes and performance improvements.
* Tue Oct 05 2010 Parag Nemade <paragn AT fedoraproject.org> 0.1.1-2
- drop the ldconfig and pkgconfig as a Requires.
* Mon Oct 04 2010 Richard Hughes <richard@hughsie.com> 0.1.1-1
- New upstream release with many bugfixes and performance improvements.
* Fri Oct 01 2010 Richard Hughes <richard@hughsie.com> 0.1.0-4
- Take ownership of the gtk-doc directory, and use another macro.
* Fri Oct 01 2010 Richard Hughes <richard@hughsie.com> 0.1.0-3
- Remove group from devel subpackage, and make the description better.
* Fri Oct 01 2010 Richard Hughes <richard@hughsie.com> 0.1.0-2
- Address some review comments, many thanks.
* Wed Sep 08 2010 Richard Hughes <richard@hughsie.com> 0.1.0-1
- Initial package for review.