* [gentoo-commits] repo/gentoo:master commit in: app-misc/cdcat/
@ 2016-02-10 19:41 Mike Frysinger
0 siblings, 0 replies; 7+ messages in thread
From: Mike Frysinger @ 2016-02-10 19:41 UTC (permalink / raw
To: gentoo-commits
commit: a30b3b66ed7b2a6f2f86b68953cf691b7bd3b445
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 19:36:14 2016 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 19:40:27 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a30b3b66
dev-misc/cdcat: drop redundant @system deps
app-misc/cdcat/cdcat-0.3.ebuild | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/app-misc/cdcat/cdcat-0.3.ebuild b/app-misc/cdcat/cdcat-0.3.ebuild
index c9358cf..8eb6365 100644
--- a/app-misc/cdcat/cdcat-0.3.ebuild
+++ b/app-misc/cdcat/cdcat-0.3.ebuild
@@ -12,10 +12,7 @@ SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
-DEPEND=">=sys-apps/sed-4.0.5
- >=sys-apps/grep-2.4.2
- >=sys-apps/findutils-4.1
- virtual/cdrtools
+DEPEND="virtual/cdrtools
!app-backup/cdbkup"
src_unpack() {
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/cdcat/
@ 2018-08-15 19:53 Andreas Sturmlechner
0 siblings, 0 replies; 7+ messages in thread
From: Andreas Sturmlechner @ 2018-08-15 19:53 UTC (permalink / raw
To: gentoo-commits
commit: 170beb81c5a63ac774a4b6838b66df9276c49a08
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Mon Aug 13 17:53:25 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Aug 15 19:53:28 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=170beb81
app-misc/cdcat: fix SRC_URI, HOMEPAGE
Closes: https://github.com/gentoo/gentoo/pull/9566
app-misc/cdcat/cdcat-0.3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-misc/cdcat/cdcat-0.3.ebuild b/app-misc/cdcat/cdcat-0.3.ebuild
index e97b1241476..6f165bb146e 100644
--- a/app-misc/cdcat/cdcat-0.3.ebuild
+++ b/app-misc/cdcat/cdcat-0.3.ebuild
@@ -5,8 +5,8 @@ EAPI=0
DESCRIPTION="simple yet effective CD indexing program"
# original src went away: SRC_URI="http://littledragon.home.ro/unix/${P}.tar.gz"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-HOMEPAGE="https://dev.gentoo.org/~centic/cdcat/"
+SRC_URI="mirror://sourceforge/cdcatalog/${P}.tar.gz"
+HOMEPAGE="http://cdcatalog.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/cdcat/
@ 2018-08-15 19:53 Andreas Sturmlechner
0 siblings, 0 replies; 7+ messages in thread
From: Andreas Sturmlechner @ 2018-08-15 19:53 UTC (permalink / raw
To: gentoo-commits
commit: e6f3e4af3ddab2a5ea74dc7ea260897e94d7ad5f
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Mon Aug 13 17:59:34 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Aug 15 19:53:29 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6f3e4af
app-misc/cdcat: EAPI7, improve ebuild
Closes: https://bugs.gentoo.org/663530
app-misc/cdcat/cdcat-0.3-r1.ebuild | 47 ++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/app-misc/cdcat/cdcat-0.3-r1.ebuild b/app-misc/cdcat/cdcat-0.3-r1.ebuild
new file mode 100644
index 00000000000..3649b8e2eac
--- /dev/null
+++ b/app-misc/cdcat/cdcat-0.3-r1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Simple yet effective CD indexing program"
+# original src went away: SRC_URI="http://littledragon.home.ro/unix/${P}.tar.gz"
+SRC_URI="mirror://sourceforge/cdcatalog/${P}.tar.gz"
+HOMEPAGE="http://cdcatalog.sourceforge.net/"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+RDEPEND="virtual/cdrtools
+ !app-backup/cdbkup"
+
+src_prepare() {
+ default
+ # workaround install.sh ignoring --man_prefix
+ sed -i 's:^MAN_PREFIX:#:' install.sh || die
+
+ # fix path to cd index files to be FHS-compliant
+ sed -i 's:/mnt/ext/cd:/var/lib/cdcat:' src/cdcat.pl || die
+
+ # work around problem with isoinfo -di
+ sed -i 's:isoinfo -di:isoinfo -d -i:' src/cdcat.pl || die
+}
+
+src_install() {
+ # workaround install.sh ignoring --man_prefix
+ export MAN_PREFIX="${D}/usr/share/man"
+ dodir /usr/share/man/man1
+
+ # create index files path
+ dodir /var/lib/cdcat
+ keepdir /var/lib/cdcat
+ chgrp cdrom "${D}"/var/lib/cdcat
+ chmod g+ws,o+w "${D}"/var/lib/cdcat || die
+
+ # now use the included install.sh
+ ./install.sh --prefix="${D}/usr" \
+ --man_prefix="${D}/usr/share/man" || die "Install script failed."
+
+ insinto /etc
+ doins doc/cdcat.conf
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/cdcat/
@ 2018-10-04 8:29 Mikle Kolyada
0 siblings, 0 replies; 7+ messages in thread
From: Mikle Kolyada @ 2018-10-04 8:29 UTC (permalink / raw
To: gentoo-commits
commit: 7b0273ff47ebafe1949bb572942a72b8ca9ee129
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 4 08:28:42 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Oct 4 08:28:42 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b0273ff
app-misc/cdcat: amd64/ppc stable wrt bug #667364
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11
app-misc/cdcat/cdcat-0.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-misc/cdcat/cdcat-0.3-r1.ebuild b/app-misc/cdcat/cdcat-0.3-r1.ebuild
index 0cbb91c6dbe..8ad49a3e87e 100644
--- a/app-misc/cdcat/cdcat-0.3-r1.ebuild
+++ b/app-misc/cdcat/cdcat-0.3-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://cdcatalog.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
RDEPEND="virtual/cdrtools
!app-backup/cdbkup"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/cdcat/
@ 2018-10-04 8:29 Mikle Kolyada
0 siblings, 0 replies; 7+ messages in thread
From: Mikle Kolyada @ 2018-10-04 8:29 UTC (permalink / raw
To: gentoo-commits
commit: 8e74910a7e6e40a7418f7def98f94403f11714cc
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 4 08:29:10 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Oct 4 08:29:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e74910a
app-misc/cdcat: Drop old
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11
app-misc/cdcat/cdcat-0.3.ebuild | 49 -----------------------------------------
1 file changed, 49 deletions(-)
diff --git a/app-misc/cdcat/cdcat-0.3.ebuild b/app-misc/cdcat/cdcat-0.3.ebuild
deleted file mode 100644
index 6f165bb146e..00000000000
--- a/app-misc/cdcat/cdcat-0.3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-DESCRIPTION="simple yet effective CD indexing program"
-# original src went away: SRC_URI="http://littledragon.home.ro/unix/${P}.tar.gz"
-SRC_URI="mirror://sourceforge/cdcatalog/${P}.tar.gz"
-HOMEPAGE="http://cdcatalog.sourceforge.net/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-DEPEND="virtual/cdrtools
- !app-backup/cdbkup"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # workaround install.sh ignoring --man_prefix
- sed -i 's:^MAN_PREFIX:#:' install.sh
-
- # fix path to cd index files to be FHS-compliant
- sed -i 's:/mnt/ext/cd:/var/lib/cdcat:' src/cdcat.pl
-
- # work around problem with isoinfo -di
- sed -i 's:isoinfo -di:isoinfo -d -i:' src/cdcat.pl
-}
-
-src_install() {
- # workaround install.sh ignoring --man_prefix
- export MAN_PREFIX="${D}/usr/share/man"
- dodir /usr/share/man/man1
-
- # create index files path
- dodir /var/lib/cdcat
- chgrp cdrom "${D}"/var/lib/cdcat
- chmod g+ws,o+w "${D}"/var/lib/cdcat
-
- # now use the included install.sh
- ./install.sh --prefix="${D}/usr" \
- --man_prefix="${D}/usr/share/man" || die "Install script failed."
-
- insinto /etc
- doins doc/cdcat.conf || die
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/cdcat/
@ 2020-12-18 9:00 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2020-12-18 9:00 UTC (permalink / raw
To: gentoo-commits
commit: 65c2b0bbe649ffc6d1a8989c5103c39b743306f4
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 18 08:57:23 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Dec 18 09:00:19 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65c2b0bb
app-misc/cdcat: Inline virtual/cdrtools
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-misc/cdcat/cdcat-0.3-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-misc/cdcat/cdcat-0.3-r1.ebuild b/app-misc/cdcat/cdcat-0.3-r1.ebuild
index 8ad49a3e87e..ae81f769f03 100644
--- a/app-misc/cdcat/cdcat-0.3-r1.ebuild
+++ b/app-misc/cdcat/cdcat-0.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -12,7 +12,7 @@ LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
-RDEPEND="virtual/cdrtools
+RDEPEND="app-cdr/cdrtools
!app-backup/cdbkup"
src_prepare() {
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/cdcat/
@ 2023-04-01 19:39 Conrad Kostecki
0 siblings, 0 replies; 7+ messages in thread
From: Conrad Kostecki @ 2023-04-01 19:39 UTC (permalink / raw
To: gentoo-commits
commit: 658609b47c1fdcdf09d6a1e0e0f691f9c27f9444
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Mon Mar 20 21:52:31 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Apr 1 19:16:13 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=658609b4
app-misc/cdcat: use HTTPS, fix LICENSE
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-misc/cdcat/cdcat-0.3-r1.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/app-misc/cdcat/cdcat-0.3-r1.ebuild b/app-misc/cdcat/cdcat-0.3-r1.ebuild
index ae81f769f031..19db53beaa05 100644
--- a/app-misc/cdcat/cdcat-0.3-r1.ebuild
+++ b/app-misc/cdcat/cdcat-0.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -6,9 +6,9 @@ EAPI=7
DESCRIPTION="Simple yet effective CD indexing program"
# original src went away: SRC_URI="http://littledragon.home.ro/unix/${P}.tar.gz"
SRC_URI="mirror://sourceforge/cdcatalog/${P}.tar.gz"
-HOMEPAGE="http://cdcatalog.sourceforge.net/"
+HOMEPAGE="https://cdcatalog.sourceforge.net/"
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 ppc x86"
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-04-01 19:39 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-04 8:29 [gentoo-commits] repo/gentoo:master commit in: app-misc/cdcat/ Mikle Kolyada
-- strict thread matches above, loose matches on Subject: below --
2023-04-01 19:39 Conrad Kostecki
2020-12-18 9:00 Michał Górny
2018-10-04 8:29 Mikle Kolyada
2018-08-15 19:53 Andreas Sturmlechner
2018-08-15 19:53 Andreas Sturmlechner
2016-02-10 19:41 Mike Frysinger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox