Your message dated Fri, 30 Jan 2015 08:08:42 +0100
with message-id <[email protected]>
and subject line Re: Bug#770772: unblock: ruby-twitter-text/1.10.0+gem-1
has caused the Debian Bug report #770772,
regarding unblock: ruby-twitter-text/1.10.0+gem-1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
770772: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=770772
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: [email protected]
Usertags: unblock

Dear Release team,

This upload fixes RC bug #770621. debdiff is attahced. It uses gem file
from rubygems.org as orig.tar.gz as github tarball was missing some
files. Its the same upstream version


Thanks
Praveen

diff -Nru ruby-twitter-text-1.10.0/debian/changelog 
ruby-twitter-text-1.10.0+gem/debian/changelog
--- ruby-twitter-text-1.10.0/debian/changelog   2014-11-24 03:20:40.000000000 
+0530
+++ ruby-twitter-text-1.10.0+gem/debian/changelog       2014-11-23 
05:48:43.000000000 +0530
@@ -1,3 +1,13 @@
+ruby-twitter-text (1.10.0+gem-1) unstable; urgency=medium
+
+  * Team upload.
+  * Use gem file as upstream source (closes: #770621)
+    - github tarball has missing files 
+  * Rebuild to include gemspec file (remove git usage).
+  * Bump standards version to 3.9.6 (no changes).
+
+ -- Pirate Praveen <[email protected]>  Sat, 22 Nov 2014 22:33:44 +0530
+
 ruby-twitter-text (1.10.0-1) unstable; urgency=medium
 
   * New upstream release 
diff -Nru ruby-twitter-text-1.10.0/debian/control 
ruby-twitter-text-1.10.0+gem/debian/control
--- ruby-twitter-text-1.10.0/debian/control     2014-11-24 03:20:40.000000000 
+0530
+++ ruby-twitter-text-1.10.0+gem/debian/control 2014-11-23 05:58:26.000000000 
+0530
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Hideki Yamane <[email protected]>
 Build-Depends: debhelper (>= 8.0.0), gem2deb
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 XS-Ruby-Versions: all
 Homepage: https://github.com/twitter/twitter-text-rb
 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extra/ruby-twitter-text.git
@@ -13,5 +13,8 @@
 Architecture: all
 Depends: ${shlibs:Depends}, ${misc:Depends}, ruby-unf
 Description: library that does auto linking and extraction items in tweets
- twitter-text is a library that does auto linking and extraction of usernames,
- lists and hashtags in tweets
+ This library provides text processing routines for Twitter Tweets. The major
+ reason for this is to unify the various auto-linking and extraction of
+ usernames, lists, hashtags and URLs.
+ .
+ Learn more about its usage at /usr/share/doc/ruby-twitter-text/README.rdoc 
diff -Nru ruby-twitter-text-1.10.0/debian/install 
ruby-twitter-text-1.10.0+gem/debian/install
--- ruby-twitter-text-1.10.0/debian/install     1970-01-01 05:30:00.000000000 
+0530
+++ ruby-twitter-text-1.10.0+gem/debian/install 2014-11-23 05:47:01.000000000 
+0530
@@ -0,0 +1 @@
+test/twitter-text-conformance/tld_lib.yml 
usr/share/ruby-twitter-text/test/twitter-text-conformance
diff -Nru 
ruby-twitter-text-1.10.0/debian/patches/2001-avoid-git-in-gemspec.patch 
ruby-twitter-text-1.10.0+gem/debian/patches/2001-avoid-git-in-gemspec.patch
--- ruby-twitter-text-1.10.0/debian/patches/2001-avoid-git-in-gemspec.patch     
1970-01-01 05:30:00.000000000 +0530
+++ ruby-twitter-text-1.10.0+gem/debian/patches/2001-avoid-git-in-gemspec.patch 
2014-11-23 05:59:21.000000000 +0530
@@ -0,0 +1,35 @@
+Description: avoid git in gemspec
+ git ls-files is only available in git.
+ .
+ with this patch pbuilder can build correct gemspec file.
+Author: Pirate Praveen <[email protected]>
+Last-Updated: 2014-11-23
+
+Index: ruby-twitter-text/twitter-text.gemspec
+===================================================================
+--- ruby-twitter-text.orig/twitter-text.gemspec
++++ ruby-twitter-text/twitter-text.gemspec
+@@ -22,9 +22,19 @@ Gem::Specification.new do |s|
+   s.add_development_dependency "rspec", "~> 2.14.0"
+   s.add_development_dependency "simplecov", "~> 0.8.0"
+   s.add_runtime_dependency     "unf", "~> 0.1.0"
+-
+-  s.files         = `git ls-files`.split("\n") + 
['test/twitter-text-conformance/tld_lib.yml']
+-  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
+-  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| 
File.basename(f) }
++  s.files         = %w(
++   Gemfile
++   LICENSE
++   README.rdoc
++   twitter-text.gemspec
++   Rakefile
++   )
++  s.files += Dir.glob("lib/**/*")
++  s.files += Dir.glob("script/**/*")
++  s.files += Dir.glob("test/**/*_test.rb")
++  s.files += Dir.glob("spec/**/*_spec.rb")
++  s.files += ['test/twitter-text-conformance/tld_lib.yml']
++  s.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
++  s.test_files    = spec.files.grep(%r{^(test|spec|features)/})
+   s.require_paths = ["lib"]
+ end
diff -Nru ruby-twitter-text-1.10.0/debian/patches/3001-fix-path.patch 
ruby-twitter-text-1.10.0+gem/debian/patches/3001-fix-path.patch
--- ruby-twitter-text-1.10.0/debian/patches/3001-fix-path.patch 1970-01-01 
05:30:00.000000000 +0530
+++ ruby-twitter-text-1.10.0+gem/debian/patches/3001-fix-path.patch     
2014-11-23 06:01:04.000000000 +0530
@@ -0,0 +1,20 @@
+Description: fix relative path for file outside lib
+ load the file from /usr/share/ruby-twitter-text path
+ .
+ Debian specific
+Author: Pirate Praveen <[email protected]>
+Last-Update: 2014-11-23
+
+Index: ruby-twitter-text/lib/twitter-text/regex.rb
+===================================================================
+--- ruby-twitter-text.orig/lib/twitter-text/regex.rb
++++ ruby-twitter-text/lib/twitter-text/regex.rb
+@@ -28,7 +28,7 @@ module Twitter
+ 
+     TLDS = YAML.load_file(
+       File.join(
+-        File.expand_path('../../..', __FILE__), # project root
++        File.expand_path('../../../../../share/ruby-twitter-text', __FILE__), 
# project root
+         'test', 'twitter-text-conformance', 'tld_lib.yml'
+       )
+     )
diff -Nru ruby-twitter-text-1.10.0/debian/patches/series 
ruby-twitter-text-1.10.0+gem/debian/patches/series
--- ruby-twitter-text-1.10.0/debian/patches/series      1970-01-01 
05:30:00.000000000 +0530
+++ ruby-twitter-text-1.10.0+gem/debian/patches/series  2014-11-23 
05:21:47.000000000 +0530
@@ -0,0 +1,2 @@
+2001-avoid-git-in-gemspec.patch
+3001-fix-path.patch
diff -Nru ruby-twitter-text-1.10.0/debian/watch 
ruby-twitter-text-1.10.0+gem/debian/watch
--- ruby-twitter-text-1.10.0/debian/watch       2014-11-24 03:20:40.000000000 
+0530
+++ ruby-twitter-text-1.10.0+gem/debian/watch   2014-11-23 05:41:16.000000000 
+0530
@@ -1,2 +1,3 @@
 version=3
