public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] dev/jmbsvicetto:master commit in: www-apps/drupal/
Date: Thu, 14 Aug 2014 12:52:17 +0000 (UTC)	[thread overview]
Message-ID: <1408020723.c09adcf4fbb53d2923be7ef3705418bbcaf8b5c3.jmbsvicetto@gentoo> (raw)

commit:     c09adcf4fbb53d2923be7ef3705418bbcaf8b5c3
Author:     Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 14 12:52:03 2014 +0000
Commit:     Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
CommitDate: Thu Aug 14 12:52:03 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/jmbsvicetto.git;a=commit;h=c09adcf4

Drop old and vulnerable versions.

Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo.org>

---
 www-apps/drupal/drupal-6.32.ebuild | 57 -------------------------
 www-apps/drupal/drupal-7.29.ebuild | 85 --------------------------------------
 2 files changed, 142 deletions(-)

diff --git a/www-apps/drupal/drupal-6.32.ebuild b/www-apps/drupal/drupal-6.32.ebuild
deleted file mode 100644
index 2966ac1..0000000
--- a/www-apps/drupal/drupal-6.32.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/drupal-6.31.ebuild,v 1.1 2014/04/25 07:55:09 radhermit Exp $
-
-EAPI=5
-
-inherit webapp
-
-MY_PV=${PV:0:3}.0
-
-DESCRIPTION="PHP-based open-source platform and content management system"
-HOMEPAGE="http://drupal.org/"
-SRC_URI="http://drupal.org/files/projects/${P}.tar.gz"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~ppc ~x86"
-IUSE="+mysql postgres"
-
-RDEPEND="virtual/httpd-php
-	dev-lang/php[gd,pdo,postgres?,xml]
-	mysql? ( || ( dev-lang/php[mysql] dev-lang/php[mysqli] ) )"
-
-need_httpd_cgi
-
-REQUIRED_USE="|| ( mysql postgres )"
-
-src_install() {
-	webapp_src_preinst
-
-	local docs="MAINTAINERS.txt LICENSE.txt INSTALL.txt CHANGELOG.txt INSTALL.mysql.txt INSTALL.pgsql.txt UPGRADE.txt "
-	dodoc ${docs}
-	rm -f ${docs} INSTALL COPYRIGHT.txt || die
-
-	cp sites/default/{default.settings.php,settings.php} || die
-	insinto "${MY_HTDOCSDIR}"
-	doins -r .
-
-	dodir "${MY_HTDOCSDIR}"/files
-	webapp_serverowned "${MY_HTDOCSDIR}"/files
-	webapp_serverowned "${MY_HTDOCSDIR}"/sites/default
-	webapp_serverowned "${MY_HTDOCSDIR}"/sites/default/settings.php
-
-	webapp_configfile "${MY_HTDOCSDIR}"/sites/default/settings.php
-	webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
-
-	webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
-
-	webapp_src_install
-}
-
-pkg_postinst() {
-	echo
-	ewarn "SECURITY NOTICE"
-	ewarn "If you plan on using SSL on your Drupal site, please consult the postinstall information:"
-	ewarn "\t# webapp-config --show-postinst ${PN} ${PV}"
-	echo
-}

