desc: ...to gain a speed.
type: :task
component: Lucu
-release:
+release: Lucu-1.0
reporter: PHO <pho@cielonegro.org>
status: :unstarted
disposition:
- PHO <pho@cielonegro.org>
- created
- ""
+- - 2011-07-30 04:40:26.803185 Z
+ - PHO <pho@cielonegro.org>
+ - assigned to release Lucu-1.0 from unassigned
+ - ""
+git_branch:
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 <pho@cielonegro.org>
status: :unstarted
disposition:
- PHO <pho@cielonegro.org>
- created
- ""
+- - 2011-07-30 04:40:19.458276 Z
+ - PHO <pho@cielonegro.org>
+ - assigned to release Lucu-1.0 from unassigned
+ - ""
+git_branch:
--- /dev/null
+--- !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 <pho@cielonegro.org>
+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 <pho@cielonegro.org>
+ - created
+ - ""
+git_branch:
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:
- PHO <pho@cielonegro.org>
- 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 <pho@cielonegro.org>
+ - created
+ - We'll no longer use String types unless it is absolutely necessary.
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
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