Received: by mail.netbsd.org (Postfix, from userid 605) id 0198B84DB9; Thu, 22 Dec 2022 02:05:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3213584D60 for ; Thu, 22 Dec 2022 02:05:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id PnQKPxsbRecD for ; Thu, 22 Dec 2022 02:05:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9686684CFC for ; Thu, 22 Dec 2022 02:05:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8FD90FA90; Thu, 22 Dec 2022 02:05:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167167475549390" MIME-Version: 1.0 Date: Thu, 22 Dec 2022 02:05:55 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/net/ruby-stompserver To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20221222020555.8FD90FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167167475549390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Thu Dec 22 02:05:55 UTC 2022 Modified Files: pkgsrc/net/ruby-stompserver: Makefile distinfo Added Files: pkgsrc/net/ruby-stompserver/patches: patch-README.txt Log Message: net/ruby-stompserver: fix build problem with hoe 4.0.1 hoe 4.0.0 drop support for deprecated format of README files. So, fix it to hoe's current parser. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/net/ruby-stompserver/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/net/ruby-stompserver/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/net/ruby-stompserver/patches/patch-README.txt Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167167475549390 Content-Disposition: inline Content-Length: 2291 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/ruby-stompserver/Makefile diff -u pkgsrc/net/ruby-stompserver/Makefile:1.11 pkgsrc/net/ruby-stompserver/Makefile:1.12 --- pkgsrc/net/ruby-stompserver/Makefile:1.11 Sun Nov 3 11:45:52 2019 +++ pkgsrc/net/ruby-stompserver/Makefile Thu Dec 22 02:05:55 2022 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.11 2019/11/03 11:45:52 rillig Exp $ +# $NetBSD: Makefile,v 1.12 2022/12/22 02:05:55 taca Exp $ DISTNAME= drizztbsd-stompserver-1c7a275 PKGNAME= ${RUBY_PKGPREFIX}-stompserver-1.0.0 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= net MAINTAINER= imil@NetBSD.org Index: pkgsrc/net/ruby-stompserver/distinfo diff -u pkgsrc/net/ruby-stompserver/distinfo:1.5 pkgsrc/net/ruby-stompserver/distinfo:1.6 --- pkgsrc/net/ruby-stompserver/distinfo:1.5 Tue Oct 26 11:06:52 2021 +++ pkgsrc/net/ruby-stompserver/distinfo Thu Dec 22 02:05:55 2022 @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.5 2021/10/26 11:06:52 nia Exp $ +$NetBSD: distinfo,v 1.6 2022/12/22 02:05:55 taca Exp $ BLAKE2s (1c7a275272f14ba3ce9d4c7f27402e659f775498) = ed6e6582d6db714410b2577c10701edc1ada731838bafda4796b2d3044021a75 SHA512 (1c7a275272f14ba3ce9d4c7f27402e659f775498) = 6036aa381721d8b9d7acd0f7a95372d19acec6e802a39a54bc81e37b9d1909a377f98024b9a471520bb0134ef9bc6fc93b77f52394594f88aab9e55cddec7a4a Size (1c7a275272f14ba3ce9d4c7f27402e659f775498) = 28274 bytes +SHA1 (patch-README.txt) = 40717676612be7a16e864ef33eb0aee988c4fd38 SHA1 (patch-config_stompserver.conf) = 42c7a959383921f9f14dca012826708c1278a223 SHA1 (patch-lib_stomp__server.rb) = 2703617d6f54565be7e440f5000ffe268d707c63 Added files: Index: pkgsrc/net/ruby-stompserver/patches/patch-README.txt diff -u /dev/null pkgsrc/net/ruby-stompserver/patches/patch-README.txt:1.1 --- /dev/null Thu Dec 22 02:05:55 2022 +++ pkgsrc/net/ruby-stompserver/patches/patch-README.txt Thu Dec 22 02:05:55 2022 @@ -0,0 +1,16 @@ +$NetBSD: patch-README.txt,v 1.1 2022/12/22 02:05:55 taca Exp $ + +Fix modern format. + +--- README.txt.orig 2011-03-22 12:52:14.000000000 +0000 ++++ README.txt +@@ -1,7 +1,7 @@ + = stompserver + +-* https://github.com/drizztbsd/stompserver +-* based on http://stompserver.rubyforge.org/ ++stompserver :: https://github.com/drizztbsd/stompserver ++based on http://stompserver.rubyforge.org/ + + == DESCRIPTION: + --_----------=_167167475549390--