Update to 0.3.3
- Switch to the meson build system
This commit is contained in:
parent
4f650ca9c4
commit
c284fe4e87
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,3 +2,4 @@
|
|||||||
/gom-0.3.0.tar.xz
|
/gom-0.3.0.tar.xz
|
||||||
/gom-0.3.1.tar.xz
|
/gom-0.3.1.tar.xz
|
||||||
/gom-0.3.2.tar.xz
|
/gom-0.3.2.tar.xz
|
||||||
|
/gom-0.3.3.tar.xz
|
||||||
|
27
gom.spec
27
gom.spec
@ -1,6 +1,6 @@
|
|||||||
Name: gom
|
Name: gom
|
||||||
Version: 0.3.2
|
Version: 0.3.3
|
||||||
Release: 4%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: GObject to SQLite object mapper library
|
Summary: GObject to SQLite object mapper library
|
||||||
|
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
@ -8,11 +8,14 @@ URL: https://wiki.gnome.org/Projects/Gom
|
|||||||
Source0: https://download.gnome.org/sources/gom/0.3/gom-%{version}.tar.xz
|
Source0: https://download.gnome.org/sources/gom/0.3/gom-%{version}.tar.xz
|
||||||
|
|
||||||
BuildRequires: gobject-introspection-devel
|
BuildRequires: gobject-introspection-devel
|
||||||
BuildRequires: intltool
|
BuildRequires: gtk-doc
|
||||||
|
BuildRequires: meson
|
||||||
BuildRequires: pkgconfig(gdk-pixbuf-2.0)
|
BuildRequires: pkgconfig(gdk-pixbuf-2.0)
|
||||||
BuildRequires: pkgconfig(gio-2.0)
|
BuildRequires: pkgconfig(gio-2.0)
|
||||||
BuildRequires: pkgconfig(gobject-2.0)
|
BuildRequires: pkgconfig(gobject-2.0)
|
||||||
BuildRequires: pkgconfig(sqlite3)
|
BuildRequires: pkgconfig(sqlite3)
|
||||||
|
BuildRequires: pygobject3-devel
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Gom provides an object mapper from GObjects to SQLite. It helps you write
|
Gom provides an object mapper from GObjects to SQLite. It helps you write
|
||||||
@ -31,23 +34,23 @@ developing applications that use %{name}.
|
|||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static
|
%meson -Denable-gtk-doc=true
|
||||||
make %{?_smp_mflags}
|
%meson_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%meson_install
|
||||||
find $RPM_BUILD_ROOT -name '*.la' -delete
|
|
||||||
|
|
||||||
%find_lang gom
|
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%files -f gom.lang
|
%files
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%{_libdir}/girepository-1.0/Gom-1.0.typelib
|
%{_libdir}/girepository-1.0/Gom-1.0.typelib
|
||||||
%{_libdir}/libgom-1.0.so.0*
|
%{_libdir}/libgom-1.0.so.0*
|
||||||
|
%dir %{python3_sitearch}/gi
|
||||||
|
%dir %{python3_sitearch}/gi/overrides
|
||||||
|
%{python3_sitearch}/gi/overrides/*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_includedir}/gom-1.0/
|
%{_includedir}/gom-1.0/
|
||||||
@ -57,6 +60,10 @@ find $RPM_BUILD_ROOT -name '*.la' -delete
|
|||||||
%doc %{_datadir}/gtk-doc/
|
%doc %{_datadir}/gtk-doc/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jul 27 2017 Kalev Lember <klember@redhat.com> - 0.3.3-1
|
||||||
|
- Update to 0.3.3
|
||||||
|
- Switch to the meson build system
|
||||||
|
|
||||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.2-4
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.2-4
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user