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: AS22989 209.51.188.0/24 X-Spam-Status: No, score=-4.1 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 895D01F5CB for ; Mon, 22 Apr 2019 02:32:47 +0000 (UTC) Received: from localhost ([127.0.0.1]:59586 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hIOlC-0007fx-Cl for e@80x24.org; Sun, 21 Apr 2019 22:32:46 -0400 Received: from eggs.gnu.org ([209.51.188.92]:54003) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hIOl9-0007dy-JC for dtas-all@nongnu.org; Sun, 21 Apr 2019 22:32:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hIOl8-0008Ke-FL for dtas-all@nongnu.org; Sun, 21 Apr 2019 22:32:43 -0400 Received: from dcvr.yhbt.net ([2600:3c01::f03c:91ff:fe96:f5d6]:53626) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hIOl8-0008KT-AK for dtas-all@nongnu.org; Sun, 21 Apr 2019 22:32:42 -0400 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 365801F5CB for ; Mon, 22 Apr 2019 02:32:41 +0000 (UTC) From: Eric Wong To: dtas-all@nongnu.org Subject: [PATCH] doc: update homepage to point to cgit /about/ Date: Mon, 22 Apr 2019 02:32:41 +0000 Message-Id: <20190422023241.13665-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2600:3c01::f03c:91ff:fe96:f5d6 X-BeenThere: dtas-all@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: duct tape audio suite List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dtas-all-bounces+e=80x24.org@nongnu.org Sender: "dtas-all" Having more clickable links is better and the cgit instance looks good without CSS in w3m. I've submitted patches to the cgit mailing list[1] to reduce dependencies on css, and they're also available at https://80x24.org/cgit.git in the meantime [1] https://lists.zx2c4.com/mailman/listinfo/cgit https://lists.zx2c4.com/pipermail/cgit/2019-January.txt.gz --- dtas-linux.gemspec | 2 +- dtas-mpris.gemspec | 2 +- dtas.gemspec | 2 +- lib/dtas.rb | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dtas-linux.gemspec b/dtas-linux.gemspec index f792978..cc9a8c8 100644 --- a/dtas-linux.gemspec +++ b/dtas-linux.gemspec @@ -12,7 +12,7 @@ "via tee(), splice() and eventfd() on Linux" s.email =3D %q{e@80x24.org} s.files =3D [] - s.homepage =3D 'https://80x24.org/dtas/' + s.homepage =3D 'https://80x24.org/dtas.git/about/' s.add_dependency(%q, '~> 0.16') s.add_dependency(%q, '~> 3.5') s.licenses =3D 'GPL-3.0+' diff --git a/dtas-mpris.gemspec b/dtas-mpris.gemspec index 3603529..d603c44 100644 --- a/dtas-mpris.gemspec +++ b/dtas-mpris.gemspec @@ -11,7 +11,7 @@ "This is currently a dummy package as dtas-mpris is not implemented" s.email =3D %q{e@80x24.org} s.files =3D [] - s.homepage =3D 'https://80x24.org/dtas/' + s.homepage =3D 'https://80x24.org/dtas.git/about/' s.add_dependency(%q) s.add_dependency(%q) s.licenses =3D 'GPL-2.0+' diff --git a/dtas.gemspec b/dtas.gemspec index ec18254..3b7b1c5 100644 --- a/dtas.gemspec +++ b/dtas.gemspec @@ -10,7 +10,7 @@ s.email =3D %q{e@80x24.org} s.executables =3D manifest.grep(%r{\Abin/}).map { |s| s.sub(%r{\Abin/}= , "") } s.files =3D manifest - s.homepage =3D 'https://80x24.org/dtas/' + s.homepage =3D 'https://80x24.org/dtas.git/about/' s.licenses =3D "GPL-3.0+" s.required_ruby_version =3D '>=3D 1.9.3' end diff --git a/lib/dtas.rb b/lib/dtas.rb index 9c1b5a5..7e9c0d5 100644 --- a/lib/dtas.rb +++ b/lib/dtas.rb @@ -3,7 +3,7 @@ # frozen_string_literal: true =20 # DTAS currently exposes no public API for Ruby programmers. -# See https://80x24.org/dtas/ for more info. +# See https://80x24.org/dtas.git/about/ for more info. module DTAS =20 # try to use the monotonic clock in Ruby >=3D 2.1, it is immune to clo= ck --=20 EW