* [gentoo-commits] proj/netifrc:master commit in: /
@ 2013-08-24 1:04 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2013-08-24 1:04 UTC (permalink / raw
To: gentoo-commits
commit: edfdd06aeecc784104e6eeba6ab227cae49c40d7
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 00:39:27 2013 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 00:51:09 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=edfdd06a
We are sticking to the OpenRC style guide.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
---
STYLE | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 89 insertions(+)
diff --git a/STYLE b/STYLE
new file mode 100644
index 0000000..666ad28
--- /dev/null
+++ b/STYLE
@@ -0,0 +1,89 @@
+This STYLE file taken directly from OpenRC, and based on the heritage of
+netifrc, we are sticking to it.
+
+==== Original file beyond this point.
+This is the openrc style manual. It governs the coding style of all code
+in this repository. Follow it. Contact openrc@gentoo.org for any questions
+or fixes you might notice.
+
+##########
+# C CODE #
+##########
+
+The BSD Kernel Normal Form (KNF) style is used:
+ http://en.wikipedia.org/wiki/Indent_style#BSD_KNF_style
+Basically, it's like K&R/LKML, but wrapped lines that are indented use 4 spaces.
+
+Highlights:
+ - no trailing whitespace
+ - indented code use tabs (not line wrapped)
+ - cuddle the braces (except for functions)
+ - space after native statements and before paren (for/if/while/...)
+ - no space between function and paren
+ - pointer asterisk cuddles the variable, not the type
+
+void foo(int c)
+{
+ int ret = 0;
+
+ if (c > 1000)
+ return;
+
+ while (c--) {
+ bar(c);
+ ret++;
+ }
+
+ return ret;
+}
+
+##################
+# COMMIT MESSAGES #
+##################
+
+The following is an example of a correctly formatted git commit message
+for this repository. Most of this information came from this blog post
+[1], so I would like to thank the author.
+
+### cut here ###
+Capitalized, short (50 chars or less) summary
+
+More detailed explanatory text, if necessary. Wrap it to about 72
+characters or so. In some contexts, the first line is treated as the
+subject of an email and the rest of the text as the body. The blank
+line separating the summary from the body is critical (unless you omit
+the body entirely); tools like rebase can get confused if you run the
+two together.
+
+Write your commit message in the imperative: "Fix bug" and not "Fixed
+bug." This convention matches up with commit messages generated by
+commands like git merge and git revert.
+
+Further paragraphs come after blank lines.
+
+- Bullet points are okay, too
+
+- Typically a hyphen or asterisk is used for the bullet, preceded by a
+ single space, with blank lines in between, but conventions vary here
+
+- Use a hanging indent
+
+Reported-by: User Name <email>
+X-[Distro]-Bug: BugID
+X-[Distro]-Bug-URL: URL for the bug (on the distribution's web site typically)
+### cut here ###
+
+If you did not write the code and the patch does not include authorship
+information in a format git can use, please use the --author option of the
+git commit command to make the authorship correct.
+
+The Reported-by tag is required if the person who reported the bug is
+different from the author and committer.
+
+ The X-[Distro]-Bug/Bug-URL tags are required if this commit is related
+ to a bug reported to us by a specific distribution of linux or a
+ *BSD. Also, [Distro] should be replaced with the name of the
+ distribution, e.g. X-Gentoo-Bug.
+
+[1] http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
+
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2013-08-24 1:04 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2013-08-24 1:04 UTC (permalink / raw
To: gentoo-commits
commit: 1b5bf617265b2ee4f2103bdd8a1fc2239e5dc39f
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 00:52:18 2013 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 01:03:58 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=1b5bf617
CREDITS: give credit where due
Do some software archeology and try to credit most of the people who
have code in netifrc.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
---
CREDITS | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 80 insertions(+)
diff --git a/CREDITS b/CREDITS
new file mode 100644
index 0000000..9f62f27
--- /dev/null
+++ b/CREDITS
@@ -0,0 +1,80 @@
+What follows is a listing of everybody known to have contributed to this
+networking stack, since the first CVS Changelog entry on 02 September 2001. If
+you contributed before that point, we've love to hear from you.
+
+If you need an older per-commit history, please see the OpenRC [1] and
+rc-scripts [2] and Baselayout [3] history.
+
+netifrc Git era [0] 2013/03/18-:
+--------------------------------
+William Hubbs <w.d.hubbs@gmail.com>
+Robin H. Johnson <robbat2@orbis-terrarum.net>
+
+OpenRC Git era [1] 2007/04/05-2013/03/18:
+-----------------------------------------
+Alexander Tsoy <alexander@tsoy.me>
+Alon Bar-Lev <alon.barlev@gmail.com>
+Anthony G. Basile <basile@opensource.dyc.edu>
+Björn Baumbach <bb@sernet.de>
+Christian <christian@ch-sc.de>
+Christian Ruppert <idl0r@gentoo.org>
+Christian Wetzig <gentoo@wetzig.de>
+Daniel Mierswa <impulze@impulze.org>
+Doug Goldstein <cardoe@cardoe.com>
+Gilles Oivier <g.olivier@wanadoo.fr>
+Jory A. Pratt <anarchy@gentoo.org>
+Kfir Lavi <lavi.kfir@gmail.com>
+Lorand Kelemen <lorand.kelemen@indgroup.eu>
+Marc Joliet <marcec@gmx.de>
+Marien Zwart <marienz@gentoo.org>
+Mike Frysinger <vapier@gentoo.org>
+Nao Nakashima <nao.nakashima@gmail.com>
+Robin H. Johnson <robbat2@gentoo.org>, <robbat2@orbis-terrarum.net>
+Roy Marples <roy@marples.name>
+Salah Coronya <salah.coronya@gmail.com>
+Seth Robertson <in-gentoo@baka.org>
+Stefan Knoblich <s.knoblich@axsentis.de>
+Stef Simoens <stef.simoens@scarlet.be>
+Trevor Summers Smith <trevorsummerssmith@gmail.com>
+William Hubbs <w.d.hubbs@gmail.com>, <williamh@gentoo.org>
+Yun Zheng Hu <hu@fox-it.com>
+
+baselayout SVN era [2] 2005/06/05-2007/04/05:
+---------------------------------------------
+(TODO:
+- this era had a conversion to the BSD-2 license
+- credits for bugs are very lacking in this era)
+Martin Schlemmer <azarah@gentoo.org>
+Mike Frysinger <vapier@gentoo.org>
+Roy Marples <uberlord@gentoo.org>
+
+rc-scripts CVS era [3], 2001/09-2005/06/05:
+-------------------------------------------
+Andy Dustman <andy-gentoo.54e552@dustman.net>
+Aron Griffis <agriffis@gentoo.org>
+Asbjorn Sannes <ace@sannes.org>
+C. Brewer <killian@gentoo.org>
+Daniel Robbins <drobbins@gentoo.org>
+Donny Davies <woodchip@gentoo.org>
+Jason Rhinelander <jason-gentoo@gossamer-threads.com>
+jochen <jochen.eisinger@gmx.de>
+Jordan Ritter <jpr5+gentoo@darkridge.com>
+Marius Mauch <genone@genone.de>, <genone@gentoo.org>
+Martin Schlemmer <azarah@gentoo.org>
+Mike Frysinger <vapier@gentoo.org>
+<naanyaar2000@yahoo.com>
+nth <y.lesaint@free.fr>
+Rachel Holmes <rach@gmx.net>
+Robin H. Johnson <robbat2@gentoo.org>, <robbat2@orbis-terrarum.net>
+Roy Marples <uberlord@gentoo.org>
+Wout Mertens <wmertens@gentoo.org>
+YAMAKURA Makoto <makoto@dsb.club.ne.jp>
+
+0. http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=summary
+
+1. http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=summary
+ Commit 838c9efb36b3b058c5a5b9d0e8c6d4d4789a44b9 removed net/.
+
+2. http://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/
+
+3. http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-src/rc-scripts/
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2013-08-24 1:04 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2013-08-24 1:04 UTC (permalink / raw
To: gentoo-commits
commit: 3a4e44211027f07ebe4d9cb7b97656651d5c02ca
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 00:39:34 2013 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 00:51:16 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=3a4e4421
Bring in relevant parts of FEATURE-REMOVAL-SCHEDULE.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
---
FEATURE-REMOVAL-SCHEDULE | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/FEATURE-REMOVAL-SCHEDULE b/FEATURE-REMOVAL-SCHEDULE
new file mode 100644
index 0000000..e32264e
--- /dev/null
+++ b/FEATURE-REMOVAL-SCHEDULE
@@ -0,0 +1,26 @@
+The following is a list of files and features that are going to be removed in
+the source tree. Every entry should contain what exactly is going away, why it
+is happening, and who is going to be doing the work. When the feature is
+removed, it should also be removed from this file.
+
+---------------------------
+
+What: oldnet ADSL rp-pppoe mode
+
+When: undecided
+
+Why: Replaced by the oldnet PPP module
+
+Who: Robin H. Johnson <robbat2@gentoo.org>
+
+---------------------------
+
+What: oldnet /etc/conf.d/wireless
+
+When: undecided
+
+Why: All configuration moved to /etc/conf.d/net
+
+Who: Robin H. Johnson <robbat2@gentoo.org>
+
+---------------------------
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2013-08-24 1:04 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2013-08-24 1:04 UTC (permalink / raw
To: gentoo-commits
commit: f0730199d43cd02e1b0a4b79707799bd377e1ae3
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 01:04:28 2013 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 01:04:28 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=f0730199
Other files to have.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
---
README | 19 +++++++++++++++++++
TODO | 14 ++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/README b/README
new file mode 100644
index 0000000..e7d8a94
--- /dev/null
+++ b/README
@@ -0,0 +1,19 @@
+netifrc README
+
+You should probably go and read the OpenRC README.
+
+netifrc is what was previously called 'oldnet' in OpenRC, and was the only
+networking system in Baselayout 1.x. This system has been around a very long
+time, at least as far back as September 2001 (that was the rc-scripts-1.1.5
+release).
+
+If you're interested in who contributed to this, please see the extensive
+CREDITS file.
+
+Reporting Bugs
+--------------
+Since Gentoo Linux is hosting OpenRC development, Bugs should go to
+the Gentoo Bugzilla:
+ http://bugs.gentoo.org/
+They should be filed under the "Gentoo Hosted Projects" product and
+the "netifrc" component.
diff --git a/TODO b/TODO
new file mode 100644
index 0000000..e19f27a
--- /dev/null
+++ b/TODO
@@ -0,0 +1,14 @@
+- Review setting of bridge configuration on dynamic interface add
+- _ifindex is not a reliable means of calculating metrics:
+ _ifindex is used for calculating metrics for new devices but has a major
+ problem: Since it's only the nth entry in /proc/net/dev
+ And devices may be removed from that file, and reordered, you won't always
+ get the same result.
+ If you do:
+ - add eth0 - _ifindex (eth0=0)
+ - add vlan1 - _ifindex (eth0=0,vlan1=1)
+ - add vlan2 - _ifindex (eth0=0,vlan1=1,vlan2=2)
+ - rem vlan1 - _ifindex (eth0=0,vlan2=1)
+ - add vlan3 - _ifindex (eth0=0,vlan2=1,vlan3=2)
+ Now your routing table has entries for both vlan2 and vlan3 with a metric of 2.
+
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2013-08-24 1:19 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2013-08-24 1:19 UTC (permalink / raw
To: gentoo-commits
commit: 792b60b6296212843a5257ca8619e527b212f8e2
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 01:17:32 2013 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 01:17:32 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=792b60b6
Merge branch 'master' into bug446606
CREDITS | 80 +++++++++++++++++++++++++++++++++++++++++++
FEATURE-REMOVAL-SCHEDULE | 26 ++++++++++++++
README | 19 +++++++++++
STYLE | 89 ++++++++++++++++++++++++++++++++++++++++++++++++
TODO | 14 ++++++++
net/vlan.sh | 16 ++++-----
6 files changed, 236 insertions(+), 8 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2013-08-24 1:19 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2013-08-24 1:19 UTC (permalink / raw
To: gentoo-commits
commit: 6486f5a2fd87047fd4309ea91af583a26c7c6e0f
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 01:18:58 2013 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 01:18:58 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=6486f5a2
Merge remote-tracking branch 'origin/bug481970'
doc/net.example.BSD.in | 9 +++++++++
doc/net.example.Linux.in | 9 +++++++++
net/iproute2.sh | 6 +++---
3 files changed, 21 insertions(+), 3 deletions(-)
diff --cc net/iproute2.sh
index 7aeeb99,d8e8b8b..58b7bc4
--- a/net/iproute2.sh
+++ b/net/iproute2.sh
@@@ -332,12 -292,39 +330,14 @@@ _iproute2_ipv6_tentative(
iproute2_post_start()
{
- local n=5
+ local n=
+ eval n=\$dad_timeout_${IFVAR}
+ [ -z "$n" ] && n=${dad_timeout:-5}
- # Kernel may not have IP built in
- if [ -e /proc/net/route ]; then
- local rules="$(_get_array "rules_${IFVAR}")"
- if [ -n "${rules}" ]; then
- if ! ip -4 rule list | grep -q "^"; then
- eerror "IP Policy Routing (CONFIG_IP_MULTIPLE_TABLES) needed for ip rule"
- else
- service_set_value "ip_rule" "${rules}"
- einfo "Adding IPv4 RPDB rules"
- _ip_rule_runner -4 add "${rules}"
- fi
- fi
- ip -4 route flush table cache dev "${IFACE}"
- fi
-
- # Kernel may not have IPv6 built in
- if [ -e /proc/net/ipv6_route ]; then
- local rules="$(_get_array "rules6_${IFVAR}")"
- if [ -n "${rules}" ]; then
- if ! ip -6 rule list | grep -q "^"; then
- eerror "IPv6 Policy Routing (CONFIG_IPV6_MULTIPLE_TABLES) needed for ip rule"
- else
- service_set_value "ip6_rule" "${rules}"
- einfo "Adding IPv6 RPDB rules"
- _ip_rule_runner -6 add "${rules}"
- fi
- fi
- ip -6 route flush table cache dev "${IFACE}"
- fi
+ local policyroute_order=
+ eval policyroute_order=\$policy_rules_before_routes_${IFVAR}
+ [ -z "$policyroute_order" ] && policyroute_order=${policy_rules_before_routes:-no}
+ yesno "$policyroute_order" || _iproute2_policy_routing
if _iproute2_ipv6_tentative; then
ebegin "Waiting for IPv6 addresses"
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2013-08-24 1:19 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2013-08-24 1:19 UTC (permalink / raw
To: gentoo-commits
commit: c28f6cb9c27eebccde58fe3d9114cef50c3b5bf1
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 01:18:35 2013 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 01:18:35 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=c28f6cb9
Merge remote-tracking branch 'origin/bug481080'
doc/README | 16 ++++++++++++----
1 file changed, 12 insertions(+), 4 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2013-08-25 8:17 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2013-08-25 8:17 UTC (permalink / raw
To: gentoo-commits
commit: f7dc990bfd370ce11832d356e90b1eee0391938b
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 25 08:17:01 2013 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Aug 25 08:17:01 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=f7dc990b
Merge branch 'bug482364'
* bug482364:
Clarify the "no configuration specified" message
init.d/net.lo.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2013-08-28 17:01 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2013-08-28 17:01 UTC (permalink / raw
To: gentoo-commits
commit: 7d3d30ae67a195ec00d1488c57da6f4e9caa2a72
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 28 17:01:33 2013 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Aug 28 17:01:33 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=7d3d30ae
Update credits.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
---
CREDITS | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/CREDITS b/CREDITS
index 9f62f27..2967225 100644
--- a/CREDITS
+++ b/CREDITS
@@ -7,8 +7,11 @@ rc-scripts [2] and Baselayout [3] history.
netifrc Git era [0] 2013/03/18-:
--------------------------------
+Alexander Tsoy <alexander@tsoy.me>
+Andreas Kinzler <akinzler@gmx.de>
+Ian Stakenvicius <axs@gentoo.org>
+Robin H. Johnson <robbat2@gentoo.org>, <robbat2@orbis-terrarum.net>
William Hubbs <w.d.hubbs@gmail.com>
-Robin H. Johnson <robbat2@orbis-terrarum.net>
OpenRC Git era [1] 2007/04/05-2013/03/18:
-----------------------------------------
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2014-03-04 18:45 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2014-03-04 18:45 UTC (permalink / raw
To: gentoo-commits
commit: cb257cea980b74aa7dff4b7bfcfb66b82565bb01
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 4 18:45:27 2014 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Mar 4 18:45:32 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=cb257cea
Bump for new version.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
---
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 63084a8..ab9434b 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.1
+VERSION= 0.2
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2014-03-05 18:40 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2014-03-05 18:40 UTC (permalink / raw
To: gentoo-commits
commit: 22b3841561b0b686919be466f1caeae6833e30ba
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 5 18:39:38 2014 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Mar 5 18:39:38 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=22b38415
Bump to 0.2.1, only changes are buildsystem.
---
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index ab9434b..c272a7e 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.2
+VERSION= 0.2.1
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2014-03-07 17:37 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2014-03-07 17:37 UTC (permalink / raw
To: gentoo-commits
commit: 47d23f5abdac4a2bd95bcbbaadacf994773cbf51
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 7 17:36:32 2014 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Fri Mar 7 17:36:32 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=47d23f5a
Bump.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
---
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index c272a7e..03db2f9 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.2.1
+VERSION= 0.2.2
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2014-04-15 18:20 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2014-04-15 18:20 UTC (permalink / raw
To: gentoo-commits
commit: 6d0c65ec78a48da891129f4b6ec1caf7d2778201
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 15 18:19:20 2014 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Apr 15 18:19:20 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=6d0c65ec
Bump.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
---
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 03db2f9..54cf491 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.2.2
+VERSION= 0.2.3
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2014-07-17 17:56 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2014-07-17 17:56 UTC (permalink / raw
To: gentoo-commits
commit: 707ff800d3deb53f1fcda7555d7252fd46062edb
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 16 19:18:59 2014 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Jul 16 19:18:59 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=707ff800
Bump version.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
---
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 54cf491..424958f 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.2.3
+VERSION= 0.2.4
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2014-12-11 18:13 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2014-12-11 18:13 UTC (permalink / raw
To: gentoo-commits
commit: cd1f1725c91d71a96ef785c9260d419d04e14fd8
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Thu Dec 11 18:12:35 2014 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Thu Dec 11 18:12:35 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=cd1f1725
Merge pull request #2 from chutz/bonding_ifconfig
bonding: use iproute2 rather than ifconfig if it is installed
net/bonding.sh | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-01-09 17:17 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2015-01-09 17:17 UTC (permalink / raw
To: gentoo-commits
commit: 28aaac827658967ead28fa6e99e261b68c5e4d88
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Fri Jan 9 17:15:43 2015 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Fri Jan 9 17:15:43 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=28aaac82
Merge pull request #3 from rabisg/cleanup
netifrc systemd support
This marks the culmination of the GSoC 2014 netifrc project: systemd support.
I'd like to extend a huge thank you to my GSoC student on this project: Rabi Shanker (rabisg)
For the idea, proposal, and his work notes, please see:
https://wiki.gentoo.org/wiki/Google_Summer_of_Code/2014/Ideas/netifrc_on_systemd
https://wiki.gentoo.org/wiki/User:Rabisg/GSOC_2014_Proposal
https://wiki.gentoo.org/wiki/User:Rabisg/GSOC_14
There is a little bit of documentation to come, and along with ebuild updates.
This series does also introduce a test suite to netifrc, on which there is much work to come.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
Reviewed-by: Michal Gorny <mgorny <AT> gentoo.org> (systemd-specific pieces)
.gitignore | 2 +
init.d/net.lo.in | 18 +++-
mk/scripts.mk | 2 +-
sh/Makefile | 8 +-
sh/functions.sh | 126 +++++++++++++++++++++++++
sh/systemd-wrapper.sh.in | 91 ++++++++++++++++++
systemd/net_at.service.in | 10 ++
test/conf.d/bond | 9 ++
test/conf.d/bridge | 9 ++
test/conf.d/eth_dhcp | 1 +
test/conf.d/eth_static | 2 +
test/conf.d/vlan | 3 +
test/config.ini | 28 ++++++
test/requirements.txt | 2 +
test/specs/bond.yaml | 23 +++++
test/specs/bridge.yaml | 11 +++
test/specs/eth_dhcp.yaml | 14 +++
test/specs/eth_static.yaml | 14 +++
test/specs/vlan.yaml | 11 +++
test/src/file.py | 21 +++++
test/src/netifrc.py | 227 +++++++++++++++++++++++++++++++++++++++++++++
21 files changed, 624 insertions(+), 8 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-01-09 17:19 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2015-01-09 17:19 UTC (permalink / raw
To: gentoo-commits
commit: 986029121ae49984c98a76efa83d4e48d5c9f650
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 9 17:18:14 2015 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Fri Jan 9 17:18:14 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=98602912
Bump version for the first systemd-supporting release.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
---
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 424958f..84a2ec4 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.2.4
+VERSION= 0.3.0
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-01-16 18:16 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2015-01-16 18:16 UTC (permalink / raw
To: gentoo-commits
commit: e4bc55960f9eb64fdf4998370d516fbf4f856635
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Fri Jan 16 18:11:18 2015 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Fri Jan 16 18:11:18 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=e4bc5596
Merge pull request #7 from dwfreed/fix-functions-sh
functions.sh: fix check for OpenRC
sh/functions.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-01-22 23:01 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2015-01-22 23:01 UTC (permalink / raw
To: gentoo-commits
commit: ea4b01b115ba3501073c326099e9c6f89de4c3af
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Mon Jan 19 08:54:39 2015 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Jan 19 08:54:39 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=ea4b01b1
Merge pull request #6 from floppym/fixes1
Miscellaneous fixes
init.d/net.lo.in | 2 +-
net/dhcpcd.sh | 5 +----
sh/functions.sh | 4 ++--
sh/systemd-wrapper.sh.in | 9 ++++-----
systemd/net_at.service.in | 3 ++-
5 files changed, 10 insertions(+), 13 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-01-22 23:01 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2015-01-22 23:01 UTC (permalink / raw
To: gentoo-commits
commit: 95801f1cc41adc2b95ac3743446d21cf83b75d0b
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Mon Jan 19 08:54:05 2015 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Jan 19 08:54:05 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=95801f1c
Merge pull request #5 from dwfreed/master
firewalld: remove use of OpenRC need function
net/firewalld.sh | 1 -
1 file changed, 1 deletion(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-01-22 23:01 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2015-01-22 23:01 UTC (permalink / raw
To: gentoo-commits
commit: 3a5b26fbc472d74073f867e79e7e8f88e2f8c5b0
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Mon Jan 19 08:56:05 2015 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Jan 19 08:56:05 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=3a5b26fb
Merge pull request #8 from casta/master
fix https://bugs.gentoo.org/show_bug.cgi?id=536758
sh/functions.sh | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-01-22 23:10 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2015-01-22 23:10 UTC (permalink / raw
To: gentoo-commits
commit: 0c96bf1eb6f13f7d0ca6d362e6e5593b23ee3341
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 22 23:07:48 2015 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Thu Jan 22 23:07:48 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=0c96bf1e
Bump for 0.3.1 release.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
---
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 84a2ec4..63bce04 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.3.0
+VERSION= 0.3.1
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-05-25 10:01 Mike Frysinger
0 siblings, 0 replies; 59+ messages in thread
From: Mike Frysinger @ 2015-05-25 10:01 UTC (permalink / raw
To: gentoo-commits
commit: c3935900c95a38629394a9f82dd144677196ff22
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Sat Feb 7 22:04:31 2015 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Sat Feb 7 22:04:31 2015 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=c3935900
Merge pull request #9 from chutz/lo-dont-need-localmount
lo should not have a "need" dependency on localmount
init.d/net.lo.in | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-05-25 10:04 Mike Frysinger
0 siblings, 0 replies; 59+ messages in thread
From: Mike Frysinger @ 2015-05-25 10:04 UTC (permalink / raw
To: gentoo-commits
commit: 7b5ad900adc3669206a51a8a15b3eee5569f026b
Author: Mike Frysinger <vapier <AT> gmail <DOT> com>
AuthorDate: Thu Feb 26 19:41:32 2015 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Thu Feb 26 19:41:32 2015 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=7b5ad900
Merge pull request #10 from vapier/master
do not use `echo -n`
net/ifconfig.sh.Linux.in | 2 +-
net/udhcpc.sh.Linux.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-05-25 10:04 Mike Frysinger
0 siblings, 0 replies; 59+ messages in thread
From: Mike Frysinger @ 2015-05-25 10:04 UTC (permalink / raw
To: gentoo-commits
commit: c150fab20c16adc3d51ab8555a13c240f844c2e3
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Wed May 13 17:55:03 2015 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed May 13 17:55:03 2015 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=c150fab2
Merge pull request #13 from dwfreed/iproute2-bridge
bridge: use/prefer iproute2/sysfs where possible
net/bridge.sh | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++++++----
1 file changed, 83 insertions(+), 6 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-05-25 10:04 Mike Frysinger
0 siblings, 0 replies; 59+ messages in thread
From: Mike Frysinger @ 2015-05-25 10:04 UTC (permalink / raw
To: gentoo-commits
commit: de5c906e79bee2a541d9e6fd83825644206da130
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Wed May 13 17:56:01 2015 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed May 13 17:56:01 2015 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=de5c906e
Merge pull request #12 from Whissi/some-netifrc-fixes
Multiple fixes for open Gentoo bugs
init.d/net.lo.in | 11 +++++------
net/iproute2.sh | 30 ++++++++++++++++++++----------
2 files changed, 25 insertions(+), 16 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-11-08 14:30 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2015-11-08 14:30 UTC (permalink / raw
To: gentoo-commits
commit: 570d7ccac8617feb65539e30fcc074743902d058
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Sun Nov 8 00:18:10 2015 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Nov 8 00:18:10 2015 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=570d7cca
Merge pull request #15 from alonbl/bridge
net: bridge: support iproute2 without emulation
doc/net.example.Linux.in | 8 ++-
net/bridge.sh | 181 ++++++++++++++++++++---------------------------
2 files changed, 80 insertions(+), 109 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-11-08 14:30 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2015-11-08 14:30 UTC (permalink / raw
To: gentoo-commits
commit: f9f59bf2e3b6b5eb50dedec4c3372595dfd03658
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 8 14:10:10 2015 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Nov 8 14:10:10 2015 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=f9f59bf2
TODO: Document more interface types we need to support.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
TODO | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/TODO b/TODO
index e19f27a..f8d8902 100644
--- a/TODO
+++ b/TODO
@@ -11,4 +11,23 @@
- rem vlan1 - _ifindex (eth0=0,vlan2=1)
- add vlan3 - _ifindex (eth0=0,vlan2=1,vlan3=2)
Now your routing table has entries for both vlan2 and vlan3 with a metric of 2.
+- Support many more device types easily:
+ - Dummy: ip link add dev dummy1 type dummy
+ - HSR: ip link add name hsr0 type hsr slave1 dummy3 slave2 dummy4
+ - VXLAN: ip link add link dummy2 name vxlan199 type vxlan id 199 dev dummy2 group 224.2.0.199 dstport 4789
+ - IPVLAN: ...
+ - IFB: ip link add ifb0 type ifb
+ - CAN:
+ - VCAN:
+ - ip6tnl:
+ - gre,gretap:
+ - ip6gre,ip6gretap:
+ - vti:
+ - nlmon: ip link add nlmon0 type nlmon
+ - ipvlan: ...
+ - lowpan:
+ - macvtap:
+ - ipoib: ..
+ - geneve: ip link add gen0 type geneve id 0 remote 192.168.53.53
+
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-11-08 14:33 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2015-11-08 14:33 UTC (permalink / raw
To: gentoo-commits
commit: 987d3676f04dc8d9b75d5ef11a4b1ed15c9b1f3e
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Sun Nov 8 14:32:26 2015 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Nov 8 14:32:26 2015 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=987d3676
Merge pull request #17 from alonbl/bridge
net: bridge: add warning when using sysfs variables without prefix
net/bridge.sh | 2 ++
1 file changed, 2 insertions(+)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2015-11-08 14:33 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2015-11-08 14:33 UTC (permalink / raw
To: gentoo-commits
commit: a88ce55b539410f5f7d8512a8f951213b53db5b1
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 8 14:32:36 2015 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Nov 8 14:32:36 2015 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=a88ce55b
Merge remote-tracking branch 'github/master'
net/bridge.sh | 2 ++
1 file changed, 2 insertions(+)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2016-07-05 18:13 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2016-07-05 18:13 UTC (permalink / raw
To: gentoo-commits
commit: a5f2188abdb4f98e374165658b0d2385d60a83ab
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 5 18:12:57 2016 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Jul 5 18:13:18 2016 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=a5f2188a
Merge PR#21 for OpenRC binary changes.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
init.d/net.lo.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2016-07-05 18:14 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2016-07-05 18:14 UTC (permalink / raw
To: gentoo-commits
commit: dfd2eedc3ebaae8f694a66ff4e5bb97c8fb63ee6
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 5 18:14:08 2016 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Jul 5 18:14:43 2016 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=dfd2eedc
GitHub PR#20: Add L2TPv3 tunnel/session support to iproute2 module
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
doc/net.example.Linux.in | 24 +++++++
net/l2tp.sh | 169 +++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 193 insertions(+)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2016-07-05 18:23 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2016-07-05 18:23 UTC (permalink / raw
To: gentoo-commits
commit: 18f2894dffed87de68ea99bcaf641af3c8d35c14
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 5 18:21:08 2016 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Jul 5 18:22:56 2016 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=18f2894d
Add license info per GitHub issue #11.
Bug: https://github.com/gentoo/netifrc/issues/11
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
LICENSE | 24 ++++++++++++++++++++++++
README | 5 ++++-
2 files changed, 28 insertions(+), 1 deletion(-)
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..ad3e643
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,24 @@
+Copyright (c) 2004-2016, Gentoo Foundation
+Copyright (c) 2007-2009, Roy Marples <roy@marples.name>
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
diff --git a/README b/README
index d5e1fbb..4accc0a 100644
--- a/README
+++ b/README
@@ -21,7 +21,10 @@ time, at least as far back as September 2001 (that was the rc-scripts-1.1.5
release).
If you're interested in who contributed to this, please see the extensive
-CREDITS file.
+CREDITS file, as well as checking the top of relevant files.
+
+Netifrc is presently licensed under the 2-clause BSD license, after a switch
+in early 2005.
Reporting Bugs
--------------
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2016-07-19 19:59 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2016-07-19 19:59 UTC (permalink / raw
To: gentoo-commits
commit: b4b446a4bda0f9b0947be8026cf26813b95ed9ba
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 14 19:40:50 2016 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Thu Jul 14 19:40:50 2016 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=b4b446a4
Makefile.inc: Bump version for new release.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 63bce04..55906a7 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.3.1
+VERSION= 0.4.0
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2016-10-24 20:51 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2016-10-24 20:51 UTC (permalink / raw
To: gentoo-commits
commit: cfe807849856f9929801d24e4f37c4540a507207
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 24 20:51:05 2016 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Oct 24 20:51:05 2016 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=cfe80784
Merge remote-tracking branch 'github/pull/23/head'
doc/net.example.Linux.in | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2016-10-24 23:16 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2016-10-24 23:16 UTC (permalink / raw
To: gentoo-commits
commit: a4b0df7acbe67c535fa0736ffd59a55f01249635
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 24 22:53:19 2016 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Oct 24 22:53:19 2016 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=a4b0df7a
Update TODO.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
TODO | 3 +++
1 file changed, 3 insertions(+)
diff --git a/TODO b/TODO
index 023bbb4..99f732b 100644
--- a/TODO
+++ b/TODO
@@ -27,5 +27,8 @@
- macvtap:
- ipoib: ..
- geneve: ip link add gen0 type geneve id 0 remote 192.168.53.53
+ - macsec:
+ - bridge_slave, bond_slave: (alter existing code)
+ - veth
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2016-10-24 23:16 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2016-10-24 23:16 UTC (permalink / raw
To: gentoo-commits
commit: ec018a89e9a44a2088c69fb4f04096465f25da2b
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 24 22:53:44 2016 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Oct 24 22:53:44 2016 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=ec018a89
Makefile.inc: prepare for next release.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 55906a7..becc3f5 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.4.0
+VERSION= 0.5.0
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2016-10-27 1:23 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2016-10-27 1:23 UTC (permalink / raw
To: gentoo-commits
commit: c1b5722fe2dd9aee540cc08b73e7ac59c2f22c4d
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 26 20:13:13 2016 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Oct 26 20:13:13 2016 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=c1b5722f
Bump to 0.5.1.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index becc3f5..b1d8352 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.5.0
+VERSION= 0.5.1
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2017-01-27 21:54 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2017-01-27 21:54 UTC (permalink / raw
To: gentoo-commits
commit: a8a13dbe2f1604455d0b30c3e876e60540e8b9fa
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Fri Jan 27 21:53:43 2017 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Fri Jan 27 21:53:43 2017 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=a8a13dbe
Merge pull request #25 from Pinkbyte/l2tp-detection-fix
Check for L2TP support in kernel before getting info about L2TP sessions from iproute2
net/l2tp.sh | 4 ++++
1 file changed, 4 insertions(+)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2017-06-09 23:55 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2017-06-09 23:55 UTC (permalink / raw
To: gentoo-commits
commit: 0cdda1e07d4cf2fa1f3700027168de3cb7c29a3f
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Fri Jun 9 23:54:39 2017 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Fri Jun 9 23:54:39 2017 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=0cdda1e0
Merge pull request #24 from Pinkbyte/iplink-support
Initial support for creating interfaces through "ip link" from iproute2
doc/net.example.Linux.in | 6 ++++++
net/iproute2.sh | 23 +++++++++++++++++++++++
2 files changed, 29 insertions(+)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2017-06-14 20:24 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2017-06-14 20:24 UTC (permalink / raw
To: gentoo-commits
commit: 6f5d456e3191dce6e7a86d7970b2ed7503854784
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 14 20:24:00 2017 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Jun 14 20:24:00 2017 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=6f5d456e
Merge remote-tracking branch 'origin/iw'
doc/net.example.Linux.in | 10 +-
net/Makefile | 3 +-
net/{iwconfig.sh.Linux.in => iw.sh} | 354 ++++++++++++++++--------------------
3 files changed, 169 insertions(+), 198 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2017-10-21 20:56 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2017-10-21 20:56 UTC (permalink / raw
To: gentoo-commits
commit: db06d25f32a8cc4033d307ec0e6ceb856355f2d3
Author: Robin H. Johnson <robbat2 <AT> orbis-terrarum <DOT> net>
AuthorDate: Sat Oct 21 20:55:40 2017 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Oct 21 20:55:40 2017 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=db06d25f
Merge pull request #26 from stkchp/master
net/iproute2: delete IPv6 tunnel.
net/iproute2.sh | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2017-11-27 20:27 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2017-11-27 20:27 UTC (permalink / raw
To: gentoo-commits
commit: 52eaae89ebf4357168a21c6b2577cac76725e52e
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 27 20:27:08 2017 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Nov 27 20:27:08 2017 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=52eaae89
Bump for 0.6.0.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index b1d8352..aa732bb 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.5.1
+VERSION= 0.6.0
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2018-07-10 21:42 Jason Donenfeld
0 siblings, 0 replies; 59+ messages in thread
From: Jason Donenfeld @ 2018-07-10 21:42 UTC (permalink / raw
To: gentoo-commits
commit: e42b4b9c0ceeb5d3dde6096b7179d5da9c3e434e
Author: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 10 21:35:53 2018 +0000
Commit: Jason Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Tue Jul 10 21:37:33 2018 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=e42b4b9c
Bump for 0.6.1.
Signed-off-by: Jason A. Donenfeld <zx2c4 <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index aa732bb..b856105 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.6.0
+VERSION= 0.6.1
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2019-04-21 4:12 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2019-04-21 4:12 UTC (permalink / raw
To: gentoo-commits
commit: 61964753f8cf1fca254254623c469ce38cafbeee
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 21 04:09:08 2019 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Apr 21 04:11:28 2019 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=61964753
Veth support added
Merge PR#31
Fixes: https://github.com/gentoo/netifrc/pull/31
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2019-04-21 4:17 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2019-04-21 4:17 UTC (permalink / raw
To: gentoo-commits
commit: 9fa2e01517eb14f174be7a44780a8d4cb4afe401
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 21 04:16:38 2019 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Apr 21 04:16:38 2019 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=9fa2e015
sh/functions.sh: Avoid bashisms in shell_var()
Merge PR#30
Fixes: https://github.com/gentoo/netifrc/pull/30
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
sh/functions.sh | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2019-04-21 4:18 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2019-04-21 4:18 UTC (permalink / raw
To: gentoo-commits
commit: 89ca5575bc9d8380997b5d3ec2e3f918a9790012
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 21 04:18:29 2019 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Apr 21 04:18:29 2019 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=89ca5575
systemd should not fail if a service is backgrounding
Merge PR#29
Fixes: https://github.com/gentoo/netifrc/pull/29
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
systemd/net_at.service.in | 1 +
1 file changed, 1 insertion(+)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2020-01-04 8:09 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2020-01-04 8:09 UTC (permalink / raw
To: gentoo-commits
commit: ae59d8a6d448f96a53105dadccf8f0c9e01e91f3
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 4 08:07:42 2020 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Jan 4 08:07:42 2020 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=ae59d8a6
Makefile: bump
This was missed for 0.7.0 tag, so introduce as 0.7.1 tag.
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index b856105..37087b4 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.6.1
+VERSION= 0.7.1
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2021-01-05 18:19 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2021-01-05 18:19 UTC (permalink / raw
To: gentoo-commits
commit: fe392e55295c1b459df1a70b0521c887d6567344
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 5 18:18:41 2021 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Jan 5 18:18:41 2021 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=fe392e55
Makefile.inc: tag new release
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 37087b4..1cc2b49 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.7.1
+VERSION= 0.7.2
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2021-02-10 13:08 Lars Wendler
0 siblings, 0 replies; 59+ messages in thread
From: Lars Wendler @ 2021-02-10 13:08 UTC (permalink / raw
To: gentoo-commits
commit: 3067e568abbf803e8f47a6e16bc39412a4539b1c
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 13:05:37 2021 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 13:05:37 2021 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=3067e568
Makefile.inc: tag a new release
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 1cc2b49..4c65f8c 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.7.2
+VERSION= 0.7.3
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2021-04-05 20:00 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2021-04-05 20:00 UTC (permalink / raw
To: gentoo-commits
commit: 4abb45240570e754dc17106302b714b4d7de3da5
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 5 19:59:55 2021 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Apr 5 19:59:55 2021 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=4abb4524
Merge remote-tracking branch 'github/pr/36'
Closes: https://github.com/gentoo/netifrc/pull/36
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
doc/net.example.Linux.in | 14 ++++++++++----
net/ethtool.sh | 4 ++--
2 files changed, 12 insertions(+), 6 deletions(-)
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2021-04-05 20:02 Robin H. Johnson
0 siblings, 0 replies; 59+ messages in thread
From: Robin H. Johnson @ 2021-04-05 20:02 UTC (permalink / raw
To: gentoo-commits
commit: e860f40ffd07a41e47a6b49d9400ad20e6a8b7ca
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 5 20:01:29 2021 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Apr 5 20:01:29 2021 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=e860f40f
Merge remote-tracking branch 'github/pr/32'
Closes: https://github.com/gentoo/netifrc/pull/32
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
^ permalink raw reply [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2023-04-17 4:37 Sam James
0 siblings, 0 replies; 59+ messages in thread
From: Sam James @ 2023-04-17 4:37 UTC (permalink / raw
To: gentoo-commits
commit: f24053e64e273fb42bfab0f93b2549015ac444ea
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 17 04:36:38 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 17 04:37:32 2023 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=f24053e6
Makefile.inc: crank to 0.7.4
Signed-off-by: Sam James <sam <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 4c65f8c..fe1eb33 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.7.3
+VERSION= 0.7.4
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2023-05-29 0:17 Mike Gilbert
0 siblings, 0 replies; 59+ messages in thread
From: Mike Gilbert @ 2023-05-29 0:17 UTC (permalink / raw
To: gentoo-commits
commit: 52416b2f17e1e1700e4a41b43fd887f7e2cf317e
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 00:16:12 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon May 29 00:16:12 2023 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=52416b2f
Makefile.inc: version 0.7.5
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index fe1eb33..b1aba0f 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.7.4
+VERSION= 0.7.5
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2023-09-10 15:18 Sam James
0 siblings, 0 replies; 59+ messages in thread
From: Sam James @ 2023-09-10 15:18 UTC (permalink / raw
To: gentoo-commits
commit: e5776f83258f38bb01312a909cdf57d0bdb8a4d2
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 10 15:17:49 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 10 15:17:49 2023 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=e5776f83
Makefile.inc: prepare for 0.7.6
Signed-off-by: Sam James <sam <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index b1aba0f..49ba250 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.7.5
+VERSION= 0.7.6
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2023-10-20 0:20 Sam James
0 siblings, 0 replies; 59+ messages in thread
From: Sam James @ 2023-10-20 0:20 UTC (permalink / raw
To: gentoo-commits
commit: ed541fbe97fa22066030faaba051fe8d8a4b168a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 20 00:20:20 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 20 00:20:20 2023 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=ed541fbe
Makefile.inc: prepare for 0.7.7
Signed-off-by: Sam James <sam <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 49ba250..811b0d4 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.7.6
+VERSION= 0.7.7
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2024-09-23 11:58 Sam James
0 siblings, 0 replies; 59+ messages in thread
From: Sam James @ 2024-09-23 11:58 UTC (permalink / raw
To: gentoo-commits
commit: 558cf960458481c49804dec4bf5ba59916e44a04
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 23 11:57:52 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 23 11:57:52 2024 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=558cf960
Makefile.inc: prepare for netifrc-0.7.10
Signed-off-by: Sam James <sam <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 811b0d4..91e2cf4 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.7.7
+VERSION= 0.7.10
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2024-09-23 12:02 Sam James
0 siblings, 0 replies; 59+ messages in thread
From: Sam James @ 2024-09-23 12:02 UTC (permalink / raw
To: gentoo-commits
commit: 60c87dda2333d003bf783d314366df3156b81d45
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 23 12:02:48 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 23 12:02:48 2024 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=60c87dda
Makefile.inc: prepare for netifrc-0.7.11
Signed-off-by: Sam James <sam <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 91e2cf4..30d4f38 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.7.10
+VERSION= 0.7.11
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
* [gentoo-commits] proj/netifrc:master commit in: /
@ 2024-09-29 0:28 Sam James
0 siblings, 0 replies; 59+ messages in thread
From: Sam James @ 2024-09-29 0:28 UTC (permalink / raw
To: gentoo-commits
commit: 1ec0a01651d35500676ea7525e06728ff98aa879
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 29 00:28:37 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 29 00:28:47 2024 +0000
URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=1ec0a016
Makefile.inc: prepare for netifrc-0.7.12
Signed-off-by: Sam James <sam <AT> gentoo.org>
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index 30d4f38..111936a 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
NAME= netifrc
-VERSION= 0.7.11
+VERSION= 0.7.12
PKG= ${NAME}-${VERSION}
^ permalink raw reply related [flat|nested] 59+ messages in thread
end of thread, other threads:[~2024-09-29 0:29 UTC | newest]
Thread overview: 59+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-10 15:18 [gentoo-commits] proj/netifrc:master commit in: / Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-09-29 0:28 Sam James
2024-09-23 12:02 Sam James
2024-09-23 11:58 Sam James
2023-10-20 0:20 Sam James
2023-05-29 0:17 Mike Gilbert
2023-04-17 4:37 Sam James
2021-04-05 20:02 Robin H. Johnson
2021-04-05 20:00 Robin H. Johnson
2021-02-10 13:08 Lars Wendler
2021-01-05 18:19 Robin H. Johnson
2020-01-04 8:09 Robin H. Johnson
2019-04-21 4:18 Robin H. Johnson
2019-04-21 4:17 Robin H. Johnson
2019-04-21 4:12 Robin H. Johnson
2018-07-10 21:42 Jason Donenfeld
2017-11-27 20:27 Robin H. Johnson
2017-10-21 20:56 Robin H. Johnson
2017-06-14 20:24 Robin H. Johnson
2017-06-09 23:55 Robin H. Johnson
2017-01-27 21:54 Robin H. Johnson
2016-10-27 1:23 Robin H. Johnson
2016-10-24 23:16 Robin H. Johnson
2016-10-24 23:16 Robin H. Johnson
2016-10-24 20:51 Robin H. Johnson
2016-07-19 19:59 Robin H. Johnson
2016-07-05 18:23 Robin H. Johnson
2016-07-05 18:14 Robin H. Johnson
2016-07-05 18:13 Robin H. Johnson
2015-11-08 14:33 Robin H. Johnson
2015-11-08 14:33 Robin H. Johnson
2015-11-08 14:30 Robin H. Johnson
2015-11-08 14:30 Robin H. Johnson
2015-05-25 10:04 Mike Frysinger
2015-05-25 10:04 Mike Frysinger
2015-05-25 10:04 Mike Frysinger
2015-05-25 10:01 Mike Frysinger
2015-01-22 23:10 Robin H. Johnson
2015-01-22 23:01 Robin H. Johnson
2015-01-22 23:01 Robin H. Johnson
2015-01-22 23:01 Robin H. Johnson
2015-01-16 18:16 Robin H. Johnson
2015-01-09 17:19 Robin H. Johnson
2015-01-09 17:17 Robin H. Johnson
2014-12-11 18:13 Robin H. Johnson
2014-07-17 17:56 Robin H. Johnson
2014-04-15 18:20 Robin H. Johnson
2014-03-07 17:37 Robin H. Johnson
2014-03-05 18:40 Robin H. Johnson
2014-03-04 18:45 Robin H. Johnson
2013-08-28 17:01 Robin H. Johnson
2013-08-25 8:17 Robin H. Johnson
2013-08-24 1:19 Robin H. Johnson
2013-08-24 1:19 Robin H. Johnson
2013-08-24 1:19 Robin H. Johnson
2013-08-24 1:04 Robin H. Johnson
2013-08-24 1:04 Robin H. Johnson
2013-08-24 1:04 Robin H. Johnson
2013-08-24 1:04 Robin H. Johnson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox