[Python-apps-commits] r14314 - in packages/pelican/trunk/debian (4 files)

vcheng at users.alioth.debian.org vcheng at users.alioth.debian.org
Sun Aug 13 05:56:41 UTC 2017


    Date: Sunday, August 13, 2017 @ 05:56:40
  Author: vcheng
Revision: 14314

add patch to use "simple" theme by default

Added:
  packages/pelican/trunk/debian/patches/
  packages/pelican/trunk/debian/patches/default_theme.patch
  packages/pelican/trunk/debian/patches/series
Modified:
  packages/pelican/trunk/debian/changelog

Modified: packages/pelican/trunk/debian/changelog
===================================================================
--- packages/pelican/trunk/debian/changelog	2017-08-13 05:36:09 UTC (rev 14313)
+++ packages/pelican/trunk/debian/changelog	2017-08-13 05:56:40 UTC (rev 14314)
@@ -3,6 +3,8 @@
   * Remove notmyidea theme to avoid shipping non-free files, repacking tarball.
     (Closes: #868047, #868049, #858859)
     - Update debian/copyright and debian/lintian-overrides accordingly.
+    - Add debian/patches/default_theme.patch to change default theme to
+      "simple".
   * Update Standards version to 4.0.1.
 
  -- Vincent Cheng <vcheng at debian.org>  Wed, 11 Jan 2017 00:16:54 -0800

Added: packages/pelican/trunk/debian/patches/default_theme.patch
===================================================================
--- packages/pelican/trunk/debian/patches/default_theme.patch	                        (rev 0)
+++ packages/pelican/trunk/debian/patches/default_theme.patch	2017-08-13 05:56:40 UTC (rev 14314)
@@ -0,0 +1,19 @@
+Description: Change default theme to "simple" due to removal of "notmyidea"
+ The "notmyidea" theme was removed from the Debian package due to the presence
+ of non-free files. See #868047 and #868049 for further details. As such,
+ default to the one other theme that is shipped upstream.
+Forwarded: no
+Author: Vincent Cheng <vcheng at debian.org>
+Last-Update: 2017-08-12
+
+--- a/pelican/settings.py
++++ b/pelican/settings.py
+@@ -28,7 +28,7 @@
+ logger = logging.getLogger(__name__)
+ 
+ DEFAULT_THEME = os.path.join(os.path.dirname(os.path.abspath(__file__)),
+-                             'themes', 'notmyidea')
++                             'themes', 'simple')
+ DEFAULT_CONFIG = {
+     'PATH': os.curdir,
+     'ARTICLE_PATHS': [''],

Added: packages/pelican/trunk/debian/patches/series
===================================================================
--- packages/pelican/trunk/debian/patches/series	                        (rev 0)
+++ packages/pelican/trunk/debian/patches/series	2017-08-13 05:56:40 UTC (rev 14314)
@@ -0,0 +1 @@
+default_theme.patch




More information about the Python-apps-commits mailing list