[35589] trunk/dports

akira at macports.org akira at macports.org
Sun Mar 30 07:59:12 PDT 2008


Revision: 35589
          http://trac.macosforge.org/projects/macports/changeset/35589
Author:   akira at macports.org
Date:     2008-03-30 07:59:11 -0700 (Sun, 30 Mar 2008)

Log Message:
-----------
Fixed lint warnings

Modified Paths:
--------------
    trunk/dports/devel/gauche-readline/Portfile
    trunk/dports/lang/gauche/Portfile
    trunk/dports/lang/gauche-c-wrapper/Portfile
    trunk/dports/python/py-feedparser/Portfile
    trunk/dports/python/py-yaml/Portfile
    trunk/dports/python/py25-feedparser/Portfile
    trunk/dports/python/py25-yaml/Portfile
    trunk/dports/ruby/rb-narray/Portfile
    trunk/dports/ruby/rb-rubygems/Portfile

Added Paths:
-----------
    trunk/dports/devel/gauche-readline/files/patch-Makefile.diff

Removed Paths:
-------------
    trunk/dports/devel/gauche-readline/files/patch-Makefile

Modified: trunk/dports/devel/gauche-readline/Portfile
===================================================================
--- trunk/dports/devel/gauche-readline/Portfile	2008-03-30 14:58:51 UTC (rev 35588)
+++ trunk/dports/devel/gauche-readline/Portfile	2008-03-30 14:59:11 UTC (rev 35589)
@@ -16,7 +16,7 @@
 distname		readline-${version}
 extract.suffix	.tgz
 checksums		sha1 ab96806c9f824feb083c0e44a93f46b6087cc791
-patchfiles		patch-Makefile
+patchfiles		patch-Makefile.diff
 
 depends_build	port:gauche
 depends_run		port:gauche

Deleted: trunk/dports/devel/gauche-readline/files/patch-Makefile
===================================================================
--- trunk/dports/devel/gauche-readline/files/patch-Makefile	2008-03-30 14:58:51 UTC (rev 35588)
+++ trunk/dports/devel/gauche-readline/files/patch-Makefile	2008-03-30 14:59:11 UTC (rev 35589)
@@ -1,11 +0,0 @@
---- Makefile.orig	2008-03-30 21:15:21.000000000 +0900
-+++ Makefile	2008-03-30 23:33:03.000000000 +0900
-@@ -2,5 +2,7 @@
- 	@echo "OK, make done."
- 	@echo "Now try 'make install'"
- 
-+.PHONY: install
- install:
--	cp -r readline{,.scm} `gauche-config --sitelibdir`
-+	mkdir -p ${DESTDIR}`gauche-config --sitelibdir`
-+	cp -r readline{,.scm} ${DESTDIR}`gauche-config --sitelibdir`

Copied: trunk/dports/devel/gauche-readline/files/patch-Makefile.diff (from rev 35582, trunk/dports/devel/gauche-readline/files/patch-Makefile)
===================================================================
--- trunk/dports/devel/gauche-readline/files/patch-Makefile.diff	                        (rev 0)
+++ trunk/dports/devel/gauche-readline/files/patch-Makefile.diff	2008-03-30 14:59:11 UTC (rev 35589)
@@ -0,0 +1,11 @@
+--- Makefile.orig	2008-03-30 21:15:21.000000000 +0900
++++ Makefile	2008-03-30 23:33:03.000000000 +0900
+@@ -2,5 +2,7 @@
+ 	@echo "OK, make done."
+ 	@echo "Now try 'make install'"
+ 
++.PHONY: install
+ install:
+-	cp -r readline{,.scm} `gauche-config --sitelibdir`
++	mkdir -p ${DESTDIR}`gauche-config --sitelibdir`
++	cp -r readline{,.scm} ${DESTDIR}`gauche-config --sitelibdir`

Modified: trunk/dports/lang/gauche/Portfile
===================================================================
--- trunk/dports/lang/gauche/Portfile	2008-03-30 14:58:51 UTC (rev 35588)
+++ trunk/dports/lang/gauche/Portfile	2008-03-30 14:59:11 UTC (rev 35589)
@@ -1,6 +1,7 @@
 # $Id$
 
 PortSystem 1.0
+
 name		        gauche
 version		        0.8.13
 categories	        lang scheme

