public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
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: Sun, 14 Feb 2016 13:42:29 +0000 (UTC)	[thread overview]
Message-ID: <1455457309.68d298f7a430271376f3dc918f3ba7af79361c3e.polynomial-c@gentoo> (raw)

commit:     68d298f7a430271376f3dc918f3ba7af79361c3e
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 14 13:41:49 2016 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sun Feb 14 13:41:49 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68d298f7

app-text/dos2unix: Bump to version 7.3.3

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 app-text/dos2unix/Manifest              |  1 +
 app-text/dos2unix/dos2unix-7.3.3.ebuild | 62 +++++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

diff --git a/app-text/dos2unix/Manifest b/app-text/dos2unix/Manifest
index b349a7e..2f7d1a5 100644
--- a/app-text/dos2unix/Manifest
+++ b/app-text/dos2unix/Manifest
@@ -1,3 +1,4 @@
 DIST dos2unix-7.3.1.tar.gz 552530 SHA256 f4d5df24d181c2efecf7631aab6e894489012396092cf206829f1f9a98556b94 SHA512 8bfe2ed739f5b28ceddbcd33e8a214b1cbc4b02ddab6f0528d050c411754365b6b7314a857a45cefaf13f719ad86a1fe7c18841e63f851f7f4c9e586cfa4f0fd WHIRLPOOL 5eae8985f5aeabe82230cf9451509469323a3c97e9a256bb6a31e82b77e9d2ac74c88d87147e6feeff9f088a48b9df910f900f9f952bf17809f07ee7478ce060
 DIST dos2unix-7.3.2.tar.gz 601642 SHA256 c7e8ee0bb3e001cc25a4a908d9a81ac52d124133d6a524a59f995bc90d438689 SHA512 3d042e720c9854ae42ef72d1acf78ff8ff1cbf3c259d2c8bdba0a0b9cbf754fbe2dee9994cb9513cf1df24f26a857a13e828f0c88dc2e50f91e1c33a122eb385 WHIRLPOOL 48652bae9b247f68d9d246ad6e1c9758c04f61de3816126b89bd928bb1e50435b384d05c63a070b851d02657c698d7fbb6de61c1998a9b3d8ed32e0a3354e7ab
+DIST dos2unix-7.3.3.tar.gz 638368 SHA256 5c910aea2eae96663c67e87627998c4fe3cded403be5819b4c190e56c82ff0fb SHA512 52218ea17cc63a4b41e1bd12f200dda31e2be65167ca9c913391640c118d7122348aa2e5aec934ee17c8ea77a04cb89a1a572865645a77f6875207295c10e7af WHIRLPOOL 749cabc6d2d57caccf183082689a0d677d7d5b7822c8a92a85a5b2d722284542c95dcd46947ea05a1d2cff1d230351cacf1f0667957f18c7c02c12c6c62f2e16
 DIST dos2unix-7.3.tar.gz 497218 SHA256 8175f7552a72edaaa8918fdee68ce2cbc982dc25452f33d4dc611d769f4944d1 SHA512 dc70fc4cf12811794e9b33db7cc44085788450104f7beefacea5ac11af5ca76d909235232be51eb7a32ed5d75a01a86a4c6b064060b945c8a7e7968caeb51cea WHIRLPOOL 55b3990816a122c4bc2219b1f89b5d7f619901693b57349b58222166f5c3e006db08a55a26ce62493009459b9a3c6a091a07ecacabf9450a0a7475fbd9f195ae

diff --git a/app-text/dos2unix/dos2unix-7.3.3.ebuild b/app-text/dos2unix/dos2unix-7.3.3.ebuild
new file mode 100644
index 0000000..97a70f0
--- /dev/null
+++ b/app-text/dos2unix/dos2unix-7.3.3.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Convert DOS or MAC text files to UNIX format or vice versa"
+HOMEPAGE="http://www.xs4all.nl/~waterlan/dos2unix.html http://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 ~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"
+
+src_prepare() {
+	default
+
+	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 && 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
+}


             reply	other threads:[~2016-02-14 13:42 UTC|newest]

Thread overview: 82+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-14 13:42 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-29 16:23 [gentoo-commits] repo/gentoo:master commit in: app-text/dos2unix/ 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-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
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=1455457309.68d298f7a430271376f3dc918f3ba7af79361c3e.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