Update of /cvsroot/fxruby/FXRuby
In directory usw-pr-cvs1:/tmp/cvs-serv31456
Modified Files:
Tag: release10
Makefile.in setversions.rb
Added Files:
Tag: release10
FXRuby.spec.in
Log Message:
--- NEW FILE: FXRuby.spec.in ---
Summary: FXRuby
Name: FXRuby
Version: @@FXRUBY_VERSION@@
Release: 1
Copyright: LGPL
Group: System Environment/Libraries
Source: @@FXRUBY_SRC_URL@@
URL: @@FXRUBY_HOME_URL@@
Packager: Lyle Johnson (ly...@us...)
BuildRoot: %{_tmppath}/%{name}-buildroot
%description
FXRuby is a Ruby extension module that provides an interface to the
FOX Graphical User Interface toolkit.
%prep
%setup -q
%build
ruby install.rb config --prefix=$RPM_BUILD_ROOT/usr
ruby install.rb setup
%install
ruby install.rb install
%clean
ruby install.rb clean
%files
%defattr(-,root,root)
/usr/lib/ruby/site_ruby/1.6/fox
/usr/lib/ruby/site_ruby/1.6/i686-linux/fox.so
%doc ChangeLog ANNOUNCE README LICENSE index.html doc examples
%changelog
* Thu May 09 2002 Lyle Johnson <ly...@us...>
- Fixed %files section entries for the examples
- Removed requirements for ruby 1.6
* Thu May 09 2002 Lyle Johnson <ly...@us...>
- Updated --prefix value (in %build section) and file installation
paths (in %files section) for consistency with Red Hat 7.2's
Ruby RPMs.
- Added the examples to the files list
* Thu May 09 2002 Lyle Johnson <ly...@us...>
- Removed the mkdir steps in the %install section. Those don't
appear to be necessary after all!
- Added the Packager tag at the top
- Filled in the %description section
* Thu May 09 2002 Lyle Johnson <ly...@us...>
- Changed the Name field from 'fxruby' to 'FXRuby'
- Added the --prefix=$RPM_BUILD_ROOT/usr/local option to the config
part of the %build step
- Added the mkdir steps before running install (in %install)
- Fixed the %files entries for doc and doc/images
* Thu May 09 2002 Lyle Johnson <ly...@us...>
- initial package
Index: Makefile.in
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/Attic/Makefile.in,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** Makefile.in 10 May 2002 05:04:01 -0000 1.1.2.1
--- Makefile.in 10 May 2002 19:56:52 -0000 1.1.2.2
***************
*** 9,12 ****
--- 9,14 ----
LICENSE \
README \
+ Makefile \
+ FXRuby.spec \
install.rb \
index.html \
***************
*** 42,46 ****
ruby TS_All.rb
! install:
ruby install.rb install
--- 44,48 ----
ruby TS_All.rb
! install: all
ruby install.rb install
***************
*** 61,62 ****
--- 63,74 ----
cp -p $$file $(distdir)/`dirname $$file`; \
done
+
+ changelog:
+ @cvs2cl.pl -F release10
+
+ website:
+ tar cvzf website.tar.gz index.html doc/*.html doc/images/*.png
+ scp website.tar.gz ly...@fx...:/home/groups/f/fx/fxruby/htdocs
+ -rm -f website.tar.gz
+
+ .PHONY: changelog clean website
Index: setversions.rb
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/setversions.rb,v
retrieving revision 1.15.2.2
retrieving revision 1.15.2.3
diff -C2 -d -r1.15.2.2 -r1.15.2.3
*** setversions.rb 10 May 2002 05:04:01 -0000 1.15.2.2
--- setversions.rb 10 May 2002 19:56:52 -0000 1.15.2.3
***************
*** 32,35 ****
--- 32,36 ----
setversions("ANNOUNCE")
+ setversions("FXRuby.spec")
setversions("Makefile")
setversions("ext/fox/extconf.rb")
|