-https://github.com/twitter/twitter-text-rb/tags 
/twitter/twitter-text-rb/archive/v(.*).tar.gz
+opts=dversionmangle=s/\+(gem)\d*$// \
+http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/twitter-text 
.*/twitter-text-(.*).tar.gz
diff -Nru ruby-twitter-text-1.10.0/metadata.yml 
ruby-twitter-text-1.10.0+gem/metadata.yml
--- ruby-twitter-text-1.10.0/metadata.yml       1970-01-01 05:30:00.000000000 
+0530
+++ ruby-twitter-text-1.10.0+gem/metadata.yml   2014-11-23 05:32:10.000000000 
+0530
@@ -0,0 +1,203 @@
+--- !ruby/object:Gem::Specification
+name: twitter-text
+version: !ruby/object:Gem::Version
+  version: 1.10.0
+platform: ruby
+authors:
+- Matt Sanford
+- Patrick Ewing
+- Ben Cherry
+- Britt Selvitelle
+- Raffi Krikorian
+- J.P. Cummins
+- Yoshimasa Niwa
+- Keita Fujii
+- James Koval
+autorequire: 
+bindir: bin
+cert_chain: []
+date: 2014-10-29 00:00:00.000000000 Z
+dependencies:
+- !ruby/object:Gem::Dependency
+  name: multi_json
+  requirement: !ruby/object:Gem::Requirement
+    requirements:
+    - - "~>"
+      - !ruby/object:Gem::Version
+        version: '1.3'
+  type: :development
+  prerelease: false
+  version_requirements: !ruby/object:Gem::Requirement
+    requirements:
+    - - "~>"
+      - !ruby/object:Gem::Version
+        version: '1.3'
+- !ruby/object:Gem::Dependency
+  name: nokogiri
+  requirement: !ruby/object:Gem::Requirement
+    requirements:
+    - - "~>"
+      - !ruby/object:Gem::Version
+        version: 1.5.10
+  type: :development
+  prerelease: false
+  version_requirements: !ruby/object:Gem::Requirement
+    requirements:
+    - - "~>"
+      - !ruby/object:Gem::Version
+        version: 1.5.10
+- !ruby/object:Gem::Dependency
+  name: rake
+  requirement: !ruby/object:Gem::Requirement
+    requirements:
+    - - ">="
+      - !ruby/object:Gem::Version
+        version: '0'
+  type: :development
+  prerelease: false
+  version_requirements: !ruby/object:Gem::Requirement
+    requirements:
+    - - ">="
+      - !ruby/object:Gem::Version
+        version: '0'
+- !ruby/object:Gem::Dependency
+  name: rdoc
+  requirement: !ruby/object:Gem::Requirement
+    requirements:
+    - - ">="
+      - !ruby/object:Gem::Version
+        version: '0'
+  type: :development
+  prerelease: false
+  version_requirements: !ruby/object:Gem::Requirement
+    requirements:
+    - - ">="
+      - !ruby/object:Gem::Version
+        version: '0'
+- !ruby/object:Gem::Dependency
+  name: rspec
+  requirement: !ruby/object:Gem::Requirement
+    requirements:
+    - - "~>"
+      - !ruby/object:Gem::Version
+        version: 2.14.0
+  type: :development
+  prerelease: false
+  version_requirements: !ruby/object:Gem::Requirement
+    requirements:
+    - - "~>"
+      - !ruby/object:Gem::Version
+        version: 2.14.0
+- !ruby/object:Gem::Dependency
+  name: simplecov
+  requirement: !ruby/object:Gem::Requirement
+    requirements:
+    - - "~>"
+      - !ruby/object:Gem::Version
+        version: 0.8.0
+  type: :development
+  prerelease: false
+  version_requirements: !ruby/object:Gem::Requirement
+    requirements:
+    - - "~>"
+      - !ruby/object:Gem::Version
+        version: 0.8.0
+- !ruby/object:Gem::Dependency
+  name: unf
+  requirement: !ruby/object:Gem::Requirement
+    requirements:
+    - - "~>"
+      - !ruby/object:Gem::Version
+        version: 0.1.0
+  type: :runtime
+  prerelease: false
+  version_requirements: !ruby/object:Gem::Requirement
+    requirements:
+    - - "~>"
+      - !ruby/object:Gem::Version
+        version: 0.1.0
+description: A gem that provides text handling for Twitter
+email:
+- [email protected]
+- [email protected]
+- [email protected]
+- [email protected]
+- [email protected]
+- [email protected]
+- [email protected]
+- [email protected]
+- [email protected]
+executables: []
+extensions: []
+extra_rdoc_files: []
+files:
+- ".gemtest"
+- ".gitignore"
+- ".gitmodules"
+- ".rspec"
+- ".travis.yml"
+- Gemfile
+- LICENSE
+- README.rdoc
+- Rakefile
+- lib/twitter-text.rb
+- lib/twitter-text/autolink.rb
+- lib/twitter-text/deprecation.rb
+- lib/twitter-text/extractor.rb
+- lib/twitter-text/hash_helper.rb
+- lib/twitter-text/hit_highlighter.rb
+- lib/twitter-text/regex.rb
+- lib/twitter-text/rewriter.rb
+- lib/twitter-text/unicode.rb
+- lib/twitter-text/validation.rb
+- script/destroy
+- script/generate
+- spec/autolinking_spec.rb
+- spec/extractor_spec.rb
+- spec/hithighlighter_spec.rb
+- spec/regex_spec.rb
+- spec/rewriter_spec.rb
+- spec/spec_helper.rb
+- spec/test_urls.rb
+- spec/twitter_text_spec.rb
+- spec/unicode_spec.rb
+- spec/validation_spec.rb
+- test/conformance_test.rb
+- test/twitter-text-conformance/tld_lib.yml
+- twitter-text.gemspec
+homepage: http://twitter.com
+licenses:
+- Apache 2.0
+metadata: {}
+post_install_message: 
+rdoc_options: []
+require_paths:
+- lib
+required_ruby_version: !ruby/object:Gem::Requirement
+  requirements:
+  - - ">="
+    - !ruby/object:Gem::Version
+      version: '0'
+required_rubygems_version: !ruby/object:Gem::Requirement
+  requirements:
+  - - ">="
+    - !ruby/object:Gem::Version
+      version: '0'
+requirements: []
+rubyforge_project: 
+rubygems_version: 2.2.2
+signing_key: 
+specification_version: 4
+summary: Twitter text handling library
+test_files:
+- spec/autolinking_spec.rb
+- spec/extractor_spec.rb
+- spec/hithighlighter_spec.rb
+- spec/regex_spec.rb
+- spec/rewriter_spec.rb
+- spec/spec_helper.rb
+- spec/test_urls.rb
+- spec/twitter_text_spec.rb
+- spec/unicode_spec.rb
+- spec/validation_spec.rb
+- test/conformance_test.rb
diff -Nru ruby-twitter-text-1.10.0/test/twitter-text-conformance/tld_lib.yml 
ruby-twitter-text-1.10.0+gem/test/twitter-text-conformance/tld_lib.yml
--- ruby-twitter-text-1.10.0/test/twitter-text-conformance/tld_lib.yml  
1970-01-01 05:30:00.000000000 +0530
+++ ruby-twitter-text-1.10.0+gem/test/twitter-text-conformance/tld_lib.yml      
2014-11-23 05:32:10.000000000 +0530
@@ -0,0 +1,752 @@
+---
+country:
+- ac
+- ad
+- ae
+- af
+- ag
+- ai
+- al
+- am
+- an
+- ao
+- aq
+- ar
+- as
+- at
+- au
+- aw
+- ax
+- az
+- ba
+- bb
+- bd
+- be
+- bf
+- bg
+- bh
+- bi
+- bj
+- bl
+- bm
+- bn
+- bo
+- bq
+- br
+- bs
+- bt
+- bv
+- bw
+- by
+- bz
+- ca
+- cc
+- cd
+- cf
+- cg
+- ch
+- ci
+- ck
+- cl
+- cm
+- cn
+- co
+- cr
+- cu
+- cv
+- cw
+- cx
+- cy
+- cz
+- de
+- dj
+- dk
+- dm
+- do
+- dz
+- ec
+- ee
+- eg
+- eh
+- er
+- es
+- et
+- eu
+- fi
+- fj
+- fk
+- fm
+- fo
+- fr
+- ga
+- gb
+- gd
+- ge
+- gf
+- gg
+- gh
+- gi
+- gl
+- gm
+- gn
+- gp
+- gq
+- gr
+- gs
+- gt
+- gu
+- gw
+- gy
+- hk
+- hm
+- hn
+- hr
+- ht
+- hu
+- id
+- ie
+- il
+- im
+- in
+- io
+- iq
+- ir
+- is
+- it
+- je
+- jm
+- jo
+- jp
+- ke
+- kg
+- kh
+- ki
+- km
+- kn
+- kp
+- kr
+- kw
+- ky
+- kz
+- la
+- lb
+- lc
+- li
+- lk
+- lr
+- ls
+- lt
+- lu
+- lv
+- ly
+- ma
+- mc
+- md
+- me
+- mf
+- mg
+- mh
+- mk
+- ml
+- mm
+- mn
+- mo
+- mp
+- mq
+- mr
+- ms
+- mt
+- mu
+- mv
+- mw
+- mx
+- my
+- mz
+- na
+- nc
+- ne
+- nf
+- ng
+- ni
+- nl
+- 'no'
+- np
+- nr
+- nu
+- nz
+- om
+- pa
+- pe
+- pf
+- pg
+- ph
+- pk
+- pl
+- pm
+- pn
+- pr
+- ps
+- pt
+- pw
+- py
+- qa
+- re
+- ro
+- rs
+- ru
+- rw
+- sa
+- sb
+- sc
+- sd
+- se
+- sg
+- sh
+- si
+- sj
+- sk
+- sl
+- sm
+- sn
+- so
+- sr
+- ss
+- st
+- su
+- sv
+- sx
+- sy
+- sz
+- tc
+- td
+- tf
+- tg
+- th
+- tj
+- tk
+- tl
+- tm
+- tn
+- to
+- tp
+- tr
+- tt
+- tv
+- tw
+- tz
+- ua
+- ug
+- uk
+- um
+- us
+- uy
+- uz
+- va
+- vc
+- ve
+- vg
+- vi
+- vn
+- vu
+- wf
+- ws
+- ye
+- yt
+- za
+- zm
+- zw
+- "бел"
+- "мкд"
+- "мон"
+- "рф"
+- "срб"
+- "укр"
+- "қаз"
+- "الاردن"
+- "الجزائر"
+- "السعودية"
+- "المغرب"
+- "امارات"
+- "ایران"
+- "بھارت"
+- "تونس"
+- "سودان"
+- "سورية"
+- "عراق"
+- "عمان"
+- "فلسطين"
+- "قطر"
+- "مصر"
+- "مليسيا"
+- "پاکستان"
+- "भारत"
+- "বাংলা"
+- "ভারত"
+- "ਭਾਰਤ"
+- "ભારત"
+- "இந்தியா"
+- "இலங்கை"
+- "சிங்கப்பூர்"
+- "భారత్"
+- "ලංකා"
+- "ไทย"
+- "გე"
+- "中国"
+- "中國"
+- "台湾"
+- "台灣"
+- "新加坡"
+- "香港"
+- "한국"
+generic:
+- abogado
+- academy
+- accountants
+- active
+- actor
+- aero
+- agency
+- airforce
+- allfinanz
+- alsace
+- archi
+- army
+- arpa
+- asia
+- associates
+- attorney
+- auction
+- audio
+- autos
+- axa
+- band
+- bar
+- bargains
+- bayern
+- beer
+- berlin
+- best
+- bid
+- bike
+- bio
+- biz
+- black
+- blackfriday
+- blue
+- bmw
+- bnpparibas
+- boo
+- boutique
+- brussels
+- budapest
+- build
+- builders
+- business
+- buzz
+- bzh
+- cab
+- cal
+- camera
+- camp
+- cancerresearch
+- capetown
+- capital
+- caravan
+- cards
+- care
+- career
+- careers
+- casa
+- cash
+- cat
+- catering
+- center
+- ceo
+- cern
+- channel
+- cheap
+- christmas
+- chrome
+- church
+- citic
+- city
+- claims
+- cleaning
+- click
+- clinic
+- clothing
+- club
+- codes
+- coffee
+- college
+- cologne
+- com
+- community
+- company
+- computer
+- condos
+- construction
+- consulting
+- contractors
+- cooking
+- cool
+- coop
+- country
+- credit
+- creditcard
+- crs
+- cruises
+- cuisinella
+- cymru
+- dad
+- dance
+- dating
+- day
+- deals
+- degree
+- democrat
+- dental
+- dentist
+- desi
+- diamonds
+- diet
+- digital
+- direct
+- directory
+- discount
+- dnp
+- domains
+- durban
+- dvag
+- eat
+- edu
+- education
+- email
+- emerck
+- engineer
+- engineering
+- enterprises
+- equipment
+- esq
+- estate
+- eus
+- events
+- exchange
+- expert
+- exposed
+- fail
+- farm
+- feedback
+- finance
+- financial
+- fish
+- fishing
+- fitness
+- flights
+- florist
+- flsmidth
+- fly
+- foo
+- forsale
+- foundation
+- frl
+- frogans
+- fund
+- furniture
+- futbol
+- gal
+- gallery
+- gbiz
+- gent
+- gift
+- gifts
+- gives
+- glass
+- gle
+- global
+- globo
+- gmail
+- gmo
+- gmx
+- google
+- gop
+- gov
+- graphics
+- gratis
+- green
+- gripe
+- guide
+- guitars
+- guru
+- hamburg
+- haus
+- healthcare
+- help
+- here
+- hiphop
+- hiv
+- holdings
+- holiday
+- homes
+- horse
+- host
+- hosting
+- house
+- how
+- ibm
+- immo
+- immobilien
+- industries
+- info
+- ing
+- ink
+- institute
+- insure
+- int
+- international
+- investments
+- jetzt
+- jobs
+- joburg
+- juegos
+- kaufen
+- kim
+- kitchen
+- kiwi
+- koeln
+- krd
+- kred
+- lacaixa
+- land
+- lawyer
+- lease
+- lgbt
+- life
+- lighting
+- limited
+- limo
+- link
+- loans
+- london
+- lotto
+- ltda
+- luxe
+- luxury
+- maison
+- management
+- mango
+- market
+- marketing
+- media
+- meet
+- melbourne
+- meme
+- menu
+- miami
+- mil
+- mini
+- mobi
+- moda
+- moe
+- monash
+- mortgage
+- moscow
+- motorcycles
+- mov
+- museum
+- nagoya
+- name
+- navy
+- net
+- network
+- neustar
+- new
+- nexus
+- ngo
+- nhk
+- ninja
+- nra
+- nrw
+- nyc
+- okinawa
+- ong
+- onl
+- ooo
+- org
+- organic
+- otsuka
+- ovh
+- paris
+- partners
+- parts
+- pharmacy
+- photo
+- photography
+- photos
+- physio
+- pics
+- pictures
+- pink
+- pizza
+- place
+- plumbing
+- pohl
+- poker
+- post
+- praxi
+- press
+- pro
+- prod
+- productions
+- prof
+- properties
+- property
+- pub
+- qpon
+- quebec
+- realtor
+- recipes
+- red
+- rehab
+- reise
+- reisen
+- ren
+- rentals
+- repair
+- report
+- republican
+- rest
+- restaurant
+- reviews
+- rich
+- rio
+- rip
+- rocks
+- rodeo
+- rsvp
+- ruhr
+- ryukyu
+- saarland
+- sarl
+- sca
+- scb
+- schmidt
+- schule
+- scot
+- services
+- sexy
+- shiksha
+- shoes
+- singles
+- social
+- software
+- sohu
+- solar
+- solutions
+- soy
+- space
+- spiegel
+- supplies
+- supply
+- support
+- surf
+- surgery
+- suzuki
+- systems
+- taipei
+- tatar
+- tattoo
+- tax
+- technology
+- tel
+- tienda
+- tips
+- tirol
+- today
+- tokyo
+- tools
+- top
+- town
+- toys
+- trade
+- training
+- travel
+- tui
+- university
+- uno
+- uol
+- vacations
+- vegas
+- ventures
+- vermögensberater
+- vermögensberatung
+- versicherung
+- vet
+- viajes
+- villas
+- vision
+- vlaanderen
+- vodka
+- vote
+- voting
+- voto
+- voyage
+- wales
+- wang
+- watch
+- webcam
+- website
+- wed
+- wedding
+- whoswho
+- wien
+- wiki
+- williamhill
+- wme
+- work
+- works
+- world
+- wtc
+- wtf
+- xxx
+- xyz
+- yachts
+- yandex
+- yoga
+- yokohama
+- youtube
+- zip
+- zone
+- "дети"
+- "москва"
+- "онлайн"
+- "орг"
+- "рус"
+- "сайт"
+- "بازار"
+- "شبكة"
+- "موقع"
+- "संगठन"
+- "みんな"
+- "世界"
+- "中信"
+- "中文网"
+- "企业"
+- "佛山"
+- "公司"
+- "公益"
+- "商城"
+- "商标"
+- "在线"
+- "广东"
+- "我爱你"
+- "手机"
+- "政务"
+- "机构"
+- "游戏"
+- "移动"
+- "组织机构"
+- "网址"
+- "网络"
+- "集团"
+- "삼성"

Attachment: signature.asc
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
On 2014-11-24 17:31, Pirate Praveen wrote:
> [copying the original uploader]
> 
> On Monday 24 November 2014 03:45 AM, Jonathan Wiltshire wrote:
>> Unfortunately that diff is not against the version in testing, which
>> includes a new upstream release. Please assess whether you think that
>> new upstream is suitable, and follow up with a full diff.
> 
> Hi Hideki,
> 
> Do you think the new upstream version is suitable for jessie? Is it a
> bug fix only release?
> 
> Also it would be a good idea to upload new upstream versions to
> experimental, so we can process bug fix uploads via unstable.
> 
> Thanks
> Praveen
> 
> 

Hi,

I have reviewed the full changeset and decided to unblock it.

My only concern was the of migrating a lot of data inlined in code into
a yaml file as the load path looked suspicious for an FHS compliant
path.  Fortunately, Pirate already included a patch for that to point it
to a path under /usr/share.

Thanks,
~Niels

--- End Message ---

Reply via email to