debian/0000755000000000000000000000000012201222252007154 5ustar debian/ruby-org.manpages0000644000000000000000000000002212201222252012431 0ustar debian/org-ruby.1 debian/gbp.conf0000644000000000000000000000007112201222252010571 0ustar [DEFAULT] pristine-tar = True pristine-tar-commit = True debian/rules0000755000000000000000000000023712201222252010236 0ustar #!/usr/bin/make -f %: dh $@ --buildsystem=ruby --with ruby override_dh_auto_install: # use utf-8 locale so test cases work LC_ALL=C.UTF-8 dh_auto_install debian/control0000644000000000000000000000211612201222252010557 0ustar Source: ruby-org Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Per Andersson , Jérémy Bobbio Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.3.0~), rake, ruby-rubypants, ruby-rspec, ruby-tilt Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/org-ruby.git Vcs-Browser: http://anonscm.debian.org/gitweb?p=pkg-ruby-extras/org-ruby.git;a=summary Homepage: https://github.com/bdewey/org-ruby XS-Ruby-Versions: all Package: ruby-org Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-rubypants Description: Emacs org-mode parser for Ruby An Emacs org-mode parser written in Ruby. The most significant thing this library does today is convert org-mode files to HTML or Textile. Currently, you cannot do much to customize the conversion. The supplied textile conversion is optimized for extracting "content" from the orgfile as opposed to "metadata." debian/compat0000644000000000000000000000000212201222252010352 0ustar 7 debian/org-ruby.10000644000000000000000000000063612201222252011011 0ustar .TH ORG-RUBY "1" "March 2013" "org-ruby 0.8.1" "User Commands" .SH NAME org-ruby \- TODO .SH SYNOPSIS .B org-ruby \fI \fR[\fIoptions\fR] .SH DESCRIPTION .TP \fB\-h\fR, \fB\-\-help\fR Show this message .TP \fB\-d\fR, \fB\-\-debug\fR Run with $DEBUG true .TP \fB\-t\fR, \fB\-\-translate\fR FORMAT Translate the ORG file to the specified format. .TP \fB\-v\fR, \fB\-\-version\fR Print version .SH EXAMPLES TODO debian/copyright0000644000000000000000000000256012201222252011112 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: org-ruby Source: https://github.com/bdewey/org-ruby Files: * Copyright: 2009-2013 Brian Dewey License: Expat Files: debian/* Copyright: 2013 Per Andersson 2013 Jérémy Bobbio License: Expat License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. debian/changelog0000644000000000000000000000023112201222252011022 0ustar ruby-org (0.8.0-1) unstable; urgency=low * Initial release (Closes: #703283) -- Jérémy Bobbio Fri, 09 Aug 2013 19:13:51 +0200 debian/source/0000755000000000000000000000000012201222252010454 5ustar debian/source/format0000644000000000000000000000001412201222252011662 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000014512201222252010205 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/org-ruby .*/org-ruby-(.*).tar.gz debian/ruby-tests.rb0000644000000000000000000000012412201222252011617 0ustar require 'rake' app = Rake.application app.init app.load_rakefile app['spec'].invoke debian/README.source0000644000000000000000000000167412201222252011343 0ustar Debian packaging for org-ruby ============================= This package is named "ruby-org" and not "org-ruby" to follow the conventions from the Debian pkg-ruby-extras policy. Upstream source requires manual handling as: * upstream tarballs do not contain all files in their preferred form of modifications, * upstream is using Git. Creating an updated package for a new upstream release goes as: 0. Add a remote with upstream repository if not already done: $ git remote add github-upstream https://github.com/fiorix/cyclone 1. Fetch new commits from upstream repository: $ git fetch upstream 2. Verify the tag for the new version: $ git tag -v version-$VERSION 3. Tag and merge new upstream version: $ git tag upstream/$VERSION version-$VERSION $ git merge upstream/$VERSION 4. Hack, improve, update debian/changelog… 5. Build a new package: $ git-buildpackage --git-pristine-tar --git-pristine-tar-commit