add packaging 43/5543/1 accepted/tizen/ivi/genivi accepted/tizen/ivi/stable accepted/tizen_3.0.2014.q3_common accepted/tizen_3.0.m14.3_ivi accepted/tizen_3.0_ivi accepted/tizen_common accepted/tizen_generic accepted/tizen_ivi accepted/tizen_mobile accepted/tizen_tv accepted/tizen_wearable tizen tizen_3.0.2014.q3_common tizen_3.0.2014.q4_common tizen_3.0.2015.q1_common tizen_3.0.2015.q2_common tizen_3.0.m14.2_ivi tizen_3.0.m14.3_ivi tizen_3.0.m1_mobile tizen_3.0.m1_tv tizen_3.0_ivi tizen_ivi_genivi accepted/tizen/20130708.114640 accepted/tizen/20130912.092203 accepted/tizen/20130912.095831 accepted/tizen/20130912.101317 accepted/tizen/20130912.145655 accepted/tizen/20130912.191842 accepted/tizen/20130912.195944 accepted/tizen/base/20151223.052310 accepted/tizen/ivi/genivi/20140131.034853 ivi_oct_m2 submit/tizen/20130708.121510 submit/tizen/20130912.075913 submit/tizen/20130912.090222 submit/tizen_base/20151223.111111 submit/tizen_base/20151223.111112 submit/tizen_common/20151023.083358 submit/tizen_common/20151026.085049 submit/tizen_ivi_genivi/20140131.025758 submit/tizen_mobile/20141120.000000 tizen_3.0.2014.q3_common_release tizen_3.0.m14.2_ivi_release tizen_3.0.m14.3_ivi_release tizen_3.0.m1_mobile_release tizen_3.0.m1_tv_release tizen_3.0.m2.a1_mobile_release tizen_3.0.m2.a1_tv_release tizen_3.0_ivi_release
authorAnas Nashif <anas.nashif@intel.com>
Sun, 7 Jul 2013 21:41:11 +0000 (17:41 -0400)
committerAnas Nashif <anas.nashif@intel.com>
Sun, 7 Jul 2013 21:41:38 +0000 (17:41 -0400)
.gbs.conf [new file with mode: 0644]
packaging/isl.changes [new file with mode: 0644]
packaging/isl.spec [new file with mode: 0644]

diff --git a/.gbs.conf b/.gbs.conf
new file mode 100644 (file)
index 0000000..b07108c
--- /dev/null
+++ b/.gbs.conf
@@ -0,0 +1,3 @@
+[general]
+upstream_branch = upstream
+upstream_tag = isl-${upstreamversion}
diff --git a/packaging/isl.changes b/packaging/isl.changes
new file mode 100644 (file)
index 0000000..18f804e
--- /dev/null
@@ -0,0 +1,3 @@
+* Sun Jul 07 2013 Anas Nashif <anas.nashif@intel.com> isl-0.12@1770308
+- add packaging
+
diff --git a/packaging/isl.spec b/packaging/isl.spec
new file mode 100644 (file)
index 0000000..50a4ad6
--- /dev/null
@@ -0,0 +1,59 @@
+Name:           isl
+Version:        0.12
+Release:        0
+License:        MIT
+Summary:        Integer Set Library
+Url:            http://www.kotnet.org/~skimo/isl/
+Group:          Development/Toolchain
+Source:         isl-%{version}.tar.bz2
+BuildRequires:  gmp-devel
+
+%description
+ISL is a library for manipulating sets and relations of integer points
+bounded by linear constraints.
+It is used by Cloog and the GCC Graphite optimization framework.
+
+%package devel
+Summary:        Development tools for ISL
+Requires:       libisl = %{version}
+
+%description devel
+Development tools and headers for the ISL.
+
+%package -n libisl
+Summary:        The ISL shared library
+
+%description -n libisl
+The shared library for the ISL.
+
+%prep
+%setup -q
+
+%build
+%autogen
+%configure
+make %{?_smp_mflags}
+
+%check
+make %{?_smp_mflags} check
+
+%install
+%make_install
+rm -f %{buildroot}%{_libdir}/libisl.so.*-gdb.py
+
+%post -n libisl -p /sbin/ldconfig
+
+%postun -n libisl -p /sbin/ldconfig
+
+%files -n libisl
+%defattr(-,root,root,-)
+%license LICENSE
+%{_libdir}/libisl.so.*
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/isl
+%{_libdir}/libisl.so
+%{_libdir}/pkgconfig/*.pc
+
+%changelog