From f298bcb7f3d0cf456390cc6df29e70ea94da116c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Thu, 11 Jan 2024 14:35:12 +0100 Subject: [PATCH] Sync from SUSE:ALP:Source:Standard:1.0 rubygem-mini_portile2 revision 586e073b1db5040f18c44c4df3a84592 --- .gitattributes | 23 +++++ gem2rpm.yml | 71 ++++++++++++++ mini_portile2-2.8.5.gem | 3 + rubygem-mini_portile2.changes | 173 ++++++++++++++++++++++++++++++++++ rubygem-mini_portile2.spec | 58 ++++++++++++ 5 files changed, 328 insertions(+) create mode 100644 .gitattributes create mode 100644 gem2rpm.yml create mode 100644 mini_portile2-2.8.5.gem create mode 100644 rubygem-mini_portile2.changes create mode 100644 rubygem-mini_portile2.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fecc750 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/gem2rpm.yml b/gem2rpm.yml new file mode 100644 index 0000000..b6bf227 --- /dev/null +++ b/gem2rpm.yml @@ -0,0 +1,71 @@ +# --- +# ## 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 +# +:sources: diff --git a/mini_portile2-2.8.5.gem b/mini_portile2-2.8.5.gem new file mode 100644 index 0000000..51313b8 --- /dev/null +++ b/mini_portile2-2.8.5.gem @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a37db8ae758086c3c3ac3a59c036704d331e965d5e106635e4a42d6e66089ce +size 35840 diff --git a/rubygem-mini_portile2.changes b/rubygem-mini_portile2.changes new file mode 100644 index 0000000..ea83e2f --- /dev/null +++ b/rubygem-mini_portile2.changes @@ -0,0 +1,173 @@ +------------------------------------------------------------------- +Fri Nov 3 07:42:17 UTC 2023 - Dan Čermák + +- ### 2.8.5 / 2023-10-22 + +#### Added + +- New methods `#lib_path` and `#include_path` which point at the installed directories under `ports`. (by @flavorjones) +- Add config param for CMAKE_BUILD_TYPE, which now defaults to `Release`. (#136 by @Watson1978) + +#### Experimental + +Introduce experimental support for `MiniPortile#mkmf_config` which sets up MakeMakefile variables to properly link against the recipe. This should make it easier for C extensions to package third-party libraries. (by @flavorjones) + +- With no arguments, will set up just `$INCFLAGS`, `$libs`, and `$LIBPATH`. +- Optionally, if provided a pkg-config file, will use that config to more precisely set `$INCFLAGS`, `$libs`, `$LIBPATH`, and `$CFLAGS`/`$CXXFLAGS`. +- Optionally, if provided the name of a static archive, will rewrite linker flags to ensure correct linkage. + +Note that the behavior may change slightly before official support is announced. Please comment on [#118](https://github.com/flavorjones/mini_portile/issues/118) if you have feedback. + + +------------------------------------------------------------------- +Tue Sep 26 11:03:25 UTC 2023 - Paolo Perego + +- updated to version 2.8.4 + Various fixes to build system + +------------------------------------------------------------------- +Mon Feb 21 11:32:18 UTC 2022 - Stephan Kulow + +updated to version 2.8.0 + see installed CHANGELOG.md + + ### 2.8.0 / 2022-02-20 + + #### Added + + - Support xz-compressed archives (recognized by an `.xz` file extension). + - When downloading a source archive, default open_timeout and read_timeout to 10 seconds, but allow configuration via open_timeout and read_timeout config parameters. + + + +------------------------------------------------------------------- +Tue Jan 25 07:11:31 UTC 2022 - Stephan Kulow + +updated to version 2.7.1 + see installed CHANGELOG.md + + ### 2.7.1 / 2021-10-20 + + #### Packaging + + A test artifact that has been included in the gem was being flagged by some users' security scanners because it wasn't a real tarball. That artifact has been updated to be a real tarball. [#108] + + + ### 2.7.0 / 2021-08-31 + + ### Added + + The commands used for "make", "compile", and "cmake" are configurable via keyword arguments. [#107] (Thanks, @cosmo0920!) + + + +------------------------------------------------------------------- +Tue Jun 1 03:47:32 UTC 2021 - Manuel Schnitzer + +- updated to version 2.6.1 + + #### Dependencies + + Make `net-ftp` an optional dependency, since requiring it as a hard dependency in v2.5.2 caused warnings + to be emitted by Ruby 2.7 and earlier. A warning message is emitted if FTP functionality is called and + `net-ftp` isn't available; this should only happen in Ruby 3.1 and later. + +------------------------------------------------------------------- +Fri May 14 16:20:21 UTC 2021 - Manuel Schnitzer + +- updated to version 2.5.1 + + #### Dependencies + + This release ends support for ruby < 2.3.0. If you're on 2.2.x or earlier, + we strongly suggest that you find the time to upgrade, because [official + support for Ruby 2.2 ended on 2018-03-31](https://www.ruby-lang.org/en/news/2018/06/20/support-of-ruby-2-2-has-ended/). + + #### Enhancements + + * `MiniPortile.execute` now takes an optional `:env` hash, which is merged + into the environment variables for the subprocess. Likely this is only useful for specialized use cases. [#99] + * Experimental support for cmake-based projects extended to Windows. (Thanks, @larskanis!) + +------------------------------------------------------------------- +Thu May 7 21:02:50 UTC 2020 - Stephan Kulow + +- updated to version 2.5.0 + see installed CHANGELOG.md + + ### 2.5.0 / 2020-02-24 + + #### Enhancements + + * When verifying GPG signatures, remove all imported pubkeys from keyring [#90] (Thanks, @hanazuki!) + +------------------------------------------------------------------- +Sat Dec 8 16:25:22 UTC 2018 - Stephan Kulow + +- updated to version 2.4.0 + see installed CHANGELOG.md + +------------------------------------------------------------------- +Sun Sep 17 17:51:50 UTC 2017 - coolo@suse.com + +- updated to version 2.3.0 + see installed CHANGELOG.md + + ### 2.2.1 / 2017-09-13 + + #### Enhancements + + * Verify checksums of files at extraction time (in addition to at download time). (#56) + * Clarify error message if a `tar` command can't be found. (#81) + +------------------------------------------------------------------- +Tue Jun 6 05:37:45 UTC 2017 - coolo@suse.com + +- updated to version 2.2.0 + see installed CHANGELOG.md + + ### 2.2.0 / 2017-06-04 + + #### Enhancements + + * Remove MD5 hashing of configure options, not avialbale in FIPS mode. (#78) + * Add experimental support for cmake-based projects. + * Retry on HTTP failures during downloads. [#63] (Thanks, @jtarchie and @jvshahid!) + * Support Ruby 2.4 frozen string literals. + * Support applying patches for users with misconfigured git worktree. [#69] + * Support gpg signature verification of download resources. + +------------------------------------------------------------------- +Thu Jan 21 05:39:40 UTC 2016 - coolo@suse.com + +- updated to version 2.1.0 + see installed CHANGELOG.md + + ### 2.1.0 / 2016-01-06 + + #### Enhancements + + * Add support for `file:` protocol for tarballs + + + #### Bugfixes + + * Raise exception on unsupported URI protocols + * Ignore git whitespace config when patching (Thanks, @e2!) (#67) + +------------------------------------------------------------------- +Fri Dec 4 05:30:37 UTC 2015 - coolo@suse.com + +- updated to version 2.0.0 + see installed CHANGELOG.md + +------------------------------------------------------------------- +Fri Dec 4 00:35:00 UTC 2015 - mrueckert@suse.de + +- downgrade to rc2 again. for rpm 2.0.0.rc2 > 2.0.0. for rubygems + it is the other way around. + +------------------------------------------------------------------- +Wed Dec 2 11:25:01 UTC 2015 - mrueckert@suse.de + +- initial package diff --git a/rubygem-mini_portile2.spec b/rubygem-mini_portile2.spec new file mode 100644 index 0000000..37a39c3 --- /dev/null +++ b/rubygem-mini_portile2.spec @@ -0,0 +1,58 @@ +# +# spec file for package rubygem-mini_portile2 +# +# Copyright (c) 2023 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +# +# This file was generated with a gem2rpm.yml and not just plain gem2rpm. +# All sections marked as MANUAL, license headers, summaries and descriptions +# can be maintained in that file. Please consult this file before editing any +# of those fields +# + +Name: rubygem-mini_portile2 +Version: 2.8.5 +Release: 0 +%define mod_name mini_portile2 +%define mod_full_name %{mod_name}-%{version} +BuildRequires: %{ruby >= 2.3.0} +BuildRequires: %{rubygem gem2rpm} +BuildRequires: ruby-macros >= 5 +URL: https://github.com/flavorjones/mini_portile +Source: https://rubygems.org/gems/%{mod_full_name}.gem +Source1: gem2rpm.yml +Summary: Simple autoconf and cmake builder for developers +License: MIT + +%description +Simple autoconf and cmake builder for developers. It provides a standard way +to compile against +dependency libraries without requiring system-wide installation. It also +simplifies +vendoring and cross-compilation by providing a consistent build interface. + +%prep + +%build + +%install +%gem_install \ + --doc-files="CHANGELOG.md LICENSE.txt README.md" \ + -f + +%gem_packages + +%changelog