diff --git a/www-apps/drupal/drupal-7.29.ebuild b/www-apps/drupal/drupal-7.29.ebuild
deleted file mode 100644
index 6e4e38a..0000000
--- a/www-apps/drupal/drupal-7.29.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/drupal-7.27.ebuild,v 1.1 2014/04/25 07:55:09 radhermit Exp $
-
-EAPI=5
-
-inherit webapp
-
-MY_PV=${PV:0:3}.0
-
-DESCRIPTION="PHP-based open-source platform and content management system"
-HOMEPAGE="http://drupal.org/"
-SRC_URI="http://drupal.org/files/projects/${P}.tar.gz"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~ppc ~x86"
-IUSE="+accelerator +mysql postgres sqlite +uploadprogress"
-
-RDEPEND="
-	dev-lang/php[gd,hash,pdo,postgres?,simplexml,xml]
-	virtual/httpd-php
-	accelerator? ( ||
-		(
-			(
-				<dev-lang/php-5.5
-				dev-php/pecl-apc
-			)
-			dev-php/xcache
-			dev-php/eaccelerator
-			(
-				>=dev-lang/php-5.5[opcache]
-				dev-php/pecl-apcu
-			)
-		)
-	)
-	uploadprogress? ( dev-php/pecl-uploadprogress )
-	mysql? (
-		|| (
-			dev-lang/php[mysql]
-			dev-lang/php[mysqli]
-		)
-	)
-	sqlite? (
-		|| (
-			dev-lang/php[sqlite]
-			dev-lang/php[sqlite3]
-		)
-	)
-"
-
-need_httpd_cgi
-
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-src_install() {
-	webapp_src_preinst
-
-	local docs="MAINTAINERS.txt LICENSE.txt INSTALL.txt CHANGELOG.txt INSTALL.mysql.txt INSTALL.pgsql.txt INSTALL.sqlite.txt UPGRADE.txt "
-	dodoc ${docs}
-	rm -f ${docs} INSTALL COPYRIGHT.txt || die
-
-	cp sites/default/{default.settings.php,settings.php} || die
-	insinto "${MY_HTDOCSDIR}"
-	doins -r .
-
-	dodir "${MY_HTDOCSDIR}"/files
-	webapp_serverowned "${MY_HTDOCSDIR}"/files
-	webapp_serverowned "${MY_HTDOCSDIR}"/sites/default
-	webapp_serverowned "${MY_HTDOCSDIR}"/sites/default/settings.php
-
-	webapp_configfile "${MY_HTDOCSDIR}"/sites/default/settings.php
-	webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
-
-	webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
-
-	webapp_src_install
-}
-
-pkg_postinst() {
-	echo
-	ewarn "SECURITY NOTICE"
-	ewarn "If you plan on using SSL on your Drupal site, please consult the postinstall information:"
-	ewarn "\t# webapp-config --show-postinst ${PN} ${PV}"
-	echo
-}


WARNING: multiple messages have this Message-ID (diff)
From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] dev/jmbsvicetto:master commit in: www-apps/drupal/
Date: Thu, 21 Aug 2014 16:39:22 +0000 (UTC)	[thread overview]
Message-ID: <1408020723.c09adcf4fbb53d2923be7ef3705418bbcaf8b5c3.jmbsvicetto@gentoo> (raw)
Message-ID: <20140821163922.Mm9sIwjkz0ICjfQVGIlWf8Wo8-9lE_Darr_SCz9S_wg@z> (raw)

commit:     c09adcf4fbb53d2923be7ef3705418bbcaf8b5c3
Author:     Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 14 12:52:03 2014 +0000
Commit:     Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
CommitDate: Thu Aug 14 12:52:03 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=dev/jmbsvicetto.git;a=commit;h=c09adcf4

Drop old and vulnerable versions.

Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo.org>

---
 www-apps/drupal/drupal-6.32.ebuild | 57 -------------------------
 www-apps/drupal/drupal-7.29.ebuild | 85 --------------------------------------
 2 files changed, 142 deletions(-)

