diff --git a/www-apps/jekyll/Manifest b/www-apps/jekyll/Manifest index 85ad60a6f36f0..7826660957015 100644 --- a/www-apps/jekyll/Manifest +++ b/www-apps/jekyll/Manifest @@ -1,2 +1 @@ -DIST jekyll-4.3.4.tar.gz 1458348 BLAKE2B fda9c3eea5283a631e27ae618589d5357f2c221885b11015cb3b6b3dad66d728aa343a3d141ecd006ec1cf4cfbbf8bdaa3b0c0e97d28bd90fece939a37588e90 SHA512 eb4b233ef7d6b0761e462560b2710dca64f61dab3d6a6f0ce6d675e284af5d92a5ea6a195e87b3dee6e117744decaba30c70ad9b123e72c8a5adb25d9dca234f DIST jekyll-4.4.1.tar.gz 1469489 BLAKE2B 131c7f0fff7126b29af446e8007ea4095f918de9d07d4c8c312b82a8573efba4612f706cf6af6ac01ffadca13f083c36d4d55cdabe833ebf0f23ac1793f624c2 SHA512 e2a6784fbd66df905e1b2839eb051518a497030f88bc89501233f37fad6ec3ee02669d6a6b13887fb0948d88b4dc9578a194508799947cf10ded217fdc9d5f1e diff --git a/www-apps/jekyll/jekyll-4.3.4-r1.ebuild b/www-apps/jekyll/jekyll-4.3.4-r1.ebuild deleted file mode 100644 index a5b0320df33e0..0000000000000 --- a/www-apps/jekyll/jekyll-4.3.4-r1.ebuild +++ /dev/null @@ -1,113 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby31 ruby32" - -inherit ruby-fakegem - -RUBY_FAKEGEM_EXTRADOC="README.markdown History.markdown" -RUBY_FAKEGEM_EXTRAINSTALL="features" -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" -RUBY_FAKEGEM_BINDIR="exe" - -DESCRIPTION="Simple, blog aware, static site generator" -HOMEPAGE="https://jekyllrb.com https://github.com/jekyll/jekyll" -SRC_URI="https://github.com/jekyll/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm64" -IUSE="test" - -ruby_add_rdepend " - >=dev-ruby/addressable-2.4 - >=dev-ruby/colorator-1.0 - >=dev-ruby/em-websocket-0.5 - dev-ruby/i18n:1 - >=dev-ruby/kramdown-2.3.1:2 - dev-ruby/kramdown-parser-gfm:1 - dev-ruby/liquid:4 - =dev-ruby/mercenary-0.4* - || ( dev-ruby/rouge:4 dev-ruby/rouge:2 ) - || ( dev-ruby/terminal-table:3 dev-ruby/terminal-table:2 ) - >=dev-ruby/webrick-1.7:0 - >=www-apps/jekyll-sass-converter-2.0 - >=www-apps/jekyll-watch-2.2.1-r1 -" -ruby_add_bdepend " - test? ( - dev-ruby/kramdown-syntax-coderay - dev-ruby/launchy - dev-ruby/nokogiri - >=dev-ruby/rdiscount-2.0 - >=dev-ruby/redcarpet-3.2.3 - dev-ruby/rspec-mocks - >=dev-ruby/shoulda-3 - dev-ruby/test-unit:2 - www-apps/jekyll-coffeescript - ) -" - -all_ruby_prepare() { - eapply "${FILESDIR}"/jekyll-3.6.0-test-helper.patch - eapply -R "${FILESDIR}/jekyll-4.3.2-sass.patch" - eapply "${FILESDIR}"/jekyll-4.3.2-no-safe_yaml.patch - - # Avoid pathutil since it is not compatible with ruby 3.2+ and not - # Pathutil specific methods seem to be used. - sed -e '/pathutil/ s:^:#:' \ - -i lib/jekyll.rb ${RUBY_FAKEGEM_GEMSPEC} || die - - # Drop tests requiring bundler - sed -i -e '/bundle_message/d' test/test_new_command.rb || die - rm test/test_plugin_manager.rb || die - - # Drop tests requiring classifier-reborn (ruby27-only package) - rm -f test/test_related_posts.rb || die - - # Replace git command in gemspec - sed -e 's/git ls-files/find -not -type d -print/' \ - -e 's:_relative ": "./:' \ - -i $RUBY_FAKEGEM_GEMSPEC || die - - sed -e '3igem "liquid", "~> 4.0"' -i test/helper.rb || die - - # FIXMEs: - # fails to find fixtures because this requires bundler - rm -f test/test_theme.rb || die - rm -f test/test_theme_{assets_reader,data_reader,drop}.rb || die - sed -i -e '/^ should.*theme/,/^ end$/d' \ - -e '/^ should.*theme/,/^ end$/d' test/test_site.rb || die - sed -i -e '/context "with a theme"/,/^ end/ s:^:#:' test/test_layout_reader.rb || die - sed -i -e '/normalize paths of rendered items/askip "test-theme"' test/test_liquid_renderer.rb || die - # partially requires 'toml' - rm test/test_configuration.rb || die - # pygments tests fail because of line numbering - sed -i -e '/^ context.*pygments/,/^ end$/d' test/test_tags.rb || die - - # Tries to use bundler and install packages. - rm -f test/test_new_command.rb || die - - # Fails due to ordering differences in ruby 3.0 - sed -e '/convert drop to json/askip "hash ordering with ruby 3"' \ - -i test/test_filters.rb || die - - # Avoid a test failing due to TZ differences - sed -e '/contain the proper page data to mimic the post liquid/askip "TZ difference"' \ - -i test/test_excerpt.rb || die - - # Confused by network-sandbox - sed -e "/return true if there's internet/askip \"Confused by network-sandbox\"" \ - -i test/test_utils.rb || die - - # Avoid tests requiring unmaintained and broken httpclient - rm -f test/test_commands_serve.rb || die -} - -src_test() { - local -x JEKYLL_NO_BUNDLER_REQUIRE=true - - ruby-ng_src_test -}