* [gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/
@ 2015-06-29 1:04 Manuel Rüger
0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rüger @ 2015-06-29 1:04 UTC (permalink / raw
To: gentoo-commits
commit: fb14f2c0cb943eceedfbf62af4dd037661f66d38
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 29 01:04:33 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Jun 29 01:04:33 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=fb14f2c0
[www-apps/redmine_git_hosting] Version bump.
Package-Manager: portage-2.2.20
www-apps/redmine_git_hosting/Manifest | 1 +
.../redmine_git_hosting-1.1.0.ebuild | 83 ++++++++++++++++++++++
2 files changed, 84 insertions(+)
diff --git a/www-apps/redmine_git_hosting/Manifest b/www-apps/redmine_git_hosting/Manifest
index d084190..1665e6a 100644
--- a/www-apps/redmine_git_hosting/Manifest
+++ b/www-apps/redmine_git_hosting/Manifest
@@ -1 +1,2 @@
DIST redmine_git_hosting-0.7.10.tar.gz 507430 SHA256 071156f0d453b7d42c17aa760a05a0dc814bd65eaefe22a0f572566f39c4e6a9 SHA512 84f0fda4444f2fc4fd9891ae388b7234fd61e45abf044289bb1667ef143b883b2a2b7c5b9c17862c7d4a5614872fb1c68fe860f1dc017f281ef2f81d6291789d WHIRLPOOL c2e2fdd9e2adeb25d3bce9dc7d179d3dc6e1cc20f01338385244d9f27e77b546a6fe4668791bdc18d60640f25ce8f1c6f578923e1ce9143767e19f7418ebc604
+DIST redmine_git_hosting-1.1.0.tar.gz 185993 SHA256 fe08b1ac21d3f5e679f9548fb1429461bde9887728064d952d9e24278558f1d3 SHA512 b5e7abab4517a49de8968b58600a60729726f751327934af6ee8488cbabb996c27f255fbc40a5e82c06a473faf6c49caa6e4b7f9924df7b3acb164f2ada6fe68 WHIRLPOOL 44b107c136cf661b77306cf799841e18566ae3b41e528db41e3451187ceec4143de0db5253b74f15285bac54f95ee2b55c4e7e710aacf3ac7cd9c7ecd769df8d
diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild b/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild
new file mode 100644
index 0000000..6c59629
--- /dev/null
+++ b/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+USE_RUBY="ruby20"
+inherit ruby-ng user
+
+DESCRIPTION="A Redmine plugin which makes configuring your own Git hosting easy"
+HOMEPAGE="https://github.com/jbox-web/redmine_git_hosting"
+SRC_URI="https://github.com/jbox-web/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend "dev-ruby/asciidoctor
+ dev-ruby/creole
+ dev-ruby/github-markup
+ >=dev-ruby/gitolite-rugged-1.2.0
+ dev-ruby/gitlab-grack
+ dev-ruby/org-ruby
+ dev-ruby/asciidoctor
+ >=dev-ruby/redcarpet-3.1.2
+ dev-ruby/redcloth
+ dev-ruby/wikicloth
+ dev-ruby/haml-rails
+ >=www-apps/redmine-3"
+
+ruby_add_bdepend ">=www-apps/redmine-3"
+
+REDMINE_DIR="/var/lib/redmine"
+
+pkg_setup() {
+ enewgroup redmine
+ enewuser redmine -1 -1 "${REDMINE_DIR}" redmine
+}
+
+all_ruby_install() {
+ dodoc README.md
+ rm .gitignore README.md LICENSE || die
+ dodir "${REDMINE_DIR}"/plugins/${PN}
+ insinto "${REDMINE_DIR}"/plugins/${PN}
+ doins -r .
+ fowners -R redmine:redmine "${REDMINE_DIR}"/plugins/${PN}
+}
+
+pkg_postinst() {
+ einfo
+ elog "Please run emerge --config =${PF}"
+ elog "Further information:"
+ elog "https://github.com/jbox-web/redmine_git_hosting/wiki/Step-by-step-installation-instructions"
+ einfo
+}
+
+pkg_config() {
+ local RAILS_ENV=${RAILS_ENV:-production}
+ if [ ! -L /usr/bin/ruby ]; then
+ eerror "/usr/bin/ruby is not a valid symlink to any ruby implementation."
+ eerror "Please update it via `eselect ruby`"
+ die
+ fi
+ if [[ $RUBY_TARGETS != *$( eselect ruby show | awk 'NR==2' | tr -d ' ' )* ]]; then
+ eerror "/usr/bin/ruby is currently not included in redmine's ruby targets: ${RUBY_TARGETS}."
+ eerror "Please update it via `eselect ruby`"
+ die
+ fi
+
+ local RUBY=${RUBY:-ruby}
+ einfo "Upgrading the plugin migrations."
+ cd "${EPREFIX}${REDMINE_DIR}" || die
+ RAILS_ENV="${RAILS_ENV}" ${RUBY} -S rake redmine:plugins:migrate || die
+ if [ ! -e "${EPREFIX}${REDMINE_DIR}"/plugins/redmine_git_hosting/ssh_keys/redmine_gitolite_admin_id_rsa ]; then
+ einfo "Generating SSH-Keypair for Redmine user"
+ ssh-keygen -N '' -f "${EPREFIX}${REDMINE_DIR}"/plugins/redmine_git_hosting/ssh_keys/redmine_gitolite_admin_id_rsa || die
+ chown redmine:redmine "${EPREFIX}${REDMINE_DIR}"/plugins/redmine_git_hosting/ssh_keys/redmine_gitolite_admin_id_rsa\
+ "${EPREFIX}${REDMINE_DIR}"/plugins/redmine_git_hosting/ssh_keys/redmine_gitolite_admin_id_rsa.pub || die
+ touch "${EPREFIX}${REDMINE_DIR}"/log/git_hosting.log
+ chown redmine:redmine "${EPREFIX}${REDMINE_DIR}"/log/git_hosting.log || die
+ fi
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/
@ 2015-06-29 1:50 Manuel Rüger
0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rüger @ 2015-06-29 1:50 UTC (permalink / raw
To: gentoo-commits
commit: 9eeeac987eafcaa79648be0a95d899fd1e1da098
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 29 01:50:25 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Jun 29 01:50:25 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=9eeeac98
[www-apps/redmine_git_hosting] Add missed deps. Drop broken grack support.
Package-Manager: portage-2.2.20
www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild b/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild
index 6c59629..2a2891a 100644
--- a/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild
+++ b/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild
@@ -18,17 +18,18 @@ IUSE=""
ruby_add_rdepend "dev-ruby/asciidoctor
dev-ruby/creole
+ dev-ruby/dalli
dev-ruby/github-markup
>=dev-ruby/gitolite-rugged-1.2.0
- dev-ruby/gitlab-grack
dev-ruby/org-ruby
- dev-ruby/asciidoctor
>=dev-ruby/redcarpet-3.1.2
+ dev-ruby/redis
dev-ruby/redcloth
dev-ruby/wikicloth
dev-ruby/haml-rails
+ www-apps/redmine_bootstrap_kit
>=www-apps/redmine-3"
-
+# dev-ruby/gitlab-grack
ruby_add_bdepend ">=www-apps/redmine-3"
REDMINE_DIR="/var/lib/redmine"
@@ -38,6 +39,10 @@ pkg_setup() {
enewuser redmine -1 -1 "${REDMINE_DIR}" redmine
}
+all_ruby_prepare() {
+ sed -i -e "/mount Grack/,s/^/#/" config/routes.rb || die
+}
+
all_ruby_install() {
dodoc README.md
rm .gitignore README.md LICENSE || die
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/
@ 2015-06-29 1:52 Manuel Rüger
0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rüger @ 2015-06-29 1:52 UTC (permalink / raw
To: gentoo-commits
commit: eb29bcaa76bac74da9f0b832a673dd4252313b8c
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 29 01:52:33 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Jun 29 01:52:33 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=eb29bcaa
[www-apps/redmine_git_hosting] Fix sed call.
Package-Manager: portage-2.2.20
www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild b/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild
index 2a2891a..a4fa8e7 100644
--- a/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild
+++ b/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild
@@ -34,13 +34,13 @@ ruby_add_bdepend ">=www-apps/redmine-3"
REDMINE_DIR="/var/lib/redmine"
-pkg_setup() {
- enewgroup redmine
- enewuser redmine -1 -1 "${REDMINE_DIR}" redmine
-}
+#pkg_setup() {
+# enewgroup redmine
+# enewuser redmine -1 -1 "${REDMINE_DIR}" redmine
+#}
all_ruby_prepare() {
- sed -i -e "/mount Grack/,s/^/#/" config/routes.rb || die
+ sed -i -e "/mount Grack/ s/^/#/" config/routes.rb || die
}
all_ruby_install() {
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/
@ 2015-06-29 9:39 Manuel Rüger
0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rüger @ 2015-06-29 9:39 UTC (permalink / raw
To: gentoo-commits
commit: fb6f1cdf40e50aaef0b45850683882d2ef5d77c4
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 29 09:39:31 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Jun 29 09:39:31 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=fb6f1cdf
[www-apps/redmine_git_hosting] Version bump.
Package-Manager: portage-2.2.20
www-apps/redmine_git_hosting/Manifest | 2 +-
...edmine_git_hosting-1.1.0.ebuild => redmine_git_hosting-1.1.1.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/redmine_git_hosting/Manifest b/www-apps/redmine_git_hosting/Manifest
index 1665e6a..a1ab28e 100644
--- a/www-apps/redmine_git_hosting/Manifest
+++ b/www-apps/redmine_git_hosting/Manifest
@@ -1,2 +1,2 @@
DIST redmine_git_hosting-0.7.10.tar.gz 507430 SHA256 071156f0d453b7d42c17aa760a05a0dc814bd65eaefe22a0f572566f39c4e6a9 SHA512 84f0fda4444f2fc4fd9891ae388b7234fd61e45abf044289bb1667ef143b883b2a2b7c5b9c17862c7d4a5614872fb1c68fe860f1dc017f281ef2f81d6291789d WHIRLPOOL c2e2fdd9e2adeb25d3bce9dc7d179d3dc6e1cc20f01338385244d9f27e77b546a6fe4668791bdc18d60640f25ce8f1c6f578923e1ce9143767e19f7418ebc604
-DIST redmine_git_hosting-1.1.0.tar.gz 185993 SHA256 fe08b1ac21d3f5e679f9548fb1429461bde9887728064d952d9e24278558f1d3 SHA512 b5e7abab4517a49de8968b58600a60729726f751327934af6ee8488cbabb996c27f255fbc40a5e82c06a473faf6c49caa6e4b7f9924df7b3acb164f2ada6fe68 WHIRLPOOL 44b107c136cf661b77306cf799841e18566ae3b41e528db41e3451187ceec4143de0db5253b74f15285bac54f95ee2b55c4e7e710aacf3ac7cd9c7ecd769df8d
+DIST redmine_git_hosting-1.1.1.tar.gz 186166 SHA256 2879ff74f5e11e324dec388ce94596c9dfbd8baef63b46c65c404efe2d42a25b SHA512 243d6f4662d8671deb6f8003edbf2fe635662b35a501c2d2e44c870f10146864d589231c618d77181147a27d11ee31561718c97c546f175290950be589f409fe WHIRLPOOL 031dc9c4e15164108d0cff4dc47f88a92529c40f799c20a5e2d175d35f88dbb5405904bba69b68b387d2e30e0327e028a47e96c75d7dedacbaddbff263268897
diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild b/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.1.ebuild
similarity index 100%
rename from www-apps/redmine_git_hosting/redmine_git_hosting-1.1.0.ebuild
rename to www-apps/redmine_git_hosting/redmine_git_hosting-1.1.1.ebuild
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/
@ 2015-07-04 11:31 Manuel Rüger
0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rüger @ 2015-07-04 11:31 UTC (permalink / raw
To: gentoo-commits
commit: d789cf8f99b706919d6bf7077cd8a0db2b6f886c
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 4 11:31:18 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Jul 4 11:31:18 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=d789cf8f
[www-apps/redmine_git_hosting] Add ruby21 support.
Package-Manager: portage-2.2.20
www-apps/redmine_git_hosting/redmine_git_hosting-1.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.1.ebuild b/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.1.ebuild
index a4fa8e7..18dbfa0 100644
--- a/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.1.ebuild
+++ b/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.1.ebuild
@@ -4,7 +4,7 @@
EAPI=5
-USE_RUBY="ruby20"
+USE_RUBY="ruby20 ruby21"
inherit ruby-ng user
DESCRIPTION="A Redmine plugin which makes configuring your own Git hosting easy"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/
@ 2015-08-21 10:36 Manuel Rüger
0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rüger @ 2015-08-21 10:36 UTC (permalink / raw
To: gentoo-commits
commit: 99ee0daa9b7488cf4e6e61e34f9f1f6797f48049
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 21 10:35:41 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Aug 21 10:35:41 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=99ee0daa
www-apps/redmine_git_hosting: Version bump.
Package-Manager: portage-2.2.20.1
www-apps/redmine_git_hosting/Manifest | 2 +-
...edmine_git_hosting-1.1.1.ebuild => redmine_git_hosting-1.1.2.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/redmine_git_hosting/Manifest b/www-apps/redmine_git_hosting/Manifest
index a1ab28e..7ebdb56 100644
--- a/www-apps/redmine_git_hosting/Manifest
+++ b/www-apps/redmine_git_hosting/Manifest
@@ -1,2 +1,2 @@
DIST redmine_git_hosting-0.7.10.tar.gz 507430 SHA256 071156f0d453b7d42c17aa760a05a0dc814bd65eaefe22a0f572566f39c4e6a9 SHA512 84f0fda4444f2fc4fd9891ae388b7234fd61e45abf044289bb1667ef143b883b2a2b7c5b9c17862c7d4a5614872fb1c68fe860f1dc017f281ef2f81d6291789d WHIRLPOOL c2e2fdd9e2adeb25d3bce9dc7d179d3dc6e1cc20f01338385244d9f27e77b546a6fe4668791bdc18d60640f25ce8f1c6f578923e1ce9143767e19f7418ebc604
-DIST redmine_git_hosting-1.1.1.tar.gz 186166 SHA256 2879ff74f5e11e324dec388ce94596c9dfbd8baef63b46c65c404efe2d42a25b SHA512 243d6f4662d8671deb6f8003edbf2fe635662b35a501c2d2e44c870f10146864d589231c618d77181147a27d11ee31561718c97c546f175290950be589f409fe WHIRLPOOL 031dc9c4e15164108d0cff4dc47f88a92529c40f799c20a5e2d175d35f88dbb5405904bba69b68b387d2e30e0327e028a47e96c75d7dedacbaddbff263268897
+DIST redmine_git_hosting-1.1.2.tar.gz 186187 SHA256 b759b3622c8a3ac9d6641a38a68c819e44659ebff72267c1037ce7df87df05a2 SHA512 a4fdc817d298b0faa08651a690924bc4aa63fa1b4131d9bf0d9f51d7cf76d35c5b24c43f22512a93e3d8b57d364e05ac791770f738956020fc0823cbacfae339 WHIRLPOOL cf97cf82deb62d4810aad052a6817a4bbb4af967609ac82c3be5f8ba76717d74693228144e39fc5b8fceaefcf1155e01f281b1cb34f06f185137e7154b5d9057
diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.1.ebuild b/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.2.ebuild
similarity index 100%
rename from www-apps/redmine_git_hosting/redmine_git_hosting-1.1.1.ebuild
rename to www-apps/redmine_git_hosting/redmine_git_hosting-1.1.2.ebuild
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/
@ 2015-08-31 22:00 Manuel Rüger
0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rüger @ 2015-08-31 22:00 UTC (permalink / raw
To: gentoo-commits
commit: 0d34c4a99fc85fdc69f323556f6d990a0ef901a8
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 31 22:00:13 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Aug 31 22:00:13 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=0d34c4a9
www-apps/redmine_git_hosting: Version bump. Remove old
Package-Manager: portage-2.2.20.1
www-apps/redmine_git_hosting/Manifest | 2 +-
...edmine_git_hosting-1.1.2.ebuild => redmine_git_hosting-1.1.3.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/redmine_git_hosting/Manifest b/www-apps/redmine_git_hosting/Manifest
index 7ebdb56..d0ae02d 100644
--- a/www-apps/redmine_git_hosting/Manifest
+++ b/www-apps/redmine_git_hosting/Manifest
@@ -1,2 +1,2 @@
DIST redmine_git_hosting-0.7.10.tar.gz 507430 SHA256 071156f0d453b7d42c17aa760a05a0dc814bd65eaefe22a0f572566f39c4e6a9 SHA512 84f0fda4444f2fc4fd9891ae388b7234fd61e45abf044289bb1667ef143b883b2a2b7c5b9c17862c7d4a5614872fb1c68fe860f1dc017f281ef2f81d6291789d WHIRLPOOL c2e2fdd9e2adeb25d3bce9dc7d179d3dc6e1cc20f01338385244d9f27e77b546a6fe4668791bdc18d60640f25ce8f1c6f578923e1ce9143767e19f7418ebc604
-DIST redmine_git_hosting-1.1.2.tar.gz 186187 SHA256 b759b3622c8a3ac9d6641a38a68c819e44659ebff72267c1037ce7df87df05a2 SHA512 a4fdc817d298b0faa08651a690924bc4aa63fa1b4131d9bf0d9f51d7cf76d35c5b24c43f22512a93e3d8b57d364e05ac791770f738956020fc0823cbacfae339 WHIRLPOOL cf97cf82deb62d4810aad052a6817a4bbb4af967609ac82c3be5f8ba76717d74693228144e39fc5b8fceaefcf1155e01f281b1cb34f06f185137e7154b5d9057
+DIST redmine_git_hosting-1.1.3.tar.gz 186229 SHA256 4650b83c6963e947aa8c75a4faec5a675e7c6e2c862bf9526365fddb00a0c6b5 SHA512 4286cbd571f9813f6b8158dd04e8d9ed1e1529ff9a949f907286c2fbf356315ebc33cfa0fa9f18ace595b2f387f90ffaedd069a47e3e711e4e541ff0aad1e16b WHIRLPOOL c9cca361750722ba65f7cae1cb85bcb66751104acc71c43949c9f36cc57b81b3b3eb0451ba63cedc15c9217f652b6f6281da3b34106fc4b92c263901fa9cafac
diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.2.ebuild b/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.3.ebuild
similarity index 100%
rename from www-apps/redmine_git_hosting/redmine_git_hosting-1.1.2.ebuild
rename to www-apps/redmine_git_hosting/redmine_git_hosting-1.1.3.ebuild
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/
@ 2015-10-01 21:37 Manuel Rüger
0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rüger @ 2015-10-01 21:37 UTC (permalink / raw
To: gentoo-commits
commit: 834d30deeff8c250b7f58e22407d7499e8875147
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 1 21:37:20 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Oct 1 21:37:20 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=834d30de
www-apps/redmine_git_hosting: Version bump. Remove old
Package-Manager: portage-2.2.22
www-apps/redmine_git_hosting/Manifest | 2 +-
...edmine_git_hosting-1.1.3.ebuild => redmine_git_hosting-1.1.4.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/redmine_git_hosting/Manifest b/www-apps/redmine_git_hosting/Manifest
index d0ae02d..e30ff06 100644
--- a/www-apps/redmine_git_hosting/Manifest
+++ b/www-apps/redmine_git_hosting/Manifest
@@ -1,2 +1,2 @@
DIST redmine_git_hosting-0.7.10.tar.gz 507430 SHA256 071156f0d453b7d42c17aa760a05a0dc814bd65eaefe22a0f572566f39c4e6a9 SHA512 84f0fda4444f2fc4fd9891ae388b7234fd61e45abf044289bb1667ef143b883b2a2b7c5b9c17862c7d4a5614872fb1c68fe860f1dc017f281ef2f81d6291789d WHIRLPOOL c2e2fdd9e2adeb25d3bce9dc7d179d3dc6e1cc20f01338385244d9f27e77b546a6fe4668791bdc18d60640f25ce8f1c6f578923e1ce9143767e19f7418ebc604
-DIST redmine_git_hosting-1.1.3.tar.gz 186229 SHA256 4650b83c6963e947aa8c75a4faec5a675e7c6e2c862bf9526365fddb00a0c6b5 SHA512 4286cbd571f9813f6b8158dd04e8d9ed1e1529ff9a949f907286c2fbf356315ebc33cfa0fa9f18ace595b2f387f90ffaedd069a47e3e711e4e541ff0aad1e16b WHIRLPOOL c9cca361750722ba65f7cae1cb85bcb66751104acc71c43949c9f36cc57b81b3b3eb0451ba63cedc15c9217f652b6f6281da3b34106fc4b92c263901fa9cafac
+DIST redmine_git_hosting-1.1.4.tar.gz 186323 SHA256 7d1cde6845c3d19fcd5f302c162acda48c8df01b9b216ebf9944aa400de3e6b3 SHA512 dd7f14a65e441cb0825bf26664deee5e7da5159fd592c792451caed901399d13f47e91cbd1f78f66e22a1ff7d30a3cc0dedeca527f8e316d881a0037bc3cd073 WHIRLPOOL ffca4ff7ef1a9d1bb0d71d647224a446b45da9f79ee5a781eddf9bc1cbf6005af4ab1e3ca27f2c43bb6e176628b4d153bf302441d9289a069332339ccb0782f4
diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.3.ebuild b/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.4.ebuild
similarity index 100%
rename from www-apps/redmine_git_hosting/redmine_git_hosting-1.1.3.ebuild
rename to www-apps/redmine_git_hosting/redmine_git_hosting-1.1.4.ebuild
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/
@ 2015-11-19 20:39 Manuel Rüger
0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rüger @ 2015-11-19 20:39 UTC (permalink / raw
To: gentoo-commits
commit: 504be855d0ac6c0d546d1cd1b7b8c2523d38d1a1
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 19 20:38:59 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Nov 19 20:38:59 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=504be855
www-apps/redmine_git_hosting: Version bump. Remove old
Package-Manager: portage-2.2.25
www-apps/redmine_git_hosting/Manifest | 2 +-
...edmine_git_hosting-1.1.4.ebuild => redmine_git_hosting-1.2.0.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/redmine_git_hosting/Manifest b/www-apps/redmine_git_hosting/Manifest
index e30ff06..ea68947 100644
--- a/www-apps/redmine_git_hosting/Manifest
+++ b/www-apps/redmine_git_hosting/Manifest
@@ -1,2 +1,2 @@
DIST redmine_git_hosting-0.7.10.tar.gz 507430 SHA256 071156f0d453b7d42c17aa760a05a0dc814bd65eaefe22a0f572566f39c4e6a9 SHA512 84f0fda4444f2fc4fd9891ae388b7234fd61e45abf044289bb1667ef143b883b2a2b7c5b9c17862c7d4a5614872fb1c68fe860f1dc017f281ef2f81d6291789d WHIRLPOOL c2e2fdd9e2adeb25d3bce9dc7d179d3dc6e1cc20f01338385244d9f27e77b546a6fe4668791bdc18d60640f25ce8f1c6f578923e1ce9143767e19f7418ebc604
-DIST redmine_git_hosting-1.1.4.tar.gz 186323 SHA256 7d1cde6845c3d19fcd5f302c162acda48c8df01b9b216ebf9944aa400de3e6b3 SHA512 dd7f14a65e441cb0825bf26664deee5e7da5159fd592c792451caed901399d13f47e91cbd1f78f66e22a1ff7d30a3cc0dedeca527f8e316d881a0037bc3cd073 WHIRLPOOL ffca4ff7ef1a9d1bb0d71d647224a446b45da9f79ee5a781eddf9bc1cbf6005af4ab1e3ca27f2c43bb6e176628b4d153bf302441d9289a069332339ccb0782f4
+DIST redmine_git_hosting-1.2.0.tar.gz 206799 SHA256 77f814157587548b174b86288495a55c67bc5cab0e17275918496e8362da66c8 SHA512 d462b5bd8068bcfc582fd2185e6f64085faddf46cc5ef507b20782d2f8a9cf9955100d67eb2519e6da5357599669afd52072bd343dc27b28fba3cc920b55b0cc WHIRLPOOL 90513d2d162d9e411f2dc4462047e9ac179c626141dbdaff48507b3b80d9bc75cb096e91af1513886f97f47034f6dd720b8983f4cb2a46f79362cbfb6394976b
diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-1.1.4.ebuild b/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.0.ebuild
similarity index 100%
rename from www-apps/redmine_git_hosting/redmine_git_hosting-1.1.4.ebuild
rename to www-apps/redmine_git_hosting/redmine_git_hosting-1.2.0.ebuild
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/
@ 2015-11-19 21:11 Manuel Rüger
0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rüger @ 2015-11-19 21:11 UTC (permalink / raw
To: gentoo-commits
commit: 5bec05dd997dce940f0b3fe6ee9e94979d325b33
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 19 21:11:27 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Nov 19 21:11:27 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=5bec05dd
www-apps/redmine_git_hosting: Add missed dependency
Package-Manager: portage-2.2.25
www-apps/redmine_git_hosting/redmine_git_hosting-1.2.0.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.0.ebuild b/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.0.ebuild
index acc2e8a..ba778fa 100644
--- a/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.0.ebuild
+++ b/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.0.ebuild
@@ -27,6 +27,7 @@ ruby_add_rdepend "dev-ruby/asciidoctor
dev-ruby/redcloth
dev-ruby/wikicloth
dev-ruby/haml-rails
+ dev-ruby/rack-parser
www-apps/redmine_bootstrap_kit
>=www-apps/redmine-3"
# dev-ruby/gitlab-grack
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/
@ 2016-08-28 20:39 Manuel Rüger
0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rüger @ 2016-08-28 20:39 UTC (permalink / raw
To: gentoo-commits
commit: b96ef29bd52dc5d0c5f2c2a757cd9cad0f5ab2d5
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 28 20:39:36 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 20:39:36 2016 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=b96ef29b
www-apps/redmine_git_hosting: Version bump, remove old
Package-Manager: portage-2.3.0
www-apps/redmine_git_hosting/Manifest | 3 +-
www-apps/redmine_git_hosting/metadata.xml | 2 +-
.../redmine_git_hosting-0.7.10.ebuild | 81 ----------------------
...2.0.ebuild => redmine_git_hosting-1.2.1.ebuild} | 4 +-
4 files changed, 4 insertions(+), 86 deletions(-)
diff --git a/www-apps/redmine_git_hosting/Manifest b/www-apps/redmine_git_hosting/Manifest
index ea68947..85a5a67 100644
--- a/www-apps/redmine_git_hosting/Manifest
+++ b/www-apps/redmine_git_hosting/Manifest
@@ -1,2 +1 @@
-DIST redmine_git_hosting-0.7.10.tar.gz 507430 SHA256 071156f0d453b7d42c17aa760a05a0dc814bd65eaefe22a0f572566f39c4e6a9 SHA512 84f0fda4444f2fc4fd9891ae388b7234fd61e45abf044289bb1667ef143b883b2a2b7c5b9c17862c7d4a5614872fb1c68fe860f1dc017f281ef2f81d6291789d WHIRLPOOL c2e2fdd9e2adeb25d3bce9dc7d179d3dc6e1cc20f01338385244d9f27e77b546a6fe4668791bdc18d60640f25ce8f1c6f578923e1ce9143767e19f7418ebc604
-DIST redmine_git_hosting-1.2.0.tar.gz 206799 SHA256 77f814157587548b174b86288495a55c67bc5cab0e17275918496e8362da66c8 SHA512 d462b5bd8068bcfc582fd2185e6f64085faddf46cc5ef507b20782d2f8a9cf9955100d67eb2519e6da5357599669afd52072bd343dc27b28fba3cc920b55b0cc WHIRLPOOL 90513d2d162d9e411f2dc4462047e9ac179c626141dbdaff48507b3b80d9bc75cb096e91af1513886f97f47034f6dd720b8983f4cb2a46f79362cbfb6394976b
+DIST redmine_git_hosting-1.2.1.tar.gz 207446 SHA256 4333873e14d504d618020c5fed58fef85ad2ba0ded04901c18d705dd21f133af SHA512 9bec9db5d8ca712fbfe06031b16a6cd84f099833242ab5fee806993e254a61841dd08c3d9fb62e64f3573503d66982c6346ec4ef368878c7a6d733894cee0250 WHIRLPOOL 2332131eac987c37cd413a9fc1f871ad37808211a2212bb1f0e944d2231bd2bedad84b6128e2e9803be699b6059e9114e125dae4394aa1a38746b55d7ae48fae
diff --git a/www-apps/redmine_git_hosting/metadata.xml b/www-apps/redmine_git_hosting/metadata.xml
index bfcb697..97df2a0 100644
--- a/www-apps/redmine_git_hosting/metadata.xml
+++ b/www-apps/redmine_git_hosting/metadata.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer>
+ <maintainer type="person">
<email>mrueg@gentoo.org</email>
<name>Manuel Rüger</name>
</maintainer>
diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-0.7.10.ebuild b/www-apps/redmine_git_hosting/redmine_git_hosting-0.7.10.ebuild
deleted file mode 100644
index 4b65716..0000000
--- a/www-apps/redmine_git_hosting/redmine_git_hosting-0.7.10.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby20"
-inherit ruby-ng user
-
-DESCRIPTION="A Redmine plugin which makes configuring your own Git hosting easy"
-HOMEPAGE="https://github.com/jbox-web/redmine_git_hosting"
-SRC_URI="https://github.com/jbox-web/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/asciidoctor
- dev-ruby/creole
- dev-ruby/github-markup
- >=dev-ruby/jbox-gitolite-1.2.6
- dev-ruby/lockfile
- dev-ruby/org-ruby
- dev-ruby/redcarpet
- dev-ruby/redcloth
- dev-ruby/wikicloth
- www-apps/redmine"
-
-ruby_add_bdepend "www-apps/redmine"
-
-REDMINE_DIR="/var/lib/redmine"
-
-pkg_setup() {
- enewgroup redmine
- enewuser redmine -1 -1 "${REDMINE_DIR}" redmine
-}
-
-all_ruby_install() {
- dodoc README.md
- rm .gitignore README.md LICENSE || die
- dodir "${REDMINE_DIR}"/plugins/${PN}
- insinto "${REDMINE_DIR}"/plugins/${PN}
- doins -r .
- fowners -R redmine:redmine "${REDMINE_DIR}"/plugins/${PN}
-}
-
-pkg_postinst() {
- einfo
- elog "Please run emerge --config =${PF}"
- elog "Further information:"
- elog "https://github.com/jbox-web/redmine_git_hosting/wiki/Step-by-step-installation-instructions"
- einfo
-}
-
-pkg_config() {
- local RAILS_ENV=${RAILS_ENV:-production}
- if [ ! -L /usr/bin/ruby ]; then
- eerror "/usr/bin/ruby is not a valid symlink to any ruby implementation."
- eerror "Please update it via `eselect ruby`"
- die
- fi
- if [[ $RUBY_TARGETS != *$( eselect ruby show | awk 'NR==2' | tr -d ' ' )* ]]; then
- eerror "/usr/bin/ruby is currently not included in redmine's ruby targets: ${RUBY_TARGETS}."
- eerror "Please update it via `eselect ruby`"
- die
- fi
-
- local RUBY=${RUBY:-ruby}
- einfo "Upgrading the plugin migrations."
- cd "${EPREFIX}${REDMINE_DIR}" || die
- RAILS_ENV="${RAILS_ENV}" ${RUBY} -S rake redmine:plugins:migrate || die
- if [ ! -e "${EPREFIX}${REDMINE_DIR}"/plugins/redmine_git_hosting/ssh_keys/redmine_gitolite_admin_id_rsa ]; then
- einfo "Generating SSH-Keypair for Redmine user"
- ssh-keygen -N '' -f "${EPREFIX}${REDMINE_DIR}"/plugins/redmine_git_hosting/ssh_keys/redmine_gitolite_admin_id_rsa || die
- chown redmine:redmine "${EPREFIX}${REDMINE_DIR}"/plugins/redmine_git_hosting/ssh_keys/redmine_gitolite_admin_id_rsa\
- "${EPREFIX}${REDMINE_DIR}"/plugins/redmine_git_hosting/ssh_keys/redmine_gitolite_admin_id_rsa.pub || die
- touch "${EPREFIX}${REDMINE_DIR}"/log/git_hosting.log
- chown redmine:redmine "${EPREFIX}${REDMINE_DIR}"/log/git_hosting.log || die
- fi
-}
diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.0.ebuild b/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.1.ebuild
similarity index 97%
rename from www-apps/redmine_git_hosting/redmine_git_hosting-1.2.0.ebuild
rename to www-apps/redmine_git_hosting/redmine_git_hosting-1.2.1.ebuild
index ba778fa..7d4c427 100644
--- a/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.0.ebuild
+++ b/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -22,7 +22,7 @@ ruby_add_rdepend "dev-ruby/asciidoctor
dev-ruby/github-markup
>=dev-ruby/gitolite-rugged-1.2.0
dev-ruby/org-ruby
- >=dev-ruby/redcarpet-3.1.2
+ >=dev-ruby/redcarpet-3.3.2
dev-ruby/redis
dev-ruby/redcloth
dev-ruby/wikicloth
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/
@ 2016-08-29 10:12 Manuel Rüger
0 siblings, 0 replies; 12+ messages in thread
From: Manuel Rüger @ 2016-08-29 10:12 UTC (permalink / raw
To: gentoo-commits
commit: 754de78ca20c320a8602f4cbcdf5a5eae5111bdc
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 29 10:11:12 2016 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Aug 29 10:11:12 2016 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=754de78c
www-apps/redmine_git_hosting: Add ruby22
Package-Manager: portage-2.3.0
www-apps/redmine_git_hosting/redmine_git_hosting-1.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.1.ebuild b/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.1.ebuild
index 7d4c427..4f07464 100644
--- a/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.1.ebuild
+++ b/www-apps/redmine_git_hosting/redmine_git_hosting-1.2.1.ebuild
@@ -4,7 +4,7 @@
EAPI=5
-USE_RUBY="ruby20 ruby21"
+USE_RUBY="ruby20 ruby21 ruby22"
inherit ruby-ng user
DESCRIPTION="A Redmine plugin which makes configuring your own Git hosting easy"
^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2016-08-29 10:12 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-29 1:52 [gentoo-commits] dev/mrueg:master commit in: www-apps/redmine_git_hosting/ Manuel Rüger
-- strict thread matches above, loose matches on Subject: below --
2016-08-29 10:12 Manuel Rüger
2016-08-28 20:39 Manuel Rüger
2015-11-19 21:11 Manuel Rüger
2015-11-19 20:39 Manuel Rüger
2015-10-01 21:37 Manuel Rüger
2015-08-31 22:00 Manuel Rüger
2015-08-21 10:36 Manuel Rüger
2015-07-04 11:31 Manuel Rüger
2015-06-29 9:39 Manuel Rüger
2015-06-29 1:50 Manuel Rüger
2015-06-29 1:04 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