Codebase list netcfg / debian/1.130
Imported Debian version 1.130 Christian Perrier authored 9 years ago Sophie Brun committed 9 years ago
6 changed file(s) with 26 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
00 NETCFG_VERSION := $(shell dpkg-parsechangelog | grep ^Version: |sed 's/Version: //')
1 NETCFG_BUILD_DATE := $(shell date '+%Y%m%d-%H%M')
21 DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
32 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
43
65 TARGETS ?= netcfg-static netcfg
76
87 LDOPTS = -ldebconfclient -ldebian-installer
9 CFLAGS = -W -Wall -Werror -DNDEBUG -DNETCFG_VERSION="\"$(NETCFG_VERSION)\"" -DNETCFG_BUILD_DATE="\"$(NETCFG_BUILD_DATE)\"" -I.
8 CFLAGS = -W -Wall -Werror -DNDEBUG -DNETCFG_VERSION="\"$(NETCFG_VERSION)\"" -I.
109 COMMON_OBJS = netcfg-common.o wireless.o write_interface.o ipv6.o
1110 NETCFG_O = netcfg.o dhcp.o static.o ethtool-lite.o wpa.o wpa_ctrl.o rdnssd.o autoconfig.o
1211 NETCFG_STATIC_O = netcfg-static.o static.o ethtool-lite.o
0 netcfg (1.130) unstable; urgency=medium
1
2 [ Colin Watson ]
3 * Don't build the compilation date and time into the binary. This made
4 the build unreproducible.
5
6 -- Christian Perrier <[email protected]> Sat, 14 Mar 2015 08:34:09 +0100
7
8 netcfg (1.129) unstable; urgency=medium
9
10 [ Colin Watson ]
11 * Pacify GCC 5 misdetecting link_waits as uninitialised (closes: #778023).
12
13 [ Updated translations ]
14 * Danish (da.po) by Joe Hansen
15
16 -- Christian Perrier <[email protected]> Sun, 08 Mar 2015 07:53:02 +0100
17
018 netcfg (1.127) unstable; urgency=medium
119
220 * Add support for /etc/network/interfaces.d/ by adding a "source"
55 # translation of debian-installer_packages_po_sublevel1_da.po to
66 # Danish messages for debian-installer.
77 # This file is distributed under the same license as debian-installer.
8 # Joe Hansen <[email protected]>, 2011, 2012.
8 # Joe Hansen <[email protected]>, 2011, 2012, 2013, 2014, 2015.
99 # Ask Hjorth Larsen <[email protected]>, 2010.
1010 # Mads Bille Lundby <[email protected], 2009.
1111 # Henrik Christian Grove <[email protected]>, 2008.
3838 "Project-Id-Version: debian-installer_packages_po_sublevel1_da\n"
3939 "Report-Msgid-Bugs-To: [email protected]\n"
4040 "POT-Creation-Date: 2012-11-03 22:02+0000\n"
41 "PO-Revision-Date: 2012-09-25 23:51+0200\n"
41 "PO-Revision-Date: 2015-03-05 20:12+0200\n"
4242 "Last-Translator: Joe Hansen <[email protected]>\n"
4343 "Language-Team: <[email protected]>\n"
4444 "Language: da\n"
571571 #. Description
572572 #: ../netcfg-common.templates:29001
573573 msgid "Detecting link on ${interface}; please wait..."
574 msgstr "Søger efter henvisning på ${interface}; vent venligst..."
574 msgstr "Søger efter henvisning på ${interface}; vent venligst ..."
575575
576576 #. Type: text
577577 #. Description
684684 #. :sl1:
685685 #: ../netcfg-common.templates:47001
686686 msgid "Storing network settings..."
687 msgstr "Gemmer netværksindstillinger..."
687 msgstr "Gemmer netværksindstillinger ..."
688688
689689 #. Type: text
690690 #. Description
14681468 {
14691469 char arping[256];
14701470 int count, rv = 0;
1471 int link_waits;
1471 int link_waits = 12; /* default for netcfg/link_wait_timeout times 4 */
14721472 int gw_tries = NETCFG_GATEWAY_REACHABILITY_TRIES;
14731473 const char *if_name = interface->name;
14741474 const char *gateway = interface->gateway;
3939 di_system_init("netcfg-static");
4040 netcfg_interface_init(&interface);
4141 if (strcmp(basename(argv[0]), "ptom") != 0)
42 di_info("Starting netcfg v.%s (built %s)", NETCFG_VERSION, NETCFG_BUILD_DATE);
42 di_info("Starting netcfg v.%s", NETCFG_VERSION);
4343
4444 parse_args(argc, argv);
4545 reap_old_files();
8989 netcfg_interface_init(&interface);
9090
9191 if (strcmp(basename(argv[0]), "ptom") != 0)
92 di_info("Starting netcfg v.%s (built %s)", NETCFG_VERSION, NETCFG_BUILD_DATE);
92 di_info("Starting netcfg v.%s", NETCFG_VERSION);
9393
9494 parse_args (argc, argv);
9595 reap_old_files ();