From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/dos2unix/
Date: Mon, 4 Nov 2019 08:13:39 +0000 (UTC) [thread overview]
Message-ID: <1572855215.56e1b2ae3fa7a84a93143730b85b4d7b2553a872.polynomial-c@gentoo> (raw)
commit: 56e1b2ae3fa7a84a93143730b85b4d7b2553a872
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 4 08:13:07 2019 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Nov 4 08:13:35 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56e1b2ae
app-text/dos2unix: Removed old
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
app-text/dos2unix/Manifest | 1 -
app-text/dos2unix/dos2unix-7.4.0.ebuild | 82 ---------------------------------
2 files changed, 83 deletions(-)
diff --git a/app-text/dos2unix/Manifest b/app-text/dos2unix/Manifest
index dafb60296f1..ad56d4802a2 100644
--- a/app-text/dos2unix/Manifest
+++ b/app-text/dos2unix/Manifest
@@ -1,4 +1,3 @@
DIST dos2unix-7.3.5.tar.gz 662133 BLAKE2B e24f77d92fe0c5931f9ca762b79a1713b14cc39b7566f78d55c4fd58bb7d3c0de1f2a8add8ffd6c3fa26a6bae73c412572fc71701e26b7b52f15b51b0de0d294 SHA512 beafefa715d894ec51bd808b18485bcf413f93b888203486e659f7e30b922b32b2f1da2305ef9ae85e54085ba3819bd512957bb872b529fe4728000cec7d3e58
-DIST dos2unix-7.4.0.tar.gz 710339 BLAKE2B 629c4a410f0cbb0b5b0fdb89c03fbec1965759a747309ad8a4459820bf2151d1861f4040d67ce6934ca27cfc3b6d0495eccd0966045803f065b10520808d9686 SHA512 41be6b0c747f4a8e316eccecd468c8250aa6791962485569eb9496def60818ae434d619b5cfb5f80f15f8d17800314f5aefe229dc5d37faaa34e1270575175e9
DIST dos2unix-7.4.1.tar.gz 711570 BLAKE2B 3dbe33007aa3e2ef47ec3dc0c3165987986955fffd7ae1435725014d52ba716626e7891911afe11674beec11fa62a12983c8dfc28cff682ca0c3e798449a9b0f SHA512 81e7cff82d95b298fb218b073f54d17fa851a7507fbd54b3cd9af7c1efa6a7bd3cf59f7a84ffbaf395403bf458650763e1755944451b24f708878a9c62316dc4
DIST dos2unix-7.4.2-beta1.tar.gz 712261 BLAKE2B 020b51a53b3b8ac601efd0f3fa424fbe5a42ca5b06e1f7282c2aca021e22b38aac21e4aa7b42ed428c95053d57bb5c35483881b06dc580b533eac2fe716142a2 SHA512 323c0dd90616bca1891f8228d43bca1c6415b5765f5fba4ccf5ce692da9b545c8f10f908ba5ebd65c3409fb4d9fdaaa2fb36d589faa8b5940d27ecf8f72bc422
diff --git a/app-text/dos2unix/dos2unix-7.4.0.ebuild b/app-text/dos2unix/dos2unix-7.4.0.ebuild
deleted file mode 100644
index 7e09f7d15be..00000000000
--- a/app-text/dos2unix/dos2unix-7.4.0.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PLOCALES="da de eo es fr hu ja nb nl pl pt_BR ru sr sv uk vi zh_CN zh_TW"
-
-inherit l10n toolchain-funcs
-
-DESCRIPTION="Convert DOS or MAC text files to UNIX format or vice versa"
-HOMEPAGE="http://www.xs4all.nl/~waterlan/dos2unix.html https://sourceforge.net/projects/dos2unix/"
-SRC_URI="
- http://www.xs4all.nl/~waterlan/${PN}/${P}.tar.gz
- mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
-IUSE="debug nls test"
-
-RDEPEND="
- !app-text/hd2u
- virtual/libintl"
-
-DEPEND="
- ${RDEPEND}
- nls? ( sys-devel/gettext )
- test? ( virtual/perl-Test-Simple )
- dev-lang/perl"
-
-handle_locales() {
- # Make sure locale list is kept up-to-date.
- local detected sorted
- detected=$(echo $(printf '%s\n' */*.po | sed -e 's:.*/::' -e 's:.po$::' | sort -u))
- sorted=$(echo $(printf '%s\n' ${PLOCALES} | sort -u))
- if [[ ${sorted} != "${detected}" ]] ; then
- eerror "The ebuild needs to be kept in sync."
- eerror "PLOCALES: ${sorted}"
- eerror "po*/*.po: ${detected}"
- die "sync PLOCALES"
- fi
-
- # Deal with selective install of locales.
- rm_loc() { rm po*/$1.po || die; }
- l10n_for_each_disabled_locale_do rm_loc
-}
-
-src_prepare() {
- default
-
- handle_locales
-
- sed \
- -e '/^LDFLAGS/s|=|+=|' \
- -e '/CFLAGS_OS \+=/d' \
- -e '/LDFLAGS_EXTRA \+=/d' \
- -e "/^CFLAGS/s|-O2|${CFLAGS}|" \
- -i Makefile || die
-
- if use debug ; then
- sed -e "/^DEBUG/s:0:1:" \
- -e "/EXTRA_CFLAGS +=/s:-g::" \
- -i Makefile || die
- fi
-
- tc-export CC
-}
-
-lintl() {
- # same logic as from virtual/libintl
- use !elibc_glibc && use !elibc_uclibc && use !elibc_musl && echo "-lintl"
-}
-
-src_compile() {
- emake prefix="${EPREFIX}/usr" \
- $(usex nls "LDFLAGS_EXTRA=$(lintl)" "ENABLE_NLS=")
-}
-
-src_install() {
- emake DESTDIR="${D}" prefix="${EPREFIX}/usr" \
- $(usex nls "" "ENABLE_NLS=") install
-}
next reply other threads:[~2019-11-04 8:13 UTC|newest]
Thread overview: 89+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-04 8:13 Lars Wendler [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-07 20:09 [gentoo-commits] repo/gentoo:master commit in: app-text/dos2unix/ Arthur Zamarin
2025-02-07 20:09 Arthur Zamarin
2024-11-15 10:50 Arthur Zamarin
2024-11-15 9:21 Arthur Zamarin
2024-11-15 9:21 Arthur Zamarin
2024-11-15 9:21 Arthur Zamarin
2024-11-15 9:20 Arthur Zamarin
2024-09-29 16:23 Arthur Zamarin
2024-09-29 16:23 Arthur Zamarin
2023-12-23 16:41 Arthur Zamarin
2023-12-23 15:50 Arthur Zamarin
2023-12-23 15:50 Arthur Zamarin
2023-12-23 15:47 Arthur Zamarin
2023-12-23 15:46 Arthur Zamarin
2023-12-23 15:46 Arthur Zamarin
2023-12-23 15:46 Arthur Zamarin
2023-08-31 5:26 Sam James
2023-08-27 14:24 David Seifert
2023-05-19 5:08 Sam James
2023-05-19 5:08 Sam James
2023-04-16 12:11 WANG Xuerui
2023-03-24 14:08 Arthur Zamarin
2023-03-24 14:01 Arthur Zamarin
2023-03-22 5:44 Sam James
2023-02-13 4:23 Sam James
2022-08-17 16:21 Matt Turner
2022-08-02 6:52 Agostino Sarubbo
2022-08-01 8:04 Agostino Sarubbo
2022-08-01 8:01 Agostino Sarubbo
2022-07-31 20:17 Arthur Zamarin
2022-07-31 20:16 Arthur Zamarin
2022-07-31 17:12 Arthur Zamarin
2022-07-31 17:12 Arthur Zamarin
2022-06-06 1:20 Sam James
2021-04-19 19:12 Sam James
2021-02-14 14:53 Sam James
2021-01-05 20:51 Sam James
2021-01-03 12:10 Sergei Trofimovich
2021-01-03 11:51 Sergei Trofimovich
2021-01-03 1:18 Sam James
2021-01-01 11:21 Sergei Trofimovich
2020-12-29 20:38 Sam James
2020-10-13 14:19 Lars Wendler
2019-11-04 8:49 Lars Wendler
2019-11-04 8:13 Lars Wendler
2019-09-25 22:38 Lars Wendler
2017-12-17 15:55 Patrice Clement
2017-12-05 5:44 Markus Meier
2017-10-22 21:42 Tobias Klausmann
2017-10-14 17:20 Sergei Trofimovich
2017-10-13 14:31 Thomas Deutschmann
2017-10-13 0:13 Sergei Trofimovich
2017-10-12 19:23 Manuel Rüger
2017-10-11 14:41 Sergei Trofimovich
2017-10-11 7:47 Lars Wendler
2017-07-27 10:37 Fabian Groffen
2017-07-05 7:26 Lars Wendler
2017-04-12 11:10 Tim Harder
2017-01-14 13:14 Jeroen Roovers
2016-12-24 10:26 Agostino Sarubbo
2016-12-22 9:34 Agostino Sarubbo
2016-12-20 9:44 Agostino Sarubbo
2016-12-19 15:12 Agostino Sarubbo
2016-12-19 14:35 Agostino Sarubbo
2016-12-18 15:57 Agostino Sarubbo
2016-12-17 12:20 Aaron Bauman
2016-12-14 9:14 Tobias Klausmann
2016-08-15 14:15 Anthony G. Basile
2016-05-25 7:42 Lars Wendler
2016-05-25 7:42 Lars Wendler
2016-03-28 22:03 Mike Frysinger
2016-02-14 13:42 Lars Wendler
2016-02-14 13:42 Lars Wendler
2015-11-21 9:14 Lars Wendler
2015-11-12 11:21 Justin Lecher
2015-11-12 10:51 Agostino Sarubbo
2015-11-05 21:01 Markus Meier
2015-10-10 15:53 Mikle Kolyada
2015-09-30 22:17 Lars Wendler
2015-09-30 22:17 Lars Wendler
2015-09-28 15:30 Tobias Klausmann
2015-09-28 4:54 Jeroen Roovers
2015-09-27 5:18 Jeroen Roovers
2015-09-26 18:21 Mikle Kolyada
2015-09-25 14:29 Agostino Sarubbo
2015-09-25 4:19 Patrice Clement
2015-09-25 4:19 Patrice Clement
2015-08-24 10:03 Lars Wendler
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=1572855215.56e1b2ae3fa7a84a93143730b85b4d7b2553a872.polynomial-c@gentoo \
--to=polynomial-c@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