Procházet zdrojové kódy

merged previous bzr commit

Michael Vogt před 13 roky
rodič
revize
14e8d0257c
7 změnil soubory, kde provedl 10 přidání a 10 odebrání
  1. 1 1
      configure.in
  2. 2 2
      debian/changelog
  3. 1 1
      doc/apt-verbatim.ent
  4. 2 2
      doc/po/apt-doc.pot
  5. 1 1
      doc/po/fr.po
  6. 2 2
      po/apt-all.pot
  7. 1 1
      test/libapt/uri_test.cc

+ 1 - 1
configure.in

@@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib)
 AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in)
 
 PACKAGE="apt"
-PACKAGE_VERSION="0.9.8~20130516"
+PACKAGE_VERSION="0.9.8.1"
 PACKAGE_MAIL="APT Development Team <deity@lists.debian.org>"
 AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE")
 AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION")

+ 2 - 2
debian/changelog

@@ -10,7 +10,7 @@ apt (0.9.8.1) UNRELEASED; urgency=low
 
  -- David Kalnischkies <kalnischkies@gmail.com>  Sat, 11 May 2013 09:53:59 +0200
 
-apt (0.9.8) UNRELEASED; urgency=low
+apt (0.9.8) unstable; urgency=low
 
   [ Ludovico Cavedon ]
   * properly handle if-modfied-since with libcurl/https 
@@ -79,7 +79,7 @@ apt (0.9.8) UNRELEASED; urgency=low
       directive ("DIRECT") in apt.conf
     - disregard all_proxy environment variable, like other methods
   
- -- Michael Vogt <mvo@debian.org>  Mon, 08 Apr 2013 08:43:21 +0200
+ -- Michael Vogt <mvo@debian.org>  Wed, 08 May 2013 18:43:28 +0200
 
 apt (0.9.7.9~exp2) experimental; urgency=low
 

+ 1 - 1
doc/apt-verbatim.ent

@@ -213,7 +213,7 @@
 ">
 
 <!-- this will be updated by 'prepare-release' -->
-<!ENTITY apt-product-version "0.9.8~20130516">
+<!ENTITY apt-product-version "0.9.8">
 
 <!-- Codenames for debian releases -->
 <!ENTITY oldstable-codename "squeeze">

+ 2 - 2
doc/po/apt-doc.pot

@@ -6,9 +6,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: apt-doc 0.9.7.9~exp3\n"
+"Project-Id-Version: apt-doc 0.9.8~20130508\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-05-16 11:28+0300\n"
+"POT-Creation-Date: 2013-05-08 18:12+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"

+ 1 - 1
doc/po/fr.po

@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-05-16 11:28+0300\n"
+"POT-Creation-Date: 2013-05-08 18:12+0300\n"
 "PO-Revision-Date: 2013-04-09 07:56+0200\n"
 "Last-Translator: Christian Perrier <bubulle@debian.org>\n"
 "Language-Team: French <debian-l10n-french@lists.debian.org>\n"

+ 2 - 2
po/apt-all.pot

@@ -5,9 +5,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: apt 0.9.7.9~exp3\n"
+"Project-Id-Version: apt 0.9.8~20130508\n"
 "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2013-05-16 11:28+0200\n"
+"POT-Creation-Date: 2013-05-08 18:12+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"

+ 1 - 1
test/libapt/uri_test.cc

@@ -113,7 +113,7 @@ int main() {
         URI U("ftp://foo:b%40r@example.org");
         equals("foo", U.User);
         equals("b@r", U.Password);
-        equals("ftp://foo:b%40r@example.org", (std::string) U);
+        equals("ftp://foo:b%40r@example.org/", (std::string) U);
         }
 
 	return 0;