Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 524244 - app-text/uni2ascii-4.18 - provides conversion in both directions between UTF-8 Unicode and more than thirty 7-bit ASCII equivalents,
Summary: app-text/uni2ascii-4.18 - provides conversion in both directions between UTF-...
Status: UNCONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: Normal enhancement (vote)
Assignee: Default Assignee for New Packages
URL: http://billposer.org/Software/uni2asc...
Whiteboard:
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2014-10-01 20:03 UTC by Ilya Gordeev
Modified: 2014-10-11 10:14 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
uni2ascii-4.18.ebuild (uni2ascii-4.18.ebuild,612 bytes, text/plain)
2014-10-01 20:04 UTC, Ilya Gordeev
Details
Manifest (Manifest,762 bytes, text/plain)
2014-10-01 20:04 UTC, Ilya Gordeev
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Ilya Gordeev 2014-10-01 20:03:51 UTC
Propose ebuild for uni2ascii-4.18 form http://billposer.org/Software/uni2ascii.html which provides conversion in both directions between UTF-8 Unicode and many 7-bit ASCII equivalents.

Reproducible: Always
Comment 1 Ilya Gordeev 2014-10-01 20:04:24 UTC
Created attachment 385918 [details]
uni2ascii-4.18.ebuild
Comment 2 Ilya Gordeev 2014-10-01 20:04:58 UTC
Created attachment 385920 [details]
Manifest
Comment 3 Jeroen Roovers (RETIRED) gentoo-dev 2014-10-01 23:34:38 UTC
Comment on attachment 385918 [details]
uni2ascii-4.18.ebuild

># Copyright 1999-2014 Gentoo Foundation
># Distributed under the terms of the GNU General Public License v2
># $Header: $
>
>EAPI=4

That should be 5 for new ebuilds.

>DESCRIPTION="Provides conversion in both directions between UTF-8 Unicode and many 7-bit ASCII equivalents"

Why not "more than thirty" like the HOMEPAGE says?

>HOMEPAGE="http://billposer.org/Software/uni2ascii.html"
>SRC_URI="http://billposer.org/Software/Downloads/${P}.tar.bz2"
>
>LICENSE="GPL-3"
>SLOT="0"
>KEYWORDS="~amd64"
>IUSE="-tk"

Why is it disabled by default? In any case, this USE flag should be documented in metadata.xml, I guess.

>DEPEND=""

No need to set an empty DEPEND.

>RDEPEND="tk? (
>    dev-lang/tcl
>    dev-lang/tk
>    dev-tcltk/tablelist
>)"
>
>src_install() {
>    emake DESTDIR="${D}" install

That's the default emake ... install, so just put "default".
Comment 4 Ilya Gordeev 2014-10-11 10:14:32 UTC
(In reply to Jeroen Roovers from comment #3)

> That should be 5 for new ebuilds.
Agree. It will be fixed.

> Why not "more than thirty" like the HOMEPAGE says?
I thought it wasn't significant information.

> In any case, this USE flag should be
> documented in metadata.xml, I guess.
"tk" USE flag has obvious meaning I think.

> No need to set an empty DEPEND.
Agree. It will be fixed.

> That's the default emake ... install, so just put "default".
Written according to the Gentoo Development Guide. What you mean "default"? Just "emake install"?