pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/comms/ruby-termios Update ruby-termios package to 0.9.4.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4057d8b1bae1
branches:  trunk
changeset: 461151:4057d8b1bae1
user:      taca <taca%pkgsrc.org@localhost>
date:      Thu Sep 11 16:57:51 2003 +0000

description:
Update ruby-termios package to 0.9.4.

- Old binary isn't available any more.
- Update distfile URL and HOMEPAGE.

2002-10-13  akira yamada  <akira%arika.org@localhost>

        * termios.c
        (termios_set_ispeed): fixed typo.
        (termios_initialize): 0-cleared "@cc".
        (Termios_to_termios): unknown cc-values are treated as 0.

        * examples/modem_check.rb: renamed examples/modem_check1.rb.

        * examples/modem_check0.rb, exampes/modem_check2.rb: new.

        * version 0.9.4.

2002-10-12  akira yamada  <akira%arika.org@localhost>

        * termios.c: revoked Termios::Termios#set_cc and removed some methods
        such as Termios::Termios#iflag etc.  they became attr_reader.

        * version 0.9.3.

2002-10-12  akira yamada  <akira%arika.org@localhost>

        * termios.c
        (termios_cc): accepts index of c_cc.
        (termios_set_a_cc): new function for Termios::Termios#set_cc.
        (Init_termios): added new constants Termios::CCINDEX, Termios::IFLAGS,
        Termios::OFLAGS, Termios::CFLAGS, Termios::LFLAGS and Termios::BAUD.

        * examples/modem_check.rb: it did not work. rewrited.

        * test/test0.rb: rewrited.

        * version 0.9.2.

2002-10-10  akira yamada  <akira%arika.org@localhost>

        * termios.c
        (Init_termios): revived Termios::Termios#c_foo/c_foo= for backward
        compatibility.

2002-09-25  akira yamada  <akira%arika.org@localhost>

        * termios.c
        (termios_clone): new method "clone" for Termios::Termios.
        (Init_termios): revived Termios.new_termios for backward
        compatibility.

        * version 0.9.1.

2002-09-25  akira yamada  <akira%arika.org@localhost>

        * Termios module can be included to IO classes and can extend IO
        objects.

        * now Termios::Termios is rb_cObject class.

        * version 0.9.0.

Wed Nov 15 19:03:06 2000  akira yamada  <akira%arika.org@localhost>

        * renamed to ruby-termios.

diffstat:

 comms/ruby-termios/Makefile |  21 +++++++++++++++------
 comms/ruby-termios/PLIST    |  14 +++++++++-----
 comms/ruby-termios/distinfo |   6 +++---
 3 files changed, 27 insertions(+), 14 deletions(-)

diffs (71 lines):

diff -r 39111db72dc6 -r 4057d8b1bae1 comms/ruby-termios/Makefile
--- a/comms/ruby-termios/Makefile       Thu Sep 11 16:11:20 2003 +0000
+++ b/comms/ruby-termios/Makefile       Thu Sep 11 16:57:51 2003 +0000
@@ -1,21 +1,30 @@
-# $NetBSD: Makefile,v 1.4 2003/07/17 21:27:00 grant Exp $
+# $NetBSD: Makefile,v 1.5 2003/09/11 16:57:51 taca Exp $
 #
 
-DISTNAME=      termios
-PKGNAME=       ${RUBY_PKGNAMEPREFIX}termios-0.0.4
+DISTNAME=      ruby-termios-0.9.4
+PKGNAME=       ${RUBY_PKGNAMEPREFIX}termios-0.9.4
 CATEGORIES=    comms
-MASTER_SITES=  ftp://ftp.ruby-lang.org/pub/ruby/contrib/
+MASTER_SITES=  http://arika.org/archive/
 
 MAINTAINER=    taca%NetBSD.org@localhost
-HOMEPAGE=      http://arika.org/ruby/termios.html
+HOMEPAGE=      http://arika.org/ruby/termios/
 COMMENT=       Ruby extention to termios library
 
 DIST_SUBDIR=   ruby
 USE_RUBY_EXTCONF= yes
+DOCS=          ChangeLog README TODO.ja
+EXAMPLES=      modem_check0.rb modem_check1.rb modem_check2.rb \
+               secret_input1.rb secret_input2.rb
 
 post-install:
+       ${INSTALL_DATA_DIR} ${RUBY_DOCDIR}/termios
+.for f in ${DOCS}
+       ${INSTALL_DATA} ${WRKSRC}/$f ${RUBY_DOCDIR}/termios
+.endfor
        ${INSTALL_DATA_DIR} ${RUBY_EXAMPLESDIR}/termios
-       ${INSTALL_DATA} ${WRKSRC}/test/test[0-3].rb ${RUBY_EXAMPLESDIR}/termios
+.for f in ${EXAMPLES}
+       ${INSTALL_DATA} ${WRKSRC}/examples/$f ${RUBY_EXAMPLESDIR}/termios
+.endfor
 
 .include "../../lang/ruby-base/Makefile.common"
 .include "../../mk/bsd.pkg.mk"
diff -r 39111db72dc6 -r 4057d8b1bae1 comms/ruby-termios/PLIST
--- a/comms/ruby-termios/PLIST  Thu Sep 11 16:11:20 2003 +0000
+++ b/comms/ruby-termios/PLIST  Thu Sep 11 16:57:51 2003 +0000
@@ -1,7 +1,11 @@
-@comment $NetBSD: PLIST,v 1.1 2001/10/31 20:44:40 zuntum Exp $
+@comment $NetBSD: PLIST,v 1.2 2003/09/11 16:57:51 taca Exp $
 ${RUBY_ARCHLIBDIR}/termios.so
-${RUBY_EXAMPLESDIR}/termios/test0.rb
-${RUBY_EXAMPLESDIR}/termios/test1.rb
-${RUBY_EXAMPLESDIR}/termios/test2.rb
-${RUBY_EXAMPLESDIR}/termios/test3.rb
+${RUBY_DOCDIR}/termios/ChangeLog
+${RUBY_DOCDIR}/termios/README
+${RUBY_DOCDIR}/termios/TODO.ja
+${RUBY_EXAMPLESDIR}/termios/modem_check0.rb
+${RUBY_EXAMPLESDIR}/termios/modem_check1.rb
+${RUBY_EXAMPLESDIR}/termios/modem_check2.rb
+${RUBY_EXAMPLESDIR}/termios/secret_input1.rb
+${RUBY_EXAMPLESDIR}/termios/secret_input2.rb
 @dirrm ${RUBY_EXAMPLESDIR}/termios/
diff -r 39111db72dc6 -r 4057d8b1bae1 comms/ruby-termios/distinfo
--- a/comms/ruby-termios/distinfo       Thu Sep 11 16:11:20 2003 +0000
+++ b/comms/ruby-termios/distinfo       Thu Sep 11 16:57:51 2003 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.3 2001/06/30 15:04:58 taca Exp $
+$NetBSD: distinfo,v 1.4 2003/09/11 16:57:52 taca Exp $
 
-SHA1 (ruby/termios.tar.gz) = 945a53969962590356bc8f2e942732b86a608d1e
-Size (ruby/termios.tar.gz) = 5439 bytes
+SHA1 (ruby/ruby-termios-0.9.4.tar.gz) = 083bf763e542c59783e003da7df17b2a4d574723
+Size (ruby/ruby-termios-0.9.4.tar.gz) = 8402 bytes



Home | Main Index | Thread Index | Old Index