From 6e68dde21c6aa3f199203d6cc2a4bec57ff39ed8 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Mar 05 2015 02:11:39 +0000 Subject: import libgsystem-2015.1-1.atomic.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e5945a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/libgsystem-2015.1.tar.xz diff --git a/.libgsystem.metadata b/.libgsystem.metadata new file mode 100644 index 0000000..b13eaee --- /dev/null +++ b/.libgsystem.metadata @@ -0,0 +1 @@ +9b14593c87a386d2d3c01490ba126047aa6eba30 SOURCES/libgsystem-2015.1.tar.xz diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/libgsystem.spec b/SPECS/libgsystem.spec new file mode 100644 index 0000000..a835246 --- /dev/null +++ b/SPECS/libgsystem.spec @@ -0,0 +1,84 @@ +Name: libgsystem +Version: 2015.1 +Release: 1.atomic%{?dist} +Summary: GIO-based library with Unix/Linux specific API + +License: LGPLv2+ +URL: https://wiki.gnome.org/Projects/LibGSystem +Source0: http://ftp.gnome.org/pub/GNOME/sources/libgsystem/%{version}/libgsystem-%{version}.tar.xz + +# We always run autogen.sh +BuildRequires: autoconf automake libtool +# For docs +BuildRequires: gtk-doc +# Core requirements +BuildRequires: pkgconfig(gio-unix-2.0) +BuildRequires: libattr-devel +BuildRequires: gobject-introspection-devel + +%description +LibGSystem is a GIO-based library targeted primarily +for use by operating system components. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: gobject-introspection-devel + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%prep +%setup -q + + +%build +env NOCONFIGURE=1 ./autogen.sh +%configure --disable-static +make %{?_smp_mflags} + + +%install +%make_install +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%check +make check + +%files +%doc README COPYING +%{_libdir}/%{name}.so.* +%{_libdir}/girepository-*/*.typelib + +%files devel +%{_includedir}/* +%{_libdir}/%{name}.so +%{_libdir}/pkgconfig/%{name}.pc +%{_datadir}/gir-*/*.gir + + +%changelog +* Thu Jan 08 2015 Colin Walters - 2015.1-1.atomic +- New upstream release + +* Fri Dec 19 2014 Colin Walters - 2014.3-1.atomic +- New upstream release +- Add check section + +* Fri Dec 19 2014 Colin Walters - 2014.2-3.atomic +- Rebuild for 7.1 + +* Tue Apr 01 2014 Colin Walters +- New upstream version + +* Wed Mar 12 2014 Colin Walters - 2014.1-2 +- Move typelib into main package, where it should be + +* Tue Feb 18 2014 Patrick Uiterwijk - 2014.1-1 +- Initial packaging