From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 3023D1F619 for ; Sat, 22 Feb 2020 06:51:24 +0000 (UTC) From: Eric Wong To: regurgitator-public@bogomips.org Subject: [PATCH] update URLs to point to YHBT.net Date: Sat, 22 Feb 2020 06:51:24 +0000 Message-Id: <20200222065124.1309-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: bogomips is expiring and I can't afford it --- .olddoc.yml | 10 +++++----- GNUmakefile | 2 +- README | 8 ++++---- pkg.mk | 2 +- regurgitator.gemspec | 4 ++-- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.olddoc.yml b/.olddoc.yml index 731efc0..c889d52 100644 --- a/.olddoc.yml +++ b/.olddoc.yml @@ -1,8 +1,8 @@ --- -cgit_url: https://bogomips.org/regurgitator.git -git_url: git://bogomips.org/regurgitator.git -rdoc_url: https://bogomips.org/regurgitator/ -ml_url: https://bogomips.org/regurgitator-public/ -public_email: regurgitator-public@bogomips.org +cgit_url: https://yhbt.net/regurgitator.git +git_url: https://yhbt.net/regurgitator.git +rdoc_url: https://yhbt.net/regurgitator/ +ml_url: https://yhbt.net/regurgitator-public/ +public_email: regurgitator-public@yhbt.net nntp_url: - nntp://news.public-inbox.org/inbox.comp.lang.ruby.regurgitator diff --git a/GNUmakefile b/GNUmakefile index d1cf550..438d5e8 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,5 +1,5 @@ all:: -RSYNC_DEST := bogomips.org:/srv/bogomips/regurgitator +RSYNC_DEST := yhbt.net:/srv/yhbt/regurgitator rfpackage := regurgitator ex := $(addprefix examples/, domain_host.ru domain_path.ru one_domain.ru) diff --git a/README b/README index 1414d75..8c07bd9 100644 --- a/README +++ b/README @@ -25,13 +25,13 @@ our library code. See {examples}[link:examples/] for rackup config files. You can get the latest source via git from the following locations: - git://bogomips.org/regurgitator.git + git://yhbt.net/regurgitator.git git://repo.or.cz/regurgitator.git (mirror) You may browse the code from the web and download the latest snapshot tarballs here: -* https://bogomips.org/regurgitator.git +* https://yhbt.net/regurgitator.git * http://repo.or.cz/w/regurgitator.git (gitweb) Inline patches (from "git format-patch") to the mailing list are @@ -46,7 +46,7 @@ don't email the git mailing list or maintainer with regurgitator patches. == Contact All feedback (bug reports, user/development discussion, patches, pull -requests) go to the public mailing list: regurgitator-public@bogomips.org +requests) go to the public mailing list: regurgitator-public@yhbt.net -Archives are available at https://bogomips.org/regurgitator-public/ +Archives are available at https://yhbt.net/regurgitator-public/ and nntp://news.public-inbox.org/inbox.comp.lang.ruby.regurgitator diff --git a/pkg.mk b/pkg.mk index 186db53..628830d 100644 --- a/pkg.mk +++ b/pkg.mk @@ -60,7 +60,7 @@ doc:: .document .olddoc.yml $(pkg_extra) $(PLACEHOLDERS) -find lib -type f -name '*.rbc' -exec rm -f '{}' ';' -find ext -type f -name '*.rbc' -exec rm -f '{}' ';' $(RM) -r doc - $(RDOC) -f oldweb + $(RDOC) -f dark216 $(OLDDOC) merge install -m644 COPYING doc/COPYING install -m644 NEWS doc/NEWS diff --git a/regurgitator.gemspec b/regurgitator.gemspec index 537dbb0..03d4e40 100644 --- a/regurgitator.gemspec +++ b/regurgitator.gemspec @@ -7,12 +7,12 @@ Gem::Specification.new do |s| s.version = (ENV['VERSION'].dup || '0.9.0') s.authors = ['regurgitator hackers'] s.description = File.read('README').split("\n\n")[1] - s.email = %q{regurgitator-public@bogomips.org} + s.email = %q{regurgitator-public@yhbt.net} s.extra_rdoc_files = IO.readlines('.document').map!(&:chomp!).keep_if do |f| File.exist?(f) end s.files = manifest - s.homepage = 'https://bogomips.org/regurgitator/' + s.homepage = 'https://yhbt.net/regurgitator/' s.summary = 'regurgitator - read-only Rack endpoints for MogileFS' s.test_files = Dir["test/test_*.rb"] s.add_dependency("rack", ['~> 2.0'])