[eiciel] 0.9.8

Chris Weyl cweyl at fedoraproject.org
Wed Apr 27 22:47:17 UTC 2011


commit 3a1c8d628f3fb05e71bf0f7b532b999dac6d6f82
Author: Chris Weyl <cweyl at alumni.drew.edu>
Date:   Wed Apr 27 14:59:47 2011 -0700

    0.9.8

 .gitignore                  |    1 +
 eiciel.spec                 |   26 ++++++++++++++++++--------
 fedora_sys_usergroups.patch |   20 ++++++++++----------
 sources                     |    2 +-
 4 files changed, 30 insertions(+), 19 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index dc65282..f9935a3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 eiciel-0.9.6.1.tar.bz2
+/eiciel-0.9.8.tar.bz2
diff --git a/eiciel.spec b/eiciel.spec
index b091f61..8e7c6ab 100644
--- a/eiciel.spec
+++ b/eiciel.spec
@@ -1,15 +1,15 @@
 Name:           eiciel
-Version:        0.9.6.1
-Release:        5%{?dist}
+Version:        0.9.8
+Release:        1%{?dist}
 Summary:        Graphical access control list (ACL) editor
 Group:          Applications/System
 License:        GPLv2+
-URL:            http://rofi.pinchito.com/eiciel
-Source0:        http://rofi.pinchito.com/eiciel/download/%{name}-%{version}.tar.bz2
+URL:            http://rofi.roger-ferrer.org/eiciel
+Source0:        http://rofi.roger-ferrer.org/eiciel/download/eiciel-%{version}.tar.bz2
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
-# change system user/groups upper bound from 500 to 1000.  Works for fedora; 
-# anyone wishing to submit a "real" patch that involves querying libuser 
+# change system user/groups upper bound from 500 to 1000.  Works for fedora;
+# anyone wishing to submit a "real" patch that involves querying libuser
 # directly is MORE than welcome to do so :)
 Patch0:		fedora_sys_usergroups.patch
 
@@ -18,9 +18,15 @@ BuildRequires:  desktop-file-utils
 
 %define ext_dir %(eval "pkg-config --variable=extensiondir libnautilus-extension")
 
+# don't "provide" a private shlib
+%{?filter_setup:
+%filter_provides_in %{ext_dir}/.*\.so$
+%filter_setup
+}
+
 %description
-Graphical editor for access control lists (ACL) 
-and extended attributes (XATTR), either as an 
+Graphical editor for access control lists (ACL)
+and extended attributes (XATTR), either as an
 extension within Nautilus, or as a standalone utility.
 
 
@@ -80,6 +86,10 @@ rm -rf %{buildroot}
 
 
 %changelog
+* Wed Apr 27 2011 Chris Weyl <cweyl at alumni.drew.edu> 0.9.8-1
+- update to 0.9.8
+- filter out our private plugin shlib from rpm metadata provides
+
 * Fri Feb 11 2011 Matthias Clasen <mclasen at redhat.com> - 0.9.6.1-5
 - Rebuild against newer gtk
 
diff --git a/fedora_sys_usergroups.patch b/fedora_sys_usergroups.patch
index ba2184d..b1a7601 100644
--- a/fedora_sys_usergroups.patch
+++ b/fedora_sys_usergroups.patch
@@ -1,20 +1,20 @@
---- src/eiciel_main_controler.cpp.orig	2008-05-24 12:59:13.430750975 -0700
-+++ src/eiciel_main_controler.cpp	2008-05-24 13:03:36.936000525 -0700
-@@ -50,7 +50,7 @@
+--- src/eiciel_main_controller.cpp.orig	2011-04-27 15:19:07.450533036 -0700
++++ src/eiciel_main_controller.cpp	2011-04-27 15:19:34.563281597 -0700
+@@ -51,7 +51,7 @@
  	setpwent();
  	while((u = getpwent()) != NULL)
  	{
--		if (mostrarSystem || (u->pw_uid >= 1000))
-+		if (mostrarSystem || (u->pw_uid >= 500))
+-		if (_show_system || (u->pw_uid >= 1000))
++		if (_show_system || (u->pw_uid >= 500))
  		{
- 			llistatUsuaris.insert(u->pw_name);
+ 			_users_list.insert(u->pw_name);
  		}
-@@ -63,7 +63,7 @@
+@@ -64,7 +64,7 @@
  	setgrent();
  	while ((g = getgrent()) != NULL)
  	{
--		if (mostrarSystem || (g->gr_gid >= 1000))
-+		if (mostrarSystem || (g->gr_gid >= 500))
+-		if (_show_system || (g->gr_gid >= 1000))
++		if (_show_system || (g->gr_gid >= 500))
  		{
- 			llistatGrups.insert(g->gr_name);
+ 			_groups_list.insert(g->gr_name);
  		}
diff --git a/sources b/sources
index b89b2c6..9f8e7ab 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-9c6231747d0f0a9a932e2fb11c94fa2e  eiciel-0.9.6.1.tar.bz2
+5e515a6f92cff0824a8a93f38c553c0b  eiciel-0.9.8.tar.bz2


More information about the scm-commits mailing list