Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (300394960ba4ecaaf4d5ead6e9702548585a6031)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ladislav Hagara <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (300394960ba4ecaaf4d5ead6e9702548585a6031)
  • Date: Sun, 27 Sep 2009 13:42:05 -0500

GIT changes to master grimoire by Ladislav Hagara <hgr AT vabo.cz>:

python-pypi/pyinotify/DETAILS | 6 +++---
python-pypi/pyinotify/HISTORY | 4 ++++
python-pypi/pyinotify/PRE_BUILD | 3 ---
python-pypi/pyinotify/pyinotify.patch | 17 -----------------
4 files changed, 7 insertions(+), 23 deletions(-)

New commits:
commit ea7ae65c274bbeab2d793d033e7eb143c4a56374
Author: Ladislav Hagara <hgr AT vabo.cz>
Commit: Ladislav Hagara <hgr AT vabo.cz>

pyinotify 0.8.7

diff --git a/python-pypi/pyinotify/DETAILS b/python-pypi/pyinotify/DETAILS
index cd78746..74aa0e1 100755
--- a/python-pypi/pyinotify/DETAILS
+++ b/python-pypi/pyinotify/DETAILS
@@ -1,9 +1,9 @@
SPELL=pyinotify
- VERSION=0.8.6
- PATCHLEVEL=1
+ VERSION=0.8.7
+ PATCHLEVEL=0
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=http://seb.dbzteam.org/pub/pyinotify/releases/$SOURCE
-
SOURCE_HASH=sha512:0316fb16d4dec80f064599cb4a88293317e281ca16114f1328a8cfbeaa7640ba00aea169f60f99af90e105381a888d5a3f7c6f333d4578d620a442fbaef06243
+
SOURCE_HASH=sha512:7b638d6c9be6e347e75a2af558df30226b510bbdde0606c3fb846d9c2d0fa6ba3b202db1cd2f3ad01c7a8e3ae56ce7380c088d0a593743ce0c2b52c3b2884630
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL
WEB_SITE=http://trac.dbzteam.org/pyinotify
LICENSE[0]=PYTHON
diff --git a/python-pypi/pyinotify/HISTORY b/python-pypi/pyinotify/HISTORY
index e6bd140..f7f514a 100644
--- a/python-pypi/pyinotify/HISTORY
+++ b/python-pypi/pyinotify/HISTORY
@@ -1,3 +1,7 @@
+2009-09-27 Ladislav Hagara <hgr AT vabo.cz>
+ * DETAILS: 0.8.7
+ * PRE_BUILD, pyinotify.patch: removed
+
2009-06-09 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: PATCHLEVEL=1
* PRE_BUILD, pyinotify.patch: added patch to fix glibc 2.10.1 problem
diff --git a/python-pypi/pyinotify/PRE_BUILD b/python-pypi/pyinotify/PRE_BUILD
deleted file mode 100755
index 3c64b10..0000000
--- a/python-pypi/pyinotify/PRE_BUILD
+++ /dev/null
@@ -1,3 +0,0 @@
-default_pre_build &&
-cd $SOURCE_DIRECTORY &&
-patch -p1 < $SPELL_DIRECTORY/pyinotify.patch
diff --git a/python-pypi/pyinotify/pyinotify.patch
b/python-pypi/pyinotify/pyinotify.patch
deleted file mode 100644
index 5c9b021..0000000
--- a/python-pypi/pyinotify/pyinotify.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/pyinotify.py
-+++ b/pyinotify.py
-@@ -95,12 +95,14 @@ __metaclass__ = type # Use new-style classes by default
- # load libc
- LIBC = ctypes.cdll.LoadLibrary(ctypes.util.find_library('c'))
-
--# the libc version check.
-+# the libc version > 2.4 check.
- # XXX: Maybe it is better to check if the libc has the needed functions
inside?
- # Because there are inotify patches for libc 2.3.6.
- LIBC.gnu_get_libc_version.restype = ctypes.c_char_p
- LIBC_VERSION = LIBC.gnu_get_libc_version()
--if LIBC_VERSION < '2.4':
-+if (int(LIBC_VERSION.split('.')[0]) < 2 or
-+ (int(LIBC_VERSION.split('.')[0]) == 2 and
-+ int(LIBC_VERSION.split('.')[1]) < 4)):
- raise UnsupportedLibcVersionError(LIBC_VERSION)



  • [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (300394960ba4ecaaf4d5ead6e9702548585a6031), Ladislav Hagara, 09/27/2009

Archive powered by MHonArc 2.6.24.

Top of Page