1
0
rubygem-gem2rpm/0004-added-example-gem2rpm.yml.patch
Marcus Rueckert 2c88c1595d - added support for 2.4.0
- dropped all patches and replaced them with git format-patch
  series:
  - modified:
     0001-use-the-ID-from-os-release-to-use-the-proper-templat.patch
     0002-added-basic-config-file-support-to-gem2rpm-in-yaml-f.patch
     0003-new-opensuse-templates.-they-require-the-config-file.patch
     0004-added-example-gem2rpm.yml.patch
     0005-properly-shorten-description-and-summary.patch
     0006-Preserve-the-license-header-found-in-the-output-file.patch
     0007-fixes-for-the-opensuse-template.patch
     0008-do-not-use-not-.-not-supported-on-1.8-e.g.patch
     0009-No-longer-require-the-ruby-version-inside-the-subpac.patch
     0010-Try-to-load-rbconfigpackagingsupport-and-fail-gracef.patch
     0011-Add-support-for-scripts-pre-post-for-subpackages.patch
     0012-typo-in-gem2rpm.yml.documentation-custom_pkgs-instea.patch
     0013-Also-tag-LICENSE-MIT-as-docfile.patch
     0014-Refactor-into-multiple-lines.patch
     0015-Add-licence-to-the-list-of-license-files-as-well.patch
     0016-add-two-more-ways-to-express-changes.patch
   - dropped:
     0017-touch-unpacked-sources.patch
     0001-Also-tag-APACHE-LICENSE-2.0-as-docfile.patch
   - newly added:
     0017-.markdown-is-also-seen-in-the-wild.patch
     0018-Only-use-the-extensions-doc-dir-on-MRI-2.1.x.patch
     0019-Cleaner-solution-for-the-extensions-doc-dir.patch
     0020-Ruby-1.8-insists-on-the-for-the-parameter.patch
     0021-Fix-company-name-in-copyright-header.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:ruby/rubygem-gem2rpm?expand=0&rev=20
2016-11-10 16:21:35 +00:00

91 lines
2.3 KiB
Diff

From f408e57b282cd55d59c1317240ee9e0dc679373c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marcus=20R=C3=BCckert?= <mrueckert@suse.de>
Date: Thu, 24 Jul 2014 17:02:56 +0200
Subject: [PATCH 04/25] added example gem2rpm.yml
---
Rakefile | 2 +-
gem2rpm.yml.documentation | 70 +++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 71 insertions(+), 1 deletion(-)
create mode 100644 gem2rpm.yml.documentation
diff --git a/gem2rpm.yml.documentation b/gem2rpm.yml.documentation
new file mode 100644
index 0000000..5e444eb
--- /dev/null
+++ b/gem2rpm.yml.documentation
@@ -0,0 +1,70 @@
+# ---
+# ## used by gem2rpm
+# :summary: this is a custom summary
+# ## used by gem2rpm
+# :description: |-
+# this is a custom description
+#
+# it can be multiline
+# ## used by gem2rpm
+# :license: MIT or Ruby
+# ## used by gem2rpm and gem_packages
+# :version_suffix: -x_y
+# ## used by gem2rpm and gem_packages
+# :disable_docs: true
+# ## used by gem2rpm
+# :disable_automatic_rdoc_dep: true
+# ## used by gem2rpm
+# :preamble: |-
+# BuildRequires: foobar
+# Requires: foobar
+# ## used by gem2rpm
+# :patches:
+# foo.patch: -p1
+# bar.patch:
+# ## used by gem2rpm
+# :sources:
+# - foo.desktop
+# - bar.desktop
+# :gem_install_args: '....'
+# ## used by gem2rpm
+# :pre_install: |-
+# %if 0%{?use_system_libev}
+# export USE_VENDORED_LIBEV="no"
+# %endif
+# ## used by gem2rpm
+# :post_install: |-
+# # delete custom files here or do other fancy stuff
+# install -D -m 0644 %{S:1} %{buildroot}%{_bindir}/gem2rpm-opensuse
+# ## used by gem2rpm
+# :testsuite_command: |-
+# (pushd %{buildroot}%{gem_base}/gems/%{mod_full_name} && rake test)
+# ## used by gem2rpm
+# :filelist: |-
+# /usr/bin/gem2rpm-opensuse
+# ## used by gem2rpm
+# :scripts:
+# :post: |-
+# /bin/echo foo
+# ## used by gem_packages
+# :main:
+# :preamble: |-
+# Requires: util-linux
+# Recommends: pwgen
+# :filelist: |-
+# /usr/bin/gem2rpm-opensuse
+# ## used by gem_packages
+# :custom:
+# apache:
+# :preamble: |-
+# Requires: .....
+# :filelist: |-
+# /etc/apache2/conf.d/passenger.conf
+# :summary: Custom summary is optional
+# :description: |-
+# Custom description is optional
+#
+# bar
+# :post: |-
+# /bin/echo foo
+#
--
2.10.1