summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2013-05-01 16:49:47 +0000
committerTim Harder <radhermit@gentoo.org>2013-05-01 16:49:47 +0000
commit9f6a7c3ac03229d2c55ebc78a6ba3d28f3fe0121 (patch)
treed5943dd6fe841b7b271e40232fef21ef9321d785 /app-misc/jq
parentswitch out refrences from xattr to pyxattr in requires.txt and pip-requires (diff)
downloadgentoo-2-9f6a7c3ac03229d2c55ebc78a6ba3d28f3fe0121.tar.gz
gentoo-2-9f6a7c3ac03229d2c55ebc78a6ba3d28f3fe0121.tar.bz2
gentoo-2-9f6a7c3ac03229d2c55ebc78a6ba3d28f3fe0121.zip
Remove old.
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'app-misc/jq')
-rw-r--r--app-misc/jq/ChangeLog6
-rw-r--r--app-misc/jq/files/jq-1.1-makefile.patch22
-rw-r--r--app-misc/jq/jq-1.1.ebuild28
3 files changed, 5 insertions, 51 deletions
diff --git a/app-misc/jq/ChangeLog b/app-misc/jq/ChangeLog
index 726680dee204..11ce54fff614 100644
--- a/app-misc/jq/ChangeLog
+++ b/app-misc/jq/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-misc/jq
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/jq/ChangeLog,v 1.5 2013/05/01 10:37:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/jq/ChangeLog,v 1.6 2013/05/01 16:49:47 radhermit Exp $
+
+ 01 May 2013; Tim Harder <radhermit@gentoo.org> -jq-1.1.ebuild,
+ -files/jq-1.1-makefile.patch:
+ Remove old.
01 May 2013; Agostino Sarubbo <ago@gentoo.org> jq-1.2.ebuild:
Stable for x86, wrt bug #468074
diff --git a/app-misc/jq/files/jq-1.1-makefile.patch b/app-misc/jq/files/jq-1.1-makefile.patch
deleted file mode 100644
index d492cd0d372c..000000000000
--- a/app-misc/jq/files/jq-1.1-makefile.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- stedolan-jq-bf61e95/Makefile
-+++ stedolan-jq-bf61e95/Makefile
-@@ -1,4 +1,5 @@
--CC=gcc -Wextra -Wall -Wno-missing-field-initializers -Wno-unused-parameter -std=gnu99 -ggdb -Wno-unused-function
-+CC?=gcc
-+CFLAGS+=-Wextra -Wall -Wno-missing-field-initializers -Wno-unused-parameter -std=gnu99 -Wno-unused-function
- prefix=/usr/local
-
- .PHONY: all clean releasedep tarball install uninstall test releasetag
-@@ -30,10 +31,10 @@
-
-
- jq_test: $(JQ_SRC) jq_test.c
-- $(CC) -DJQ_DEBUG=1 -o $@ $^
-+ $(CC) $(CFLAGS) $(LDFLAGS) -DJQ_DEBUG=1 -o $@ $^
-
- jq: $(JQ_SRC) main.c
-- $(CC) -O -DJQ_DEBUG=0 -o $@ $^
-+ $(CC) $(CFLAGS) $(LDFLAGS) -DJQ_DEBUG=0 -o $@ $^
-
- test: jq_test
- valgrind --error-exitcode=1 -q --leak-check=full ./jq_test >/dev/null
diff --git a/app-misc/jq/jq-1.1.ebuild b/app-misc/jq/jq-1.1.ebuild
deleted file mode 100644
index ed99f3c3df60..000000000000
--- a/app-misc/jq/jq-1.1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/jq/jq-1.1.ebuild,v 1.2 2013/02/07 21:39:36 ulm Exp $
-
-EAPI=5
-
-inherit vcs-snapshot toolchain-funcs eutils
-
-DESCRIPTION="A lightweight and flexible command-line JSON processor"
-HOMEPAGE="http://stedolan.github.com/jq/"
-SRC_URI="https://github.com/stedolan/jq/tarball/${P} -> ${P}.tar.gz"
-
-LICENSE="MIT CC-BY-3.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-DEPEND="test? ( dev-util/valgrind )"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-makefile.patch
- tc-export CC
-}
-
-src_install() {
- dobin jq
- dodoc README.md
-}