[rubygem-openshift-origin-dns-bind/f18] First import into Fedora

Adam Miller maxamillion at fedoraproject.org
Tue Aug 14 15:16:23 UTC 2012


commit db08a92cc8e41d0d813d61c38f882c2b2a2e89e4
Author: Adam Miller <maxamillion at fedoraproject.org>
Date:   Tue Aug 14 10:16:48 2012 -0500

    First import into Fedora

 .gitignore                             |    1 +
 rubygem-openshift-origin-dns-bind.spec |   94 ++++++++++++++++++++++++++++++++
 sources                                |    1 +
 3 files changed, 96 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..0f2c441 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/openshift-origin-dns-bind-0.8.5.gem
diff --git a/rubygem-openshift-origin-dns-bind.spec b/rubygem-openshift-origin-dns-bind.spec
new file mode 100644
index 0000000..21f3964
--- /dev/null
+++ b/rubygem-openshift-origin-dns-bind.spec
@@ -0,0 +1,94 @@
+%global gem_name openshift-origin-dns-bind
+%global rubyabi 1.9.1
+
+Summary:        OpenShift plugin for BIND service
+Name:           rubygem-%{gem_name}
+Version:        0.8.5
+Release:        6%{?dist}
+Group:          Development/Languages
+License:        ASL 2.0
+URL:            http://openshift.redhat.com
+Source0:        http://mirror.openshift.com/pub/openshift-origin/source/%{name}/%{gem_name}-%{version}.gem
+Requires:       ruby(abi) = %{rubyabi}
+Requires:       rubygems
+Requires:       rubygem(openshift-origin-common)
+Requires:       rubygem(dnsruby)
+Requires:       rubygem(json)
+Requires:       bind
+Requires:       bind-utils
+Requires:       openshift-origin-broker
+BuildRequires:  rubygems
+BuildRequires:  rubygems-devel
+BuildArch:      noarch
+Provides:       rubygem(%{gem_name}) = %version
+
+%description
+Provides a Bind DNS service based plugin
+
+%prep
+gem unpack %{SOURCE0}
+%setup -q -D -T -n  %{gem_name}-%{version}
+
+gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec
+
+%build
+mkdir -p .%{gem_dir}
+
+# Create the gem as gem install only works on a gem file
+gem build %{gem_name}.gemspec
+
+export CONFIGURE_ARGS="--with-cflags='%{optflags}'"
+# gem install compiles any C extensions and installs into a directory
+# We set that to be a local directory so that we can move it into the
+# buildroot in %%install
+gem install -V \
+        --local \
+        --install-dir .%{gem_dir} \
+        --force \
+        --rdoc \
+        %{gem_name}-%{version}.gem
+
+%install
+mkdir -p %{buildroot}%{gem_dir}
+cp -a .%{gem_dir}/* %{buildroot}%{gem_dir}/
+
+# Add documents/examples
+mkdir -p %{buildroot}%{_docdir}/%{name}-%{version}/
+cp -r doc/* %{buildroot}%{_docdir}/%{name}-%{version}/
+
+%files
+%doc LICENSE COPYRIGHT Gemfile
+%doc %{gem_docdir}
+%{gem_instdir}
+%{gem_spec}
+%exclude %{gem_cache}
+
+%changelog
+* Thu Aug 09 2012 Adam Miller <admiller at redhat.com> - 0.8.5-6
+- don't clean up false positive wrong-file-end-of-line-encoding
+- Remove un-needed symlinks to ruby_vendorlibdir
+
+* Tue Aug 07 2012 Adam Miller <admiller at redhat.com> - 0.8.5-5
+- removed non rubygem package as its no longer needed
+- clean up wrong-file-end-of-line-encoding for ri doc files
+
+* Tue Jul 31 2012 Troy Dawson <tdawson at redhat.com> 0.8.5-4
+- Changed name to rubygem-openshift-origin-dns-bind
+- Added rubygem(dnsruby) requires
+- Removed selinux-policy and policycoreutils dependancies
+
+* Tue Jul 24 2012 Troy Dawson <tdawson at redhat.com> 0.8.5-3
+- change ruby_sitelibdir to ruby_vendorlibdir per guidelines
+
+* Fri Jul 20 2012 Troy Dawson <tdawson at redhat.com> 0.8.5-2
+- Ported to be include in Fedora 18
+
+* Wed May 30 2012 Krishna Raman <kraman at gmail.com> 0.8.5-1
+- Adding livecd build scripts Adding a text only minimal version of livecd
+  Added ability to access livecd dns from outside VM (kraman at gmail.com)
+
+* Fri Apr 27 2012 Krishna Raman <kraman at gmail.com> 0.8.4-1
+- cleaning up spec files (dmcphers at redhat.com)
+
+* Sat Apr 21 2012 Krishna Raman <kraman at gmail.com> 0.8.3-1
+- new package built with tito
diff --git a/sources b/sources
index e69de29..5714038 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+353fc04be720ee90fab81253d2e35433  openshift-origin-dns-bind-0.8.5.gem


More information about the scm-commits mailing list