From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, URIBL_BLOCKED shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: kgio-public@bogomips.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 245731FA58; Sat, 10 Jan 2015 11:14:50 +0000 (UTC) From: Eric Wong To: kgio-public@bogomips.org Cc: Eric Wong Subject: [PATCH] cleanup packaging harder Date: Sat, 10 Jan 2015 11:14:45 +0000 Message-Id: <1420888488-29473-1-git-send-email-e@80x24.org> X-Mailer: git-send-email 2.2.1.202.g55b961f List-Id: We don't need references to RubyForge or old images crap. --- GNUmakefile | 5 ----- pkg.mk | 3 --- 2 files changed, 8 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 89408d3..02d08ba 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,9 +1,4 @@ all:: RSYNC_DEST := bogomips.org:/srv/bogomips/kgio -rfproject := rainbows rfpackage := kgio include pkg.mk -ifneq ($(VERSION),) -release:: - $(RAKE) publish_news VERSION=$(VERSION) -endif diff --git a/pkg.mk b/pkg.mk index a913451..80beb9f 100644 --- a/pkg.mk +++ b/pkg.mk @@ -1,5 +1,4 @@ RUBY = ruby -RAKE = rake RSYNC = rsync OLDDOC = olddoc RDOC = rdoc @@ -132,8 +131,6 @@ ifneq ($(RSYNC_DEST),) publish_doc: -git set-file-times $(MAKE) doc - find doc/images -type f | \ - TZ=UTC xargs touch -d '1970-01-01 00:00:06' doc/rdoc.css $(MAKE) doc_gz $(RSYNC) -av doc/ $(RSYNC_DEST)/ git ls-files | xargs touch -- EW