* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2016-03-20 22:48 Manuel Rüger
0 siblings, 0 replies; 22+ messages in thread
From: Manuel Rüger @ 2016-03-20 22:48 UTC (permalink / raw
To: gentoo-commits
commit: 91bbec1476afbc6c5b10f3bf5cbf182fc4a26bd0
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 22:47:41 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 22:47:41 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91bbec14
app-text/webgen: Remove ruby19
Package-Manager: portage-2.2.28
app-text/webgen/webgen-1.3.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-text/webgen/webgen-1.3.0.ebuild b/app-text/webgen/webgen-1.3.0.ebuild
index 32408b2..5d53e47 100644
--- a/app-text/webgen/webgen-1.3.0.ebuild
+++ b/app-text/webgen/webgen-1.3.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby20 ruby21"
RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2016-07-23 19:09 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2016-07-23 19:09 UTC (permalink / raw
To: gentoo-commits
commit: d71cb93838f72d9c6681552d2a94dd43bcce503a
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 23 18:45:12 2016 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Jul 23 19:09:20 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d71cb938
app-text/webgen: add 1.4.0
Package-Manager: portage-2.2.28
app-text/webgen/Manifest | 1 +
app-text/webgen/webgen-1.4.0.ebuild | 44 +++++++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index 04ad790..680f62a 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1 +1,2 @@
DIST webgen-1.3.0.gem 198656 SHA256 0e50e515d1cd0f07b8d1bb72735b7a8fa162906d36541f9bcf10c41d2b1695a6 SHA512 921ffe9788ccf719eab7e8225b328990762ff04e928fbc699d4ab40170b437b54fe526887fd0de7209c6b7c2f50e0791ffe88eaebd73f77ef5a3df4c2235ba11 WHIRLPOOL be0bc1d3d1189847548b4aae83811d5f429badb724d21f5880c67d06d4ca21b7ca668c02f3b879344a123e5f2ed9f0cd949ab4c2c99002e0444360c09ddecb9b
+DIST webgen-1.4.0.gem 200192 SHA256 76be494c1eee2d1afdbff9f9d8f5bab694f5700c6c6573e7f7b9f850726271cb SHA512 4f18c247b96a159925769c44379e8fce1ff55d4a901f55e81ba102cb57b4a59c5f7428c491391f23fab4450dc3884463924274e34d4c40fe9487efbe25e4fac1 WHIRLPOOL 3ff7522acbd2a792d7d39f18bd07bc78351537a11efe5ef6f0ef41e7516ac68221d9c708fd34e1857d77b6d924306565a1bad194427619c5755df09e62c057e2
diff --git a/app-text/webgen/webgen-1.4.0.ebuild b/app-text/webgen/webgen-1.4.0.ebuild
new file mode 100644
index 0000000..c6eb902
--- /dev/null
+++ b/app-text/webgen/webgen-1.4.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
+RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
+RUBY_FAKEGEM_EXTRAINSTALL="data"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A template-based static website generator"
+HOMEPAGE="http://webgen.gettalong.org"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="builder highlight markdown"
+
+ruby_add_bdepend "doc? ( dev-ruby/rdoc )
+ test? ( dev-ruby/kramdown
+ dev-ruby/minitest:5
+ dev-ruby/rdiscount
+ >=dev-ruby/sass-3.2:0 )"
+
+ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
+ >=dev-ruby/systemu-2.5
+ >=dev-ruby/kramdown-1.3
+ builder? ( >=dev-ruby/builder-2.1.0:* )
+ highlight? ( >=dev-ruby/coderay-1.0 )
+ markdown? ( dev-ruby/maruku )"
+
+all_ruby_prepare() {
+ # Avoid a test fragile for sass version differences
+ sed -i -e '/test_static_call/,/^ end/ s:^:#:' test/webgen/content_processor/test_sass.rb || die
+}
+
+all_ruby_install() {
+ all_fakegem_install
+
+ doman man/man1/webgen.1
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2017-02-04 15:38 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2017-02-04 15:38 UTC (permalink / raw
To: gentoo-commits
commit: 99940b7100f59d65c63cd65428a84dc2d00f58a5
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 4 14:48:30 2017 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Feb 4 15:38:17 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99940b71
app-text/webgen: cleanup
Package-Manager: portage-2.3.3
app-text/webgen/Manifest | 1 -
app-text/webgen/webgen-1.3.0.ebuild | 39 -------------------------------------
2 files changed, 40 deletions(-)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index 680f62a..ed6593c 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1,2 +1 @@
-DIST webgen-1.3.0.gem 198656 SHA256 0e50e515d1cd0f07b8d1bb72735b7a8fa162906d36541f9bcf10c41d2b1695a6 SHA512 921ffe9788ccf719eab7e8225b328990762ff04e928fbc699d4ab40170b437b54fe526887fd0de7209c6b7c2f50e0791ffe88eaebd73f77ef5a3df4c2235ba11 WHIRLPOOL be0bc1d3d1189847548b4aae83811d5f429badb724d21f5880c67d06d4ca21b7ca668c02f3b879344a123e5f2ed9f0cd949ab4c2c99002e0444360c09ddecb9b
DIST webgen-1.4.0.gem 200192 SHA256 76be494c1eee2d1afdbff9f9d8f5bab694f5700c6c6573e7f7b9f850726271cb SHA512 4f18c247b96a159925769c44379e8fce1ff55d4a901f55e81ba102cb57b4a59c5f7428c491391f23fab4450dc3884463924274e34d4c40fe9487efbe25e4fac1 WHIRLPOOL 3ff7522acbd2a792d7d39f18bd07bc78351537a11efe5ef6f0ef41e7516ac68221d9c708fd34e1857d77b6d924306565a1bad194427619c5755df09e62c057e2
diff --git a/app-text/webgen/webgen-1.3.0.ebuild b/app-text/webgen/webgen-1.3.0.ebuild
deleted file mode 100644
index 5d53e47..00000000
--- a/app-text/webgen/webgen-1.3.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby20 ruby21"
-
-RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
-RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
-RUBY_FAKEGEM_EXTRAINSTALL="data"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A template-based static website generator"
-HOMEPAGE="http://webgen.gettalong.org"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="builder highlight markdown"
-
-ruby_add_bdepend "doc? ( dev-ruby/rdoc )
- test? ( dev-ruby/kramdown
- dev-ruby/minitest:5
- dev-ruby/rdiscount
- >=dev-ruby/sass-3.2:0 )"
-
-ruby_add_rdepend ">=dev-ruby/cmdparse-2.0.0:0
- dev-ruby/systemu
- dev-ruby/kramdown
- builder? ( >=dev-ruby/builder-2.1.0 )
- highlight? ( >=dev-ruby/coderay-0.8.312 )
- markdown? ( dev-ruby/maruku )"
-
-all_ruby_install() {
- all_fakegem_install
-
- doman man/man1/webgen.1
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2018-01-22 20:25 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2018-01-22 20:25 UTC (permalink / raw
To: gentoo-commits
commit: 0ee7ee0af5c5165b22d6d8dec201e08a2c82a5d8
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 22 20:06:25 2018 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Jan 22 20:24:37 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ee7ee0a
app-text/webgen: add 1.4.1
Package-Manager: Portage-2.3.19, Repoman-2.3.6
app-text/webgen/Manifest | 1 +
app-text/webgen/webgen-1.4.1.ebuild | 43 +++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index 08674e8a2e6..bd146d42eff 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1 +1,2 @@
DIST webgen-1.4.0.gem 200192 BLAKE2B 3a317fd97e72a4d2f052954df439724125345e2c2c75d280cea323b91057e46bbeeca0e24136f1deeae5f2417efe1f852cdd19ddc3c3f8547fb8dd8b7cda60a7 SHA512 4f18c247b96a159925769c44379e8fce1ff55d4a901f55e81ba102cb57b4a59c5f7428c491391f23fab4450dc3884463924274e34d4c40fe9487efbe25e4fac1
+DIST webgen-1.4.1.gem 200192 BLAKE2B b52e8bf55fa93776fcd41a35ab495c03e775bb0fb9cfa0f4882ced4556d65403724de09531f80f3b3c51809295fc1abb692b9d709bd3ac65885a22066db83736 SHA512 ee21edbaa6592496101bff5b20b4b3041ac9a313e3ce5a00118f2011797330c5e274d468d2793ca29133d4f7301eda741e25a6f135dc6e2153c04780c2f5332b
diff --git a/app-text/webgen/webgen-1.4.1.ebuild b/app-text/webgen/webgen-1.4.1.ebuild
new file mode 100644
index 00000000000..3647485b4e7
--- /dev/null
+++ b/app-text/webgen/webgen-1.4.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
+RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
+RUBY_FAKEGEM_EXTRAINSTALL="data"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A template-based static website generator"
+HOMEPAGE="https://webgen.gettalong.org"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="builder highlight markdown"
+
+ruby_add_bdepend "doc? ( dev-ruby/rdoc )
+ test? ( dev-ruby/kramdown
+ dev-ruby/minitest:5
+ dev-ruby/rdiscount
+ >=dev-ruby/sass-3.2:* )"
+
+ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
+ >=dev-ruby/systemu-2.5
+ >=dev-ruby/kramdown-1.3
+ builder? ( >=dev-ruby/builder-2.1.0:* )
+ highlight? ( >=dev-ruby/coderay-1.0 )
+ markdown? ( dev-ruby/maruku )"
+
+all_ruby_prepare() {
+ # Avoid a test fragile for sass version differences
+ sed -i -e '/test_static_call/,/^ end/ s:^:#:' test/webgen/content_processor/test_sass.rb || die
+}
+
+all_ruby_install() {
+ all_fakegem_install
+
+ doman man/man1/webgen.1
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2018-01-24 15:56 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2018-01-24 15:56 UTC (permalink / raw
To: gentoo-commits
commit: c7001b24892483d307017553e56b5364c80dcfec
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 24 15:48:50 2018 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Jan 24 15:48:50 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7001b24
app-text/webgen: cleanup
Package-Manager: Portage-2.3.19, Repoman-2.3.6
app-text/webgen/Manifest | 1 -
app-text/webgen/webgen-1.4.0.ebuild | 43 -------------------------------------
2 files changed, 44 deletions(-)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index bd146d42eff..4af81b90e3d 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1,2 +1 @@
-DIST webgen-1.4.0.gem 200192 BLAKE2B 3a317fd97e72a4d2f052954df439724125345e2c2c75d280cea323b91057e46bbeeca0e24136f1deeae5f2417efe1f852cdd19ddc3c3f8547fb8dd8b7cda60a7 SHA512 4f18c247b96a159925769c44379e8fce1ff55d4a901f55e81ba102cb57b4a59c5f7428c491391f23fab4450dc3884463924274e34d4c40fe9487efbe25e4fac1
DIST webgen-1.4.1.gem 200192 BLAKE2B b52e8bf55fa93776fcd41a35ab495c03e775bb0fb9cfa0f4882ced4556d65403724de09531f80f3b3c51809295fc1abb692b9d709bd3ac65885a22066db83736 SHA512 ee21edbaa6592496101bff5b20b4b3041ac9a313e3ce5a00118f2011797330c5e274d468d2793ca29133d4f7301eda741e25a6f135dc6e2153c04780c2f5332b
diff --git a/app-text/webgen/webgen-1.4.0.ebuild b/app-text/webgen/webgen-1.4.0.ebuild
deleted file mode 100644
index a3b1e075efa..00000000000
--- a/app-text/webgen/webgen-1.4.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
-RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
-RUBY_FAKEGEM_EXTRAINSTALL="data"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A template-based static website generator"
-HOMEPAGE="http://webgen.gettalong.org"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="builder highlight markdown"
-
-ruby_add_bdepend "doc? ( dev-ruby/rdoc )
- test? ( dev-ruby/kramdown
- dev-ruby/minitest:5
- dev-ruby/rdiscount
- >=dev-ruby/sass-3.2:0 )"
-
-ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
- >=dev-ruby/systemu-2.5
- >=dev-ruby/kramdown-1.3
- builder? ( >=dev-ruby/builder-2.1.0:* )
- highlight? ( >=dev-ruby/coderay-1.0 )
- markdown? ( dev-ruby/maruku )"
-
-all_ruby_prepare() {
- # Avoid a test fragile for sass version differences
- sed -i -e '/test_static_call/,/^ end/ s:^:#:' test/webgen/content_processor/test_sass.rb || die
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- doman man/man1/webgen.1
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2018-03-01 18:43 Michał Górny
0 siblings, 0 replies; 22+ messages in thread
From: Michał Górny @ 2018-03-01 18:43 UTC (permalink / raw
To: gentoo-commits
commit: 271746ffec3c2b247fff5adcb7f8f6febf5a313a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 1 18:43:05 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Mar 1 18:43:43 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=271746ff
app-text/webgen: Remove ruby24 due to unsatisfied deps
app-text/webgen/webgen-1.4.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-text/webgen/webgen-1.4.1.ebuild b/app-text/webgen/webgen-1.4.1.ebuild
index 3647485b4e7..802aee5b970 100644
--- a/app-text/webgen/webgen-1.4.1.ebuild
+++ b/app-text/webgen/webgen-1.4.1.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23"
RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2018-04-22 9:37 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2018-04-22 9:37 UTC (permalink / raw
To: gentoo-commits
commit: ea8772ba205de467be6f483c64bfd0992619ac43
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 22 04:52:21 2018 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Apr 22 09:36:54 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea8772ba
app-text/webgen: add ruby24
Package-Manager: Portage-2.3.24, Repoman-2.3.6
app-text/webgen/webgen-1.4.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-text/webgen/webgen-1.4.1.ebuild b/app-text/webgen/webgen-1.4.1.ebuild
index 802aee5b970..3647485b4e7 100644
--- a/app-text/webgen/webgen-1.4.1.ebuild
+++ b/app-text/webgen/webgen-1.4.1.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-USE_RUBY="ruby22 ruby23"
+USE_RUBY="ruby22 ruby23 ruby24"
RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2019-06-03 19:15 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2019-06-03 19:15 UTC (permalink / raw
To: gentoo-commits
commit: ca0007cf74270e99a09c955bac4e6a2b90a1c30a
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 3 19:12:57 2019 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Jun 3 19:13:20 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca0007cf
app-text/webgen: add 1.5.2
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
app-text/webgen/Manifest | 1 +
app-text/webgen/webgen-1.5.2.ebuild | 48 +++++++++++++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index 4af81b90e3d..c059e56d11b 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1 +1,2 @@
DIST webgen-1.4.1.gem 200192 BLAKE2B b52e8bf55fa93776fcd41a35ab495c03e775bb0fb9cfa0f4882ced4556d65403724de09531f80f3b3c51809295fc1abb692b9d709bd3ac65885a22066db83736 SHA512 ee21edbaa6592496101bff5b20b4b3041ac9a313e3ce5a00118f2011797330c5e274d468d2793ca29133d4f7301eda741e25a6f135dc6e2153c04780c2f5332b
+DIST webgen-1.5.2.gem 200704 BLAKE2B 55749d515223b46c7063596d1424de107f43af022fc54ba431e83ffa4dbe3ab5651e6c61e48f66710a1e958c2f6d09a64ea05c9186dd0c73add5351fbc419806 SHA512 83557bc7a3cafb5e885bd4c50f7083a7576a5c930458075d91ffd58b4fa3c4e406f342dd23988788afb22e9a03ffbff0dfb02d23ebfdef7d2275638c102839b4
diff --git a/app-text/webgen/webgen-1.5.2.ebuild b/app-text/webgen/webgen-1.5.2.ebuild
new file mode 100644
index 00000000000..61d236872c8
--- /dev/null
+++ b/app-text/webgen/webgen-1.5.2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby24"
+
+RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
+RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
+RUBY_FAKEGEM_EXTRAINSTALL="data"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A template-based static website generator"
+HOMEPAGE="https://webgen.gettalong.org"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="builder highlight markdown"
+
+ruby_add_bdepend "doc? ( dev-ruby/rdoc )
+ test? (
+ <dev-ruby/rdoc-6
+ dev-ruby/kramdown
+ dev-ruby/minitest:5
+ dev-ruby/rdiscount
+ >=dev-ruby/sass-3.2:* )"
+
+ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
+ >=dev-ruby/systemu-2.5
+ >=dev-ruby/kramdown-1.3
+ builder? ( >=dev-ruby/builder-2.1.0:* )
+ highlight? ( >=dev-ruby/coderay-1.0 )
+ markdown? ( dev-ruby/maruku )"
+
+all_ruby_prepare() {
+ # Avoid a test fragile for sass version differences
+ sed -i -e '/test_static_call/,/^ end/ s:^:#:' test/webgen/content_processor/test_sass.rb || die
+
+ # Avoid tests for unpackaged dependencies
+ rm -f test/webgen/content_processor/test_{css_minify,tikz}.rb || die
+}
+
+all_ruby_install() {
+ all_fakegem_install
+
+ doman man/man1/webgen.1
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2019-07-17 7:17 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2019-07-17 7:17 UTC (permalink / raw
To: gentoo-commits
commit: e79bb36c46efe6d6a72f2aa9e81d0408b3af4e82
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 17 07:16:59 2019 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Jul 17 07:16:59 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e79bb36c
app-text/webgen: cleanup
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
app-text/webgen/Manifest | 1 -
app-text/webgen/webgen-1.4.1.ebuild | 43 -------------------------------------
2 files changed, 44 deletions(-)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index c059e56d11b..8f80999ed53 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1,2 +1 @@
-DIST webgen-1.4.1.gem 200192 BLAKE2B b52e8bf55fa93776fcd41a35ab495c03e775bb0fb9cfa0f4882ced4556d65403724de09531f80f3b3c51809295fc1abb692b9d709bd3ac65885a22066db83736 SHA512 ee21edbaa6592496101bff5b20b4b3041ac9a313e3ce5a00118f2011797330c5e274d468d2793ca29133d4f7301eda741e25a6f135dc6e2153c04780c2f5332b
DIST webgen-1.5.2.gem 200704 BLAKE2B 55749d515223b46c7063596d1424de107f43af022fc54ba431e83ffa4dbe3ab5651e6c61e48f66710a1e958c2f6d09a64ea05c9186dd0c73add5351fbc419806 SHA512 83557bc7a3cafb5e885bd4c50f7083a7576a5c930458075d91ffd58b4fa3c4e406f342dd23988788afb22e9a03ffbff0dfb02d23ebfdef7d2275638c102839b4
diff --git a/app-text/webgen/webgen-1.4.1.ebuild b/app-text/webgen/webgen-1.4.1.ebuild
deleted file mode 100644
index 3647485b4e7..00000000000
--- a/app-text/webgen/webgen-1.4.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby22 ruby23 ruby24"
-
-RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
-RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
-RUBY_FAKEGEM_EXTRAINSTALL="data"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A template-based static website generator"
-HOMEPAGE="https://webgen.gettalong.org"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="builder highlight markdown"
-
-ruby_add_bdepend "doc? ( dev-ruby/rdoc )
- test? ( dev-ruby/kramdown
- dev-ruby/minitest:5
- dev-ruby/rdiscount
- >=dev-ruby/sass-3.2:* )"
-
-ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
- >=dev-ruby/systemu-2.5
- >=dev-ruby/kramdown-1.3
- builder? ( >=dev-ruby/builder-2.1.0:* )
- highlight? ( >=dev-ruby/coderay-1.0 )
- markdown? ( dev-ruby/maruku )"
-
-all_ruby_prepare() {
- # Avoid a test fragile for sass version differences
- sed -i -e '/test_static_call/,/^ end/ s:^:#:' test/webgen/content_processor/test_sass.rb || die
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- doman man/man1/webgen.1
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2019-10-27 5:44 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2019-10-27 5:44 UTC (permalink / raw
To: gentoo-commits
commit: 73b37cb81904e02372b640697a1916e068e7c512
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 27 05:44:25 2019 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Oct 27 05:44:25 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73b37cb8
app-text/webgen: add 1.7.0
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
app-text/webgen/Manifest | 1 +
app-text/webgen/webgen-1.7.0.ebuild | 53 +++++++++++++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index 8f80999ed53..2c0a7a124ae 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1 +1,2 @@
DIST webgen-1.5.2.gem 200704 BLAKE2B 55749d515223b46c7063596d1424de107f43af022fc54ba431e83ffa4dbe3ab5651e6c61e48f66710a1e958c2f6d09a64ea05c9186dd0c73add5351fbc419806 SHA512 83557bc7a3cafb5e885bd4c50f7083a7576a5c930458075d91ffd58b4fa3c4e406f342dd23988788afb22e9a03ffbff0dfb02d23ebfdef7d2275638c102839b4
+DIST webgen-1.7.0.gem 201728 BLAKE2B ed44657420817d98ffbd72093ff56db22ae3a8da43c77661a663d938f3958c4055df4b7b34252eee162846af27a35320f680fdb6b9b1818f96aa1e51eceffd9f SHA512 1e791f720108996a4f52b151d160d9b6f613c036aae2350c634f5539257c4ae946737ba2df94bc424199413463e3016432a6d1e67e30b419b2770bc83b3b14db
diff --git a/app-text/webgen/webgen-1.7.0.ebuild b/app-text/webgen/webgen-1.7.0.ebuild
new file mode 100644
index 00000000000..3e7ecc33865
--- /dev/null
+++ b/app-text/webgen/webgen-1.7.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC="task"
+RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
+RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
+RUBY_FAKEGEM_EXTRAINSTALL="data"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A template-based static website generator"
+HOMEPAGE="https://webgen.gettalong.org"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="builder doc highlight markdown"
+
+ruby_add_bdepend "doc? ( dev-ruby/rdoc )
+ test? (
+ dev-ruby/kramdown
+ dev-ruby/minitest:5
+ dev-ruby/rdiscount
+ >=dev-ruby/sass-3.2:* )"
+
+ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
+ >=dev-ruby/systemu-2.5 =dev-ruby/systemu-2*
+ >=dev-ruby/kramdown-1.3 =dev-ruby/kramdown-1*
+ builder? ( >=dev-ruby/builder-2.1.0:* )
+ highlight? ( >=dev-ruby/coderay-1.0 )
+ markdown? ( dev-ruby/maruku )"
+
+all_ruby_prepare() {
+ # Avoid a test fragile for sass version differences
+ sed -i -e '/test_static_call/,/^ end/ s:^:#:' test/webgen/content_processor/test_sass.rb || die
+ # Avoid a test with fragile whitespace tests
+ rm -f test/webgen/content_processor/test_haml.rb || die
+
+ # Avoid tests for rdoc since that requires an obsolete version
+ sed -i -e '/def test_create_nodes/askip' test/webgen/path_handler/test_api.rb || die
+
+ # Avoid tests for unpackaged dependencies
+ rm -f test/webgen/content_processor/test_{css_minify,tikz}.rb || die
+}
+
+all_ruby_install() {
+ all_fakegem_install
+
+ doman man/man1/webgen.1
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2020-03-14 7:48 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2020-03-14 7:48 UTC (permalink / raw
To: gentoo-commits
commit: efc550bb064d733e9eff58d33e431b9400302a9d
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 14 06:14:44 2020 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Mar 14 07:46:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efc550bb
app-text/webgen: cleanup
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
app-text/webgen/Manifest | 1 -
app-text/webgen/webgen-1.5.2.ebuild | 48 -------------------------------------
2 files changed, 49 deletions(-)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index 2c0a7a124ae..d8ad4e86985 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1,2 +1 @@
-DIST webgen-1.5.2.gem 200704 BLAKE2B 55749d515223b46c7063596d1424de107f43af022fc54ba431e83ffa4dbe3ab5651e6c61e48f66710a1e958c2f6d09a64ea05c9186dd0c73add5351fbc419806 SHA512 83557bc7a3cafb5e885bd4c50f7083a7576a5c930458075d91ffd58b4fa3c4e406f342dd23988788afb22e9a03ffbff0dfb02d23ebfdef7d2275638c102839b4
DIST webgen-1.7.0.gem 201728 BLAKE2B ed44657420817d98ffbd72093ff56db22ae3a8da43c77661a663d938f3958c4055df4b7b34252eee162846af27a35320f680fdb6b9b1818f96aa1e51eceffd9f SHA512 1e791f720108996a4f52b151d160d9b6f613c036aae2350c634f5539257c4ae946737ba2df94bc424199413463e3016432a6d1e67e30b419b2770bc83b3b14db
diff --git a/app-text/webgen/webgen-1.5.2.ebuild b/app-text/webgen/webgen-1.5.2.ebuild
deleted file mode 100644
index 61d236872c8..00000000000
--- a/app-text/webgen/webgen-1.5.2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby24"
-
-RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
-RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
-RUBY_FAKEGEM_EXTRAINSTALL="data"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A template-based static website generator"
-HOMEPAGE="https://webgen.gettalong.org"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="builder highlight markdown"
-
-ruby_add_bdepend "doc? ( dev-ruby/rdoc )
- test? (
- <dev-ruby/rdoc-6
- dev-ruby/kramdown
- dev-ruby/minitest:5
- dev-ruby/rdiscount
- >=dev-ruby/sass-3.2:* )"
-
-ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
- >=dev-ruby/systemu-2.5
- >=dev-ruby/kramdown-1.3
- builder? ( >=dev-ruby/builder-2.1.0:* )
- highlight? ( >=dev-ruby/coderay-1.0 )
- markdown? ( dev-ruby/maruku )"
-
-all_ruby_prepare() {
- # Avoid a test fragile for sass version differences
- sed -i -e '/test_static_call/,/^ end/ s:^:#:' test/webgen/content_processor/test_sass.rb || die
-
- # Avoid tests for unpackaged dependencies
- rm -f test/webgen/content_processor/test_{css_minify,tikz}.rb || die
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- doman man/man1/webgen.1
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2020-07-22 4:30 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2020-07-22 4:30 UTC (permalink / raw
To: gentoo-commits
commit: 01a2ec20c9bc074019ee6d6ab07462a2063a3c3a
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 22 04:24:19 2020 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Jul 22 04:24:19 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01a2ec20
app-text/webgen: add 1.7.1
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
app-text/webgen/Manifest | 1 +
app-text/webgen/webgen-1.7.1.ebuild | 52 +++++++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index d8ad4e86985..6d9c7e1fc54 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1 +1,2 @@
DIST webgen-1.7.0.gem 201728 BLAKE2B ed44657420817d98ffbd72093ff56db22ae3a8da43c77661a663d938f3958c4055df4b7b34252eee162846af27a35320f680fdb6b9b1818f96aa1e51eceffd9f SHA512 1e791f720108996a4f52b151d160d9b6f613c036aae2350c634f5539257c4ae946737ba2df94bc424199413463e3016432a6d1e67e30b419b2770bc83b3b14db
+DIST webgen-1.7.1.gem 201728 BLAKE2B 2ea7d7911b4edf29cb7310a676593a77956b3fffd1a4ca5f69731270e648365fb8293a292b8fdd717444ed8f690dd5f095ac5dd77f5c950253b5de7d6086f966 SHA512 7b58c7d2b8ff6a4feabc1435e6bddbf25b3e4695517c2bd8d97b698a49b6fd61538f1a77bdd4e13f7368fdfbeae9f007dfc09ecfcde4eb75a366b8e0ccc8c58a
diff --git a/app-text/webgen/webgen-1.7.1.ebuild b/app-text/webgen/webgen-1.7.1.ebuild
new file mode 100644
index 00000000000..143a53059e7
--- /dev/null
+++ b/app-text/webgen/webgen-1.7.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC="task"
+RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
+RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
+RUBY_FAKEGEM_EXTRAINSTALL="data"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A template-based static website generator"
+HOMEPAGE="https://webgen.gettalong.org"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="builder doc highlight markdown"
+
+ruby_add_bdepend "doc? ( dev-ruby/rdoc )
+ test? (
+ dev-ruby/minitest:5
+ dev-ruby/rdiscount
+ >=dev-ruby/sass-3.2:* )"
+
+ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
+ >=dev-ruby/systemu-2.5 =dev-ruby/systemu-2*
+ >=dev-ruby/kramdown-2.3:2
+ builder? ( >=dev-ruby/builder-2.1.0:* )
+ highlight? ( >=dev-ruby/coderay-1.0 )
+ markdown? ( dev-ruby/maruku )"
+
+all_ruby_prepare() {
+ # Avoid a test fragile for sass version differences
+ sed -i -e '/test_static_call/,/^ end/ s:^:#:' test/webgen/content_processor/test_sass.rb || die
+ # Avoid a test with fragile whitespace tests
+ rm -f test/webgen/content_processor/test_haml.rb || die
+
+ # Avoid tests for rdoc since that requires an obsolete version
+ sed -i -e '/def test_create_nodes/askip' test/webgen/path_handler/test_api.rb || die
+
+ # Avoid tests for unpackaged dependencies
+ rm -f test/webgen/content_processor/test_{css_minify,tikz}.rb || die
+}
+
+all_ruby_install() {
+ all_fakegem_install
+
+ doman man/man1/webgen.1
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2020-08-07 4:35 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2020-08-07 4:35 UTC (permalink / raw
To: gentoo-commits
commit: 1b0a87191a8708cfb9bed129240a0a09db293744
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 7 04:32:31 2020 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Aug 7 04:32:31 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b0a8719
app-text/webgen: cleanup
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
app-text/webgen/Manifest | 1 -
app-text/webgen/webgen-1.7.0.ebuild | 53 -------------------------------------
2 files changed, 54 deletions(-)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index 6d9c7e1fc54..fc89c999814 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1,2 +1 @@
-DIST webgen-1.7.0.gem 201728 BLAKE2B ed44657420817d98ffbd72093ff56db22ae3a8da43c77661a663d938f3958c4055df4b7b34252eee162846af27a35320f680fdb6b9b1818f96aa1e51eceffd9f SHA512 1e791f720108996a4f52b151d160d9b6f613c036aae2350c634f5539257c4ae946737ba2df94bc424199413463e3016432a6d1e67e30b419b2770bc83b3b14db
DIST webgen-1.7.1.gem 201728 BLAKE2B 2ea7d7911b4edf29cb7310a676593a77956b3fffd1a4ca5f69731270e648365fb8293a292b8fdd717444ed8f690dd5f095ac5dd77f5c950253b5de7d6086f966 SHA512 7b58c7d2b8ff6a4feabc1435e6bddbf25b3e4695517c2bd8d97b698a49b6fd61538f1a77bdd4e13f7368fdfbeae9f007dfc09ecfcde4eb75a366b8e0ccc8c58a
diff --git a/app-text/webgen/webgen-1.7.0.ebuild b/app-text/webgen/webgen-1.7.0.ebuild
deleted file mode 100644
index 3e7ecc33865..00000000000
--- a/app-text/webgen/webgen-1.7.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_DOC="task"
-RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
-RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
-RUBY_FAKEGEM_EXTRAINSTALL="data"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A template-based static website generator"
-HOMEPAGE="https://webgen.gettalong.org"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="builder doc highlight markdown"
-
-ruby_add_bdepend "doc? ( dev-ruby/rdoc )
- test? (
- dev-ruby/kramdown
- dev-ruby/minitest:5
- dev-ruby/rdiscount
- >=dev-ruby/sass-3.2:* )"
-
-ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
- >=dev-ruby/systemu-2.5 =dev-ruby/systemu-2*
- >=dev-ruby/kramdown-1.3 =dev-ruby/kramdown-1*
- builder? ( >=dev-ruby/builder-2.1.0:* )
- highlight? ( >=dev-ruby/coderay-1.0 )
- markdown? ( dev-ruby/maruku )"
-
-all_ruby_prepare() {
- # Avoid a test fragile for sass version differences
- sed -i -e '/test_static_call/,/^ end/ s:^:#:' test/webgen/content_processor/test_sass.rb || die
- # Avoid a test with fragile whitespace tests
- rm -f test/webgen/content_processor/test_haml.rb || die
-
- # Avoid tests for rdoc since that requires an obsolete version
- sed -i -e '/def test_create_nodes/askip' test/webgen/path_handler/test_api.rb || die
-
- # Avoid tests for unpackaged dependencies
- rm -f test/webgen/content_processor/test_{css_minify,tikz}.rb || die
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- doman man/man1/webgen.1
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2021-03-08 7:18 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2021-03-08 7:18 UTC (permalink / raw
To: gentoo-commits
commit: 49594ed048dfb4d3225cffa0a59730738d8e341a
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 8 06:56:29 2021 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Mar 8 07:18:11 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49594ed0
app-text/webgen: add 1.7.2
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
app-text/webgen/Manifest | 1 +
app-text/webgen/webgen-1.7.2.ebuild | 52 +++++++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index fc89c999814..2941facea4b 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1 +1,2 @@
DIST webgen-1.7.1.gem 201728 BLAKE2B 2ea7d7911b4edf29cb7310a676593a77956b3fffd1a4ca5f69731270e648365fb8293a292b8fdd717444ed8f690dd5f095ac5dd77f5c950253b5de7d6086f966 SHA512 7b58c7d2b8ff6a4feabc1435e6bddbf25b3e4695517c2bd8d97b698a49b6fd61538f1a77bdd4e13f7368fdfbeae9f007dfc09ecfcde4eb75a366b8e0ccc8c58a
+DIST webgen-1.7.2.gem 201728 BLAKE2B abd3a8a9accfbc1a1e0070b7cbd4d0cc24796540ce1c8c0cfd3dc50882bf953b1e794971a90e2a429b3ecd64b1cb009b16c96ce1e6cfa05516ce48c10e39cd95 SHA512 806303f56319b6f55d8457b0b68438a9732bc1adc95ea50a955ad02b184814d0b878d618fc0547831cac53292208f1d0837d190b078ebb2ba42641dbaa5ffd93
diff --git a/app-text/webgen/webgen-1.7.2.ebuild b/app-text/webgen/webgen-1.7.2.ebuild
new file mode 100644
index 00000000000..6dd141bf8cc
--- /dev/null
+++ b/app-text/webgen/webgen-1.7.2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_DOC="task"
+RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
+RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
+RUBY_FAKEGEM_EXTRAINSTALL="data"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A template-based static website generator"
+HOMEPAGE="https://webgen.gettalong.org"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="builder doc highlight markdown"
+
+ruby_add_bdepend "doc? ( dev-ruby/rdoc )
+ test? (
+ dev-ruby/minitest:5
+ dev-ruby/rdiscount
+ >=dev-ruby/sass-3.2:* )"
+
+ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
+ >=dev-ruby/systemu-2.5 =dev-ruby/systemu-2*
+ >=dev-ruby/kramdown-2.3:2
+ builder? ( >=dev-ruby/builder-2.1.0:* )
+ highlight? ( >=dev-ruby/coderay-1.0 )
+ markdown? ( dev-ruby/maruku )"
+
+all_ruby_prepare() {
+ # Avoid a test fragile for sass version differences
+ sed -i -e '/test_static_call/,/^ end/ s:^:#:' test/webgen/content_processor/test_sass.rb || die
+ # Avoid a test with fragile whitespace tests
+ rm -f test/webgen/content_processor/test_haml.rb || die
+
+ # Avoid tests for rdoc since that requires an obsolete version
+ sed -i -e '/def test_create_nodes/askip' test/webgen/path_handler/test_api.rb || die
+
+ # Avoid tests for unpackaged dependencies
+ rm -f test/webgen/content_processor/test_{css_minify,tikz}.rb || die
+}
+
+all_ruby_install() {
+ all_fakegem_install
+
+ doman man/man1/webgen.1
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2022-03-19 12:00 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2022-03-19 12:00 UTC (permalink / raw
To: gentoo-commits
commit: 74e3f578fff26fd9faf5cd13c351d79e9d2d25c1
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 19 08:35:56 2022 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Mar 19 12:00:44 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74e3f578
app-text/webgen: cleanup
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
app-text/webgen/Manifest | 1 -
app-text/webgen/webgen-1.7.1.ebuild | 52 -------------------------------------
2 files changed, 53 deletions(-)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index 2941facea4bf..f80e35d2fba4 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1,2 +1 @@
-DIST webgen-1.7.1.gem 201728 BLAKE2B 2ea7d7911b4edf29cb7310a676593a77956b3fffd1a4ca5f69731270e648365fb8293a292b8fdd717444ed8f690dd5f095ac5dd77f5c950253b5de7d6086f966 SHA512 7b58c7d2b8ff6a4feabc1435e6bddbf25b3e4695517c2bd8d97b698a49b6fd61538f1a77bdd4e13f7368fdfbeae9f007dfc09ecfcde4eb75a366b8e0ccc8c58a
DIST webgen-1.7.2.gem 201728 BLAKE2B abd3a8a9accfbc1a1e0070b7cbd4d0cc24796540ce1c8c0cfd3dc50882bf953b1e794971a90e2a429b3ecd64b1cb009b16c96ce1e6cfa05516ce48c10e39cd95 SHA512 806303f56319b6f55d8457b0b68438a9732bc1adc95ea50a955ad02b184814d0b878d618fc0547831cac53292208f1d0837d190b078ebb2ba42641dbaa5ffd93
diff --git a/app-text/webgen/webgen-1.7.1.ebuild b/app-text/webgen/webgen-1.7.1.ebuild
deleted file mode 100644
index 143a53059e74..000000000000
--- a/app-text/webgen/webgen-1.7.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby26"
-
-RUBY_FAKEGEM_RECIPE_DOC="task"
-RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
-RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
-RUBY_FAKEGEM_EXTRAINSTALL="data"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A template-based static website generator"
-HOMEPAGE="https://webgen.gettalong.org"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="builder doc highlight markdown"
-
-ruby_add_bdepend "doc? ( dev-ruby/rdoc )
- test? (
- dev-ruby/minitest:5
- dev-ruby/rdiscount
- >=dev-ruby/sass-3.2:* )"
-
-ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
- >=dev-ruby/systemu-2.5 =dev-ruby/systemu-2*
- >=dev-ruby/kramdown-2.3:2
- builder? ( >=dev-ruby/builder-2.1.0:* )
- highlight? ( >=dev-ruby/coderay-1.0 )
- markdown? ( dev-ruby/maruku )"
-
-all_ruby_prepare() {
- # Avoid a test fragile for sass version differences
- sed -i -e '/test_static_call/,/^ end/ s:^:#:' test/webgen/content_processor/test_sass.rb || die
- # Avoid a test with fragile whitespace tests
- rm -f test/webgen/content_processor/test_haml.rb || die
-
- # Avoid tests for rdoc since that requires an obsolete version
- sed -i -e '/def test_create_nodes/askip' test/webgen/path_handler/test_api.rb || die
-
- # Avoid tests for unpackaged dependencies
- rm -f test/webgen/content_processor/test_{css_minify,tikz}.rb || die
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- doman man/man1/webgen.1
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2022-12-17 8:37 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2022-12-17 8:37 UTC (permalink / raw
To: gentoo-commits
commit: 79b20185894696c1b07f06b8eaf98314493bf73e
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 16 09:56:30 2022 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Dec 17 08:37:24 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79b20185
app-text/webgen: enable ruby30 and disable ruby26
Closes: https://bugs.gentoo.org/864154
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
app-text/webgen/webgen-1.7.2.ebuild | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/app-text/webgen/webgen-1.7.2.ebuild b/app-text/webgen/webgen-1.7.2.ebuild
index 6dd141bf8cc1..10ee616bc170 100644
--- a/app-text/webgen/webgen-1.7.2.ebuild
+++ b/app-text/webgen/webgen-1.7.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-USE_RUBY="ruby26 ruby27"
+USE_RUBY="ruby27 ruby30"
RUBY_FAKEGEM_RECIPE_DOC="task"
RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
@@ -43,6 +43,9 @@ all_ruby_prepare() {
# Avoid tests for unpackaged dependencies
rm -f test/webgen/content_processor/test_{css_minify,tikz}.rb || die
+
+ # Avoid tests failing with newer Psych versions
+ rm -f test/test_documentation.rb || die
}
all_ruby_install() {
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2023-03-22 3:25 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2023-03-22 3:25 UTC (permalink / raw
To: gentoo-commits
commit: ca837e1df0d1596b57f1798bd2e4d17294805e22
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 20 09:24:22 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 22 03:25:08 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca837e1d
app-text/webgen: add github upstream metadata
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-text/webgen/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/app-text/webgen/metadata.xml b/app-text/webgen/metadata.xml
index 96be9c2520c6..d5f698f7f2d7 100644
--- a/app-text/webgen/metadata.xml
+++ b/app-text/webgen/metadata.xml
@@ -10,4 +10,7 @@
<flag name="highlight">Enable syntax highlighting for certain plugins</flag>
<flag name="markdown">Markdown support</flag>
</use>
+ <upstream>
+ <remote-id type="github">gettalong/webgen</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2023-04-07 18:11 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2023-04-07 18:11 UTC (permalink / raw
To: gentoo-commits
commit: b449fe21266dab440b290de7e80f86c37b70143a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 7 17:51:36 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 7 18:09:54 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b449fe21
app-text/webgen: enable ruby31, ruby32
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-text/webgen/webgen-1.7.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-text/webgen/webgen-1.7.2.ebuild b/app-text/webgen/webgen-1.7.2.ebuild
index 10ee616bc170..50a71eab42a2 100644
--- a/app-text/webgen/webgen-1.7.2.ebuild
+++ b/app-text/webgen/webgen-1.7.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-USE_RUBY="ruby27 ruby30"
+USE_RUBY="ruby27 ruby30 ruby31 ruby32"
RUBY_FAKEGEM_RECIPE_DOC="task"
RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2023-09-16 4:23 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2023-09-16 4:23 UTC (permalink / raw
To: gentoo-commits
commit: 821c9de23a38f53edd930d3ab9613b0b763b7569
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 15 16:47:37 2023 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Sep 16 04:23:13 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=821c9de2
app-text/webgen: fix minitest deprecation
Closes: https://bugs.gentoo.org/911743
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
app-text/webgen/webgen-1.7.2.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/app-text/webgen/webgen-1.7.2.ebuild b/app-text/webgen/webgen-1.7.2.ebuild
index 50a71eab42a2..f6e1b0bec434 100644
--- a/app-text/webgen/webgen-1.7.2.ebuild
+++ b/app-text/webgen/webgen-1.7.2.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby30 ruby31 ruby32"
RUBY_FAKEGEM_RECIPE_DOC="task"
RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
@@ -46,6 +46,9 @@ all_ruby_prepare() {
# Avoid tests failing with newer Psych versions
rm -f test/test_documentation.rb || die
+
+ # Fix minitest deprecation
+ sed -i -e 's/MiniTest/Minitest/' $(find test -type f -print) || die
}
all_ruby_install() {
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2024-01-04 6:54 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2024-01-04 6:54 UTC (permalink / raw
To: gentoo-commits
commit: a1784255c8cdfae58cb4c61d7495e1bf77d8438e
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 4 06:49:57 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Thu Jan 4 06:54:23 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1784255
app-text/webgen: add 1.7.3
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
app-text/webgen/Manifest | 1 +
app-text/webgen/webgen-1.7.3.ebuild | 59 +++++++++++++++++++++++++++++++++++++
2 files changed, 60 insertions(+)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index f80e35d2fba4..2b0b1f67a3c7 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1 +1,2 @@
DIST webgen-1.7.2.gem 201728 BLAKE2B abd3a8a9accfbc1a1e0070b7cbd4d0cc24796540ce1c8c0cfd3dc50882bf953b1e794971a90e2a429b3ecd64b1cb009b16c96ce1e6cfa05516ce48c10e39cd95 SHA512 806303f56319b6f55d8457b0b68438a9732bc1adc95ea50a955ad02b184814d0b878d618fc0547831cac53292208f1d0837d190b078ebb2ba42641dbaa5ffd93
+DIST webgen-1.7.3.gem 201728 BLAKE2B fc3c63d12b547c14e7900dfe881c95150de2f4783bfcbdd3f9a0bff6cd88d8278f1f2b0d7281394b35c3032e0cec639e01911807ddcc8b8114890bb4e404e2a4 SHA512 7e5738f66a2095fbfde922cf6711735273109bd10ebf12e2ebbbf4aa72cd54a8d4d50057d5aba8a428c154654000b718850e8c23391736123ea38f2f3b75cf50
diff --git a/app-text/webgen/webgen-1.7.3.ebuild b/app-text/webgen/webgen-1.7.3.ebuild
new file mode 100644
index 000000000000..c630a650eedd
--- /dev/null
+++ b/app-text/webgen/webgen-1.7.3.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby31 ruby32"
+
+RUBY_FAKEGEM_RECIPE_DOC="task"
+RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
+RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
+RUBY_FAKEGEM_EXTRAINSTALL="data"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A template-based static website generator"
+HOMEPAGE="https://webgen.gettalong.org"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="builder doc highlight markdown"
+
+ruby_add_bdepend "doc? ( dev-ruby/rdoc )
+ test? (
+ dev-ruby/minitest:5
+ dev-ruby/rdiscount
+ >=dev-ruby/sass-3.2:* )"
+
+ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
+ >=dev-ruby/systemu-2.5 =dev-ruby/systemu-2*
+ >=dev-ruby/kramdown-2.3:2
+ >=dev-ruby/psych-5.1:5
+ builder? ( >=dev-ruby/builder-2.1.0:* )
+ highlight? ( >=dev-ruby/coderay-1.0 )
+ markdown? ( dev-ruby/maruku )"
+
+all_ruby_prepare() {
+ # Avoid a test fragile for sass version differences
+ sed -i -e '/test_static_call/,/^ end/ s:^:#:' test/webgen/content_processor/test_sass.rb || die
+ # Avoid a test with fragile whitespace tests
+ rm -f test/webgen/content_processor/test_haml.rb || die
+
+ # Avoid tests for rdoc since that requires an obsolete version
+ sed -i -e '/def test_create_nodes/askip' test/webgen/path_handler/test_api.rb || die
+
+ # Avoid tests for unpackaged dependencies
+ rm -f test/webgen/content_processor/test_{css_minify,tikz}.rb || die
+
+ # Avoid tests failing with newer Psych versions
+ rm -f test/test_documentation.rb || die
+
+ # Fix minitest deprecation
+ sed -i -e 's/MiniTest/Minitest/' $(find test -type f -print) || die
+}
+
+all_ruby_install() {
+ all_fakegem_install
+
+ doman man/man1/webgen.1
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2024-10-06 7:40 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2024-10-06 7:40 UTC (permalink / raw
To: gentoo-commits
commit: 230d91595c5ed90360dc999d1cdf0935b40b845c
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 6 06:33:51 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Oct 6 07:40:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=230d9159
app-text/webgen: enable ruby33
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
app-text/webgen/webgen-1.7.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-text/webgen/webgen-1.7.3.ebuild b/app-text/webgen/webgen-1.7.3.ebuild
index c630a650eedd..57b755250592 100644
--- a/app-text/webgen/webgen-1.7.3.ebuild
+++ b/app-text/webgen/webgen-1.7.3.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-USE_RUBY="ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
RUBY_FAKEGEM_RECIPE_DOC="task"
RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/
@ 2024-10-06 7:40 Hans de Graaff
0 siblings, 0 replies; 22+ messages in thread
From: Hans de Graaff @ 2024-10-06 7:40 UTC (permalink / raw
To: gentoo-commits
commit: 0c26d48dcfa33115d3f38eb3a2e6c5d895d17986
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 6 06:31:16 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Oct 6 07:40:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c26d48d
app-text/webgen: drop 1.7.2
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
app-text/webgen/Manifest | 1 -
app-text/webgen/webgen-1.7.2.ebuild | 58 -------------------------------------
2 files changed, 59 deletions(-)
diff --git a/app-text/webgen/Manifest b/app-text/webgen/Manifest
index 2b0b1f67a3c7..48875304eb05 100644
--- a/app-text/webgen/Manifest
+++ b/app-text/webgen/Manifest
@@ -1,2 +1 @@
-DIST webgen-1.7.2.gem 201728 BLAKE2B abd3a8a9accfbc1a1e0070b7cbd4d0cc24796540ce1c8c0cfd3dc50882bf953b1e794971a90e2a429b3ecd64b1cb009b16c96ce1e6cfa05516ce48c10e39cd95 SHA512 806303f56319b6f55d8457b0b68438a9732bc1adc95ea50a955ad02b184814d0b878d618fc0547831cac53292208f1d0837d190b078ebb2ba42641dbaa5ffd93
DIST webgen-1.7.3.gem 201728 BLAKE2B fc3c63d12b547c14e7900dfe881c95150de2f4783bfcbdd3f9a0bff6cd88d8278f1f2b0d7281394b35c3032e0cec639e01911807ddcc8b8114890bb4e404e2a4 SHA512 7e5738f66a2095fbfde922cf6711735273109bd10ebf12e2ebbbf4aa72cd54a8d4d50057d5aba8a428c154654000b718850e8c23391736123ea38f2f3b75cf50
diff --git a/app-text/webgen/webgen-1.7.2.ebuild b/app-text/webgen/webgen-1.7.2.ebuild
deleted file mode 100644
index f6e1b0bec434..000000000000
--- a/app-text/webgen/webgen-1.7.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby30 ruby31 ruby32"
-
-RUBY_FAKEGEM_RECIPE_DOC="task"
-RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
-RUBY_FAKEGEM_EXTRADOC="AUTHORS THANKS"
-RUBY_FAKEGEM_EXTRAINSTALL="data"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A template-based static website generator"
-HOMEPAGE="https://webgen.gettalong.org"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="builder doc highlight markdown"
-
-ruby_add_bdepend "doc? ( dev-ruby/rdoc )
- test? (
- dev-ruby/minitest:5
- dev-ruby/rdiscount
- >=dev-ruby/sass-3.2:* )"
-
-ruby_add_rdepend ">=dev-ruby/cmdparse-3.0.1:3
- >=dev-ruby/systemu-2.5 =dev-ruby/systemu-2*
- >=dev-ruby/kramdown-2.3:2
- builder? ( >=dev-ruby/builder-2.1.0:* )
- highlight? ( >=dev-ruby/coderay-1.0 )
- markdown? ( dev-ruby/maruku )"
-
-all_ruby_prepare() {
- # Avoid a test fragile for sass version differences
- sed -i -e '/test_static_call/,/^ end/ s:^:#:' test/webgen/content_processor/test_sass.rb || die
- # Avoid a test with fragile whitespace tests
- rm -f test/webgen/content_processor/test_haml.rb || die
-
- # Avoid tests for rdoc since that requires an obsolete version
- sed -i -e '/def test_create_nodes/askip' test/webgen/path_handler/test_api.rb || die
-
- # Avoid tests for unpackaged dependencies
- rm -f test/webgen/content_processor/test_{css_minify,tikz}.rb || die
-
- # Avoid tests failing with newer Psych versions
- rm -f test/test_documentation.rb || die
-
- # Fix minitest deprecation
- sed -i -e 's/MiniTest/Minitest/' $(find test -type f -print) || die
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- doman man/man1/webgen.1
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
end of thread, other threads:[~2024-10-06 7:40 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-16 4:23 [gentoo-commits] repo/gentoo:master commit in: app-text/webgen/ Hans de Graaff
-- strict thread matches above, loose matches on Subject: below --
2024-10-06 7:40 Hans de Graaff
2024-10-06 7:40 Hans de Graaff
2024-01-04 6:54 Hans de Graaff
2023-04-07 18:11 Sam James
2023-03-22 3:25 Sam James
2022-12-17 8:37 Hans de Graaff
2022-03-19 12:00 Hans de Graaff
2021-03-08 7:18 Hans de Graaff
2020-08-07 4:35 Hans de Graaff
2020-07-22 4:30 Hans de Graaff
2020-03-14 7:48 Hans de Graaff
2019-10-27 5:44 Hans de Graaff
2019-07-17 7:17 Hans de Graaff
2019-06-03 19:15 Hans de Graaff
2018-04-22 9:37 Hans de Graaff
2018-03-01 18:43 Michał Górny
2018-01-24 15:56 Hans de Graaff
2018-01-22 20:25 Hans de Graaff
2017-02-04 15:38 Hans de Graaff
2016-07-23 19:09 Hans de Graaff
2016-03-20 22:48 Manuel Rüger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox