Просмотр исходного кода

Use https:// URLs instead of http:// or git:// when possible (round three)

This covers docs, code comments and packaging, which includes the dpkg git
repository, copyright format URL and examples in man pages among others.
Guillem Jover лет назад: 10
Родитель
Сommit
0c6d938277
9 измененных файлов с 12 добавлено и 9 удалено
  1. 0 1
      README
  2. 1 1
      TODO
  3. 5 1
      debian/changelog
  4. 1 1
      debian/control
  5. 1 1
      debian/copyright
  6. 1 1
      lib/dpkg/c-ctype.c
  7. 1 1
      lib/dpkg/c-ctype.h
  8. 1 1
      lib/dpkg/t/t-c-ctype.c
  9. 1 1
      man/deb-src-control.5

+ 0 - 1
README

@@ -33,7 +33,6 @@ Source Repository
 -----------------
 -----------------
 
 
   <https://anonscm.debian.org/cgit/dpkg/dpkg.git>
   <https://anonscm.debian.org/cgit/dpkg/dpkg.git>
-  <git://anonscm.debian.org/dpkg/dpkg.git>
 
 
 
 
 Building from git source
 Building from git source

+ 1 - 1
TODO

@@ -60,7 +60,7 @@ TODO
    - Check https://d-i.alioth.debian.org/spellcheck/level5/index.html
    - Check https://d-i.alioth.debian.org/spellcheck/level5/index.html
 
 
  * Discuss and implement
  * Discuss and implement
-   http://www.hadrons.org/~guillem/debian/docs/origin.proposal
+   https://www.hadrons.org/~guillem/debian/docs/origin.proposal
 
 
  * Deprecate --force-not-root flag (remove modstatdb_rw rootneeded flags).
  * Deprecate --force-not-root flag (remove modstatdb_rw rootneeded flags).
 
 

+ 5 - 1
debian/changelog

@@ -13,6 +13,10 @@ dpkg (1.18.5) UNRELEASED; urgency=medium
   * Use ohshit() instead of internerr() for unhandled dpkg-split exit codes.
   * Use ohshit() instead of internerr() for unhandled dpkg-split exit codes.
     (i.e. do not abort). Closes: #812679
     (i.e. do not abort). Closes: #812679
   * Detect non-regular file archive arguments earlier in dpkg.
   * Detect non-regular file archive arguments earlier in dpkg.
+  * Switch URLs in docs, code comments and packaging, from http:// or git://
+    to https:// if the latter is available (round three). This includes the
+    dpkg git repository, copyright format URL and examples in man pages among
+    others.
   * Perl modules:
   * Perl modules:
     - Add new CTRL_REPO_RELEASE control block type to Dpkg::Control.
     - Add new CTRL_REPO_RELEASE control block type to Dpkg::Control.
     - Add new CTRL_COPYRIGHT_HEADER, CTRL_COPYRIGHT_FILES and
     - Add new CTRL_COPYRIGHT_HEADER, CTRL_COPYRIGHT_FILES and
@@ -4653,7 +4657,7 @@ dpkg (1.15.0) experimental; urgency=low
   * Move update-alternatives, dpkg-divert and dpkg-statoverride to /usr/bin
   * Move update-alternatives, dpkg-divert and dpkg-statoverride to /usr/bin
     but keep compatibility symlinks in /usr/sbin for the squeeze release
     but keep compatibility symlinks in /usr/sbin for the squeeze release
     until all maintainer scripts are fixed (see
     until all maintainer scripts are fixed (see
-    http://lintian.debian.org/tags/command-with-path-in-maintainer-script.html).
+    https://lintian.debian.org/tags/command-with-path-in-maintainer-script.html).
     Closes: #216606
     Closes: #216606
   * Use dh_lintian to install lintian overrides. Build-Depends on debhelper
   * Use dh_lintian to install lintian overrides. Build-Depends on debhelper
     (>= 6.0.7) for this. Update debhelper compatibility level to 6 at the same
     (>= 6.0.7) for this. Update debhelper compatibility level to 6 at the same

+ 1 - 1
debian/control

@@ -7,7 +7,7 @@ Origin: debian
 Bugs: debbugs://bugs.debian.org
 Bugs: debbugs://bugs.debian.org
 Homepage: https://wiki.debian.org/Teams/Dpkg
 Homepage: https://wiki.debian.org/Teams/Dpkg
 Vcs-Browser: https://anonscm.debian.org/cgit/dpkg/dpkg.git
 Vcs-Browser: https://anonscm.debian.org/cgit/dpkg/dpkg.git
-Vcs-Git: git://anonscm.debian.org/dpkg/dpkg.git
+Vcs-Git: https://anonscm.debian.org/git/dpkg/dpkg.git
 Standards-Version: 3.9.6
 Standards-Version: 3.9.6
 Build-Depends: dpkg-dev (>= 1.17.14), debhelper (>= 9.20141010),
 Build-Depends: dpkg-dev (>= 1.17.14), debhelper (>= 9.20141010),
  pkg-config, flex,
  pkg-config, flex,

+ 1 - 1
debian/copyright

@@ -1,4 +1,4 @@
-Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: dpkg
 Upstream-Name: dpkg
 
 
 Files: *
 Files: *

+ 1 - 1
lib/dpkg/c-ctype.c

@@ -15,7 +15,7 @@
  * GNU General Public License for more details.
  * GNU General Public License for more details.
  *
  *
  * You should have received a copy of the GNU General Public License
  * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
  */
 
 
 #include <config.h>
 #include <config.h>

+ 1 - 1
lib/dpkg/c-ctype.h

@@ -15,7 +15,7 @@
  * GNU General Public License for more details.
  * GNU General Public License for more details.
  *
  *
  * You should have received a copy of the GNU General Public License
  * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
  */
 
 
 #ifndef LIBDPKG_C_CTYPE_H
 #ifndef LIBDPKG_C_CTYPE_H

+ 1 - 1
lib/dpkg/t/t-c-ctype.c

@@ -15,7 +15,7 @@
  * GNU General Public License for more details.
  * GNU General Public License for more details.
  *
  *
  * You should have received a copy of the GNU General Public License
  * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
  */
 
 
 #include <config.h>
 #include <config.h>

+ 1 - 1
man/deb-src-control.5

@@ -379,7 +379,7 @@ Maintainer: Dpkg Developers <debian\-dpkg@lists.debian.org>
 XBS\-Upstream\-Release\-Status: stable
 XBS\-Upstream\-Release\-Status: stable
 Homepage: https://wiki.debian.org/Teams/Dpkg
 Homepage: https://wiki.debian.org/Teams/Dpkg
 Vcs\-Browser: https://anonscm.debian.org/cgit/dpkg/dpkg.git
 Vcs\-Browser: https://anonscm.debian.org/cgit/dpkg/dpkg.git
-Vcs\-Git: git://anonscm.debian.org/dpkg/dpkg.git
+Vcs\-Git: https://anonscm.debian.org/git/dpkg/dpkg.git
 Standards\-Version: 3.7.3
 Standards\-Version: 3.7.3
 Build\-Depends: pkg\-config, debhelper (>= 4.1.81),
 Build\-Depends: pkg\-config, debhelper (>= 4.1.81),
  libselinux1\-dev (>= 1.28\-4) [!linux\-any]
  libselinux1\-dev (>= 1.28\-4) [!linux\-any]