null+****@clear*****
null+****@clear*****
2012年 3月 2日 (金) 14:21:58 JST
Kouhei Sutou 2012-03-02 14:21:58 +0900 (Fri, 02 Mar 2012)
New Revision: 26c27eb09d77c8a2dcba462700e59c8d4741c751
Log:
Remove all files
The official MacProts repository had merged this Portfile. :-)
Added files:
README.md
Removed files:
.gitignore
PortIndex
README
databases/groonga/Portfile
update.sh
Deleted: .gitignore (+0 -2) 100644
===================================================================
--- .gitignore 2011-11-09 18:44:29 +0900 (e1052e5)
+++ /dev/null
@@ -1,2 +0,0 @@
-/PortIndex.quick
-/databases/groonga/work
Deleted: PortIndex (+0 -2) 100644
===================================================================
--- PortIndex 2011-11-09 18:44:29 +0900 (6380104)
+++ /dev/null
@@ -1,2 +0,0 @@
-groonga 608
-variants universal portdir databases/groonga description {An embeddable fulltext search engine} homepage http://groonga.org/ epoch 0 platforms darwin name groonga depends_lib {port:mecab port:mecab-ipadic-utf8 port:mecab-jumandic-utf8 port:libevent port:zmq port:msgpack} long_description {groonga is an embeddable fulltext search engine library. It can integrate with DBMS and scripting languages to enhance their search functionality. It also provides a standalone data store server based on relation data model.} maintainers kou****@clear***** license LGPLv2 categories databases version 1.2.7 revision 0
Deleted: README (+0 -1) 100644
===================================================================
--- README 2011-11-09 18:44:29 +0900 (abc6202)
+++ /dev/null
@@ -1 +0,0 @@
-See http://groonga.org/docs/install.html#mac-os-x-macports
Added: README.md (+4 -0) 100644
===================================================================
--- /dev/null
+++ README.md 2012-03-02 14:21:58 +0900 (94f520d)
@@ -0,0 +1,4 @@
+Portfile for groonga had been merged into the official MacPorts repository.
+So you can install groonga by MacPorts with the following command:
+
+ % sudo port install groonga
Deleted: databases/groonga/Portfile (+0 -31) 100644
===================================================================
--- databases/groonga/Portfile 2011-11-09 18:44:29 +0900 (049384e)
+++ /dev/null
@@ -1,31 +0,0 @@
-PortSystem 1.0
-name groonga
-version 1.2.7
-categories databases
-maintainers kou****@clear*****
-description An embeddable fulltext search engine
-long_description \
- groonga is an embeddable fulltext search engine library. It can integrate \
- with DBMS and scripting languages to enhance their search functionality. \
- It also provides a standalone data store server based on relation data \
- model.
-
-platforms darwin
-license LGPLv2
-
-homepage http://groonga.org/
-master_sites http://packages.groonga.org/source/groonga/
-distname groonga-${version}
-worksrcdir ${distname}
-
-checksums md5 ef83d94b8e602507b068f3f6d5cf8e92 \
- sha1 1c2cd08912ad6e72a8f0d937e3811f73fffc23b5 \
- rmd160 eff61fe0254304bdcf611552226c19e7bcfe96b6
-
-depends_lib port:mecab port:mecab-ipadic-utf8 port:mecab-jumandic-utf8 \
- port:libevent port:zmq port:msgpack
-
-livecheck.check regex
-livecheck.url http://packages.groonga.org/source/groonga/
-livecheck.regex {groonga-([0-9.-]+)\.tar\.gz}
-
Deleted: update.sh (+0 -26) 100755
===================================================================
--- update.sh 2011-11-09 18:44:29 +0900 (392de6f)
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-if [ $# != 1 ]; then
- echo "Usage: $0 VERSIOIN"
- echo " e.g.: $0 1.1.0"
- exit 1
-fi
-
-cd $(dirname $0)
-
-version=$1
-tar_gz=groonga-$version.tar.gz
-portfile=databases/groonga/Portfile
-
-sed -E -i'' -e "s/^(version +)[a-z0-9.\-]+/\1$version/" $portfile
-
-curl -o $tar_gz -L http://packages.groonga.org/source/groonga/$tar_gz
-
-for type in md5 sha1 rmd160; do
- hash=$(openssl dgst -$type $tar_gz | cut -f 2 -d ' ')
- sed -E -i'' -e "s/($type +)[a-z0-9]+/\1$hash/" $portfile
-done
-
-portindex
-
-rm $tar_gz