pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/doc Update moss to 0.1.9. Submitted by Myung-Gon Park...
details: https://anonhg.NetBSD.org/pkgsrc/rev/c9f052f5102a
branches: trunk
changeset: 481533:c9f052f5102a
user: minskim <minskim%pkgsrc.org@localhost>
date: Wed Oct 06 15:16:03 2004 +0000
description:
Update moss to 0.1.9. Submitted by Myung-Gon Park, new MAINTAINER.
Changes:
- Bug fix in live mode.
diffstat:
audio/moss/Makefile | 12 ++++++------
audio/moss/distinfo | 8 ++++----
audio/moss/patches/patch-aa | 22 +++++++++++-----------
doc/CHANGES | 3 ++-
4 files changed, 23 insertions(+), 22 deletions(-)
diffs (115 lines):
diff -r 2300fed6ef5b -r c9f052f5102a audio/moss/Makefile
--- a/audio/moss/Makefile Wed Oct 06 14:23:00 2004 +0000
+++ b/audio/moss/Makefile Wed Oct 06 15:16:03 2004 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.3 2004/08/17 15:50:30 minskim Exp $
+# $NetBSD: Makefile,v 1.4 2004/10/06 15:16:03 minskim Exp $
-DISTNAME= moss-0.1.8
+DISTNAME= moss-0.1.9
CATEGORIES= audio
-MASTER_SITES= http://kldp.net/download.php/1434/
+MASTER_SITES= http://kldp.net/download.php/1528/
-MAINTAINER= yongbin%yongbin.com@localhost
+MAINTAINER= myunggoni%users.kldp.net@localhost
HOMEPAGE= http://moss.kldp.net/
COMMENT= MP3/OGG Streaming Server
@@ -25,8 +25,8 @@
SUBST_MESSAGE.path= "Fixing hardcoded paths."
SUBST_STAGE.path= post-patch
SUBST_FILES.path= moss.conf.sample
-SUBST_SED.path= -e 's,$${prefix}/var,${VARBASE},g' \
- -e 's,$${prefix}/share,${PREFIX}/share,g'
+SUBST_SED.path= -e 's,$${PREFIX}/var,${VARBASE},g' \
+ -e 's,$${PREFIX}/share,${PREFIX}/share,g'
FILES_SUBST+= INTERPRETER=${PYTHONBIN}
diff -r 2300fed6ef5b -r c9f052f5102a audio/moss/distinfo
--- a/audio/moss/distinfo Wed Oct 06 14:23:00 2004 +0000
+++ b/audio/moss/distinfo Wed Oct 06 15:16:03 2004 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2004/08/17 15:50:30 minskim Exp $
+$NetBSD: distinfo,v 1.3 2004/10/06 15:16:03 minskim Exp $
-SHA1 (moss-0.1.8.tar.gz) = 285058af55ffd58aef52e7a005a4d3d030c92ec2
-Size (moss-0.1.8.tar.gz) = 43295 bytes
-SHA1 (patch-aa) = 4eb7c5e0d3dc5a8c47d11284017f30fd798cb54c
+SHA1 (moss-0.1.9.tar.gz) = aa195fe2d462d2c48ea0c988529b94233c6d7d14
+Size (moss-0.1.9.tar.gz) = 43214 bytes
+SHA1 (patch-aa) = 0afee4be74d99ba3c924d2da8cf23309bba8f99f
diff -r 2300fed6ef5b -r c9f052f5102a audio/moss/patches/patch-aa
--- a/audio/moss/patches/patch-aa Wed Oct 06 14:23:00 2004 +0000
+++ b/audio/moss/patches/patch-aa Wed Oct 06 15:16:03 2004 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.2 2004/08/17 15:50:30 minskim Exp $
+$NetBSD: patch-aa,v 1.3 2004/10/06 15:16:03 minskim Exp $
---- setup.py.orig 2004-08-10 17:56:30.000000000 +0900
+--- setup.py.orig Wed Oct 6 03:08:58 2004
+++ setup.py
-@@ -42,50 +42,50 @@ class my_install_data(install_data):
+@@ -41,50 +41,50 @@ class my_install_data(install_data):
global installed_lib_dir
install_data.finalize_options(self)
@@ -17,8 +17,8 @@
- dest = open(os.path.join(self.install_dir, "etc/moss.conf"), "w")
-
- for line in src.readlines():
-- if line.find("${prefix}") != -1:
-- line = line.replace("${prefix}", self.install_dir)
+- if line.find("${PREFIX}") != -1:
+- line = line.replace("${PREFIX}", self.install_dir)
-
- dest.write(line)
-
@@ -32,8 +32,8 @@
- dest = open(os.path.join(self.install_dir, "etc/moss.conf"), "w")
-
- for line in src.readlines():
-- if line.find("${prefix}") != -1:
-- line = line.replace("${prefix}", self.install_dir)
+- if line.find("${PREFIX}") != -1:
+- line = line.replace("${PREFIX}", self.install_dir)
-
- dest.write(line)
-
@@ -61,8 +61,8 @@
+# dest = open(os.path.join(self.install_dir, "etc/moss.conf"), "w")
+#
+# for line in src.readlines():
-+# if line.find("${prefix}") != -1:
-+# line = line.replace("${prefix}", self.install_dir)
++# if line.find("${PREFIX}") != -1:
++# line = line.replace("${PREFIX}", self.install_dir)
+#
+# dest.write(line)
+#
@@ -76,8 +76,8 @@
+# dest = open(os.path.join(self.install_dir, "etc/moss.conf"), "w")
+#
+# for line in src.readlines():
-+# if line.find("${prefix}") != -1:
-+# line = line.replace("${prefix}", self.install_dir)
++# if line.find("${PREFIX}") != -1:
++# line = line.replace("${PREFIX}", self.install_dir)
+#
+# dest.write(line)
+#
diff -r 2300fed6ef5b -r c9f052f5102a doc/CHANGES
--- a/doc/CHANGES Wed Oct 06 14:23:00 2004 +0000
+++ b/doc/CHANGES Wed Oct 06 15:16:03 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.7365 2004/10/06 11:42:12 jmmv Exp $
+$NetBSD: CHANGES,v 1.7366 2004/10/06 15:16:03 minskim Exp $
Changes to the packages collection and infrastructure in 2004:
@@ -4565,3 +4565,4 @@
Updated freetype to 1.3.1nb2 [tron 2004-10-06]
Moved cfg+ to libcfg+ [grant 2004-10-06]
Updated gal2 to 2.2.2 [jmmv 2004-10-06]
+ Updated moss to 0.1.9 [minskim 2004-10-06]
Home |
Main Index |
Thread Index |
Old Index