Update to 0.1.7
This commit is contained in:
parent
34b18a6bfa
commit
1a4aa329f4
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
/createrepo_c-0.1.5.tar.xz
|
/createrepo_c-0.1.5.tar.xz
|
||||||
|
/createrepo_c-0.1.7.tar.xz
|
||||||
|
@ -1,52 +1,97 @@
|
|||||||
Summary: Creates a common metadata repository
|
Summary: Creates a common metadata repository
|
||||||
Name: createrepo_c
|
Name: createrepo_c
|
||||||
Version: 0.1.5
|
Version: 0.1.7
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
License: LGPLv2
|
License: GPLv2
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
Source0: https://fedorahosted.org/releases/c/r/createrepo_c/%{name}-%{version}.tar.xz
|
Source0: https://fedorahosted.org/releases/c/r/createrepo_c/%{name}-%{version}.tar.xz
|
||||||
URL: https://fedorahosted.org/createrepo_c/
|
URL: https://fedorahosted.org/createrepo_c/
|
||||||
|
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
BuildRequires: glib2-devel >= 2.26.0
|
BuildRequires: glib2-devel >= 2.22.0
|
||||||
BuildRequires: file-devel
|
BuildRequires: file-devel
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
BuildRequires: bzip2-devel
|
BuildRequires: bzip2-devel
|
||||||
BuildRequires: rpm-devel >= 4.8.1
|
BuildRequires: rpm-devel >= 4.8.0
|
||||||
BuildRequires: libxml2-devel
|
BuildRequires: libxml2-devel
|
||||||
BuildRequires: libcurl-devel
|
BuildRequires: libcurl-devel
|
||||||
BuildRequires: expat-devel
|
BuildRequires: expat-devel
|
||||||
BuildRequires: xz-devel
|
BuildRequires: xz-devel
|
||||||
|
BuildRequires: sqlite-devel
|
||||||
|
BuildRequires: doxygen
|
||||||
|
Requires: %{name}-libs = %{version}-%{release}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
C implementation of Createrepo. This utility will generate a common
|
C implementation of Createrepo. This utility will generate a common
|
||||||
metadata repository from a directory of rpm packages
|
metadata repository from a directory of rpm packages
|
||||||
|
|
||||||
|
|
||||||
|
%package libs
|
||||||
|
Summary: Library for repodata manipulation
|
||||||
|
Group: Development/Libraries
|
||||||
|
|
||||||
|
%description libs
|
||||||
|
Libraries for applications using the createrepo_c library
|
||||||
|
for easy manipulation with a repodata.
|
||||||
|
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Library for repodata manipulation
|
||||||
|
Group: Development/Libraries
|
||||||
|
Requires: pkgconfig >= 1:0.14
|
||||||
|
Requires: %{name}-libs = %{version}-%{release}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
This package contains the createrepo_c C library and header files.
|
||||||
|
These development files are for easy manipulation with a repodata.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake .
|
%cmake .
|
||||||
make %{?_smp_mflags} RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
|
make %{?_smp_mflags} RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
|
||||||
|
make doc
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT/
|
make install DESTDIR=$RPM_BUILD_ROOT/
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -n %{name}-libs -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
%postun -n %{name}-libs -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc AUTHORS
|
|
||||||
%doc README
|
%doc README
|
||||||
%doc COPYING
|
%doc COPYING
|
||||||
%_mandir/man8/createrepo_c.8.*
|
%_mandir/man8/createrepo_c.8.*
|
||||||
%_mandir/man8/mergerepo_c.8.*
|
%_mandir/man8/mergerepo_c.8.*
|
||||||
%{_libdir}/libcreaterepo_c.so.*
|
%config%{_sysconfdir}/bash_completion.d/createrepo_c.bash
|
||||||
%{_bindir}/createrepo_c
|
%{_bindir}/createrepo_c
|
||||||
%{_bindir}/mergerepo_c
|
%{_bindir}/mergerepo_c
|
||||||
|
|
||||||
|
%files libs
|
||||||
|
%doc COPYING
|
||||||
|
%{_libdir}/libcreaterepo_c.so.*
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_libdir}/libcreaterepo_c.so
|
||||||
|
%{_libdir}/pkgconfig/createrepo_c.pc
|
||||||
|
%{_includedir}/createrepo_c/*
|
||||||
|
%doc COPYING
|
||||||
|
%doc doc/html
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jul 26 2012 Tomas Mlcoch <tmlcoch at redhat.com> - 0.1.7-1
|
||||||
|
- SQLite support
|
||||||
|
- Bash completion
|
||||||
|
- createrepo_c support for --compress-type param
|
||||||
|
- Improved logging
|
||||||
|
- Subpackages -devel and -libsi
|
||||||
|
- Relicensed to GPLv2
|
||||||
|
- Doxygen documentation in devel package
|
||||||
|
- README update
|
||||||
|
|
||||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.5-2
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.5-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user