Update package name to match upstream 1.0_post
authorAnas Nashif <anas.nashif@intel.com>
Sat, 16 Jun 2012 12:22:27 +0000 (13:22 +0100)
committerAnas Nashif <anas.nashif@intel.com>
Sat, 16 Jun 2012 14:20:26 +0000 (15:20 +0100)
- clean spec with spec-cleaner
- provide pkgconfig for compatibility

Change-Id: I1f6c30ec1e98e559306cf725420147fb2423dec3

packaging/pkg-config.changes [new file with mode: 0644]
packaging/pkg-config.manifest [moved from packaging/pkgconfig.manifest with 100% similarity]
packaging/pkg-config.spec [new file with mode: 0644]
packaging/pkgconfig.spec [deleted file]

diff --git a/packaging/pkg-config.changes b/packaging/pkg-config.changes
new file mode 100644 (file)
index 0000000..5c1f79f
--- /dev/null
@@ -0,0 +1,23 @@
+* Sat Jun 16 2012 Anas Nashif <anas.nashif@intel.com> 6cd2246
+- Update package name to match upstream
+
+* Wed May 30 2012 Ryan Ware <ryan.r.ware@intel.com> 95195a5
+- Add default Smack manifest for pkgconfig.spec
+
+* Wed May 23 2012 Kevin Wang <kevin.a.wang@intel.com> 712881a
+- Merge "clean tarball setup path to facilitate hudson automation submission"
+
+* Sat May 19 2012 Zhang Qiang <qiang.z.zhang@intel.com> 52df729
+- clean tarball setup path to facilitate hudson automation submission
+
+* Fri May 18 2012 Yang Lin <lin.a.yang@intel.com> f953be4
+- clean tarball setup path to facilitate hudson automation submission
+
+* Sun Apr 29 2012 Kim Kibum <kb0929.kim@samsung.com> 8c303a8
+- upload tizen1.0 source
+
+* Fri Jan 06 2012 Kibum Kim <kb0929.kim@samsung.com> eade8e0
+- Git init
+[ Eunkyoung Kim ]
+- Initial empty repository
+
diff --git a/packaging/pkg-config.spec b/packaging/pkg-config.spec
new file mode 100644 (file)
index 0000000..0a541a6
--- /dev/null
@@ -0,0 +1,44 @@
+Name:           pkg-config
+Version:        0.25
+Release:        3
+License:        GPL-2.0+
+Summary:        A tool for determining compilation options
+Url:            http://pkgconfig.freedesktop.org
+Group:          Development/Tools
+Source:         http://www.freedesktop.org/software/pkgconfig/releases/%{name}-%{version}.tar.gz
+Source1001:     %{name}.manifest
+BuildRequires:  popt-devel
+
+Provides:       pkgconfig(pkg-config) = %{version}
+Provides:       pkgconfig
+
+%description
+The pkgconfig tool determines compilation options. For each required
+library, it reads the configuration file and outputs the necessary
+compiler and linker flags.
+
+%prep
+%setup -q
+
+%build
+cp %{SOURCE1001} .
+%configure --disable-shared \
+        --with-pc-path=%{_libdir}/pkgconfig:%{_datadir}/pkgconfig
+make
+
+%install
+%make_install
+mkdir -p %{buildroot}%{_libdir}/pkgconfig
+mkdir -p %{buildroot}%{_datadir}/pkgconfig
+
+# we include this below, already
+rm -rf %{buildroot}%{_datadir}/doc/pkg-config
+
+%remove_docs
+
+%files
+%manifest %{name}.manifest
+%{_bindir}/*
+%{_libdir}/pkgconfig
+%{_datadir}/pkgconfig
+%{_datadir}/aclocal/*
diff --git a/packaging/pkgconfig.spec b/packaging/pkgconfig.spec
deleted file mode 100644 (file)
index e7898d5..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-Summary: A tool for determining compilation options
-Name: pkgconfig
-Version: 0.25
-Release: 2.2
-License: GPLv2+
-URL: http://pkgconfig.freedesktop.org
-Group: Development/Tools
-Source:  http://www.freedesktop.org/software/pkgconfig/releases/pkg-config-%{version}.tar.gz
-Source1001: packaging/pkgconfig.manifest 
-#BuildRequires: glib2-devel
-BuildRequires: popt-devel
-
-Provides: pkgconfig(pkg-config) = %{version}
-
-%description
-The pkgconfig tool determines compilation options. For each required
-library, it reads the configuration file and outputs the necessary
-compiler and linker flags.
-
-%prep
-%setup -n %{name}-%{version} -q
-
-%build
-cp %{SOURCE1001} .
-%configure \
-        --disable-shared \
-        --with-pc-path=%{_libdir}/pkgconfig:%{_datadir}/pkgconfig
-make
-
-%install
-make install DESTDIR=$RPM_BUILD_ROOT
-mkdir -p $RPM_BUILD_ROOT%{_libdir}/pkgconfig
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/pkgconfig
-
-# we include this below, already
-rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/pkg-config
-
-%remove_docs
-
-
-%files
-%manifest pkgconfig.manifest
-%defattr(-,root,root)
-%{_bindir}/*
-%{_libdir}/pkgconfig
-%{_datadir}/pkgconfig
-%{_datadir}/aclocal/*