Revert "Update rubygem-mysql2 to 0.3.15-1"
This reverts commit 5b61ea253e
.
This commit is contained in:
parent
5b61ea253e
commit
32e89fa998
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
/mysql2-0.3.13.gem
|
/mysql2-0.3.13.gem
|
||||||
/mysql2-0.3.15.gem
|
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
|
# Generated from mysql2-0.3.11.gem by gem2rpm -*- rpm-spec -*-
|
||||||
%global gem_name mysql2
|
%global gem_name mysql2
|
||||||
|
|
||||||
Name: rubygem-%{gem_name}
|
Name: rubygem-%{gem_name}
|
||||||
Version: 0.3.15
|
Version: 0.3.13
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A simple, fast Mysql library for Ruby, binding to libmysql
|
Summary: A simple, fast Mysql library for Ruby, binding to libmysql
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
@ -10,28 +11,21 @@ URL: http://github.com/brianmario/mysql2
|
|||||||
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
||||||
Requires: ruby(release)
|
Requires: ruby(release)
|
||||||
Requires: ruby(rubygems)
|
Requires: ruby(rubygems)
|
||||||
Requires: mysql
|
Requires: mariadb-libs
|
||||||
BuildRequires: ruby(release)
|
BuildRequires: ruby(release)
|
||||||
BuildRequires: rubygems-devel
|
BuildRequires: rubygems-devel
|
||||||
BuildRequires: ruby ruby-devel
|
BuildRequires: ruby-devel
|
||||||
BuildRequires: mysql mysql-devel
|
BuildRequires: rubygem(rspec)
|
||||||
|
BuildRequires: mariadb-devel
|
||||||
|
BuildRequires: mariadb-server
|
||||||
Provides: rubygem(%{gem_name}) = %{version}
|
Provides: rubygem(%{gem_name}) = %{version}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The Mysql2 gem is meant to serve the extremely common use-case of connecting,
|
The Mysql2 gem is meant to serve the extremely common use-case of
|
||||||
querying and iterating on results. Some database libraries out there serve as
|
connecting, querying and iterating on results. Some database libraries
|
||||||
direct 1:1 mappings of the already complex C API's available. This one is not.
|
out there serve as direct 1:1 mappings of the already complex C API\'s
|
||||||
|
available. This one is not.
|
||||||
|
|
||||||
It also forces the use of UTF-8 [or binary] for the connection [and all strings
|
|
||||||
in 1.9, unless Encoding.default_internal is set then it'll convert from UTF-8
|
|
||||||
to that encoding] and uses encoding-aware MySQL API calls where it can.
|
|
||||||
|
|
||||||
The API consists of two classes:
|
|
||||||
|
|
||||||
Mysql2::Client - your connection to the database
|
|
||||||
|
|
||||||
Mysql2::Result - returned from issuing a #query on the connection. It includes
|
|
||||||
Enumerable.
|
|
||||||
|
|
||||||
%package doc
|
%package doc
|
||||||
Summary: Documentation for %{name}
|
Summary: Documentation for %{name}
|
||||||
@ -40,7 +34,7 @@ Requires: %{name} = %{version}-%{release}
|
|||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%description doc
|
%description doc
|
||||||
Documentation for %{name}.
|
Documentation for %{name}
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
gem unpack %{SOURCE0}
|
gem unpack %{SOURCE0}
|
||||||
@ -53,20 +47,28 @@ gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec
|
|||||||
# Create the gem as gem install only works on a gem file
|
# Create the gem as gem install only works on a gem file
|
||||||
gem build %{gem_name}.gemspec
|
gem build %{gem_name}.gemspec
|
||||||
|
|
||||||
# %%gem_install compiles any C extensions and installs the gem into ./%gem_dir
|
# %%gem_install compiles any C extensions and installs the gem into ./%%gem_dir
|
||||||
# by default, so that we can move it into the buildroot in %%install
|
# by default, so that we can move it into the buildroot in %%install
|
||||||
%gem_install
|
%gem_install
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p %{buildroot}%{gem_dir}
|
mkdir -p %{buildroot}%{gem_dir}
|
||||||
cp -pa .%{gem_dir}/* \
|
cp -pa .%{gem_dir}/* \
|
||||||
%{buildroot}%{gem_dir}/
|
%{buildroot}%{gem_dir}/
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{gem_extdir_mri}/lib/mysql2
|
mkdir -p %{buildroot}%{gem_extdir_mri}/lib/mysql2
|
||||||
mv %{buildroot}%{gem_instdir}/lib/mysql2/mysql2.so %{buildroot}%{gem_extdir_mri}/lib/mysql2/
|
mv %{buildroot}%{gem_instdir}/lib/mysql2/mysql2.so %{buildroot}%{gem_extdir_mri}/lib/mysql2
|
||||||
|
|
||||||
# Remove the binary extension sources and build leftovers.
|
# Remove some droppings
|
||||||
rm -rf %{buildroot}%{geminstdir}/ext
|
rm -f %{buildroot}%{gem_instdir}/{.gitignore,.rspec,.rvmrc,.travis.yml}
|
||||||
|
rm -rf %{buildroot}%{gem_instdir}/spec
|
||||||
|
|
||||||
|
%check
|
||||||
|
# We can't run the tests because they require a mysql instance. That's
|
||||||
|
# a bit much to require for builds. The following invocation is documentation
|
||||||
|
#systemctl start mysqld.service
|
||||||
|
#rspec -I%%{buildroot}%%{gem_extdir_mri}/lib/ spec
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
@ -76,24 +78,15 @@ rm -rf %{buildroot}%{geminstdir}/ext
|
|||||||
%{gem_extdir_mri}
|
%{gem_extdir_mri}
|
||||||
%exclude %{gem_cache}
|
%exclude %{gem_cache}
|
||||||
%{gem_spec}
|
%{gem_spec}
|
||||||
%{gem_instdir}/support/
|
%exclude %{gem_instdir}/support
|
||||||
%doc %{gem_instdir}/README.md
|
|
||||||
%doc %{gem_instdir}/MIT-LICENSE
|
%doc %{gem_instdir}/MIT-LICENSE
|
||||||
|
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%doc %{gem_docdir}
|
%doc %{gem_docdir}
|
||||||
%{gem_instdir}/spec/
|
%doc %{gem_instdir}/README.md
|
||||||
%{gem_instdir}/examples/
|
%{gem_instdir}/examples
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Feb 11 2014 Miroslav Suchý <msuchy@redhat.com> 0.3.15-1
|
* Wed Sep 11 2013 Alexander Chernyakhovsky <achernya@mit.edu> - 0.3.13-1
|
||||||
- rebase to mysql2-0.3.15
|
- Initial package
|
||||||
|
|
||||||
* Mon Jul 29 2013 Miroslav Suchý <msuchy@redhat.com> 0.3.13-3
|
|
||||||
- fix files section
|
|
||||||
- move extension
|
|
||||||
|
|
||||||
* Fri Jul 26 2013 Miroslav Suchý <msuchy@redhat.com> 0.3.13-2
|
|
||||||
- initial package
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user