public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-dns/mydns/
@ 2016-04-28 23:44 Austin English
  0 siblings, 0 replies; 6+ messages in thread
From: Austin English @ 2016-04-28 23:44 UTC (permalink / raw
  To: gentoo-commits

commit:     6decc33359f0d0985d3809a67273c7fbd53a4304
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 28 22:47:48 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Thu Apr 28 22:47:48 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6decc333

net-dns/mydns: remove mydns-1.2.8.31

Package-Manager: portage-2.2.26

 net-dns/mydns/mydns-1.2.8.31.ebuild | 85 -------------------------------------
 1 file changed, 85 deletions(-)

diff --git a/net-dns/mydns/mydns-1.2.8.31.ebuild b/net-dns/mydns/mydns-1.2.8.31.ebuild
deleted file mode 100644
index 52e131e..0000000
--- a/net-dns/mydns/mydns-1.2.8.31.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools eutils
-
-DESCRIPTION="A DNS-Server which gets its data from a MySQL-/PostgreSQL-database"
-HOMEPAGE="http://www.mydns.pl/"
-SRC_URI="mirror://sourceforge/mydns-ng/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ~ppc sparc x86"
-IUSE="alias debug nls mysql postgres ssl static status"
-
-RDEPEND="mysql? ( virtual/mysql )
-	nls? ( virtual/libintl )
-	postgres? ( dev-db/postgresql )
-	ssl? ( dev-libs/openssl )
-	virtual/libiconv"
-DEPEND="${RDEPEND}
-	nls? ( >=sys-devel/gettext-0.12 )
-	sys-devel/bison"
-
-REQUIRED_USE="^^ ( mysql postgres )"
-
-src_prepare() {
-	epatch "${FILESDIR}/${PN}-1.2.8.27-m4.patch"
-	eautoreconf
-	epatch "${FILESDIR}/${P}-texinfo.patch"
-}
-
-src_configure() {
-	econf \
-		$(use_enable alias) \
-		$(use_enable nls) \
-		$(use_enable debug) \
-		$(use_with mysql) \
-		$(use_with postgres pgsql) \
-		$(use_enable static) \
-		$(use_enable static static-build) \
-		$(use_enable status) \
-		$(use_with ssl openssl) \
-		--without-included-gettext
-}
-
-src_install() {
-	default
-
-	dodoc AUTHORS BUGS ChangeLog QUICKSTART* NEWS README* TODO
-	docinto contrib
-	dodoc contrib/*.php contrib/*.pl contrib/*.pm contrib/README*
-
-	newinitd "${FILESDIR}/mydns.initd" mydns
-	newconfd "${FILESDIR}/mydns.confd" mydns
-
-	## Avoid file collision
-	rm -f "${ED}/usr/share/locale/locale.alias"
-
-	# Install config file
-	insinto /etc
-	newins mydns.conf mydns.conf
-	fowners root:root /etc/mydns.conf
-	fperms 0600 /etc/mydns.conf
-}
-
-pkg_postinst() {
-	if use postgres; then
-		elog "# createdb mydns"
-		elog "# /usr/sbin/mydns --create-tables | psql mydns"
-		elog
-		elog "to create the tables in the PostgreSQL-Database."
-		elog "For more info see QUICKSTART.postgres."
-	fi
-	if use mysql; then
-		elog "# mysqladmin -u <useruname> -p create mydns"
-		elog "# /usr/sbin/mydns --create-tables | mysql -u <username> -p mydns"
-		elog
-		elog "to create the tables in the MySQL-Database."
-		elog "For more info see QUICKSTART.mysql."
-	fi
-	elog
-}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-dns/mydns/
@ 2019-02-05 20:33 Brian Evans
  0 siblings, 0 replies; 6+ messages in thread
From: Brian Evans @ 2019-02-05 20:33 UTC (permalink / raw
  To: gentoo-commits

commit:     9d5eb87d92006e1d63a8e72da5996e59e1eb5ee8
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  5 20:31:25 2019 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Tue Feb  5 20:32:44 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d5eb87d

net-dns/mydns: Revbump for dependencies

Bug: https://bugs.gentoo.org/665966
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Brian Evans <grknight <AT> gentoo.org>

 net-dns/mydns/mydns-1.2.8.31-r2.ebuild | 88 ++++++++++++++++++++++++++++++++++
 1 file changed, 88 insertions(+)

diff --git a/net-dns/mydns/mydns-1.2.8.31-r2.ebuild b/net-dns/mydns/mydns-1.2.8.31-r2.ebuild
new file mode 100644
index 00000000000..5f6aeb01f0c
--- /dev/null
+++ b/net-dns/mydns/mydns-1.2.8.31-r2.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="A DNS-Server which gets its data from a MySQL-/PostgreSQL-database"
+HOMEPAGE="http://www.mydns.pl/"
+SRC_URI="mirror://sourceforge/mydns-ng/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
+IUSE="alias debug nls mysql postgres ssl static status"
+
+RDEPEND="mysql? ( dev-db/mysql-connector-c:= )
+	nls? ( virtual/libintl )
+	postgres? ( dev-db/postgresql )
+	ssl? ( dev-libs/openssl:0= )
+	virtual/libiconv"
+DEPEND="${RDEPEND}
+	nls? ( >=sys-devel/gettext-0.12 )
+	sys-devel/bison"
+
+REQUIRED_USE="^^ ( mysql postgres )"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.2.8.27-m4.patch"
+	"${FILESDIR}/${P}-texinfo.patch"
+)
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_enable alias) \
+		$(use_enable nls) \
+		$(use_enable debug) \
+		$(use_with mysql) \
+		$(use_with postgres pgsql) \
+		$(use_enable static) \
+		$(use_enable static static-build) \
+		$(use_enable status) \
+		$(use_with ssl openssl) \
+		--without-included-gettext
+}
+
+src_install() {
+	default
+
+	dodoc AUTHORS BUGS ChangeLog QUICKSTART* NEWS README* TODO
+	docinto contrib
+	dodoc contrib/*.php contrib/*.pl contrib/*.pm contrib/README*
+
+	newinitd "${FILESDIR}/mydns.initd" mydns
+	newconfd "${FILESDIR}/mydns.confd" mydns
+
+	## Avoid file collision
+	rm -f "${ED}/usr/share/locale/locale.alias"
+
+	# Install config file
+	insinto /etc
+	newins mydns.conf mydns.conf
+	fowners root:root /etc/mydns.conf
+	fperms 0600 /etc/mydns.conf
+}
+
+pkg_postinst() {
+	if use postgres; then
+		elog "# createdb mydns"
+		elog "# /usr/sbin/mydns --create-tables | psql mydns"
+		elog
+		elog "to create the tables in the PostgreSQL-Database."
+		elog "For more info see QUICKSTART.postgres."
+	fi
+	if use mysql; then
+		elog "# mysqladmin -u <useruname> -p create mydns"
+		elog "# /usr/sbin/mydns --create-tables | mysql -u <username> -p mydns"
+		elog
+		elog "to create the tables in the MySQL-Database."
+		elog "For more info see QUICKSTART.mysql."
+	fi
+	elog
+}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-dns/mydns/
@ 2020-04-17 16:24 Sergei Trofimovich
  0 siblings, 0 replies; 6+ messages in thread
From: Sergei Trofimovich @ 2020-04-17 16:24 UTC (permalink / raw
  To: gentoo-commits

commit:     4963d303cf543a515e8c647d716fa144907d184f
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Fri Apr 17 15:09:30 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Apr 17 16:24:34 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4963d303

net-dns/mydns: drop to ~sparc

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 net-dns/mydns/mydns-1.2.8.31-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/mydns/mydns-1.2.8.31-r1.ebuild b/net-dns/mydns/mydns-1.2.8.31-r1.ebuild
index ba669a18523..8875da2f5e2 100644
--- a/net-dns/mydns/mydns-1.2.8.31-r1.ebuild
+++ b/net-dns/mydns/mydns-1.2.8.31-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/mydns-ng/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~sparc x86"
 IUSE="alias debug nls mysql postgres ssl static status"
 
 RDEPEND="mysql? ( virtual/mysql )


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-dns/mydns/
@ 2021-01-30 14:30 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2021-01-30 14:30 UTC (permalink / raw
  To: gentoo-commits

commit:     276af6c14c361a4405a964db42e78f568756945d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 30 14:30:28 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 30 14:30:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=276af6c1

net-dns/mydns: Stabilize 1.2.8.31-r2 x86, #763438

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-dns/mydns/mydns-1.2.8.31-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-dns/mydns/mydns-1.2.8.31-r2.ebuild b/net-dns/mydns/mydns-1.2.8.31-r2.ebuild
index 5f6aeb01f0c..febcd54ce5d 100644
--- a/net-dns/mydns/mydns-1.2.8.31-r2.ebuild
+++ b/net-dns/mydns/mydns-1.2.8.31-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/mydns-ng/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc x86"
 IUSE="alias debug nls mysql postgres ssl static status"
 
 RDEPEND="mysql? ( dev-db/mysql-connector-c:= )


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-dns/mydns/
@ 2021-03-11  8:37 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2021-03-11  8:37 UTC (permalink / raw
  To: gentoo-commits

commit:     3e14cd8f9d3511f0bad52aaf5e7310222072d75f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 11 08:31:58 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 11 08:31:58 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e14cd8f

net-dns/mydns: workaround GCC 10 failure

Closes: https://bugs.gentoo.org/775134
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-dns/mydns/mydns-1.2.8.31-r2.ebuild | 21 ++++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)

diff --git a/net-dns/mydns/mydns-1.2.8.31-r2.ebuild b/net-dns/mydns/mydns-1.2.8.31-r2.ebuild
index 6c69c1c647b..e81a5dfecaf 100644
--- a/net-dns/mydns/mydns-1.2.8.31-r2.ebuild
+++ b/net-dns/mydns/mydns-1.2.8.31-r2.ebuild
@@ -1,11 +1,11 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit autotools
+inherit autotools flag-o-matic
 
-DESCRIPTION="A DNS-Server which gets its data from a MySQL-/PostgreSQL-database"
+DESCRIPTION="A DNS-Server which gets its data from a MySQL/PostgreSQL-database"
 HOMEPAGE="http://www.mydns.pl/"
 SRC_URI="mirror://sourceforge/mydns-ng/${P}.tar.gz"
 
@@ -14,14 +14,18 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc x86"
 IUSE="alias debug nls mysql postgres ssl static status"
 
-RDEPEND="mysql? ( dev-db/mysql-connector-c:= )
+BDEPEND="sys-devel/bison"
+RDEPEND="
+	virtual/libiconv
+	mysql? ( dev-db/mysql-connector-c:= )
 	nls? ( virtual/libintl )
 	postgres? ( dev-db/postgresql )
 	ssl? ( dev-libs/openssl:0= )
-	virtual/libiconv"
-DEPEND="${RDEPEND}
+"
+DEPEND="
+	${RDEPEND}
 	nls? ( >=sys-devel/gettext-0.12 )
-	sys-devel/bison"
+"
 
 REQUIRED_USE="^^ ( mysql postgres )"
 
@@ -38,6 +42,9 @@ src_prepare() {
 }
 
 src_configure() {
+	# bug #775134
+	append-flags -fcommon
+
 	econf \
 		$(use_enable alias) \
 		$(use_enable nls) \


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-dns/mydns/
@ 2021-05-16 14:44 Andreas Sturmlechner
  0 siblings, 0 replies; 6+ messages in thread
From: Andreas Sturmlechner @ 2021-05-16 14:44 UTC (permalink / raw
  To: gentoo-commits

commit:     74baeb4ef367a670c15110734edab47b061cef7d
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun May 16 14:04:22 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun May 16 14:44:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74baeb4e

net-dns/mydns: Drop 1.2.8.31-r1, EAPI5--

Closes: https://bugs.gentoo.org/763438
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-dns/mydns/mydns-1.2.8.31-r1.ebuild | 84 ----------------------------------
 1 file changed, 84 deletions(-)

diff --git a/net-dns/mydns/mydns-1.2.8.31-r1.ebuild b/net-dns/mydns/mydns-1.2.8.31-r1.ebuild
deleted file mode 100644
index ae192fac4fe..00000000000
--- a/net-dns/mydns/mydns-1.2.8.31-r1.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools epatch
-
-DESCRIPTION="A DNS-Server which gets its data from a MySQL-/PostgreSQL-database"
-HOMEPAGE="http://www.mydns.pl/"
-SRC_URI="mirror://sourceforge/mydns-ng/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~sparc x86"
-IUSE="alias debug nls mysql postgres ssl static status"
-
-RDEPEND="mysql? ( virtual/mysql )
-	nls? ( virtual/libintl )
-	postgres? ( dev-db/postgresql )
-	ssl? ( dev-libs/openssl )
-	virtual/libiconv"
-DEPEND="${RDEPEND}
-	nls? ( >=sys-devel/gettext-0.12 )
-	sys-devel/bison"
-
-REQUIRED_USE="^^ ( mysql postgres )"
-
-src_prepare() {
-	epatch "${FILESDIR}/${PN}-1.2.8.27-m4.patch"
-	eautoreconf
-	epatch "${FILESDIR}/${P}-texinfo.patch"
-}
-
-src_configure() {
-	econf \
-		$(use_enable alias) \
-		$(use_enable nls) \
-		$(use_enable debug) \
-		$(use_with mysql) \
-		$(use_with postgres pgsql) \
-		$(use_enable static) \
-		$(use_enable static static-build) \
-		$(use_enable status) \
-		$(use_with ssl openssl) \
-		--without-included-gettext
-}
-
-src_install() {
-	default
-
-	dodoc AUTHORS BUGS ChangeLog QUICKSTART* NEWS README* TODO
-	docinto contrib
-	dodoc contrib/*.php contrib/*.pl contrib/*.pm contrib/README*
-
-	newinitd "${FILESDIR}/mydns.initd" mydns
-	newconfd "${FILESDIR}/mydns.confd" mydns
-
-	## Avoid file collision
-	rm -f "${ED}/usr/share/locale/locale.alias"
-
-	# Install config file
-	insinto /etc
-	newins mydns.conf mydns.conf
-	fowners root:root /etc/mydns.conf
-	fperms 0600 /etc/mydns.conf
-}
-
-pkg_postinst() {
-	if use postgres; then
-		elog "# createdb mydns"
-		elog "# /usr/sbin/mydns --create-tables | psql mydns"
-		elog
-		elog "to create the tables in the PostgreSQL-Database."
-		elog "For more info see QUICKSTART.postgres."
-	fi
-	if use mysql; then
-		elog "# mysqladmin -u <useruname> -p create mydns"
-		elog "# /usr/sbin/mydns --create-tables | mysql -u <username> -p mydns"
-		elog
-		elog "to create the tables in the MySQL-Database."
-		elog "For more info see QUICKSTART.mysql."
-	fi
-	elog
-}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-05-16 14:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-05 20:33 [gentoo-commits] repo/gentoo:master commit in: net-dns/mydns/ Brian Evans
  -- strict thread matches above, loose matches on Subject: below --
2021-05-16 14:44 Andreas Sturmlechner
2021-03-11  8:37 Sam James
2021-01-30 14:30 Sam James
2020-04-17 16:24 Sergei Trofimovich
2016-04-28 23:44 Austin English

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox