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: net-libs/libnftnl/
Date: Tue, 17 Oct 2017 14:12:13 +0000 (UTC)	[thread overview]
Message-ID: <1508249531.5d1544bb71847daab8050fdbdcf6138e0fe8c0d9.polynomial-c@gentoo> (raw)

commit:     5d1544bb71847daab8050fdbdcf6138e0fe8c0d9
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 17 14:11:56 2017 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Oct 17 14:12:11 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d1544bb

net-libs/libnftnl: Removed old.

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 net-libs/libnftnl/Manifest              |  1 -
 net-libs/libnftnl/libnftnl-1.0.5.ebuild | 57 ---------------------------------
 2 files changed, 58 deletions(-)

diff --git a/net-libs/libnftnl/Manifest b/net-libs/libnftnl/Manifest
index 47266594485..cafa96da00f 100644
--- a/net-libs/libnftnl/Manifest
+++ b/net-libs/libnftnl/Manifest
@@ -1,4 +1,3 @@
-DIST libnftnl-1.0.5.tar.bz2 367016 SHA256 f6d4f5a702e38bc7987f2363f9fcd65930e8b702595c221a497e2f3a359be497 SHA512 85c71aaaeeafdffe09f2591f26d49d41e9f511a53ed313fe642b4968eae8aac1246a53d5908fc737c6eb9cc4f5f3ef2a4eaa17fe33db453a1fd60f2f9d5c5a1d WHIRLPOOL 15fb25aa9e23bfdcb19ab21ea1d6eadd22e5acc0c38e761e4637a06136c809f5a5827ac58643515432e1394e3e8d4575df11e52b5f16ca787157317e5e2ae463
 DIST libnftnl-1.0.6.tar.bz2 381897 SHA256 ad3b932a39a1e567308e91b683b32239a5e1aea9b4582dfffe2288c3400ab07e SHA512 d813c9d0dbdeaffc30695fb0b5dbf987849339d119774c4f0e219db835f2ad9111a7436fd474ffa96b07e288d537cb4a1be153afcca23dabce0c264e1c4a3c62 WHIRLPOOL c4221c99ee437125c1b10d1d47db7586b979e0ce8e7187a2a9fd5ad3b866e0e6b451aba0956c9a48cec9fb7fc411f523c5f35cd9ef2cd1a939aaab7cb7570728
 DIST libnftnl-1.0.7.tar.bz2 384969 SHA256 9bb66ecbc64b8508249402f0093829f44177770ad99f6042b86b3a467d963982 SHA512 a220c6a2857b4ff7325bfa4fbf537c5afeb66232a7e190b50c3077f01b86f0fb1842055ccc719280b36820ac7103cbe8168944ffe10c55444830ff77449fa6a5 WHIRLPOOL 400edc3bf8268e6c7d4a6804fe36eaca271144019c2220b27865e755466318fe18e1ee5be583d63fc3cfcb1c6819ab557e17fefcba4b96c74e918d024012aadc
 DIST libnftnl-1.0.8.tar.bz2 400496 SHA256 e6bdd799ef9c59fc247954aba9f2c6469d8e04cfaee73526728011eaa3632038 SHA512 df9f5967908ce5e6a6a85fe4328bdf6e7501ce6b0e42239b750782aeb76c30b1aae80dd07f73a06fb077d072b1269c4e0c5fd525feed1055400201567d215ef9 WHIRLPOOL f56667a5b385414d620e33c17e2fe2daafee3770cb61bdad89d7b3d5396677ed8ad8cf9f3bd6a5dbf6ce92c031bdf451727e70e0054f8d971c2dc76fb63aa120

diff --git a/net-libs/libnftnl/libnftnl-1.0.5.ebuild b/net-libs/libnftnl/libnftnl-1.0.5.ebuild
deleted file mode 100644
index d581d38d35d..00000000000
--- a/net-libs/libnftnl/libnftnl-1.0.5.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit base linux-info toolchain-funcs eutils
-
-DESCRIPTION="Netlink API to the in-kernel nf_tables subsystem"
-HOMEPAGE="http://netfilter.org/projects/nftables/"
-SRC_URI="http://netfilter.org/projects/${PN}/files/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0/4"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
-IUSE="examples json static-libs test xml"
-
-RDEPEND=">=net-libs/libmnl-1.0.0
-	xml? ( >=dev-libs/mini-xml-2.6 )
-	json? ( >=dev-libs/jansson-2.3 )"
-DEPEND="virtual/pkgconfig
-	${RDEPEND}"
-
-REQUIRED_USE="test? ( json xml )"
-
-pkg_setup() {
-	if kernel_is ge 3 13; then
-		CONFIG_CHECK="~NF_TABLES"
-		linux-info_pkg_setup
-	else
-		eerror "This package requires kernel version 3.13 or newer to work properly."
-	fi
-}
-
-src_configure() {
-	econf \
-		$(use_enable static-libs static) \
-		$(use_with xml xml-parsing) \
-		$(use_with json json-parsing)
-}
-
-src_install() {
-	default
-	gen_usr_ldscript -a nftnl
-	prune_libtool_files
-
-	if use examples; then
-		find examples/ -name 'Makefile*' -delete
-		dodoc -r examples/
-		docompress -x /usr/share/doc/${PF}/examples
-	fi
-}
-
-src_test() {
-	default
-	cd tests || die
-	./test-script.sh || die
-}


             reply	other threads:[~2017-10-17 14:12 UTC|newest]

Thread overview: 168+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-17 14:12 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-02 23:12 [gentoo-commits] repo/gentoo:master commit in: net-libs/libnftnl/ Patrick McLean
2024-09-01 17:04 Arthur Zamarin
2024-08-29  3:51 Sam James
2024-08-29  3:51 Sam James
2024-08-29  3:15 Sam James
2024-08-29  2:35 Sam James
2024-08-29  2:35 Sam James
2024-08-29  2:35 Sam James
2024-07-16  6:59 Sam James
2024-04-17  5:37 Arthur Zamarin
2024-03-24 12:12 Sam James
2024-03-24 12:12 Sam James
2024-03-24 11:34 Sam James
2024-03-24 11:34 Sam James
2024-03-24 11:34 Sam James
2024-03-24 11:29 Sam James
2024-03-24 11:29 Sam James
2024-02-20  5:24 Sam James
2024-02-20  5:06 Sam James
2023-08-20  8:11 Sam James
2023-08-19 11:38 Sam James
2023-08-19 11:38 Sam James
2023-08-19 11:38 Sam James
2023-08-19  7:53 Arthur Zamarin
2023-08-19  6:58 Arthur Zamarin
2023-08-19  6:35 Sam James
2023-08-19  6:35 Sam James
2023-07-15 13:18 Sam James
2023-04-23 22:35 Sam James
2023-04-23 21:17 Sam James
2023-04-23 20:32 Sam James
2023-04-23 20:32 Sam James
2023-04-23 20:23 Sam James
2023-04-23 20:22 Sam James
2023-04-23 20:08 Sam James
2023-04-23 20:07 Sam James
2023-03-09 23:46 Sam James
2022-12-26  3:54 Sam James
2022-12-26  3:20 Sam James
2022-12-25 21:24 Sam James
2022-12-25 20:23 Arthur Zamarin
2022-12-25 20:15 Sam James
2022-12-25 20:14 Arthur Zamarin
2022-12-25 20:12 Arthur Zamarin
2022-12-25 20:11 Sam James
2022-12-25 20:09 Arthur Zamarin
2022-11-12  3:14 Matt Turner
2022-10-11 18:26 Sam James
2022-10-11 17:15 Arthur Zamarin
2022-10-11  9:19 Agostino Sarubbo
2022-10-11  9:19 Agostino Sarubbo
2022-10-11  6:46 Agostino Sarubbo
2022-10-10 23:36 Sam James
2022-10-10 23:36 Sam James
2022-10-10 22:35 Sam James
2022-09-23  2:14 Sam James
2022-09-16 18:01 Arthur Zamarin
2022-09-16 17:45 Arthur Zamarin
2022-09-15 19:58 Arthur Zamarin
2022-09-08 11:35 Agostino Sarubbo
2022-09-08 11:24 Agostino Sarubbo
2022-09-08  7:26 Agostino Sarubbo
2022-09-07 13:16 Agostino Sarubbo
2022-09-07 13:15 Agostino Sarubbo
2022-08-10  1:16 Patrick McLean
2022-08-10  1:16 Patrick McLean
2022-06-15 13:12 Sam James
2022-06-07 20:31 Patrick McLean
2022-04-25 15:06 Sam James
2022-04-17 17:12 Sam James
2022-03-27  2:58 Sam James
2022-03-27  2:58 Sam James
2022-02-13 14:58 Sam James
2022-02-10 11:43 Sam James
2022-02-10 11:43 Sam James
2022-02-10 10:17 Sam James
2022-02-10 10:17 Sam James
2022-02-10 10:12 Sam James
2022-02-10  9:59 Sam James
2022-02-10  9:50 Sam James
2021-11-19 18:18 Patrick McLean
2021-09-04 17:35 David Seifert
2021-08-14  3:48 Sam James
2021-08-11 23:10 Sam James
2021-08-11  0:24 Sam James
2021-08-11  0:12 Sam James
2021-08-11  0:02 Sam James
2021-08-10 15:36 Agostino Sarubbo
2021-05-26  8:51 Lars Wendler
2021-05-09  6:01 Sam James
2021-05-09  1:29 Sam James
2021-05-08 18:58 Sam James
2021-05-08 18:55 Sam James
2021-05-08 18:49 Sam James
2021-05-08 18:44 Sam James
2021-05-08 18:41 Sam James
2021-04-16 10:25 David Seifert
2021-01-16 23:36 Lars Wendler
2020-10-27 17:58 Patrick McLean
2020-09-07  8:47 Sergei Trofimovich
2020-09-06  7:49 Sergei Trofimovich
2020-08-29 23:50 Sam James
2020-08-18 11:22 Agostino Sarubbo
2020-08-18 11:18 Agostino Sarubbo
2020-08-18 11:16 Agostino Sarubbo
2020-08-17 14:52 Agostino Sarubbo
2020-08-17 12:20 Sam James
2020-07-23  2:06 Patrick McLean
2020-06-07  0:18 Patrick McLean
2020-04-16 18:05 Sergei Trofimovich
2020-04-02  7:47 Lars Wendler
2020-01-27 12:06 Mikle Kolyada
2020-01-13  9:10 Agostino Sarubbo
2020-01-13  9:06 Agostino Sarubbo
2020-01-13  9:04 Agostino Sarubbo
2020-01-10  1:26 Thomas Deutschmann
2020-01-09 12:47 Agostino Sarubbo
2019-12-03  8:29 Lars Wendler
2019-12-03  7:03 Lars Wendler
2019-08-27  7:35 Matt Turner
2019-08-23 17:02 Lars Wendler
2019-07-29  2:35 Matt Turner
2019-07-28 19:58 Mikle Kolyada
2019-07-22 19:01 Aaron Bauman
2019-07-03  7:11 Agostino Sarubbo
2019-07-02 12:36 Agostino Sarubbo
2019-07-02 12:35 Agostino Sarubbo
2019-07-02 11:55 Agostino Sarubbo
2019-07-02 10:33 Agostino Sarubbo
2019-07-02 10:30 Agostino Sarubbo
2019-05-28  0:41 Lars Wendler
2019-05-28  0:41 Lars Wendler
2019-05-05 12:36 Mikle Kolyada
2018-11-28 22:30 Matt Turner
2018-11-14 21:51 Sergei Trofimovich
2018-11-14 10:03 Lars Wendler
2018-11-14  7:22 Matt Turner
2018-11-14  7:22 Matt Turner
2018-11-13 22:26 Matt Turner
2018-09-17 23:10 Matt Turner
2018-09-17 23:10 Matt Turner
2018-06-27 22:26 Mart Raudsepp
2018-06-11 11:42 Lars Wendler
2018-06-11 11:42 Lars Wendler
2018-05-02 13:57 Lars Wendler
2018-03-28  9:29 Matt Turner
2018-01-18 14:21 Lars Wendler
2018-01-10  6:19 Markus Meier
2018-01-04 20:40 Mikle Kolyada
2018-01-04 10:57 Lars Wendler
2017-12-25  9:28 Sergei Trofimovich
2017-12-19 15:46 Thomas Deutschmann
2017-10-18  6:08 Lars Wendler
2017-10-17 14:12 Lars Wendler
2017-07-23 12:16 Manuel Rüger
2017-07-02 14:46 Sergei Trofimovich
2017-06-30  5:30 Alexis Ballier
2017-01-07 21:46 Robin H. Johnson
2017-01-04 15:29 Agostino Sarubbo
2016-06-26 11:43 Patrice Clement
2016-06-07 13:01 Tobias Klausmann
2015-12-23 21:09 Anthony G. Basile
2015-12-23 11:17 Jeroen Roovers
2015-10-10 21:22 Mike Frysinger
2015-10-06 13:27 Manuel Rüger
2015-09-19 19:44 Manuel Rüger
2015-09-17  8:47 Manuel Rüger

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=1508249531.5d1544bb71847daab8050fdbdcf6138e0fe8c0d9.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