133 lines
4.5 KiB
RPMSpec
133 lines
4.5 KiB
RPMSpec
Name: libbytesize
|
|
Version: 0.3
|
|
Release: 3%{?dist}
|
|
Summary: A library for working with sizes in bytes
|
|
License: LGPLv2+
|
|
URL: https://github.com/rhinstaller/libbytesize
|
|
Source0: https://github.com/rhinstaller/libbytesize/archive/%{name}-%{version}.tar.gz
|
|
|
|
Patch0: size_instances_hashable.patch
|
|
Patch1: locale_agnostic_dec.patch
|
|
|
|
%define realname bytesize
|
|
|
|
BuildRequires: gmp-devel
|
|
BuildRequires: mpfr-devel
|
|
BuildRequires: pcre-devel
|
|
BuildRequires: gettext-devel
|
|
BuildRequires: python-devel
|
|
BuildRequires: python3-devel
|
|
BuildRequires: gtk-doc
|
|
|
|
%description
|
|
The libbytesize is a C library with GObject introspection support that
|
|
facilitates work with sizes in bytes. Be it parsing the input from users or
|
|
producing a nice human readable representation of a size in bytes this library
|
|
takes localization into account. It also provides support for sizes bigger than
|
|
MAXUINT64.
|
|
|
|
%package devel
|
|
Summary: Development files for libbytesize
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
This package contains header files and pkg-config files needed for development
|
|
with the libbytesize library.
|
|
|
|
%package -n python-%{realname}
|
|
Summary: Python 2 bindings for libbytesize
|
|
Provides: python2-%{realname} = %{version}-%{release}
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
Requires: python-six
|
|
|
|
%description -n python-%{realname}
|
|
This package contains Python 2 bindings for libbytesize making the use of
|
|
the library from Python 2 easier and more convenient.
|
|
|
|
%package -n python3-%{realname}
|
|
Summary: Python 3 bindings for libbytesize
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
Requires: python3-six
|
|
|
|
%description -n python3-%{realname}
|
|
This package contains Python 3 bindings for libbytesize making the use of
|
|
the library from Python 3 easier and more convenient.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{version}
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
|
|
%build
|
|
%configure
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%install
|
|
%{make_install}
|
|
find %{buildroot} -type f -name "*.la" | xargs %{__rm}
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%doc README.rst
|
|
%{!?_licensedir:%global license %%doc}
|
|
%license LICENSE
|
|
%{_libdir}/libbytesize.so.*
|
|
|
|
%files devel
|
|
%{_libdir}/libbytesize.so
|
|
%dir %{_includedir}/bytesize
|
|
%{_includedir}/bytesize/bs_size.h
|
|
%{_libdir}/pkgconfig/bytesize.pc
|
|
%{_datadir}/gtk-doc/html/libbytesize
|
|
|
|
%files -n python-%{realname}
|
|
%{python2_sitearch}/bytesize/*
|
|
|
|
%files -n python3-%{realname}
|
|
%{python3_sitearch}/bytesize/bytesize.py
|
|
%{python3_sitearch}/bytesize/__pycache__/bytesize.*
|
|
|
|
%changelog
|
|
* Wed Mar 9 2016 Vratislav Podzimek <vpodzime@redhat.com> - 0.3-3
|
|
- Make sure we pass a locale-agnostic string to Decimal() (vpodzime)
|
|
|
|
* Mon Mar 7 2016 Vratislav Podzimek <vpodzime@redhat.com> - 0.3-2
|
|
- Make Size instances hashable (vpodzime)
|
|
|
|
* Fri Feb 26 2016 Vratislav Podzimek <vpodzime@redhat.com> - 0.3-1
|
|
- Packaging changes related to getting rid of GLib/GObject (vpodzime)
|
|
- Adapt the python bindings and tests (vpodzime)
|
|
- Get rid of GObject and GLib (vpodzime)
|
|
- Define the __divmod__ method even for not dividing by Size (vpodzime)
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
* Fri Oct 23 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.2-1
|
|
- Distribute the tests for overrides (vpodzime)
|
|
- Fix the rpmlog target (vpodzime)
|
|
- Respect the signs when doing division (vpodzime)
|
|
- Add two more internal methods that may be required (vpodzime)
|
|
- Do not pass negative numbers as guint64 when comparing with negative ints (vpodzime)
|
|
- Round toward zero when converting bytes from float to int (vpodzime)
|
|
- Make sure we return Size if doing operations with big integers (vpodzime)
|
|
- Implement the __divmod__() method (vpodzime)
|
|
- Do not try to convert negative int to an unsigned int when multiplying (vpodzime)
|
|
- Fix and test the __deepcopy__ method (vpodzime)
|
|
- Implement the evaluation of Size instance as a bool value (vpodzime)
|
|
- Fix some issues in comparison functions and add tests (vpodzime)
|
|
- Add a function for getting string representation of a unit (vpodzime)
|
|
- Hook the overrides tests to the 'test' target (vpodzime)
|
|
- Merge pull request #4 from japokorn/master-tests_03_python_override (vpodzime)
|
|
- Added tests for Python override (japokorn)
|
|
- Make sure our tests don't get broken by installed overrides (vpodzime)
|
|
|
|
* Wed Oct 07 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.1-1
|
|
- Initial release
|