diff --git a/www-apps/drupal/drupal-6.32.ebuild b/www-apps/drupal/drupal-6.32.ebuild
deleted file mode 100644
index 2966ac1..0000000
--- a/www-apps/drupal/drupal-6.32.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/drupal-6.31.ebuild,v 1.1 2014/04/25 07:55:09 radhermit Exp $
-
-EAPI=5
-
-inherit webapp
-
-MY_PV=${PV:0:3}.0
-
-DESCRIPTION="PHP-based open-source platform and content management system"
-HOMEPAGE="http://drupal.org/"
-SRC_URI="http://drupal.org/files/projects/${P}.tar.gz"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~ppc ~x86"
-IUSE="+mysql postgres"
-
-RDEPEND="virtual/httpd-php
-	dev-lang/php[gd,pdo,postgres?,xml]
-	mysql? ( || ( dev-lang/php[mysql] dev-lang/php[mysqli] ) )"
-
-need_httpd_cgi
-
-REQUIRED_USE="|| ( mysql postgres )"
-
-src_install() {
-	webapp_src_preinst
-
-	local docs="MAINTAINERS.txt LICENSE.txt INSTALL.txt CHANGELOG.txt INSTALL.mysql.txt INSTALL.pgsql.txt UPGRADE.txt "
-	dodoc ${docs}
-	rm -f ${docs} INSTALL COPYRIGHT.txt || die
-
-	cp sites/default/{default.settings.php,settings.php} || die
-	insinto "${MY_HTDOCSDIR}"
-	doins -r .
-
-	dodir "${MY_HTDOCSDIR}"/files
-	webapp_serverowned "${MY_HTDOCSDIR}"/files
-	webapp_serverowned "${MY_HTDOCSDIR}"/sites/default
-	webapp_serverowned "${MY_HTDOCSDIR}"/sites/default/settings.php
-
-	webapp_configfile "${MY_HTDOCSDIR}"/sites/default/settings.php
-	webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
-
-	webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
-
-	webapp_src_install
-}
-
-pkg_postinst() {
-	echo
-	ewarn "SECURITY NOTICE"
-	ewarn "If you plan on using SSL on your Drupal site, please consult the postinstall information:"
-	ewarn "\t# webapp-config --show-postinst ${PN} ${PV}"
-	echo
-}

