aboutsummaryrefslogtreecommitdiff
path: root/devel/libvirt
diff options
context:
space:
mode:
authorJason Helfman <jgh@FreeBSD.org>2013-03-05 07:04:40 +0000
committerJason Helfman <jgh@FreeBSD.org>2013-03-05 07:04:40 +0000
commit47be7f2e8a9496e86c33fd8783727f720f24b95e (patch)
tree4a717fea23ff3a01e29419462df19b2740ec9bd6 /devel/libvirt
parentea382bc96d970e400f8611570e98ab9935b5c702 (diff)
downloadports-47be7f2e8a9496e86c33fd8783727f720f24b95e.tar.gz
ports-47be7f2e8a9496e86c33fd8783727f720f24b95e.zip
- update to 1.0.3
- patch merged upstream Changes: http://libvirt.org/news.html
Notes
Notes: svn path=/head/; revision=313438
Diffstat (limited to 'devel/libvirt')
-rw-r--r--devel/libvirt/Makefile3
-rw-r--r--devel/libvirt/distinfo4
-rw-r--r--devel/libvirt/files/patch-python__generator.py35
3 files changed, 3 insertions, 39 deletions
diff --git a/devel/libvirt/Makefile b/devel/libvirt/Makefile
index b66a85c45347..35fad37a7086 100644
--- a/devel/libvirt/Makefile
+++ b/devel/libvirt/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= libvirt
-PORTVERSION= 1.0.2
-PORTREVISION= 1
+PORTVERSION= 1.0.3
CATEGORIES= devel
MASTER_SITES= http://libvirt.org/sources/
diff --git a/devel/libvirt/distinfo b/devel/libvirt/distinfo
index d038736a4e32..088736592c67 100644
--- a/devel/libvirt/distinfo
+++ b/devel/libvirt/distinfo
@@ -1,2 +1,2 @@
-SHA256 (libvirt-1.0.2.tar.gz) = 9b8c2752f78658b65ef1c608b3775be0978d60855a9b5e2778f79c113201c179
-SIZE (libvirt-1.0.2.tar.gz) = 22971729
+SHA256 (libvirt-1.0.3.tar.gz) = f64f4acd7cdcfc6ab5e803195ed58b949f262b54e3659d8c37b33f0fec112757
+SIZE (libvirt-1.0.3.tar.gz) = 23238381
diff --git a/devel/libvirt/files/patch-python__generator.py b/devel/libvirt/files/patch-python__generator.py
deleted file mode 100644
index ecc6459ade90..000000000000
--- a/devel/libvirt/files/patch-python__generator.py
+++ /dev/null
@@ -1,35 +0,0 @@
-commit a6b8bae5a6a4752926eba409202ec061d81c6c8a
-Author: Serge Hallyn <serge.hallyn@canonical.com>
-Date: Wed Jan 30 21:05:45 2013 -0600
-
- complete virterror->virerror name change
-
- Without these two string changes in generator.py, the
- virGetLastError wrapper does not get created in
- /usr/share/pyshared/libvirt.py. Noticed when running
- tests with virt-install.
-
- Signed-off-by: Serge Hallyn <serge.hallyn@ubuntu.com>
-
-diff --git a/python/generator.py b/python/generator.py
-index 5d27f66..71ca883 100755
---- ./python/generator.py
-+++ ./python/generator.py
-@@ -123,7 +123,7 @@ class docParser(xml.sax.handler.ContentHandler):
- self.function_return_field = attrs['field']
- elif tag == 'enum':
- if (attrs['file'] == "libvirt" or
-- attrs['file'] == "virterror"):
-+ attrs['file'] == "virerror"):
- enum(attrs['type'],attrs['name'],attrs['value'])
- elif attrs['file'] == "libvirt-lxc":
- lxc_enum(attrs['type'],attrs['name'],attrs['value'])
-@@ -137,7 +137,7 @@ class docParser(xml.sax.handler.ContentHandler):
- if self.function != None:
- if (self.function_module == "libvirt" or
- self.function_module == "virevent" or
-- self.function_module == "virterror"):
-+ self.function_module == "virerror"):
- function(self.function, self.function_descr,
- self.function_return, self.function_args,
- self.function_file, self.function_module,