Compare commits
7 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bfee063d09 | ||
|
|
f0df2a2bd9 | ||
|
|
b90186d41a | ||
|
|
8e7ee14fda | ||
|
|
d7ed168908 | ||
|
|
1f6148508b | ||
|
|
f3924e9c0f |
5 changed files with 23 additions and 25 deletions
|
|
@ -1 +0,0 @@
|
||||||
htmlentities-4.0.0.gem
|
|
||||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
htmlentities-4.2.1.gem
|
||||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
||||||
# Makefile for source rpm: rubygem-htmlentities
|
|
||||||
# $Id$
|
|
||||||
NAME := rubygem-htmlentities
|
|
||||||
SPECFILE = $(firstword $(wildcard *.spec))
|
|
||||||
|
|
||||||
define find-makefile-common
|
|
||||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
|
||||||
endef
|
|
||||||
|
|
||||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
|
||||||
|
|
||||||
ifeq ($(MAKEFILE_COMMON),)
|
|
||||||
# attept a checkout
|
|
||||||
define checkout-makefile-common
|
|
||||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
|
||||||
endef
|
|
||||||
|
|
||||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
|
||||||
endif
|
|
||||||
|
|
||||||
include $(MAKEFILE_COMMON)
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
|
|
||||||
Summary: A module for encoding and decoding (X)HTML entities
|
Summary: A module for encoding and decoding (X)HTML entities
|
||||||
Name: rubygem-%{gemname}
|
Name: rubygem-%{gemname}
|
||||||
Version: 4.0.0
|
Version: 4.2.1
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://htmlentities.rubyforge.org/
|
URL: http://htmlentities.rubyforge.org/
|
||||||
|
|
@ -58,6 +58,9 @@ rm -rf %{buildroot}
|
||||||
mkdir -p %{buildroot}%{gemdir}
|
mkdir -p %{buildroot}%{gemdir}
|
||||||
cp -a ./%{gemdir}/* %{buildroot}%{gemdir}/
|
cp -a ./%{gemdir}/* %{buildroot}%{gemdir}/
|
||||||
|
|
||||||
|
# Cleanups
|
||||||
|
rm -f %{buildroot}%{geminstdir}/setup.rb
|
||||||
|
|
||||||
# Create symlinks for ruby-%%{gemname}
|
# Create symlinks for ruby-%%{gemname}
|
||||||
# Copied from rubygem-gettext.spec
|
# Copied from rubygem-gettext.spec
|
||||||
|
|
||||||
|
|
@ -125,6 +128,7 @@ rm -rf %{buildroot}
|
||||||
%dir %{geminstdir}
|
%dir %{geminstdir}
|
||||||
%doc %{geminstdir}/[A-Z]*
|
%doc %{geminstdir}/[A-Z]*
|
||||||
%{geminstdir}/lib/
|
%{geminstdir}/lib/
|
||||||
|
%doc %{geminstdir}/perf/
|
||||||
%doc %{geminstdir}/test/
|
%doc %{geminstdir}/test/
|
||||||
|
|
||||||
%{gemdir}/cache/%{gemname}-%{version}.gem
|
%{gemdir}/cache/%{gemname}-%{version}.gem
|
||||||
|
|
@ -137,6 +141,21 @@ rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Apr 11 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 4.2.1-1
|
||||||
|
- 4.2.1
|
||||||
|
|
||||||
|
* Wed Jan 13 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 4.2.0-2.respin1
|
||||||
|
- 4.2.0 (tarball seems respun)
|
||||||
|
|
||||||
|
* Thu Aug 27 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 4.2.0-1
|
||||||
|
- 4.2.0
|
||||||
|
|
||||||
|
* Fri Aug 21 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 4.1.0-1
|
||||||
|
- 4.1.0
|
||||||
|
|
||||||
|
* Sat Jul 25 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 4.0.0-3
|
||||||
|
- F-12: Mass rebuild
|
||||||
|
|
||||||
* Fri Mar 6 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp>
|
* Fri Mar 6 2009 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp>
|
||||||
- Cleanups
|
- Cleanups
|
||||||
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
8490050367c95d63f83049852f7e93a8 htmlentities-4.0.0.gem
|
9ef40bc84cf09c1a653c56c440d166fc htmlentities-4.2.1.gem
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue