]> git.proxmox.com Git - debcargo-conf.git/commitdiff
RFS: image
authorkpcyrd <git@rxv.cc>
Sun, 14 Jul 2019 05:47:25 +0000 (05:47 +0000)
committerkpcyrd <git@rxv.cc>
Sun, 14 Jul 2019 05:47:25 +0000 (05:47 +0000)
TODO.rst
src/image/debian/changelog
src/image/debian/copyright
src/image/debian/copyright.debcargo.hint
src/image/debian/patches/series [new file with mode: 0644]
src/image/debian/patches/tiff-0.3.patch [new file with mode: 0644]

index a1651eee50738f19a521cc5125d2317613869287..cb353a3da0ec1c43f18996de61086efa95cab983 100644 (file)
--- a/TODO.rst
+++ b/TODO.rst
@@ -55,6 +55,7 @@ because all required dependencies are available in main::
     toml (update, introduces new feature)
     users (update)
     pretty_assertions (update)
+    image
 
 Delayed/problematic::
 
index 7992f8d4bc536d22278227140b4e3112d32eea6c..acaa5dd4519b38d6f374484c632d03c478d52457 100644 (file)
@@ -1,5 +1,5 @@
-rust-image (0.21.1-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
+rust-image (0.21.2-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
 
-  * Package image 0.21.1 from crates.io using debcargo 2.2.10
+  * Package image 0.21.2 from crates.io using debcargo 2.2.10
 
- -- kpcyrd <git@rxv.cc>  Sun,  5 May 2019 06:30:30 +0200
+ -- kpcyrd <git@rxv.cc>  Sun, 14 Jul 2019 05:31:38 +0000
index c1f97314c091e959c0eacd3a1aa0ead4fcb360be..586cb0f47158d52a41793e75be0d65aa14bfd503 100644 (file)
@@ -9,7 +9,7 @@ Upstream-Contact:
  Calum
  CensoredUsername <cens.username@gmail.com>
  fintelia <fintelia@gmail.com>
-Source: https://github.com/PistonDevelopers/image.git
+Source: https://github.com/image-rs/image/tree/version-0.21
 
 Files: *
 Copyright:
index f8e10c0c94664f3b0a5657a05a5207df7eea5d97..4172b97823bacba5dc8b1329f4d87137563de086 100644 (file)
@@ -9,7 +9,7 @@ Upstream-Contact:
  Calum
  CensoredUsername <cens.username@gmail.com>
  fintelia <fintelia@gmail.com>
-Source: https://github.com/PistonDevelopers/image.git
+Source: https://github.com/image-rs/image/tree/version-0.21
 
 Files: *
 Copyright:
diff --git a/src/image/debian/patches/series b/src/image/debian/patches/series
new file mode 100644 (file)
index 0000000..c7f925b
--- /dev/null
@@ -0,0 +1 @@
+tiff-0.3.patch
diff --git a/src/image/debian/patches/tiff-0.3.patch b/src/image/debian/patches/tiff-0.3.patch
new file mode 100644 (file)
index 0000000..b7fc195
--- /dev/null
@@ -0,0 +1,21 @@
+--- a/Cargo.toml
++++ b/Cargo.toml
+@@ -60,7 +60,7 @@
+ optional = true
+ [dependencies.tiff]
+-version = "0.2.0"
++version = "0.3.0"
+ optional = true
+ [dev-dependencies.glob]
+ version = "0.2.10"
+--- a/src/tiff.rs
++++ b/src/tiff.rs
+@@ -46,6 +46,7 @@
+             tiff::TiffError::IoError(err) => ImageError::IoError(err),
+             tiff::TiffError::FormatError(desc) => ImageError::FormatError(desc.to_string()),
+             tiff::TiffError::UnsupportedError(desc) => ImageError::UnsupportedError(desc.to_string()),
++            tiff::TiffError::LimitsExceeded => ImageError::InsufficientMemory,
+         }
+     }
+ }