SPECS: e2fsprogs.spec - separate -libs to kill main pkg dep from -...

glen glen at pld-linux.org
Tue Apr 29 23:24:11 CEST 2008


Author: glen                         Date: Tue Apr 29 21:24:11 2008 GMT
Module: SPECS                         Tag: HEAD
---- Log message:
- separate -libs to kill main pkg dep from -devel; rel 3

---- Files affected:
SPECS:
   e2fsprogs.spec (1.187 -> 1.188) 

---- Diffs:

================================================================
Index: SPECS/e2fsprogs.spec
diff -u SPECS/e2fsprogs.spec:1.187 SPECS/e2fsprogs.spec:1.188
--- SPECS/e2fsprogs.spec:1.187	Mon Feb 11 20:48:57 2008
+++ SPECS/e2fsprogs.spec	Tue Apr 29 23:24:05 2008
@@ -36,7 +36,7 @@
 Summary(zh_TW.UTF-8):	用於管理 ext2 檔案系統的工具程式。
 Name:		e2fsprogs
 Version:	1.40.6
-Release:	2
+Release:	3
 License:	GPL v2 (with LGPL v2 and BSD parts)
 Group:		Applications/System
 Source0:	http://dl.sourceforge.net/e2fsprogs/%{name}-%{version}.tar.gz
@@ -288,6 +288,13 @@
 创建测试范例)、 tune2fs(用于修改文件系统参数)和其它大多数核心
 ext2fs 文件系统实用程序。
 
+%package libs
+Summary:	ext2 filesystem-specific libraries
+Group:		Libraries
+
+%description libs
+ext2 filesystem-specific libraries.
+
 %package devel
 Summary:	ext2 filesystem-specific libraries and headers
 Summary(cs.UTF-8):	Knihovny a hlavičkové soubory pro systém souborů ext2
@@ -312,7 +319,7 @@
 Summary(zh_CN.UTF-8):	ext2 文件系统特有的静态库和头文件。
 Summary(zh_TW.UTF-8):	ext2 檔案系統特定的靜態函式庫與表頭。
 Group:		Development/Libraries
-Requires:	%{name} = %{version}-%{release}
+Requires:	%{name}-libs = %{version}-%{release}
 Requires:	libcom_err-devel = %{version}-%{release}
 Requires:	libuuid-devel = %{version}-%{release}
 Obsoletes:	libext2fs2-devel
@@ -562,6 +569,7 @@
 Summary(pl.UTF-8):	Sprawdzenie i naprawa linuksowego systemu plików
 Group:		Applications/System
 Requires:	libuuid = %{version}-%{release}
+Requires:	%{name}-libs = %{version}-%{release}
 
 %description -n fsck
 Check and repair a Linux file system.
@@ -688,13 +696,14 @@
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-%post
-/sbin/ldconfig
-[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
-
-%postun
-/sbin/ldconfig
-[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
+%post -p /sbin/postshell
+-/usr/sbin/fix-info-dir -c %{_infodir}
+
+%postun -p /sbin/postshell
+-/usr/sbin/fix-info-dir -c %{_infodir}
+
+%post libs -p /sbin/ldconfig
+%postun libs -p /sbin/ldconfig
 
 %post	devel -p /sbin/postshell
 -/usr/sbin/fix-info-dir -c %{_infodir}
@@ -752,14 +761,6 @@
 %attr(755,root,root) %{_bindir}/mk_cmds
 %attr(755,root,root) %{_sbindir}/filefrag
 %attr(755,root,root) %{_sbindir}/mklost+found
-%if %{without allstatic}
-%attr(755,root,root) /%{_lib}/libe2p.so.*.*
-%attr(755,root,root) %ghost /%{_lib}/libe2p.so.2
-%attr(755,root,root) /%{_lib}/libext2fs.so.*.*
-%attr(755,root,root) %ghost /%{_lib}/libext2fs.so.2
-%attr(755,root,root) /%{_lib}/libss.so.*.*
-%attr(755,root,root) %ghost /%{_lib}/libss.so.2
-%endif
 %attr(755,root,root) %{_libdir}/e2initrd_helper
 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/e2fsck.conf
 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/mke2fs.conf
@@ -861,6 +862,18 @@
 %{_datadir}/ss
 %{_infodir}/e2compr.info*
 
+%files libs
+%if %{without allstatic}
+%attr(755,root,root) /%{_lib}/libblkid.so.*.*
+%attr(755,root,root) %ghost /%{_lib}/libblkid.so.1
+%attr(755,root,root) /%{_lib}/libe2p.so.*.*
+%attr(755,root,root) %ghost /%{_lib}/libe2p.so.2
+%attr(755,root,root) /%{_lib}/libext2fs.so.*.*
+%attr(755,root,root) %ghost /%{_lib}/libext2fs.so.2
+%attr(755,root,root) /%{_lib}/libss.so.*.*
+%attr(755,root,root) %ghost /%{_lib}/libss.so.2
+%endif
+
 %files devel
 %defattr(644,root,root,755)
 %doc doc/libblkid.txt
@@ -944,10 +957,6 @@
 %files -n fsck
 %defattr(644,root,root,755)
 %attr(755,root,root) /sbin/fsck
-%if %{without allstatic}
-%attr(755,root,root) /%{_lib}/libblkid.so.*.*
-%attr(755,root,root) %ghost /%{_lib}/libblkid.so.1
-%endif
 %{_mandir}/man8/fsck.8*
 %lang(it) %{_mandir}/it/man8/fsck.8*
 %lang(ja) %{_mandir}/ja/man8/fsck.8*
@@ -966,6 +975,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.188  2008-04-29 21:24:05  glen
+- separate -libs to kill main pkg dep from -devel; rel 3
+
 Revision 1.187  2008-02-11 19:48:57  glen
 - rel 2
 
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/e2fsprogs.spec?r1=1.187&r2=1.188&f=u



More information about the pld-cvs-commit mailing list