* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2017-02-25 8:55 Patrice Clement
0 siblings, 0 replies; 17+ messages in thread
From: Patrice Clement @ 2017-02-25 8:55 UTC (permalink / raw
To: gentoo-commits
commit: a0f88dd74184bf5405b782c1715586c12344d089
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 25 08:54:50 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 08:54:50 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0f88dd7
app-admin/cronolog: don't use globbing in PATCHES but in a separate array instead.
Globbing in PATCHES causes Portage pain, see:
https://qa-reports.gentoo.org/output/gentoo-ci/b80fba8b4/output.html#app-admin/cronolog
Package-Manager: portage-2.3.3
app-admin/cronolog/cronolog-1.6.2-r5.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
index 121f6cf721..387ea3582a 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
-PATCHES=(
+MY_PATCHES=(
"${FILESDIR}/${PV}-patches"/*.txt
"${FILESDIR}/${P}-umask.patch"
)
@@ -23,6 +23,7 @@ DOCS=( AUTHORS ChangeLog INSTALL NEWS README TODO )
src_prepare() {
default
+ epatch "${MY_PATCHES[@]}"
eautoreconf
}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2017-02-25 9:21 Patrice Clement
0 siblings, 0 replies; 17+ messages in thread
From: Patrice Clement @ 2017-02-25 9:21 UTC (permalink / raw
To: gentoo-commits
commit: 9b69e6921f595e6d06d2eebbac8100cc9590ec20
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 25 09:20:37 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 09:20:37 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b69e692
app-admin/cronolog: don't use an array to stuff patches in but call epatch directly.
Package-Manager: portage-2.3.3
app-admin/cronolog/cronolog-1.6.2-r5.ebuild | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
index 387ea3582a..3a00382de2 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
@@ -14,16 +14,11 @@ LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
-MY_PATCHES=(
- "${FILESDIR}/${PV}-patches"/*.txt
- "${FILESDIR}/${P}-umask.patch"
-)
-
DOCS=( AUTHORS ChangeLog INSTALL NEWS README TODO )
src_prepare() {
default
- epatch "${MY_PATCHES[@]}"
+ epatch "${FILESDIR}/${PV}-patches"/*.txt "${FILESDIR}/${P}-umask.patch"
eautoreconf
}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2017-02-25 9:33 Sergei Trofimovich
0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2017-02-25 9:33 UTC (permalink / raw
To: gentoo-commits
commit: c51d3151dcfef28e7aef55e1093c60e652edfb2d
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 25 09:18:56 2017 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 09:31:09 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c51d3151
app-admin/cronolog: expand patches glob
Inline all available patches explicitly
to make ebuild stable against addition/removal
of patches into a directory.
While at it drop src_install() as it's the same
as EAPI=6 src_install().
app-admin/cronolog/cronolog-1.6.2-r5.ebuild | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
index 3a00382de2..690148fc1a 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
@@ -14,15 +14,21 @@ LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
+PATCHES=(
+ "${FILESDIR}"/${PV}-patches/${PN}-define-strptime.patch.txt
+ "${FILESDIR}"/${PV}-patches/${PN}-doc.patch.txt
+ "${FILESDIR}"/${PV}-patches/${PN}-getopt-long.patch.txt
+ "${FILESDIR}"/${PV}-patches/${PN}-large-file-patch.txt
+ "${FILESDIR}"/${PV}-patches/${PN}-missing-symlink-patch.txt
+ "${FILESDIR}"/${PV}-patches/${PN}-setugid-patch.txt
+ "${FILESDIR}"/${PV}-patches/${PN}-sigusr1-patch.txt
+ "${FILESDIR}"/${PV}-patches/${PN}-strftime-patch.txt
+ "${FILESDIR}"/${P}-umask.patch
+)
+
DOCS=( AUTHORS ChangeLog INSTALL NEWS README TODO )
src_prepare() {
default
- epatch "${FILESDIR}/${PV}-patches"/*.txt "${FILESDIR}/${P}-umask.patch"
eautoreconf
}
-
-src_install() {
- emake DESTDIR="${D}" install
- einstalldocs
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2017-02-25 10:09 Ulrich Müller
0 siblings, 0 replies; 17+ messages in thread
From: Ulrich Müller @ 2017-02-25 10:09 UTC (permalink / raw
To: gentoo-commits
commit: 28444f9fdb0339d66087e95262b042e54222375c
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 25 10:09:21 2017 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 10:09:41 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28444f9f
app-admin/cronolog: Fix LICENSE.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
app-admin/cronolog/cronolog-1.6.2-r3.ebuild | 2 +-
app-admin/cronolog/cronolog-1.6.2-r4.ebuild | 2 +-
app-admin/cronolog/cronolog-1.6.2-r5.ebuild | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r3.ebuild b/app-admin/cronolog/cronolog-1.6.2-r3.ebuild
index c62702b0e3..595d8b9259 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r3.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r3.ebuild
@@ -8,7 +8,7 @@ DESCRIPTION="Cronolog apache logfile rotator"
HOMEPAGE="http://cronolog.org/"
SRC_URI="http://cronolog.org/download/${P}.tar.gz"
-LICENSE="GPL-2"
+LICENSE="GPL-2+ Apache-1.0"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
diff --git a/app-admin/cronolog/cronolog-1.6.2-r4.ebuild b/app-admin/cronolog/cronolog-1.6.2-r4.ebuild
index be5ecb3fa8..4452097051 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r4.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r4.ebuild
@@ -8,7 +8,7 @@ DESCRIPTION="Cronolog apache logfile rotator"
HOMEPAGE="http://cronolog.org/"
SRC_URI="http://cronolog.org/download/${P}.tar.gz"
-LICENSE="GPL-2"
+LICENSE="GPL-2+ Apache-1.0"
SLOT="0"
KEYWORDS="amd64 ~arm ~ppc x86"
IUSE=""
diff --git a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
index fb89cc95fc..9e103ea121 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Log rotation software"
HOMEPAGE="https://github.com/fordmason/cronolog"
SRC_URI="http://cronolog.org/download/${P}.tar.gz"
-LICENSE="GPL-2"
+LICENSE="GPL-2+ Apache-1.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2017-12-29 22:33 David Seifert
0 siblings, 0 replies; 17+ messages in thread
From: David Seifert @ 2017-12-29 22:33 UTC (permalink / raw
To: gentoo-commits
commit: 24254e469adf129b54e76cea88deeb48dca857e7
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 18:06:50 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 22:31:25 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24254e46
app-admin/cronolog: Remove old
Package-Manager: Portage-2.3.19, Repoman-2.3.6
app-admin/cronolog/cronolog-1.6.2-r3.ebuild | 28 ---------------------------
app-admin/cronolog/cronolog-1.6.2-r4.ebuild | 30 -----------------------------
2 files changed, 58 deletions(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r3.ebuild b/app-admin/cronolog/cronolog-1.6.2-r3.ebuild
deleted file mode 100644
index d3dd6636923..00000000000
--- a/app-admin/cronolog/cronolog-1.6.2-r3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils autotools
-
-DESCRIPTION="Cronolog apache logfile rotator"
-HOMEPAGE="http://cronolog.org/"
-SRC_URI="http://cronolog.org/download/${P}.tar.gz"
-
-LICENSE="GPL-2+ Apache-1.0"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${PV}-patches/*.patch
-
- eautoreconf
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
-}
diff --git a/app-admin/cronolog/cronolog-1.6.2-r4.ebuild b/app-admin/cronolog/cronolog-1.6.2-r4.ebuild
deleted file mode 100644
index 3c603c95959..00000000000
--- a/app-admin/cronolog/cronolog-1.6.2-r4.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils autotools
-
-DESCRIPTION="Cronolog apache logfile rotator"
-HOMEPAGE="http://cronolog.org/"
-SRC_URI="http://cronolog.org/download/${P}.tar.gz"
-
-LICENSE="GPL-2+ Apache-1.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc x86"
-IUSE=""
-
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${PV}-patches/*.patch
- # patch written for infra usage
- epatch "${FILESDIR}"/${PN}-1.6.2-umask.patch
-
- eautoreconf
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2017-12-29 22:33 David Seifert
0 siblings, 0 replies; 17+ messages in thread
From: David Seifert @ 2017-12-29 22:33 UTC (permalink / raw
To: gentoo-commits
commit: 0a2d5d5b1a17ed988d7372f1eb97cee4f5f20aaa
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 18:05:51 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 22:31:19 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a2d5d5b
app-admin/cronolog: Mark stable
Package-Manager: Portage-2.3.19, Repoman-2.3.6
app-admin/cronolog/cronolog-1.6.2-r5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
index a362f4f52c7..f8b32bd5968 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://cronolog.org/download/${P}.tar.gz"
LICENSE="GPL-2+ Apache-1.0"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
+KEYWORDS="amd64 ~arm ppc x86"
PATCHES=(
"${FILESDIR}"/${PV}-patches
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2017-12-29 22:33 David Seifert
0 siblings, 0 replies; 17+ messages in thread
From: David Seifert @ 2017-12-29 22:33 UTC (permalink / raw
To: gentoo-commits
commit: e55f3120e1fa231481a986238997c69fdf0217d1
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 18:03:44 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 22:31:13 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e55f3120
app-admin/cronolog: [QA] Minor touchups
Package-Manager: Portage-2.3.19, Repoman-2.3.6
app-admin/cronolog/cronolog-1.6.2-r5.ebuild | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
index ca4ce0c7003..a362f4f52c7 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-inherit eutils autotools
+inherit autotools
DESCRIPTION="Log rotation software"
HOMEPAGE="https://github.com/fordmason/cronolog"
@@ -19,10 +19,8 @@ PATCHES=(
"${FILESDIR}"/${P}-umask.patch
)
-DOCS=( AUTHORS ChangeLog INSTALL NEWS README TODO )
-
src_prepare() {
default
- mv configure.in configure.ac || die
+ mv configure.{in,ac} || die
eautoreconf
}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2023-09-13 3:49 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-09-13 3:49 UTC (permalink / raw
To: gentoo-commits
commit: b5a79d22b1f12db72db0be77dbeed56180a415b1
Author: Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Sun Sep 10 23:25:49 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 03:48:02 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5a79d22
app-admin/cronolog: update EAPI 6 -> 8
Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/cronolog/cronolog-1.6.2-r6.ebuild | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r6.ebuild b/app-admin/cronolog/cronolog-1.6.2-r6.ebuild
new file mode 100644
index 000000000000..56e9b547b8f6
--- /dev/null
+++ b/app-admin/cronolog/cronolog-1.6.2-r6.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Log rotation software"
+HOMEPAGE="https://github.com/fordmason/cronolog"
+SRC_URI="http://cronolog.org/download/${P}.tar.gz"
+
+LICENSE="GPL-2+ Apache-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
+
+PATCHES=(
+ "${FILESDIR}"/${PV}-patches
+ # rename and move into ${PV}-patches after -r3 removal
+ "${FILESDIR}"/${P}-umask.patch
+)
+
+src_prepare() {
+ default
+ mv configure.{in,ac} || die
+ eautoreconf
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2023-09-28 5:16 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2023-09-28 5:16 UTC (permalink / raw
To: gentoo-commits
commit: 86bc1ac780dfdae457156e1cc571079b13f9fbba
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 28 05:16:04 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Sep 28 05:16:28 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86bc1ac7
app-admin/cronolog: Stabilize 1.6.2-r6 amd64, #914845
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-admin/cronolog/cronolog-1.6.2-r6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r6.ebuild b/app-admin/cronolog/cronolog-1.6.2-r6.ebuild
index 56e9b547b8f6..481b7eeb5fb9 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r6.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://cronolog.org/download/${P}.tar.gz"
LICENSE="GPL-2+ Apache-1.0"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~x86"
PATCHES=(
"${FILESDIR}"/${PV}-patches
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2023-09-28 5:22 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2023-09-28 5:22 UTC (permalink / raw
To: gentoo-commits
commit: 9a0da4a06e36e5a8c129f457d32889be8a41537d
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 28 05:21:20 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Sep 28 05:21:20 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a0da4a0
app-admin/cronolog: Stabilize 1.6.2-r6 x86, #914845
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-admin/cronolog/cronolog-1.6.2-r6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r6.ebuild b/app-admin/cronolog/cronolog-1.6.2-r6.ebuild
index 481b7eeb5fb9..b671c75b43d7 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r6.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://cronolog.org/download/${P}.tar.gz"
LICENSE="GPL-2+ Apache-1.0"
SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~ppc x86"
PATCHES=(
"${FILESDIR}"/${PV}-patches
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2023-10-01 18:10 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2023-10-01 18:10 UTC (permalink / raw
To: gentoo-commits
commit: 2c5dea099a9f5f56bd83281e42cd38bdeae0eeaa
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 1 18:10:27 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 1 18:10:33 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c5dea09
app-admin/cronolog: Stabilize 1.6.2-r6 ppc, #914845
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-admin/cronolog/cronolog-1.6.2-r6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r6.ebuild b/app-admin/cronolog/cronolog-1.6.2-r6.ebuild
index b671c75b43d7..913f65fbd788 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r6.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://cronolog.org/download/${P}.tar.gz"
LICENSE="GPL-2+ Apache-1.0"
SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc x86"
+KEYWORDS="amd64 ~arm ppc x86"
PATCHES=(
"${FILESDIR}"/${PV}-patches
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2023-10-01 18:15 Andreas Sturmlechner
0 siblings, 0 replies; 17+ messages in thread
From: Andreas Sturmlechner @ 2023-10-01 18:15 UTC (permalink / raw
To: gentoo-commits
commit: 2e9b5cc00360695385d2cf241d8373a8cdcc637e
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 1 18:13:02 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Oct 1 18:14:41 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e9b5cc0
app-admin/cronolog: drop 1.6.2-r5
Bug: https://bugs.gentoo.org/914845
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
app-admin/cronolog/cronolog-1.6.2-r5.ebuild | 26 --------------------------
1 file changed, 26 deletions(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
deleted file mode 100644
index f8b32bd5968e..000000000000
--- a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Log rotation software"
-HOMEPAGE="https://github.com/fordmason/cronolog"
-SRC_URI="http://cronolog.org/download/${P}.tar.gz"
-
-LICENSE="GPL-2+ Apache-1.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc x86"
-
-PATCHES=(
- "${FILESDIR}"/${PV}-patches
- # rename and move into ${PV}-patches after -r3 removal
- "${FILESDIR}"/${P}-umask.patch
-)
-
-src_prepare() {
- default
- mv configure.{in,ac} || die
- eautoreconf
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2024-01-07 0:20 Conrad Kostecki
0 siblings, 0 replies; 17+ messages in thread
From: Conrad Kostecki @ 2024-01-07 0:20 UTC (permalink / raw
To: gentoo-commits
commit: fa2962c4a96704f4ce86998995c53c2a0f86c260
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sun Dec 31 10:54:39 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jan 7 00:19:32 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa2962c4
app-admin/cronolog: fix calling ar directly, bug #721908
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://bugs.gentoo.org/721908
Closes: https://github.com/gentoo/gentoo/pull/34575
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-admin/cronolog/cronolog-1.6.2-r7.ebuild | 30 +++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r7.ebuild b/app-admin/cronolog/cronolog-1.6.2-r7.ebuild
new file mode 100644
index 000000000000..32788154300e
--- /dev/null
+++ b/app-admin/cronolog/cronolog-1.6.2-r7.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools toolchain-funcs
+
+DESCRIPTION="Log rotation software"
+HOMEPAGE="https://github.com/fordmason/cronolog"
+SRC_URI="http://cronolog.org/download/${P}.tar.gz"
+
+LICENSE="GPL-2+ Apache-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
+
+PATCHES=(
+ "${FILESDIR}"/${PV}-patches
+ # rename and move into ${PV}-patches after -r3 removal
+ "${FILESDIR}"/${P}-umask.patch
+)
+
+src_prepare() {
+ default
+ mv configure.{in,ac} || die
+ eautoreconf
+}
+
+src_compile() {
+ emake AR="$(tc-getAR)"
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2024-05-19 17:03 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2024-05-19 17:03 UTC (permalink / raw
To: gentoo-commits
commit: 8e8e3f9f52fa65ab79aef62079066eb1086a26eb
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 17:03:45 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun May 19 17:03:45 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e8e3f9f
app-admin/cronolog: Stabilize 1.6.2-r7 ppc, #932205
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-admin/cronolog/cronolog-1.6.2-r7.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r7.ebuild b/app-admin/cronolog/cronolog-1.6.2-r7.ebuild
index 32788154300e..2634b748ab5c 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r7.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="http://cronolog.org/download/${P}.tar.gz"
LICENSE="GPL-2+ Apache-1.0"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ppc ~x86"
PATCHES=(
"${FILESDIR}"/${PV}-patches
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2024-05-19 17:09 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2024-05-19 17:09 UTC (permalink / raw
To: gentoo-commits
commit: 211561031e5730592ef20a1663aca2c89d4e7af0
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 17:07:18 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 19 17:08:28 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21156103
app-admin/cronolog: Stabilize 1.6.2-r7 amd64, #932205
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/cronolog/cronolog-1.6.2-r7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r7.ebuild b/app-admin/cronolog/cronolog-1.6.2-r7.ebuild
index 2d8094d25816..a2bcdadc827c 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r7.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://cronolog.org/download/${P}.tar.gz"
LICENSE="GPL-2+ Apache-1.0"
SLOT="0"
-KEYWORDS="~amd64 ~arm ppc x86"
+KEYWORDS="amd64 ~arm ppc x86"
PATCHES=(
"${FILESDIR}"/${PV}-patches
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2024-05-19 17:09 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2024-05-19 17:09 UTC (permalink / raw
To: gentoo-commits
commit: 5f9f48a268b003e15b056ee1d90cc579528269b8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 17:07:17 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 19 17:08:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f9f48a2
app-admin/cronolog: Stabilize 1.6.2-r7 x86, #932205
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/cronolog/cronolog-1.6.2-r7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r7.ebuild b/app-admin/cronolog/cronolog-1.6.2-r7.ebuild
index 2634b748ab5c..2d8094d25816 100644
--- a/app-admin/cronolog/cronolog-1.6.2-r7.ebuild
+++ b/app-admin/cronolog/cronolog-1.6.2-r7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://cronolog.org/download/${P}.tar.gz"
LICENSE="GPL-2+ Apache-1.0"
SLOT="0"
-KEYWORDS="~amd64 ~arm ppc ~x86"
+KEYWORDS="~amd64 ~arm ppc x86"
PATCHES=(
"${FILESDIR}"/${PV}-patches
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/
@ 2024-08-30 11:21 Petr Vaněk
0 siblings, 0 replies; 17+ messages in thread
From: Petr Vaněk @ 2024-08-30 11:21 UTC (permalink / raw
To: gentoo-commits
commit: 657c9586622e5185ad6812a4bf51cc4443a20e41
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 30 11:19:26 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Fri Aug 30 11:20:35 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=657c9586
app-admin/cronolog: drop 1.6.2-r6
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
app-admin/cronolog/cronolog-1.6.2-r6.ebuild | 26 --------------------------
1 file changed, 26 deletions(-)
diff --git a/app-admin/cronolog/cronolog-1.6.2-r6.ebuild b/app-admin/cronolog/cronolog-1.6.2-r6.ebuild
deleted file mode 100644
index 913f65fbd788..000000000000
--- a/app-admin/cronolog/cronolog-1.6.2-r6.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Log rotation software"
-HOMEPAGE="https://github.com/fordmason/cronolog"
-SRC_URI="http://cronolog.org/download/${P}.tar.gz"
-
-LICENSE="GPL-2+ Apache-1.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc x86"
-
-PATCHES=(
- "${FILESDIR}"/${PV}-patches
- # rename and move into ${PV}-patches after -r3 removal
- "${FILESDIR}"/${P}-umask.patch
-)
-
-src_prepare() {
- default
- mv configure.{in,ac} || die
- eautoreconf
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2024-08-30 11:21 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-29 22:33 [gentoo-commits] repo/gentoo:master commit in: app-admin/cronolog/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2024-08-30 11:21 Petr Vaněk
2024-05-19 17:09 Sam James
2024-05-19 17:09 Sam James
2024-05-19 17:03 Arthur Zamarin
2024-01-07 0:20 Conrad Kostecki
2023-10-01 18:15 Andreas Sturmlechner
2023-10-01 18:10 Arthur Zamarin
2023-09-28 5:22 Joonas Niilola
2023-09-28 5:16 Joonas Niilola
2023-09-13 3:49 Sam James
2017-12-29 22:33 David Seifert
2017-12-29 22:33 David Seifert
2017-02-25 10:09 Ulrich Müller
2017-02-25 9:33 Sergei Trofimovich
2017-02-25 9:21 Patrice Clement
2017-02-25 8:55 Patrice Clement
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox