summaryrefslogtreecommitdiff
path: root/debian/patches/debian-changes
blob: a58f54628c5f05881d1aeaf46e2a8088ce53379c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 ncbi-entrez-direct (5.90.20161221+ds-2) UNRELEASED; urgency=medium
 .
   * NOT YET RELEASED.
   * .gitignore: Account for files created outside debian/ at build time.
   * debian/control:
     - Set debian-med as maintainer, and myself as uploader.
     - Don't build depend on golang-any on architectures on
       which it's currently uninstallable.
   * debian/rules: If building xtract.go fails for any reason, fall back on
     installing the original Perl implementation.
   * debian/source/options: single-debian-patch.
   * xtract.pl: Don't insist on -fallback.
Author: Aaron M. Ucko <ucko@debian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2016-12-25

--- /dev/null
+++ ncbi-entrez-direct-5.90.20161221+ds/.gitignore
@@ -0,0 +1,2 @@
+.pc
+bin
--- ncbi-entrez-direct-5.90.20161221+ds.orig/xtract.pl
+++ ncbi-entrez-direct-5.90.20161221+ds/xtract.pl
@@ -1788,7 +1788,7 @@ sub xtract {
     # report execution time of original Perl implementation for comparison to new Go compiled version
     $timer = true;
 
-  } elsif ( $ARGV[0] ne "-fallback" ) {
+  } elsif ( 0 && $ARGV[0] ne "-fallback" ) {
 
     # ensure that platform-specific Go compiled version was used if available
     print STDERR "\nPLEASE REWRITE YOUR SCRIPT TO CALL XTRACT INSTEAD OF XTRACT.PL.\n";