public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Hüttel" <dilfridge@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Perl-Tidy/
Date: Sat, 19 Mar 2016 22:42:10 +0000 (UTC)	[thread overview]
Message-ID: <1458427310.fd9a2b49784ee3b677f84a6a8fa4c2c1d3d5d97b.dilfridge@gentoo> (raw)

commit:     fd9a2b49784ee3b677f84a6a8fa4c2c1d3d5d97b
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Sat Mar 19 07:17:49 2016 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Mar 19 22:41:50 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd9a2b49

dev-perl/Perl-Tidy: Bump to version 20160302.0.0

- EAPI6
- Fix LICENSE
- Install stylekey and tutorial
- Make examples optional on USE="examples"

Upstream:
- Fix handliong of long-form --nostack-closing-tokens
- Explicit "assume utf8" support flag
- Removed unwanted continuation indentation
- Fixed crash w/ --output-line-ending
- Fixed misparse of //= construct
- Fixed misparse of //
- Fixed bug with "else" warnining inside a "switch" statement.
- Added "-xs" flag for extended syntax ala MX::Declare style.
- "-boc" vertical alignment fixed.
- Support upcomming bitwise string operators.
- "-io" and "-dac" can now be used together.
- Support for regex "/n"
- non-global warnings
- Perl5.22 Signatures support
- Removed unwanted newline after anonymous sub

Package-Manager: portage-2.2.28

 dev-perl/Perl-Tidy/Manifest                      |  1 +
 dev-perl/Perl-Tidy/Perl-Tidy-20160302.0.0.ebuild | 42 ++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/dev-perl/Perl-Tidy/Manifest b/dev-perl/Perl-Tidy/Manifest
index 96abffd..834625e 100644
--- a/dev-perl/Perl-Tidy/Manifest
+++ b/dev-perl/Perl-Tidy/Manifest
@@ -1,2 +1,3 @@
 DIST Perl-Tidy-20130922.tar.gz 422005 SHA256 e58cd6f00067dc814d2cecab209087d3b282648371b5a2ebd6f48484c030b762 SHA512 8c8d0cc388f0f74fdbd86238cf0b50c84619102a0dd6ffb0176b05877c7bef616d7f11104294246b7275e526dde29d1f0bb146a36b7234222fb462097976409b WHIRLPOOL 11338dafe884b67884ef73495379ecb1ffbba636de93b224716c353439cf1f1e78ed03baace9bf46daf898025e807706bb4bcc7efb99a7052b0926642c1eae67
 DIST Perl-Tidy-20140711.tar.gz 422397 SHA256 1576ceb3fd9f592d0285affbe7192685963dc1d0411968cc0587d6ac0d7b3ad8 SHA512 2e4f22f02f13a119569afcb9a6a4583257a2edb6aee1c69e6bae9c83a263eb282f2f8492bf89903387ec24219e38c3ed5ddb12024ea6c6f7b17331710eb6f693 WHIRLPOOL 4437494a9ac1ef1136fb3df8b737baed13724a19075046f913bdcda085e8d04b1b198899e15d053a598968c50155cc364d5a425442ff45927e08d8422663dfd5
+DIST Perl-Tidy-20160302.tar.gz 428484 SHA256 6dd04ed8c315bcfea8fe713de8f9de68955795b6864f3be6c177e802fd30dca7 SHA512 68c7cef5723df717b5b314bee2bd76f29f49194479da993764cd127ced750d5cd8193b0c6c71c19c627687385d20d3e51ea01fcd81ec69374c7edb253bcac4f1 WHIRLPOOL 0997e0aa6c808dc27be099484a7b4fee51b3a817317c107fac323c2c9eeb7fe6df252f7c0d6083dfa17690d022c746feda903f976e48e1da2e6d82b3f8ca3be2

