Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 2C5707A237 for ; Sat, 22 Apr 2017 18:20:16 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8D6C984DAE; Sat, 22 Apr 2017 18:20:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1CC3F84DA9 for ; Sat, 22 Apr 2017 18:20:15 +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 NspwENqiAXUH for ; Sat, 22 Apr 2017 18:20:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7E1F784CE1 for ; Sat, 22 Apr 2017 18:20:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7984BFBE4; Sat, 22 Apr 2017 18:20:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1492885214102760" MIME-Version: 1.0 Date: Sat, 22 Apr 2017 18:20:14 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-curses To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20170422182014.7984BFBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1492885214102760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sat Apr 22 18:20:14 UTC 2017 Modified Files: pkgsrc/devel/ruby-curses: DESCR Makefile PLIST Added Files: pkgsrc/devel/ruby-curses: distinfo Log Message: Now, move ruby-curses-gem to ruby-curses overriding part of ruby18 version. To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.2 pkgsrc/devel/ruby-curses/DESCR cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/ruby-curses/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/ruby-curses/PLIST cvs rdiff -u -r0 -r1.22 pkgsrc/devel/ruby-curses/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1492885214102760 Content-Disposition: inline Content-Length: 4014 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-curses/DESCR diff -u pkgsrc/devel/ruby-curses/DESCR:1.1.1.1 pkgsrc/devel/ruby-curses/DESCR:1.2 --- pkgsrc/devel/ruby-curses/DESCR:1.1.1.1 Sat Nov 27 14:35:15 2004 +++ pkgsrc/devel/ruby-curses/DESCR Sat Apr 22 18:20:14 2017 @@ -1,2 +1,2 @@ -This is a Ruby extension to the curses library, actually a part of the -Ruby distribution. +A Ruby binding for curses, ncurses, and PDCurses, formerly part of the Ruby +standard library. curses is an extension library for text UI applications. \ No newline at end of file Index: pkgsrc/devel/ruby-curses/Makefile diff -u pkgsrc/devel/ruby-curses/Makefile:1.22 pkgsrc/devel/ruby-curses/Makefile:1.23 --- pkgsrc/devel/ruby-curses/Makefile:1.22 Thu Sep 8 15:19:16 2016 +++ pkgsrc/devel/ruby-curses/Makefile Sat Apr 22 18:20:14 2017 @@ -1,34 +1,15 @@ -# $NetBSD: Makefile,v 1.22 2016/09/08 15:19:16 joerg Exp $ +# $NetBSD: Makefile,v 1.23 2017/04/22 18:20:14 taca Exp $ # -DISTNAME= ${RUBY_DISTNAME} -PKGREVISION= 2 -PKGNAME= ${RUBY_PKGPREFIX}-${RUBY_EXTNAME}-${RUBY_VERSION_FULL} -RUBY_EXTNAME= curses -CATEGORIES= devel ruby -MASTER_SITES= ${MASTER_SITE_RUBY} +DISTNAME= curses-1.2.2 +CATEGORIES= devel -MAINTAINER= taca@NetBSD.org -HOMEPAGE= ${RUBY_HOMEPAGE} -COMMENT= Ruby extension to curses library +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/ruby/curses +COMMENT= Ruby binding for curses, ncurses, and PDCurses +LICENSE= 2-clause-bsd -USE_RUBY_EXTCONF= yes -EXTRACT_ELEMENTS= ${RUBY_DISTNAME}/ext/curses -WRKSRC= ${RUBY_WRKSRC}/ext/curses - -CURSES_EXAMPLES= hello.rb rain.rb view.rb view2.rb -REPLACE_RUBY= ${CURSES_EXAMPLES} -INSTALLATION_DIRS= ${RUBY_EG}/curses - -RUBY_VERSIONS_ACCEPTED= 18 - -post-install: -.for f in ${CURSES_EXAMPLES} - ${INSTALL_DATA} ${WRKSRC}/${f} ${DESTDIR}${PREFIX}/${RUBY_EG}/curses -.endfor - -.include "../../lang/ruby/modules.mk" -.include "../../lang/ruby/Makefile.common" +.include "../../lang/ruby/gem.mk" .include "../../mk/curses.buildlink3.mk" .include "../../mk/termcap.buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/ruby-curses/PLIST diff -u pkgsrc/devel/ruby-curses/PLIST:1.4 pkgsrc/devel/ruby-curses/PLIST:1.5 --- pkgsrc/devel/ruby-curses/PLIST:1.4 Sun Jun 14 17:49:09 2009 +++ pkgsrc/devel/ruby-curses/PLIST Sat Apr 22 18:20:14 2017 @@ -1,6 +1,26 @@ -@comment $NetBSD: PLIST,v 1.4 2009/06/14 17:49:09 joerg Exp $ -${RUBY_VENDORARCHLIB}/curses.${RUBY_DLEXT} -${RUBY_EG}/curses/hello.rb -${RUBY_EG}/curses/rain.rb -${RUBY_EG}/curses/view.rb -${RUBY_EG}/curses/view2.rb +@comment $NetBSD: PLIST,v 1.5 2017/04/22 18:20:14 taca Exp $ +${GEM_HOME}/cache/${GEM_NAME}.gem +${GEM_EXTSDIR}/curses.${RUBY_DLEXT} +${GEM_EXTSDIR}/gem.build_complete +${GEM_LIBDIR}/.gitignore +${GEM_LIBDIR}/.gitmodules +${GEM_LIBDIR}/.travis.yml +${GEM_LIBDIR}/BSDL +${GEM_LIBDIR}/COPYING +${GEM_LIBDIR}/Gemfile +${GEM_LIBDIR}/History.md +${GEM_LIBDIR}/README.md +${GEM_LIBDIR}/Rakefile +${GEM_LIBDIR}/appveyor.yml +${GEM_LIBDIR}/curses.gemspec +${GEM_LIBDIR}/ext/curses/curses.c +${GEM_LIBDIR}/ext/curses/depend +${GEM_LIBDIR}/ext/curses/extconf.rb +${GEM_LIBDIR}/lib/curses.rb +${GEM_LIBDIR}/lib/curses.${RUBY_DLEXT} +${GEM_LIBDIR}/sample/hello.rb +${GEM_LIBDIR}/sample/mouse.rb +${GEM_LIBDIR}/sample/rain.rb +${GEM_LIBDIR}/sample/view.rb +${GEM_LIBDIR}/sample/view2.rb +${GEM_HOME}/specifications/${GEM_NAME}.gemspec Added files: Index: pkgsrc/devel/ruby-curses/distinfo diff -u /dev/null pkgsrc/devel/ruby-curses/distinfo:1.22 --- /dev/null Sat Apr 22 18:20:14 2017 +++ pkgsrc/devel/ruby-curses/distinfo Sat Apr 22 18:20:14 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.22 2017/04/22 18:20:14 taca Exp $ + +SHA1 (curses-1.2.2.gem) = 3b4785845d46ff02ba078064597059fb54b1eb24 +RMD160 (curses-1.2.2.gem) = 289c4d0af79eecbf092d84a3a357592f04f9c9b1 +SHA512 (curses-1.2.2.gem) = 1cbfa9045ab9572e6c128a211cafa57342b21d96806e9d6affe1a237a3ab7f55696991b5e7fdc8fdb1a81e7e9b3350ea7005717137dd6047b713828e9a4418b6 +Size (curses-1.2.2.gem) = 34816 bytes --_----------=_1492885214102760--