Modified: trunk/dports/lang/gauche-c-wrapper/Portfile
===================================================================
--- trunk/dports/lang/gauche-c-wrapper/Portfile	2008-03-30 14:58:51 UTC (rev 35588)
+++ trunk/dports/lang/gauche-c-wrapper/Portfile	2008-03-30 14:59:11 UTC (rev 35589)
@@ -24,4 +24,3 @@
     eval xinstall -m 644 [glob ${worksrcpath}/doc/*.html] ${destroot}${prefix}/share/doc/${name}
     file copy ${worksrcpath}/examples ${destroot}${prefix}/share/doc/${name}
 }
-    

Modified: trunk/dports/python/py-feedparser/Portfile
===================================================================
--- trunk/dports/python/py-feedparser/Portfile	2008-03-30 14:58:51 UTC (rev 35588)
+++ trunk/dports/python/py-feedparser/Portfile	2008-03-30 14:59:11 UTC (rev 35589)
@@ -1,4 +1,5 @@
 # $Id$
+
 PortSystem      1.0
 PortGroup       python24 1.0
 
@@ -6,7 +7,7 @@
 version             4.1
 categories          python
 platforms           darwin
-maintainers         nomaintainer
+maintainers         akira openmaintainer
 description         RSS and Atom parser
 long_description    Universal Feed Parser is a Python module for downloading \
     and parsing syndicated feeds. It can handle RSS 0.90, Netscape RSS 0.91, \

Modified: trunk/dports/python/py-yaml/Portfile
===================================================================
--- trunk/dports/python/py-yaml/Portfile	2008-03-30 14:58:51 UTC (rev 35588)
+++ trunk/dports/python/py-yaml/Portfile	2008-03-30 14:59:11 UTC (rev 35589)
@@ -2,10 +2,11 @@
 
 PortSystem 1.0
 PortGroup python24 1.0
+
 name				py-yaml
 version				3.05
 categories-append	devel
-maintainers			nomaintainer
+maintainers			akira openmaintainer
 description			YAML 1.1 parser and emitter for Python
 long_description \
     PyYAML is a YAML parser and emitter for Python, which supports YAML 1.1, \

Modified: trunk/dports/python/py25-feedparser/Portfile
===================================================================
--- trunk/dports/python/py25-feedparser/Portfile	2008-03-30 14:58:51 UTC (rev 35588)
+++ trunk/dports/python/py25-feedparser/Portfile	2008-03-30 14:59:11 UTC (rev 35589)
@@ -7,7 +7,7 @@
 version         4.1
 categories      python
 platforms       darwin
-maintainers     nomaintainer
+maintainers     akira openmaintainer
 description     RSS and Atom parser
 long_description    Universal Feed Parser is a Python module for downloading \
     and parsing syndicated feeds. It can handle RSS 0.90, Netscape RSS 0.91, \

Modified: trunk/dports/python/py25-yaml/Portfile
===================================================================
--- trunk/dports/python/py25-yaml/Portfile	2008-03-30 14:58:51 UTC (rev 35588)
+++ trunk/dports/python/py25-yaml/Portfile	2008-03-30 14:59:11 UTC (rev 35589)
@@ -2,10 +2,11 @@
 
 PortSystem 1.0
 PortGroup python25 1.0
+
 name				py25-yaml
 version				3.05
 categories-append	devel
-maintainers			nomaintainer
+maintainers			akira openmaintainer
 description			YAML 1.1 parser and emitter for Python
 long_description \
     PyYAML is a YAML parser and emitter for Python, which supports YAML 1.1, \

Modified: trunk/dports/ruby/rb-narray/Portfile
===================================================================
--- trunk/dports/ruby/rb-narray/Portfile	2008-03-30 14:58:51 UTC (rev 35588)
+++ trunk/dports/ruby/rb-narray/Portfile	2008-03-30 14:59:11 UTC (rev 35589)
@@ -1,4 +1,5 @@
 # $Id$
+
 PortSystem		1.0
 PortGroup		ruby 1.0
 
@@ -13,8 +14,8 @@
   and easy manipulation of large numerical arrays into the Ruby language. \
   NArray has features similar to NumPy, but NArray has vector \
   and matrix subclasses.
-categories-append   math	
+categories-append   math
 homepage            http://narray.rubyforge.org/
 checksums		    md5 04962b591dac5a0f1c3384545b0cfa83
-platforms		    darwin 
+platforms		    darwin
 depends_build		    port:coreutils

Modified: trunk/dports/ruby/rb-rubygems/Portfile
===================================================================
--- trunk/dports/ruby/rb-rubygems/Portfile	2008-03-30 14:58:51 UTC (rev 35588)
+++ trunk/dports/ruby/rb-rubygems/Portfile	2008-03-30 14:59:11 UTC (rev 35589)
@@ -1,4 +1,5 @@
 # $Id$
+
 PortSystem		1.0
 PortGroup		ruby 1.0
 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20080330/84e8f8aa/attachment.html


More information about the macports-changes mailing list