From: "Daniel Campbell" <zlg@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/astyle/
Date: Sun, 6 Mar 2016 22:20:10 +0000 (UTC) [thread overview]
Message-ID: <1457302795.fb2c6ffe10d63e189d1a52cefcf6ee8ad91e8c9e.zlg@gentoo> (raw)
commit: fb2c6ffe10d63e189d1a52cefcf6ee8ad91e8c9e
Author: Daniel Campbell <zlg <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 6 22:19:55 2016 +0000
Commit: Daniel Campbell <zlg <AT> gentoo <DOT> org>
CommitDate: Sun Mar 6 22:19:55 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb2c6ffe
dev-util/astyle: Cleanup old versions
Package-Manager: portage-2.2.27
dev-util/astyle/Manifest | 2 -
dev-util/astyle/astyle-2.02.1.ebuild | 71 ------------------------------------
dev-util/astyle/astyle-2.03.ebuild | 71 ------------------------------------
3 files changed, 144 deletions(-)
diff --git a/dev-util/astyle/Manifest b/dev-util/astyle/Manifest
index d036cc3..4a8ca9e 100644
--- a/dev-util/astyle/Manifest
+++ b/dev-util/astyle/Manifest
@@ -1,4 +1,2 @@
-DIST astyle_2.02.1_linux.tar.gz 153253 SHA256 0bece9a32887e51f42c57617cf7c4f9b63d0a386749fe3a094f5525b639ef953 SHA512 5a156910a2610b1c49bfe78ac237e1bb13e9627912db107ef98fead88a29f000ed355446c033fd052112d54a4f2bbdf3f484ef58b9976c311c06cde951fda274 WHIRLPOOL 96451afd3f4bb6eaa51f33b2f565e545f401973a00ef6653ee4dbeff85ca7c06928e12d54249a8221e881c20f4d1bdea023fbe04ac57631601e15a3453dc2b79
-DIST astyle_2.03_linux.tar.gz 142577 SHA256 22b5249a0b8c9fab3b3bcd467abcb3c6b4a78458b528028634a83dca4c6ca389 SHA512 5f23ef010edba0ddd7377b2a6023a0d97e22f7247e20a0c94d56252fef55b6de291b3c9de67f5ddfa02906cd44470e136ae49e38f7bd2afe65a204245230a579 WHIRLPOOL b97a212dd4c92e24af9c5aa99fafcc5de929e94a81e160244d9cbc66bc7b97e0ca415e21b8e1eae35ef659b42423e1dd9b154fbddf36fef7fc344deca39dc156
DIST astyle_2.04_linux.tar.gz 156974 SHA256 70b37f4853c418d1e2632612967eebf1bdb93dfbe558c51d7d013c9b4e116b60 SHA512 bc0f6351fac4198ab969251342c4e453064b07512a2d06825a93c75daf86b06469c9971f35fbadad872d23368dc546019d8d174e07ceaad6e10007f562fdeffd WHIRLPOOL d9aa3f537885e373d791204652ed5c8d5231be0840ef5dde3714bb8c9c524e327585a51b7b14da1aae2952f7c9248401bc2769290bc5828d15f030f41d95c1fe
DIST astyle_2.05.1_linux.tar.gz 152765 SHA256 fbdfc6f1966a972d19a215927266c76d4183eee235ed1e2bd7ec551c2a270eac SHA512 853bf84cb196f2300ca00fb7f18fe336764f1205ae0674a75c1a019bf734495d8fb3d9b6aca0ea258b6632921fb268906128c1afb80596532489749cd2cbe495 WHIRLPOOL ceef3bfa64632a4fe9afcc332fdf742e60b6e7d21655449372bd6c89db7444eddf6bbfee48684bb9f18e119cf040f36c62544cfc8bb040ed83095e9aed9fce56
diff --git a/dev-util/astyle/astyle-2.02.1.ebuild b/dev-util/astyle/astyle-2.02.1.ebuild
deleted file mode 100644
index 66bf3af..0000000
--- a/dev-util/astyle/astyle-2.02.1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit eutils java-pkg-opt-2 multilib toolchain-funcs
-
-DESCRIPTION="Artistic Style is a reindenter and reformatter of C++, C and Java source code"
-HOMEPAGE="http://astyle.sourceforge.net/"
-SRC_URI="mirror://sourceforge/astyle/astyle_${PV}_linux.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-
-IUSE="doc java static-libs"
-
-DEPEND="app-arch/xz-utils
- java? ( >=virtual/jdk-1.6 )"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${PN}
-
-pkg_setup() {
- java-pkg-opt-2_pkg_setup
- tc-export CXX
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-build_system.patch
- java-pkg-opt-2_src_prepare
- sed -e "s:^\(JAVAINCS\s*\)=.*$:\1= $(java-pkg_get-jni-cflags):" \
- -e "s:ar crs:$(tc-getAR) crs:" \
- -i build/gcc/Makefile || die
-}
-
-src_compile() {
- local mk_opts="-f ../build/gcc/Makefile -C src"
- emake ${mk_opts} ${PN}
- emake ${mk_opts} shared
- if use java ; then
- emake ${mk_opts} java
- fi
- if use static-libs ; then
- emake ${mk_opts} static
- fi
-}
-
-src_install() {
- insinto /usr/include
- doins src/${PN}.h
-
- pushd src/bin &> /dev/null
- dobin ${PN}
-
- dolib.so lib${PN}.so.0.0.0
- dosym lib${PN}.so.0.0.0 /usr/$(get_libdir)/lib${PN}.so.0
- dosym lib${PN}.so.0.0.0 /usr/$(get_libdir)/lib${PN}.so
- if use java ; then
- dolib.so lib${PN}j.so.0.0.0
- dosym lib${PN}j.so.0.0.0 /usr/$(get_libdir)/lib${PN}j.so.0
- dosym lib${PN}j.so.0.0.0 /usr/$(get_libdir)/lib${PN}j.so
- fi
- if use static-libs ; then
- dolib lib${PN}.a
- fi
- popd &> /dev/null
-
- use doc && dohtml doc/*
-}
diff --git a/dev-util/astyle/astyle-2.03.ebuild b/dev-util/astyle/astyle-2.03.ebuild
deleted file mode 100644
index a29b397..0000000
--- a/dev-util/astyle/astyle-2.03.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit eutils java-pkg-opt-2 multilib toolchain-funcs
-
-DESCRIPTION="Artistic Style is a reindenter and reformatter of C++, C and Java source code"
-HOMEPAGE="http://astyle.sourceforge.net/"
-SRC_URI="mirror://sourceforge/astyle/astyle_${PV}_linux.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-
-IUSE="doc java static-libs"
-
-DEPEND="app-arch/xz-utils
- java? ( >=virtual/jdk-1.6 )"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${PN}
-
-pkg_setup() {
- java-pkg-opt-2_pkg_setup
- tc-export CXX
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-2.02.1-build_system.patch
- java-pkg-opt-2_src_prepare
- sed -e "s:^\(JAVAINCS\s*\)=.*$:\1= $(java-pkg_get-jni-cflags):" \
- -e "s:ar crs:$(tc-getAR) crs:" \
- -i build/gcc/Makefile || die
-}
-
-src_compile() {
- local mk_opts="-f ../build/gcc/Makefile -C src"
- emake ${mk_opts} ${PN}
- emake ${mk_opts} shared
- if use java ; then
- emake ${mk_opts} java
- fi
- if use static-libs ; then
- emake ${mk_opts} static
- fi
-}
-
-src_install() {
- insinto /usr/include
- doins src/${PN}.h
-
- pushd src/bin &> /dev/null
- dobin ${PN}
-
- dolib.so lib${PN}.so.0.0.0
- dosym lib${PN}.so.0.0.0 /usr/$(get_libdir)/lib${PN}.so.0
- dosym lib${PN}.so.0.0.0 /usr/$(get_libdir)/lib${PN}.so
- if use java ; then
- dolib.so lib${PN}j.so.0.0.0
- dosym lib${PN}j.so.0.0.0 /usr/$(get_libdir)/lib${PN}j.so.0
- dosym lib${PN}j.so.0.0.0 /usr/$(get_libdir)/lib${PN}j.so
- fi
- if use static-libs ; then
- dolib lib${PN}.a
- fi
- popd &> /dev/null
-
- use doc && dohtml doc/*
-}
next reply other threads:[~2016-03-06 22:20 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-06 22:20 Daniel Campbell [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-09-11 15:31 [gentoo-commits] repo/gentoo:master commit in: dev-util/astyle/ Alfredo Tupone
2024-08-03 6:19 Joonas Niilola
2024-08-03 6:17 Joonas Niilola
2024-08-02 16:19 Sam James
2024-08-02 16:19 Sam James
2024-08-02 16:19 Sam James
2024-08-02 13:45 Viorel Munteanu
2024-08-02 13:45 Viorel Munteanu
2024-08-02 13:45 Viorel Munteanu
2023-10-20 0:51 Sam James
2023-09-24 4:39 Sam James
2023-09-24 4:39 Sam James
2023-08-30 7:48 Sam James
2023-08-30 7:48 Sam James
2023-06-19 21:28 Sam James
2023-01-23 2:30 Matthias Maier
2023-01-23 2:30 Matthias Maier
2021-02-05 12:29 Sam James
2021-02-02 21:02 Sam James
2020-02-26 18:25 Andreas Sturmlechner
2018-10-24 7:34 Mikle Kolyada
2018-10-17 12:07 Thomas Deutschmann
2018-08-08 10:03 Guilherme Amadio
2018-05-29 0:41 Matthias Maier
2018-05-28 22:17 Matthias Maier
2018-05-28 22:17 Matthias Maier
2018-05-28 22:17 Matthias Maier
2018-05-28 22:17 Matthias Maier
2018-03-06 17:44 Amy Liffey
2018-03-06 16:08 Amy Liffey
2018-02-07 0:54 Matthias Maier
2017-12-19 6:50 Matthias Maier
2017-12-12 21:46 Daniel Campbell
2017-08-29 23:16 Thomas Deutschmann
2017-07-31 12:56 Tobias Klausmann
2017-07-30 10:57 Sergei Trofimovich
2017-06-23 19:39 Daniel Campbell
2017-06-18 6:23 Daniel Campbell
2017-06-18 6:23 Daniel Campbell
2017-01-02 14:36 Daniel Campbell
2016-03-18 19:11 Michał Górny
2016-01-26 0:50 Daniel Campbell
2015-08-26 11:00 Agostino Sarubbo
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=1457302795.fb2c6ffe10d63e189d1a52cefcf6ee8ad91e8c9e.zlg@gentoo \
--to=zlg@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