diff -Nru rss2irc-0.4.2/debian/changelog rss2irc-0.4.2/debian/changelog --- rss2irc-0.4.2/debian/changelog 2011-06-26 16:29:14.000000000 +0000 +++ rss2irc-0.4.2/debian/changelog 2012-01-02 17:10:06.000000000 +0000 @@ -1,3 +1,10 @@ +rss2irc (0.4.2-2) unstable; urgency=low + + * Move from collab-maint git to DHG darcs. + * Stop using runhaskell to build. closes: #654260. + + -- Clint Adams Mon, 02 Jan 2012 11:48:11 -0500 + rss2irc (0.4.2-1) unstable; urgency=low * Initial release. diff -Nru rss2irc-0.4.2/debian/control rss2irc-0.4.2/debian/control --- rss2irc-0.4.2/debian/control 2011-06-26 16:55:46.000000000 +0000 +++ rss2irc-0.4.2/debian/control 2012-01-02 16:47:28.000000000 +0000 @@ -1,25 +1,35 @@ Source: rss2irc Section: net Priority: optional -Maintainer: Clint Adams +Maintainer: Debian Haskell Group +Uploaders: Clint Adams Build-Depends: haskell-devscripts (>= 0.8) , ghc , ghc-prof - , libghc-feed-dev - , libghc-http-dev - , libghc-irc-dev - , libghc-mtl-dev - , libghc-network-dev - , libghc-parallel-dev - , libghc-regexpr-dev - , libghc-split-dev - , libghc-strict-concurrency-dev - , libghc-tagsoup-dev - , libghc-time-dev + , libghc-deepseq-dev (>> 1.1) + , libghc-deepseq-dev (<< 1.2) + , libghc-feed-dev (>> 0.3) + , libghc-feed-dev (<< 0.4) + , libghc-http-dev (>> 1:4000.0.3) + , libghc-http-dev (<< 1:4000.2) + , libghc-irc-dev (>> 0.4) + , libghc-irc-dev (<< 0.5) + , libghc-mtl-dev (>> 1.1) + , libghc-mtl-dev (<< 2.1) + , libghc-network-dev (>> 2.2) + , libghc-network-dev (<< 2.3.1) + , libghc-regexpr-dev (>> 0.5) + , libghc-regexpr-dev (<< 0.6) + , libghc-split-dev (>> 0.1) + , libghc-split-dev (<< 0.2) + , libghc-strict-concurrency-dev (>> 0.2) + , libghc-strict-concurrency-dev (<< 0.3) + , libghc-tagsoup-dev (>> 0.6) + , libghc-tagsoup-dev (<< 0.13) Standards-Version: 3.9.2 Homepage: http://hackage.haskell.org/package/rss2irc -Vcs-Git: git://git.debian.org/collab-maint/rss2irc.git -Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/rss2irc.git;a=summary +Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/rss2irc +Vcs-Darcs: http://darcs.debian.org/pkg-haskell/rss2irc Package: rss2irc Architecture: any diff -Nru rss2irc-0.4.2/debian/rules rss2irc-0.4.2/debian/rules --- rss2irc-0.4.2/debian/rules 2011-06-26 16:37:07.000000000 +0000 +++ rss2irc-0.4.2/debian/rules 2012-01-02 17:13:17.000000000 +0000 @@ -8,17 +8,27 @@ package=rss2irc -build: stamp-configure +clean: checkroot + rm -f debian/rss2irc.setup build-arch stamp-configure + rm -rf debian/$(package) + +debian/rss2irc.setup: + ghc Setup.lhs -o $@ + +build: build-arch build-indep +build-indep: + +build-arch: stamp-configure $(checkdir) - runhaskell Setup.lhs build + debian/rss2irc.setup build - touch build + touch build-arch -stamp-configure: +stamp-configure: debian/rss2irc.setup $(checkdir) - runhaskell Setup.lhs configure --prefix=/usr + debian/rss2irc.setup configure --prefix=/usr touch stamp-configure @@ -29,7 +39,7 @@ binary-arch: checkroot build $(checkdir) - runhaskell Setup.lhs copy --destdir=$(CURDIR)/debian/$(package) + debian/rss2irc.setup copy --destdir=$(CURDIR)/debian/$(package) rm -rf debian/$(package)/usr/share/doc/$(package)-* cd debian/$(package) && $(INSTALL_DIR) \ usr/bin \ @@ -59,4 +69,4 @@ $(checkdir) test root = "`whoami`" -.PHONY: binary binary-arch binary-indep clean checkroot +.PHONY: binary binary-arch binary-indep clean checkroot build build-indep