diff --git a/dev-perl/Perl-Tidy/Perl-Tidy-20160302.0.0.ebuild b/dev-perl/Perl-Tidy/Perl-Tidy-20160302.0.0.ebuild
new file mode 100644
index 0000000..1149c66
--- /dev/null
+++ b/dev-perl/Perl-Tidy/Perl-Tidy-20160302.0.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=SHANCOCK
+DIST_VERSION=20160302
+inherit perl-module
+
+DESCRIPTION="Perl script indenter and beautifier"
+HOMEPAGE="http://perltidy.sourceforge.net/ ${HOMEPAGE}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
+IUSE="examples"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+	virtual/perl-ExtUtils-MakeMaker
+"
+
+src_install() {
+	perl-module_src_install
+
+	# Compressing pod is bad because perldoc can't decompress
+	# bzip2 automatically, and `less` can't render perldoc
+	docompress -x /usr/share/doc/${PF}/stylekey.pod
+	docompress -x /usr/share/doc/${PF}/tutorial
+
+	dodoc docs/stylekey.pod
+
+	docinto tutorial
+	dodoc docs/tutorial.pod docs/testfile.pl
+
+	if use examples; then
+		docompress -x /usr/share/doc/${PF}/examples
+		docinto examples
+		dodoc -r "${S}"/examples/*
+	fi
+}


             reply	other threads:[~2016-03-19 22:42 UTC|newest]

Thread overview: 87+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-19 22:42 Andreas Hüttel [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-05-24 22:38 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Perl-Tidy/ Andreas Hüttel
2016-05-24 22:38 Andreas Hüttel
2016-12-04 16:43 Michael Palimaka
2017-02-22 21:45 Markus Meier
2017-04-17 23:16 Michael Weber
2017-05-30  1:15 Kent Fredric
2017-12-26  8:48 Kent Fredric
2018-03-28 17:27 Matt Turner
2018-07-23  6:19 Sergei Trofimovich
2018-07-24  0:12 Mikle Kolyada
2018-07-27  7:08 Sergei Trofimovich
2018-07-27  7:12 Sergei Trofimovich
2018-08-04  0:54 Mikle Kolyada
2018-08-20  4:40 Matt Turner
2018-09-01 19:01 Thomas Deutschmann
2018-10-16 18:47 Fabian Groffen
2019-07-25  6:48 Kent Fredric
2019-09-13 23:51 Matt Turner
2019-10-13  2:39 Andreas K. Hüttel
2020-04-12  9:34 Sergei Trofimovich
2020-04-12 11:39 Mart Raudsepp
2020-04-14 12:59 Agostino Sarubbo
2020-04-14 14:03 Agostino Sarubbo
2020-04-14 14:06 Agostino Sarubbo
2020-04-14 15:45 Agostino Sarubbo
2020-07-06  2:51 Matt Turner
2021-07-30 20:19 Andreas K. Hüttel
2021-07-30 20:19 Andreas K. Hüttel
2021-10-11  3:10 Sam James
2021-10-11  3:13 Sam James
2021-10-11  3:13 Sam James
2021-10-11  5:15 Sam James
2021-10-11  8:10 Agostino Sarubbo
2021-10-11 15:18 Sam James
2021-10-11 15:25 Sam James
2021-11-25 18:03 Andreas K. Hüttel
2021-11-25 18:03 Andreas K. Hüttel
2022-02-19  3:38 Sam James
2022-02-19  3:41 Sam James
2022-02-19  7:23 Arthur Zamarin
2022-02-19  8:18 Arthur Zamarin
2022-02-19  9:41 Arthur Zamarin
2022-02-19 12:02 Arthur Zamarin
2022-02-19 12:17 Arthur Zamarin
2022-02-22  9:30 Arthur Zamarin
2023-06-11 15:37 Sam James
2023-06-19  1:47 Sam James
2023-07-24  4:12 Sam James
2023-07-24  4:15 Sam James
2023-08-02  4:27 Sam James
2023-08-19  6:01 Sam James
2023-08-19  6:03 Sam James
2023-08-19  6:07 Sam James
2023-08-19  6:33 Sam James
2023-08-19  7:00 Arthur Zamarin
2023-08-19  7:23 Sam James
2023-08-21  3:50 Sam James
2023-09-09  7:52 Sam James
2023-09-16  9:27 Sam James
2023-11-04 10:49 Sam James
2023-11-04 10:50 Sam James
2023-11-04 10:50 Sam James
2023-11-04 13:35 Sam James
2023-11-04 16:13 Arthur Zamarin
2024-05-01  7:54 Sam James
2024-05-11  1:09 Sam James
2024-06-09 21:12 Sam James
2024-06-09 21:21 Sam James
2024-06-14  0:43 Sam James
2024-07-27 11:59 Sam James
2024-10-14  3:50 Sam James
2024-11-14  2:49 Sam James
2024-11-14  2:49 Sam James
2024-11-14  3:21 Sam James
2024-11-14  3:39 Sam James
2024-12-12 10:51 Sam James
2025-02-26  8:30 Sam James
2025-03-03 20:23 Sam James
2025-03-03 20:26 Sam James
2025-03-03 20:26 Sam James
2025-03-03 20:26 Sam James
2025-03-03 20:34 Sam James
2025-03-14  4:27 Sam James
2025-03-14  6:11 Sam James
2025-03-14  6:11 Sam James
2025-03-14  6:11 Sam James

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=1458427310.fd9a2b49784ee3b677f84a6a8fa4c2c1d3d5d97b.dilfridge@gentoo \
    --to=dilfridge@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