From: PHO Date: Sat, 30 Jul 2011 04:40:57 +0000 (+0900) Subject: ditz issues X-Git-Tag: RELEASE-0.7.0.3~1 X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=Lucu.git;a=commitdiff_plain;h=86d100e294fa482456980021cca10393b9830ec1 ditz issues --- diff --git a/bugs/issue-74e34d62deabaab386472d2949a46fea893f1ec1.yaml b/bugs/issue-74e34d62deabaab386472d2949a46fea893f1ec1.yaml index 3a8d2b4..717a930 100644 --- a/bugs/issue-74e34d62deabaab386472d2949a46fea893f1ec1.yaml +++ b/bugs/issue-74e34d62deabaab386472d2949a46fea893f1ec1.yaml @@ -3,7 +3,7 @@ title: Use blaze-builder if possible. desc: ...to gain a speed. type: :task component: Lucu -release: +release: Lucu-1.0 reporter: PHO status: :unstarted disposition: @@ -16,3 +16,8 @@ log_events: - PHO - created - "" +- - 2011-07-30 04:40:26.803185 Z + - PHO + - assigned to release Lucu-1.0 from unassigned + - "" +git_branch: diff --git a/bugs/issue-8959dadc07db1bd363283dee401073f6e48dc7fa.yaml b/bugs/issue-8959dadc07db1bd363283dee401073f6e48dc7fa.yaml index 13073fa..76f9120 100644 --- a/bugs/issue-8959dadc07db1bd363283dee401073f6e48dc7fa.yaml +++ b/bugs/issue-8959dadc07db1bd363283dee401073f6e48dc7fa.yaml @@ -3,7 +3,7 @@ title: Use attoparsec instead of our handmade parser combinator desc: attoparsec does have a capability of returning unconsumed bytes, which was the very reason I made Network.HTTP.Lucu.Parser. 'allowEOF' can be eliminated I think. type: :task component: Lucu -release: +release: Lucu-1.0 reporter: PHO status: :unstarted disposition: @@ -16,3 +16,8 @@ log_events: - PHO - created - "" +- - 2011-07-30 04:40:19.458276 Z + - PHO + - assigned to release Lucu-1.0 from unassigned + - "" +git_branch: diff --git a/bugs/issue-b3e2a5ee9307d4ba9b7a0346e6ca0d91ca287997.yaml b/bugs/issue-b3e2a5ee9307d4ba9b7a0346e6ca0d91ca287997.yaml new file mode 100644 index 0000000..661d612 --- /dev/null +++ b/bugs/issue-b3e2a5ee9307d4ba9b7a0346e6ca0d91ca287997.yaml @@ -0,0 +1,19 @@ +--- !ditz.rubyforge.org,2008-03-06/issue +title: Don't use String type. We have Ascii, Text and ByteString. +desc: "" +type: :task +component: Lucu +release: Lucu-1.0 +reporter: PHO +status: :unstarted +disposition: +creation_time: 2011-07-30 04:39:53.073102 Z +references: [] + +id: b3e2a5ee9307d4ba9b7a0346e6ca0d91ca287997 +log_events: +- - 2011-07-30 04:39:54.704339 Z + - PHO + - created + - "" +git_branch: diff --git a/bugs/project.yaml b/bugs/project.yaml index 35a9cc7..cb1b041 100644 --- a/bugs/project.yaml +++ b/bugs/project.yaml @@ -6,7 +6,7 @@ components: name: Lucu releases: - !ditz.rubyforge.org,2008-03-06/release - name: "Lucu-0.5" + name: Lucu-0.5 status: :released release_time: 2010-03-03 17:19:53.720409 Z log_events: @@ -44,3 +44,12 @@ releases: - PHO - released - Done. +- !ditz.rubyforge.org,2008-03-06/release + name: Lucu-1.0 + status: :unreleased + release_time: + log_events: + - - 2011-07-30 04:38:52.395470 Z + - PHO + - created + - We'll no longer use String types unless it is absolutely necessary. diff --git a/cabal-package.mk b/cabal-package.mk index 585fc30..2363b98 100644 --- a/cabal-package.mk +++ b/cabal-package.mk @@ -21,6 +21,7 @@ CONFIGURE_ARGS ?= --disable-optimization SETUP_FILE := $(wildcard Setup.*hs) CABAL_FILE := $(wildcard *.cabal) +PKG_NAME := $(CABAL_FILE:.cabal=) ifeq ($(shell ls configure.ac 2>/dev/null),configure.ac) AUTOCONF_AC_FILE := configure.ac @@ -110,8 +111,20 @@ fixme: lint: $(HLINT) . --report -# $(HLINT) . --report \ -# --ignore="Use string literal" \ -# --ignore="Use concatMap" -.PHONY: build build-hook setup-config setup-config-hook run clean clean-hook install doc sdist test lint +push: doc ditz + if [ -d "_darcs" ]; then \ + darcs push; \ + elif [ -d ".git" ]; then \ + git push --all && git push --tags; \ + fi + if [ -d "dist/doc" ]; then \ + rsync -av --delete \ + dist/doc/html/$(PKG_NAME)/ \ + www@nem.cielonegro.org:static.cielonegro.org/htdocs/doc/$(PKG_NAME); \ + fi + rsync -av --delete \ + dist/ditz/ \ + www@nem.cielonegro.org:static.cielonegro.org/htdocs/ditz/$(PKG_NAME) + +.PHONY: build build-hook setup-config setup-config-hook run clean clean-hook install doc sdist test lint push