diff --git a/www-apps/drupal/drupal-7.29.ebuild b/www-apps/drupal/drupal-7.29.ebuild
deleted file mode 100644
index 6e4e38a..0000000
--- a/www-apps/drupal/drupal-7.29.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/drupal/drupal-7.27.ebuild,v 1.1 2014/04/25 07:55:09 radhermit Exp $
-
-EAPI=5
-
-inherit webapp
-
-MY_PV=${PV:0:3}.0
-
-DESCRIPTION="PHP-based open-source platform and content management system"
-HOMEPAGE="http://drupal.org/"
-SRC_URI="http://drupal.org/files/projects/${P}.tar.gz"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~ppc ~x86"
-IUSE="+accelerator +mysql postgres sqlite +uploadprogress"
-
-RDEPEND="
-	dev-lang/php[gd,hash,pdo,postgres?,simplexml,xml]
-	virtual/httpd-php
-	accelerator? ( ||
-		(
-			(
-				<dev-lang/php-5.5
-				dev-php/pecl-apc
-			)
-			dev-php/xcache
-			dev-php/eaccelerator
-			(
-				>=dev-lang/php-5.5[opcache]
-				dev-php/pecl-apcu
-			)
-		)
-	)
-	uploadprogress? ( dev-php/pecl-uploadprogress )
-	mysql? (
-		|| (
-			dev-lang/php[mysql]
-			dev-lang/php[mysqli]
-		)
-	)
-	sqlite? (
-		|| (
-			dev-lang/php[sqlite]
-			dev-lang/php[sqlite3]
-		)
-	)
-"
-
-need_httpd_cgi
-
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-src_install() {
-	webapp_src_preinst
-
-	local docs="MAINTAINERS.txt LICENSE.txt INSTALL.txt CHANGELOG.txt INSTALL.mysql.txt INSTALL.pgsql.txt INSTALL.sqlite.txt UPGRADE.txt "
-	dodoc ${docs}
-	rm -f ${docs} INSTALL COPYRIGHT.txt || die
-
-	cp sites/default/{default.settings.php,settings.php} || die
-	insinto "${MY_HTDOCSDIR}"
-	doins -r .
-
-	dodir "${MY_HTDOCSDIR}"/files
-	webapp_serverowned "${MY_HTDOCSDIR}"/files
-	webapp_serverowned "${MY_HTDOCSDIR}"/sites/default
-	webapp_serverowned "${MY_HTDOCSDIR}"/sites/default/settings.php
-
-	webapp_configfile "${MY_HTDOCSDIR}"/sites/default/settings.php
-	webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
-
-	webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
-
-	webapp_src_install
-}
-
-pkg_postinst() {
-	echo
-	ewarn "SECURITY NOTICE"
-	ewarn "If you plan on using SSL on your Drupal site, please consult the postinstall information:"
-	ewarn "\t# webapp-config --show-postinst ${PN} ${PV}"
-	echo
-}


             reply	other threads:[~2014-08-14 12:52 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-14 12:52 Jorge Manuel B. S. Vicetto [this message]
2014-08-21 16:39 ` [gentoo-commits] dev/jmbsvicetto:master commit in: www-apps/drupal/ Jorge Manuel B. S. Vicetto
  -- strict thread matches above, loose matches on Subject: below --
2016-10-09 16:38 Jorge Manuel B. S. Vicetto
2016-09-25  3:29 Jorge Manuel B. S. Vicetto
2016-09-25  3:23 Jorge Manuel B. S. Vicetto
2016-09-25  3:23 Jorge Manuel B. S. Vicetto
2016-07-19 12:18 Jorge Manuel B. S. Vicetto
2016-07-19 11:40 Jorge Manuel B. S. Vicetto
2016-07-08 19:15 Jorge Manuel B. S. Vicetto
2016-06-16  9:45 Jorge Manuel B. S. Vicetto
2016-06-15 22:31 Jorge Manuel B. S. Vicetto
2016-06-05 20:32 Jorge Manuel B. S. Vicetto
2016-05-22 22:30 Jorge Manuel B. S. Vicetto
2016-04-13 18:55 Jorge Manuel B. S. Vicetto
2016-04-13 18:52 Jorge Manuel B. S. Vicetto
2016-03-11  4:48 Jorge Manuel B. S. Vicetto
2016-02-25  3:01 Jorge Manuel B. S. Vicetto
2016-02-08 18:08 Jorge Manuel B. S. Vicetto
2016-01-16 16:29 Jorge Manuel B. S. Vicetto
2015-12-04  1:58 Jorge Manuel B. S. Vicetto
2015-11-21 23:24 Jorge Manuel B. S. Vicetto
2015-11-17  9:58 Jorge Manuel B. S. Vicetto
2015-11-17  9:58 Jorge Manuel B. S. Vicetto
2015-10-22  3:22 Jorge Manuel B. S. Vicetto
2015-10-22  0:21 Jorge Manuel B. S. Vicetto
2015-10-15 11:48 Jorge Manuel B. S. Vicetto
2015-10-09  5:03 Jorge Manuel B. S. Vicetto
2015-09-24 14:41 Jorge Manuel B. S. Vicetto
2015-06-18 13:14 Jorge Manuel B. S. Vicetto
2015-06-02 20:02 Jorge Manuel B. S. Vicetto
2015-05-08 18:41 Jorge Manuel B. S. Vicetto
2015-04-03  2:34 Jorge Manuel B. S. Vicetto
2015-03-21 23:24 Jorge Manuel B. S. Vicetto
2015-03-19 20:50 Jorge Manuel B. S. Vicetto
2015-03-19 20:47 Jorge Manuel B. S. Vicetto
2015-03-01 16:45 Jorge Manuel B. S. Vicetto
2015-01-07 16:17 Jorge Manuel B. S. Vicetto
2015-01-05 18:25 Jorge Manuel B. S. Vicetto
2014-12-07 21:06 Jorge Manuel B. S. Vicetto
2014-11-20 11:40 Jorge Manuel B. S. Vicetto
2014-11-20 11:00 Jorge Manuel B. S. Vicetto
2014-10-17 12:32 Jorge Manuel B. S. Vicetto
2014-08-21 16:39 Jorge Manuel B. S. Vicetto
2014-08-14 12:52 ` Jorge Manuel B. S. Vicetto
2014-07-21  9:01 Jorge Manuel B. S. Vicetto
2014-07-21  9:01 Jorge Manuel B. S. Vicetto
2013-11-29 18:13 Jorge Manuel B. S. Vicetto
2013-09-13  1:07 Jorge Manuel B. S. Vicetto

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1408020723.c09adcf4fbb53d2923be7ef3705418bbcaf8b5c3.jmbsvicetto@gentoo \
    --to=jmbsvicetto@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox