summaryrefslogtreecommitdiff
path: root/sysutils/py-notify
diff options
context:
space:
mode:
authorrodent <rodent@pkgsrc.org>2013-04-05 11:10:12 +0000
committerrodent <rodent@pkgsrc.org>2013-04-05 11:10:12 +0000
commit1415620fb85777b87ec3a7efd4e8580ecdaa591b (patch)
tree02b2c46698b4704e0bf384613ac9ce0c92be07f9 /sysutils/py-notify
parentdb981a6af35fce94f27ad42bcdc6451115ec1428 (diff)
downloadpkgsrc-1415620fb85777b87ec3a7efd4e8580ecdaa591b.tar.gz
Update py-notify to 0.2.1. Resolves PR pkg/47698.
From http://download.gna.org/py-notify/: "Releases in 0.1 development branch are still available on a separate page for historical purposes. There is no reason to use them in production: current stable 0.2 is both bug-free and faster, and more features can be found in 0.3 development releases." Package no longer needs buildlink3.mk file, as there is no shared library installed. PLIST has many entries in PYSITELIB. Package uses PYDISTUTILS to handle everything. pkg-config, libtool, and gmake are no longer needed. HOMEPAGE and MASTER_SITES were updated. Added LICENSE. Passes pkglint.
Diffstat (limited to 'sysutils/py-notify')
-rw-r--r--sysutils/py-notify/Makefile26
-rw-r--r--sysutils/py-notify/PLIST48
-rw-r--r--sysutils/py-notify/buildlink3.mk17
-rw-r--r--sysutils/py-notify/distinfo8
4 files changed, 52 insertions, 47 deletions
diff --git a/sysutils/py-notify/Makefile b/sysutils/py-notify/Makefile
index 65a4cd3ede0..b6716fdb135 100644
--- a/sysutils/py-notify/Makefile
+++ b/sysutils/py-notify/Makefile
@@ -1,29 +1,17 @@
-# $NetBSD: Makefile,v 1.29 2013/02/16 11:19:22 wiz Exp $
+# $NetBSD: Makefile,v 1.30 2013/04/05 11:10:12 rodent Exp $
#
-DISTNAME= notify-python-0.1.1
-PKGNAME= ${PYPKGPREFIX}-notify-0.1.1
-PKGREVISION= 17
+DISTNAME= py-notify-0.2.1
+PKGNAME= ${DISTNAME:S/py/${PYPKGPREFIX}/1}
CATEGORIES= sysutils
-MASTER_SITES= \
- http://www.galago-project.org/files/releases/source/notify-python/
-EXTRACT_SUFX= .tar.bz2
+MASTER_SITES= http://download.gna.org/py-notify/
MAINTAINER= pkgsrc-users@NetBSD.org
-HOMEPAGE= http://www.galago-project.org/
+HOMEPAGE= http://home.gna.org/py-notify/
COMMENT= Python bindings for libnotify
+LICENSE= gnu-lgpl-v2.1
-GNU_CONFIGURE= yes
-USE_LIBTOOL= yes
-USE_TOOLS+= gmake pkg-config
-
-PKGCONFIG_OVERRIDE+= notify-python.pc.in
-PY_PATCHPLIST= yes
-
-# Missing function attach_status_icon
-# http://trac.galago-project.org/ticket/121
-post-extract:
- ${RM} -f ${WRKSRC}/src/pynotify.c
+PYDISTUTILSPKG= yes
.include "../../lang/python/extension.mk"
.include "../../x11/py-gtk2/buildlink3.mk"
diff --git a/sysutils/py-notify/PLIST b/sysutils/py-notify/PLIST
index 152e35009fc..cf46ca5e6fa 100644
--- a/sysutils/py-notify/PLIST
+++ b/sysutils/py-notify/PLIST
@@ -1,7 +1,41 @@
-@comment $NetBSD: PLIST,v 1.2 2009/06/14 18:16:12 joerg Exp $
-lib/pkgconfig/notify-python.pc
-${PYSITELIB}/gtk-2.0/pynotify/__init__.py
-${PYSITELIB}/gtk-2.0/pynotify/__init__.pyc
-${PYSITELIB}/gtk-2.0/pynotify/__init__.pyo
-${PYSITELIB}/gtk-2.0/pynotify/_pynotify.la
-share/pygtk/2.0/defs/pynotify.defs
+@comment $NetBSD: PLIST,v 1.3 2013/04/05 11:10:12 rodent Exp $
+${PYSITELIB}/notify/_2_5/__init__.py
+${PYSITELIB}/notify/_2_5/__init__.pyc
+${PYSITELIB}/notify/_2_5/__init__.pyo
+${PYSITELIB}/notify/_2_5/base.py
+${PYSITELIB}/notify/_2_5/base.pyc
+${PYSITELIB}/notify/_2_5/base.pyo
+${PYSITELIB}/notify/_2_5/signal.py
+${PYSITELIB}/notify/_2_5/signal.pyc
+${PYSITELIB}/notify/_2_5/signal.pyo
+${PYSITELIB}/notify/_2_x.py
+${PYSITELIB}/notify/_2_x.pyc
+${PYSITELIB}/notify/_2_x.pyo
+${PYSITELIB}/notify/__init__.py
+${PYSITELIB}/notify/__init__.pyc
+${PYSITELIB}/notify/__init__.pyo
+${PYSITELIB}/notify/all.py
+${PYSITELIB}/notify/all.pyc
+${PYSITELIB}/notify/all.pyo
+${PYSITELIB}/notify/base.py
+${PYSITELIB}/notify/base.pyc
+${PYSITELIB}/notify/base.pyo
+${PYSITELIB}/notify/bind.py
+${PYSITELIB}/notify/bind.pyc
+${PYSITELIB}/notify/bind.pyo
+${PYSITELIB}/notify/condition.py
+${PYSITELIB}/notify/condition.pyc
+${PYSITELIB}/notify/condition.pyo
+${PYSITELIB}/notify/gc.so
+${PYSITELIB}/notify/mediator.py
+${PYSITELIB}/notify/mediator.pyc
+${PYSITELIB}/notify/mediator.pyo
+${PYSITELIB}/notify/signal.py
+${PYSITELIB}/notify/signal.pyc
+${PYSITELIB}/notify/signal.pyo
+${PYSITELIB}/notify/utils.py
+${PYSITELIB}/notify/utils.pyc
+${PYSITELIB}/notify/utils.pyo
+${PYSITELIB}/notify/variable.py
+${PYSITELIB}/notify/variable.pyc
+${PYSITELIB}/notify/variable.pyo
diff --git a/sysutils/py-notify/buildlink3.mk b/sysutils/py-notify/buildlink3.mk
deleted file mode 100644
index 9f2bc640c52..00000000000
--- a/sysutils/py-notify/buildlink3.mk
+++ /dev/null
@@ -1,17 +0,0 @@
-# $NetBSD: buildlink3.mk,v 1.22 2013/02/16 11:19:22 wiz Exp $
-
-BUILDLINK_TREE+= py-notify
-
-.if !defined(PY_NOTIFY_BUILDLINK3_MK)
-PY_NOTIFY_BUILDLINK3_MK:=
-
-.include "../../lang/python/pyversion.mk"
-
-BUILDLINK_API_DEPENDS.py-notify+= ${PYPKGPREFIX}-notify>=0.1.1
-BUILDLINK_ABI_DEPENDS.py-notify+= ${PYPKGPREFIX}-notify>=0.1.1nb17
-BUILDLINK_PKGSRCDIR.py-notify?= ../../sysutils/py-notify
-
-.include "../../x11/py-gtk2/buildlink3.mk"
-.endif # PY_NOTIFY_BUILDLINK3_MK
-
-BUILDLINK_TREE+= -py-notify
diff --git a/sysutils/py-notify/distinfo b/sysutils/py-notify/distinfo
index 7183c3bdb82..3fe0d735854 100644
--- a/sysutils/py-notify/distinfo
+++ b/sysutils/py-notify/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1.1.1 2007/01/10 10:40:52 drochner Exp $
+$NetBSD: distinfo,v 1.2 2013/04/05 11:10:12 rodent Exp $
-SHA1 (notify-python-0.1.1.tar.bz2) = 490693cf601793f50cef1a3c82ba75025497fc00
-RMD160 (notify-python-0.1.1.tar.bz2) = 52f5b5cc7c01be32525db7a2edc0f3dee41911ef
-Size (notify-python-0.1.1.tar.bz2) = 214514 bytes
+SHA1 (py-notify-0.2.1.tar.gz) = 946d41e2c1cd3ecd04096f579af92dac813d5b29
+RMD160 (py-notify-0.2.1.tar.gz) = 59edfa4b14c7d67c7ffeffdc024986dccd60d96b
+Size (py-notify-0.2.1.tar.gz) = 143167 bytes