comps comps-f8.xml.in,1.133,1.134
by fedora-extras-commits@redhat.com
Author: petersen
Update of /cvs/extras/comps
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv20065
Modified Files:
comps-f8.xml.in
Log Message:
[development-tools] add alex
Index: comps-f8.xml.in
===================================================================
RCS file: /cvs/extras/comps/comps-f8.xml.in,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- comps-f8.xml.in 28 Sep 2007 16:46:57 -0000 1.133
+++ comps-f8.xml.in 30 Sep 2007 23:55:21 -0000 1.134
@@ -901,6 +901,7 @@
<packagereq type="default">texinfo</packagereq>
<packagereq type="default">valgrind</packagereq>
<packagereq type="optional">abicheck</packagereq>
+ <packagereq type="optional">alex</packagereq>
<packagereq type="optional">alleyoop</packagereq>
<packagereq type="optional">aplus-fsf</packagereq>
<packagereq type="optional">archmage</packagereq>
16 years
rpms/fonts-chinese/devel .cvsignore,1.9,1.10 sources,1.11,1.12
by fedora-extras-commits@redhat.com
Author: cchance
Update of /cvs/pkgs/rpms/fonts-chinese/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv19602
Modified Files:
.cvsignore sources
Log Message:
Removed taipeifont sources from 'sources' and '.cvsignore' list.
Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/fonts-chinese/devel/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore 9 Nov 2006 00:39:49 -0000 1.9
+++ .cvsignore 30 Sep 2007 23:44:04 -0000 1.10
@@ -2,19 +2,3 @@
*.bz2
*.gz
*.rpm
-bkai00mp.ttf
-bsmi00lp.ttf
-gbsn00lp.ttf
-gkai00mp.ttf
-uming-v0.1-pre2.ttf
-ukai-v0.1-pre2.ttf
-ttf-arphic-uming_0.1-0.dot.3.tar.gz
-ttf-arphic-ukai_0.1-0.dot.3.tar.gz
-taipeifonts-1.2.tar.gz
-ttf-arphic-uming_0.1-0.dot.3-20060822a.tar.gz
-ttf-arphic-ukai_0.1.20060513.rh20060829a.tar.gz
-ttf-arphic-ukai_0.1.20060513.orig.tar.gz
-ttf-arphic-uming_0.1.20060513.orig.tar.gz
-ttf-arphic-uming_0.1.20060513.rh20060829a.tar.gz
-ttf-arphic-uming_0.1.20060928.orig.tar.gz
-ttf-arphic-ukai_0.1.20060928.orig.tar.gz
Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/fonts-chinese/devel/sources,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sources 31 Aug 2007 08:17:29 -0000 1.11
+++ sources 30 Sep 2007 23:44:04 -0000 1.12
@@ -1 +0,0 @@
-9e4acdd5a218dea6aaa28bc80d472aad taipeifonts-1.2.tar.gz
16 years
rpms/codeina/devel codeina-f8-wishlist.patch, NONE, 1.1 codeina.spec, 1.4, 1.5 codeina-python-dirs.patch, 1.1, NONE
by fedora-extras-commits@redhat.com
Author: hadess
Update of /cvs/pkgs/rpms/codeina/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv19098
Modified Files:
codeina.spec
Added Files:
codeina-f8-wishlist.patch
Removed Files:
codeina-python-dirs.patch
Log Message:
* Mon Oct 01 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.1-2
- Big patch from myself (fixes from Thomas) to:
- Show a title to the price column (#299251)
- Not redownload already downloaded packages, and check whether corrupted
(#305421)
- Select free matching codecs by default (#305411)
- Clearly show an empty list and a warning when no codecs match the required
ones, so users don't get confused
codeina-f8-wishlist.patch:
--- NEW FILE codeina-f8-wishlist.patch ---
Index: ChangeLog
===================================================================
--- ChangeLog (revision 827)
+++ ChangeLog (working copy)
@@ -1,3 +1,24 @@
+2007-09-29 Thomas Vander Stichele <thomas at apestaart dot org>
+
+ patch by: Bastien Nocera
+
+ * codeina/httpdownload.py:
+ * codeina/listview.py:
+ * codeina/main.py:
+ * codeina/productlist.py:
+ * codeina/requiredplugin.py:
+ * data/available-plugins.xml.in:
+ Add sha1sums to plugins, and use it to verify plugin download.
+ See https://bugzilla.redhat.com/show_bug.cgi?id=305421
+ Add price column header.
+ See https://bugzilla.redhat.com/show_bug.cgi?id=299251
+ Select free and matching codecs by default.
+ See https://bugzilla.redhat.com/show_bug.cgi?id=305411
+ Don't silently switch to the "all available" view when requesting a
+ plugin that's not available, instead, show an empty list, and
+ error
+ message with an explanation on how to see all the plugins
+
=== release 0.10.1 ===
2007-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
Index: codeina/requiredplugin.py
===================================================================
--- codeina/requiredplugin.py (revision 827)
+++ codeina/requiredplugin.py (working copy)
@@ -51,6 +51,10 @@
if self.req_type in self.valid_req_types:
self.valid = True
+ def __repr__(self):
+ return "<%s for %s> " % (self.__class__.__name__, self.req_string)
+
+
# currently we're only interested in specialising mp3, we should probably
# do something more generic later that covers other common formats too
def is_mp3_decoder(self):
Index: codeina/listview.py
===================================================================
--- codeina/listview.py (revision 827)
+++ codeina/listview.py (working copy)
@@ -35,6 +35,10 @@
class ListView(gtk.VBox):
+ """
+ @ivar productlist: list of products, set when creating the listview
+ @type productlist: L{codeina.productlist.ProductList}
+ """
def __init__(self):
gtk.VBox.__init__(self)
@@ -53,7 +57,9 @@
self.view = gtk.TreeView()
row_height = self.get_estimated_row_height()
row_padding = 2 # assumed, random number
- self.view.set_size_request(-1, (row_height + row_padding) * 8)
+ headers_height = 12 # assumed
+ self.view.set_size_request(-1,
+ (row_height + row_padding) * 8 + headers_height)
self.productlist = None
self.store = gtk.ListStore(object)
self.store.set_default_sort_func(self.sort_func, self)
@@ -61,9 +67,8 @@
self.model = self.store.filter_new()
self.model.set_visible_func(self.visible_func, self)
self.view.set_model(self.model)
- self.view.set_headers_visible(False)
self.view.set_rules_hint(True)
- column = gtk.TreeViewColumn("product")
+ column = gtk.TreeViewColumn(_("Product"))
text_renderer = gtk.CellRendererText()
text_renderer.set_property('xpad', 6)
text_renderer.set_property('ypad', 3)
@@ -79,7 +84,7 @@
# the expand property to False, so that things behave right if the
# user makes the window wider
- column = gtk.TreeViewColumn('install-status')
+ column = gtk.TreeViewColumn(_('Installed?'))
status_renderer = gtk.CellRendererText()
column.pack_start(status_renderer, True)
status_renderer.set_property('xalign', 0.5)
@@ -90,7 +95,7 @@
column.set_expand(False)
self.view.append_column(column)
- column = gtk.TreeViewColumn('price')
+ column = gtk.TreeViewColumn(_('Price'))
price_renderer = gtk.CellRendererText()
column.pack_end(price_renderer, False)
price_renderer.set_property('xalign', 1.0)
@@ -102,7 +107,7 @@
# Put check boxes in separate column for nicer activation
- column = gtk.TreeViewColumn("toggle")
+ column = gtk.TreeViewColumn("")
toggle_renderer = gtk.CellRendererToggle()
toggle_renderer.set_property('activatable', True)
toggle_renderer.connect('toggled', self.cell_toggled_cb, self)
@@ -145,13 +150,16 @@
return False
flav = product.get_best_flavor_for_current_system()
if not flav:
+ print "product %r does not have flavor" % product
product.set_selected(False)
return False
if not self.required_plugins:
return True
else:
+ print "Checking visibility of product %r" % product
for req in self.required_plugins:
if product.provides_requirement(req):
+ print "provides requirement %r, showing" % req
return True
return False
@@ -229,7 +237,7 @@
data):
product = tree_model.get_value(tree_iter, 0)
if product.price:
- renderer.set_property('text', "%.0f€" % product.price)
+ renderer.set_property('text', "%.0f €" % product.price)
else:
renderer.set_property('text', _("Free"))
return
@@ -238,11 +246,16 @@
self.store.clear()
if self.productlist:
for p in self.productlist.products:
+ print "appending product %r" % p
row = self.store.append()
self.store.set_value(row, 0, p)
return
def set_product_list(self, product_list):
+ """
+ @ivar productlist: list of products the view should handle
+ @type productlist: L{codeina.productlist.ProductList}
+ """
if self.productlist != product_list:
self.productlist = product_list
self.fill_with_products()
Index: codeina/httpdownload.py
===================================================================
--- codeina/httpdownload.py (revision 827)
+++ codeina/httpdownload.py (working copy)
@@ -31,7 +31,9 @@
import thread
import urllib2
import xdg.BaseDirectory
+import sha
+from codeina.extern.log import log
from gettext import gettext as _
# Defaults to ~/.local/share/codeina/downloads/ in most cases
@@ -43,7 +45,7 @@
Downloads a HTTP URI to file in a separate thread and iterates the
GLib/Gtk main context until either the download is done or an error occurred
"""
-class HttpDownload:
+class HttpDownload(log.Loggable):
"""
@ivar content_length: size in bytes of the download
"""
@@ -59,6 +61,7 @@
def __init__ (self):
self.url = None
+ self.sha1sum = None
self.directory = None
self.fn = None
self.done = False
@@ -71,7 +74,7 @@
def get_error_msg_from_error(self, err):
msg = _("Unexpected error of type %s") % type(err)
try:
- raise err
+ raise err
except urllib2.HTTPError, e:
if e.code == 403:
msg = _("Access to this file is forbidden")
@@ -105,7 +108,11 @@
return msg
""" Iterates the default GLib main context until the download is done """
- def run(self, url, directory, fn, message=None):
+ def run(self, url, directory, fn, sha1sum, message=None):
+ self.debug("Running download for %s (sha1sum=%s)" % (os.path.join(directory, fn), sha1sum))
+ if sha1sum and self.verify(os.path.join(directory, fn), sha1sum):
+ self.debug("Already downloaded %s" % os.path.join(directory, fn))
+ return None
if self.url:
return _("Download already in progress")
@@ -116,6 +123,7 @@
self.url = url
self.directory = directory
self.fn = fn
+ self.sha1sum = sha1sum
self.done = False
self.err = None
self.bytes_read = -1
@@ -165,6 +173,23 @@
return not self.done
+ """ Check whether a file matches the SHA1 sum given """
+ def verify(self, fn, sha1sum):
+ if not sha1sum:
+ self.debug("No sha1sum or filename, can't check (%s), "
+ "so assuming true" % fn)
+ return True
+
+ fs = open(fn,'rb').read()
+ real_sha1sum = sha.new(fs).hexdigest()
+ if real_sha1sum == sha1sum:
+ self.debug("%s matched its sha1sum" % fn)
+ return True
+
+ self.debug("%s didn't match its sha1sum (got %s expected %s)" % (
+ fn, real_sha1sum, sha1sum))
+ return False
+
""" Thread where all the downloading and file writing happens """
def thread_func(self):
@@ -191,8 +216,8 @@
pass
# Now create a temp file there
- tmpfile_handle, tmpfile_path = tempfile.mkstemp('.incomplete',\
- 'codeina-download',\
+ tmpfile_handle, tmpfile_path = tempfile.mkstemp('.incomplete',
+ 'codeina-download',
self.directory)
while not self.cancelled:
@@ -211,6 +236,12 @@
os.remove(tmpfile_path)
except:
pass
+ elif not self.verify(tmpfile_path, self.sha1sum):
+ try:
+ os.remove(tmpfile_path)
+ except:
+ pass
+ err = _("Downloaded file is corrupted")
else:
os.rename(tmpfile_path, os.path.join(self.directory, self.fn))
@@ -277,11 +308,11 @@
def destroy(self):
self.dlg.destroy()
- def run(self, url, directory, fn, message):
+ def run(self, url, directory, fn, sha1sum, message):
if message:
self.set_dialog_text(message)
self.dlg.present()
- err = HttpDownload.run(self, url, directory, fn, None)
+ err = HttpDownload.run(self, url, directory, fn, sha1sum, None)
self.dlg.hide()
return err
@@ -310,11 +341,16 @@
if __name__ == "__main__":
- # Different URLs for different errors
+ log.init('CODEINA_DEBUG')
+ log.setPackageScrubList('codeina')
+
+ # Different URLs for different errors
#url='http://shop.fluendo.com/images/mpeg.png'
#url='http://shop.fluendo.com/tpm-codeina-test.bz2'
#url='http://example.com/gimme-a-404'
- url='http://antihost.atari/tpm-codeina-test.bz2'
+ #url='http://antihost.atari/tpm-codeina-test.bz2'
+ url="http://shop.fluendo.com/pub/fluendo-mp3-2.i386.tar.bz2"
+ sha1sum='117f85e118dab2d9f7c9bb10554fbc4e8f7fdf38'
download_dir = DEFAULT_DOWNLOAD_DIR
@@ -322,7 +358,7 @@
# Do the downloading, with dialog
d = HttpDownloadDialog()
- e = d.run(url, download_dir, fn, "Downloading '%s'" % fn)
+ e = d.run(url, download_dir, fn, sha1sum, "Downloading '%s'" % fn)
if d.cancelled:
print "Download cancelled"
elif e:
Index: codeina/productlist.py
===================================================================
--- codeina/productlist.py (revision 827)
+++ codeina/productlist.py (working copy)
@@ -103,13 +103,19 @@
d['summary'] = self._get_localized(summaries)
d['flavors'] = flavors
product = Product(**d)
+
+ # Select the free-not-fully-installed plugins by default
+ if price == 0.0:
+ product.selected = not product.is_fully_installed()
+
return product
def _parse_flavor(self, node):
d = {}
required = ('system', 'arch', 'distro', 'distro-version',
'core-req', 'base-req', 'last-modified', 'uri', 'comment')
- attrs = self.parseAttributes(node, required=required)
+ optional = ('sha1sum',)
+ attrs = self.parseAttributes(node, required=required, optional=optional)
for i in range(0, len(required)):
# pesky - -> _ translation for attributes
key = '_'.join(required[i].split('-'))
@@ -125,7 +131,6 @@
flavor = ProductFlavor(**d)
return flavor
-
def _parse_name(self, node):
# parse a name and its language
# return tuple of language, name
@@ -204,6 +209,9 @@
selected = False # for list view
+ def __repr__(self):
+ return "<%s for %s> " % (self.__class__.__name__, self.name)
+
def get_selected(self):
return self.selected
@@ -398,6 +406,7 @@
version = None
uri = None
comment = None
+ sha1sum = None
def is_compatible(self, system, arch, distro, core_version,
base_version):
@@ -418,18 +427,22 @@
if __name__ == "__main__":
- plist = ProductList()
- try:
- plist.read_from_xml(open("available-plugins.xml").read())
- print "done, %d products:" % len(plist.products)
- for p in plist.products:
- print " * %s (%.2f EUR)" % (p.name, p.price)
- for f in p.flavors:
- print " - %s %s %s" % (f.system, f.arch, f.distro)
- except:
- print "oops, couldn't parse products XML list"
+ xml_data = open("../data/available-plugins.xml")
+ parser = ProductListParser()
+ plist = parser.parse(xml_data)
+ print "done, %d products:" % len(plist.products)
+ for p in plist.products:
+ print " * %s (%.2f EUR)" % (p.name, p.price)
+ for f in p.flavors:
+ print " - %s %s %s %s %s" % (f.system, f.arch, f.distro, os.path.basename(f.uri), f.sha1sum)
-# flavs = plist.products[0].find_compatible_flavors ("Linux", "ppc64", None, Version("0.10.9"), Version ("0.10.9"))
-# print "Matching flavors:"
-# for f in flavs:
-# print " - %s %s %s %s" % (f.product.name, f.system, f.arch, f.distro)
+ f = plist.products[9].get_best_flavor_for_current_system()
+ print "Best flavor:"
+ print " - %s %s %s %s %s" % (f.system, f.arch, f.distro, os.path.basename(f.uri), f.sha1sum)
+
+ flavs = plist.products[9].find_compatible_flavors ("Linux", "i386", None, check.Version("0.10.4"), check.Version("0.10.4"))
+# flavs = plist.products[0].find_compatible_flavors ("Linux", "ppc64", None, Version("0.10.9"), Version ("0.10.9"))
+ print "Matching flavors:"
+ for f in flavs:
+ print " - %s %s %s %s %s" % (f.system, f.arch, f.distro, os.path.basename(f.uri), f.sha1sum)
+
Index: codeina/main.py
===================================================================
--- codeina/main.py (revision 827)
+++ codeina/main.py (working copy)
@@ -241,6 +241,18 @@
self.vbox.pack_start(self.listview, True)
+ # The label showing we have no matching plugins
+
+ self.no_plugins_box = gtk.HBox()
+ img = gtk.Image()
+ img.set_from_stock(gtk.STOCK_DIALOG_WARNING, gtk.ICON_SIZE_DIALOG)
+ self.no_plugins_box.pack_start(img, False, 0, 6)
+ label = gtk.Label(
+ _("There are no plugins available for the requested functionality.")
+ + "\n" + _("Please select the full plugins list in the View menu."))
+ self.no_plugins_box.pack_start(label, False)
+ self.vbox.pack_start(self.no_plugins_box, False)
+
# status bar
self.statusbar = gtk.Statusbar()
@@ -248,13 +260,15 @@
self.statusbar.show()
self.vbox.pack_end(self.statusbar, False)
- # only show matching plugin packages if there are required plugins (?)
+ # only show matching plugin packages if there are required plugins
if self.required_plugins and len(self.required_plugins) > 0:
+ self.debug("Showing the matching plugins list")
self.actiongroup.get_action('ViewMatching').set_active(True)
else:
+ self.debug("Showing all the plugins")
self.actiongroup.get_action('ViewAllAvailable').set_active(True)
- self.actiongroup.get_action('ViewMatching').set_visible(False)
+ self.actiongroup.get_action('ViewMatching').set_sensitive(False)
# button box
@@ -341,7 +355,7 @@
button.set_property('can-default', True)
return button
- def download_uri(self, dialog, name, uri):
+ def download_uri(self, dialog, name, uri, sha1sum):
"""
Download the given uri.
@@ -352,7 +366,8 @@
self.debug("Trying to download '%s'" % uri)
dl_dir = DEFAULT_DOWNLOAD_DIR
fn = os.path.basename(uri)
- err_msg = dialog.run(uri, dl_dir, fn, _("Downloading '%s'") % name)
+ err_msg = dialog.run(uri, dl_dir, fn, sha1sum,
+ _("Downloading '%s'") % name)
if dialog.cancelled:
self.debug("Download cancelled")
return None
@@ -378,7 +393,7 @@
Returns: whether the EULA was accepted.
"""
- path = self.download_uri(dialog, name, eula_uri)
+ path = self.download_uri(dialog, name, eula_uri, None)
if not path:
self.debug('Could not download EULA')
return False
@@ -412,7 +427,10 @@
continue
flavor = p.get_best_flavor_for_current_system()
- path = self.download_uri(d, p.name, flavor.uri)
+ self.debug("Selected flavour %s %s %s %s %s" % (
+ flavor.system, flavor.arch, flavor.distro,
+ os.path.basename(flavor.uri), flavor.sha1sum))
+ path = self.download_uri(d, p.name, flavor.uri, flavor.sha1sum)
if not path:
self.debug('User cancelled')
@@ -513,8 +531,12 @@
self.listview.show_matching(self.required_plugins)
no_rows_txt = _(
'No matching plugins available for your system yet.')
+
if self.listview.get_visible_rows() == 0:
self.set_status_text(no_rows_txt)
+ self.no_plugins_box.show_all()
+ else:
+ self.no_plugins_box.hide()
def do_install(self, filenames):
failed_installs = []
Index: data/available-plugins.xml.in
===================================================================
--- data/available-plugins.xml.in (revision 827)
+++ data/available-plugins.xml.in (working copy)
@@ -50,13 +50,15 @@
core-req="0.10.3" base-req="0.10.3"
last-modified="2007-05-25"
uri="http://shop.fluendo.com/pub/fluendo-mp3-2.i386.tar.bz2"
- comment="Tested on FC3, FC4, FC5, and Ubuntu 6.10 (edgy)"
+ comment="Tested on FC3, FC4, FC5, and Ubuntu 6.10 (edgy)"
+ sha1sum="117f85e118dab2d9f7c9bb10554fbc4e8f7fdf38"
/>
<flavor system="Linux" arch="x86_64" distro="generic" distro-version="any"
core-req="0.10.3" base-req="0.10.3"
last-modified="2007-05-25"
uri="http://shop.fluendo.com/pub/fluendo-mp3-2.x86_64.tar.bz2"
- comment=""
+ comment=""
+ sha1sum="47e2169453c4025e88edd6e4e1b64da26cbf64c6"
/>
</product>
Index: codeina.spec
===================================================================
RCS file: /cvs/pkgs/rpms/codeina/devel/codeina.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- codeina.spec 27 Aug 2007 15:17:49 -0000 1.4
+++ codeina.spec 30 Sep 2007 23:25:40 -0000 1.5
@@ -6,7 +6,7 @@
Name: codeina
Version: 0.10.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: GStreamer Codec Installation Application
Group: Applications/Internet
@@ -15,6 +15,7 @@
# Upstream SVN repository is at https://core.fluendo.com/gstreamer/svn/codeina/trunk/
Source: http://www.fluendo.com/downloads/codeina/%{name}-%{version}.tar.bz2
Source1: gst-install-plugins-helper.sh
+Patch0: codeina-f8-wishlist.patch
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
Requires: python >= 2.3
@@ -35,6 +36,7 @@
%prep
%setup -q
+%patch0 -p0 -b .old
%build
%configure
@@ -62,6 +64,15 @@
%{_datadir}/%{name}/
%changelog
+* Mon Oct 01 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.1-2
+- Big patch from myself (fixes from Thomas) to:
+- Show a title to the price column (#299251)
+- Not redownload already downloaded packages, and check whether corrupted
+ (#305421)
+- Select free matching codecs by default (#305411)
+- Clearly show an empty list and a warning when no codecs match the required
+ ones, so users don't get confused
+
* Mon Aug 27 2007 Thomas Vander Stichele <thomas at apestaart dot org>
- 0.10.1-1
- New release
--- codeina-python-dirs.patch DELETED ---
16 years
rpms/fonts-chinese/devel fonts-chinese.spec,1.47,1.48
by fedora-extras-commits@redhat.com
Author: cchance
Update of /cvs/pkgs/rpms/fonts-chinese/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv18809
Modified Files:
fonts-chinese.spec
Log Message:
* Thu Sep 27 2007 Caius Chance <cchance(a)redhat.com> - 3.03-12.fc8
- Resolves: rhbz#225761 (Convert fonts-chinese into meta-package.)
<<<<< Taipei fonts was moved to a separate package taipeifonts.
<<<<< Improved: % defattr(-,root,root,-)
<<<<<-Put taipeifonts after cjkunifonts in the requires.
* Thu Sep 27 2007 Caius Chance <cchance(a)redhat.com> - 3.03-11.fc8
- Resolves: rhbz#225761 (Convert fonts-chinese into meta-package.)
<<<<< Tidy up spec file.
Index: fonts-chinese.spec
===================================================================
RCS file: /cvs/pkgs/rpms/fonts-chinese/devel/fonts-chinese.spec,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- fonts-chinese.spec 31 Aug 2007 08:20:41 -0000 1.47
+++ fonts-chinese.spec 30 Sep 2007 23:14:19 -0000 1.48
@@ -1,74 +1,44 @@
-%define basefontdir %{_datadir}/fonts/chinese
-%define miscfontdir %{basefontdir}/misc
-%define catalogue /etc/X11/fontpath.d
-
-%define taipeiver 1.2
-
-Summary: Traditional Chinese bitmap fonts and meta-package for Chinese fonts
Name: fonts-chinese
-Version: 3.03
-Release: 10%{?dist}
-License: Public Domain
+Summary: Meta-package for Chinese fonts
+License: GPLv2+
Group: User Interface/X
+Version: 3.03
+Release: 12%{?dist}
BuildArch: noarch
-BuildRoot: %{_tmppath}/%{name}-%{version}-root
-
-Source1: taipeifonts-%{taipeiver}.tar.gz
-Source2: taipeifonts.alias
+BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
-BuildRequires: xorg-x11-font-utils
-Obsoletes: ttfonts-zh_CN <= 2.14-10, ttfonts-zh_TW <= 2.11-28, ttf-moe_sung, ttf-moe_kai, ttf-arphic_bming, ttf-arphic_bkai, taipeifonts
-Requires: cjkunifonts-uming, cjkunifonts-ukai
+Requires: cjkunifonts-uming, cjkunifonts-ukai
+Requires: taipeifonts
%description
-This package includes some Traditional Chinese bitmap fonts and also acts
-as a meta-package for general Chinese fonts support.
+This is a meta-package for Chinese fonts support.
%prep
-%setup -q -T -c -a1
+%{nil}
%build
-pushd taipeifonts-%{taipeiver}/
-bdftopcf taipei24.bdf | gzip -c > taipei24.pcf.gz
-bdftopcf taipei20.bdf | gzip -c > taipei20.pcf.gz
-bdftopcf taipei16.bdf | gzip -c > taipei16.pcf.gz
-popd
+%{nil}
%install
rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{miscfontdir}
-install -m 0644 taipeifonts-%{taipeiver}/taipei24.pcf.gz $RPM_BUILD_ROOT%{miscfontdir}
-install -m 0644 taipeifonts-%{taipeiver}/taipei20.pcf.gz $RPM_BUILD_ROOT%{miscfontdir}
-install -m 0644 taipeifonts-%{taipeiver}/taipei16.pcf.gz $RPM_BUILD_ROOT%{miscfontdir}
-install -m 0644 taipeifonts-%{taipeiver}/vga12x24.pcf.gz $RPM_BUILD_ROOT%{miscfontdir}
-install -m 0644 %{SOURCE2} $RPM_BUILD_ROOT%{miscfontdir}/fonts.alias
-
-# for catalogue
-install -d $RPM_BUILD_ROOT%{catalogue}
-ln -s %{miscfontdir} $RPM_BUILD_ROOT%{catalogue}/%{name}
-
-# for fonts.*
-mkfontdir $RPM_BUILD_ROOT%{miscfontdir}
-
-touch $RPM_BUILD_ROOT%{basefontdir}/fonts.cache-1
-touch $RPM_BUILD_ROOT%{miscfontdir}/fonts.cache-1
-
%clean
rm -rf $RPM_BUILD_ROOT
%files
-%defattr(-, root, root)
-%dir %{basefontdir}
-%dir %{miscfontdir}
-%{miscfontdir}/*.gz
-%{miscfontdir}/fonts.alias
-%ghost %verify(not md5 size mtime) %{basefontdir}/fonts.cache-1
-%verify(not md5 size mtime) %{miscfontdir}/fonts.dir
-%ghost %verify(not md5 size mtime) %{miscfontdir}/fonts.cache-1
-%{catalogue}/%{name}
+%defattr(-,root,root,-)
%changelog
+* Thu Sep 27 2007 Caius Chance <cchance(a)redhat.com> - 3.03-12.fc8
+- Resolves: rhbz#225761 (Convert fonts-chinese into meta-package.)
+ <<<<< Taipei fonts was moved to a separate package taipeifonts.
+ <<<<< Improved: % defattr(-,root,root,-)
+ <<<<<-Put taipeifonts after cjkunifonts in the requires.
+
+* Thu Sep 27 2007 Caius Chance <cchance(a)redhat.com> - 3.03-11.fc8
+- Resolves: rhbz#225761 (Convert fonts-chinese into meta-package.)
+ <<<<< Tidy up spec file.
+
* Fri Aug 31 2007 Jens Petersen <petersen(a)redhat.com> - 3.03-10.fc8
- finish moving Uming and Ukai truetype fonts over to cjkunifonts (#266281):
- update summary and description
@@ -82,7 +52,7 @@
- Resolves: rhbz#266281 (Remove uming and ukai from fonts-chinese.)
-- remove ttfontdir and cidmapdir
-- update license to Public Domain for taipeifonts
--- remove %{_datadir}/fonts/zh_*/TrueType/ compat dirs
+-- remove % {_datadir}/fonts/zh_*/TrueType/ compat dirs
-- remove fc-cache from post and postun scriptlets
* Mon Aug 27 2007 Caius Chance <cchance(a)redhat.com> - 3.03-9.fc8
16 years
rpms/mlton/F-7 .cvsignore,1.4,1.5 sources,1.4,1.5
by fedora-extras-commits@redhat.com
Author: agoode
Update of /cvs/extras/rpms/mlton/F-7
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv18668
Modified Files:
.cvsignore sources
Log Message:
new sources
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/mlton/F-7/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 30 Sep 2007 22:58:38 -0000 1.4
+++ .cvsignore 30 Sep 2007 23:04:28 -0000 1.5
@@ -1 +1,2 @@
+mlton-20070826-1.amd64-linux.tgz
mlton-20070826-1.src.tgz
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/mlton/F-7/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 30 Sep 2007 22:58:38 -0000 1.4
+++ sources 30 Sep 2007 23:04:28 -0000 1.5
@@ -1 +1,2 @@
+a6bba7e4936b5c57e4383751777998cb mlton-20070826-1.amd64-linux.tgz
08356566e20f47c1bcc8002fde72c2ec mlton-20070826-1.src.tgz
16 years
rpms/mlton/F-7 mlton.spec,1.10,1.11
by fedora-extras-commits@redhat.com
Author: agoode
Update of /cvs/extras/rpms/mlton/F-7
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv18595
Modified Files:
mlton.spec
Log Message:
* Sun Sep 30 2007 Adam Goode <adam(a)spicenitz.org> - 20070826-10.1
- Enable bootstrap for x86_64 for Fedora 7
Index: mlton.spec
===================================================================
RCS file: /cvs/extras/rpms/mlton/F-7/mlton.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- mlton.spec 30 Sep 2007 22:58:38 -0000 1.10
+++ mlton.spec 30 Sep 2007 23:02:47 -0000 1.11
@@ -1,8 +1,12 @@
+%ifarch x86_64
+%define mlton_bootstrap 1
+%else
%define mlton_bootstrap 0
+%endif
Name: mlton
Version: 20070826
-Release: 10%{?dist}
+Release: 10%{?dist}.1
Summary: Optimizing compiler for Standard ML
Group: Development/Languages
@@ -10,7 +14,7 @@
URL: http://mlton.org/
Source0: http://mlton.org/pages/Download/attachments/%{name}-%{version}-1.src.tgz
-#Source1: mlton-20061107-1.ppc-linux.tgz
+Source1: http://mlton.org/pages/Download/attachments/mlton-20070826-1.amd64-linux.tgz
Patch0: mlton-20070826-debuginfo.patch
@@ -98,6 +102,9 @@
%changelog
+* Sun Sep 30 2007 Adam Goode <adam(a)spicenitz.org> - 20070826-10.1
+- Enable bootstrap for x86_64 for Fedora 7
+
* Thu Sep 27 2007 Adam Goode <adam(a)spicenitz.org> - 20070826-10
- Disable bootstrap
16 years
rpms/mlton/F-7 mlton-20070826-debuginfo.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 mlton.spec, 1.9, 1.10 sources, 1.3, 1.4 mlton-20051202-pdf-docs.patch, 1.1, NONE mlton-20061107-debuginfo.patch, 1.1, NONE mlton-20061107-optflags.patch, 1.1, NONE
by fedora-extras-commits@redhat.com
Author: agoode
Update of /cvs/extras/rpms/mlton/F-7
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv12423
Modified Files:
.cvsignore mlton.spec sources
Added Files:
mlton-20070826-debuginfo.patch
Removed Files:
mlton-20051202-pdf-docs.patch mlton-20061107-debuginfo.patch
mlton-20061107-optflags.patch
Log Message:
synchronize devel version to F-7
mlton-20070826-debuginfo.patch:
--- NEW FILE mlton-20070826-debuginfo.patch ---
diff -ur mlton-20070826~/Makefile mlton-20070826/Makefile
--- mlton-20070826~/Makefile 2007-08-26 17:04:14.000000000 -0400
+++ mlton-20070826/Makefile 2007-08-26 18:28:15.000000000 -0400
@@ -430,17 +430,6 @@
if $(GZIP_MAN); then \
cd "$(TMAN)" && $(GZIP) $(MAN_PAGES); \
fi
- case "$(TARGET_OS)" in \
- aix|cygwin|darwin|solaris) \
- ;; \
- *) \
- for f in "$(TLIB)/$(AOUT)$(EXE)" "$(TBIN)/$(LEX)$(EXE)" \
- "$(TBIN)/$(NLFFIGEN)$(EXE)" "$(TBIN)/$(PROF)$(EXE)" \
- "$(TBIN)/$(YACC)$(EXE)"; do \
- strip --remove-section=.comment \
- --remove-section=.note "$$f"; \
- done \
- esac
.PHONY: install-docs
install-docs:
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/mlton/F-7/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 13 Nov 2006 00:23:17 -0000 1.3
+++ .cvsignore 30 Sep 2007 22:58:38 -0000 1.4
@@ -1 +1 @@
-mlton-20061107.tar.bz2
+mlton-20070826-1.src.tgz
Index: mlton.spec
===================================================================
RCS file: /cvs/extras/rpms/mlton/F-7/mlton.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- mlton.spec 8 Aug 2007 01:53:29 -0000 1.9
+++ mlton.spec 30 Sep 2007 22:58:38 -0000 1.10
@@ -1,23 +1,18 @@
%define mlton_bootstrap 0
Name: mlton
-Version: 20061107
-Release: 3%{?dist}
+Version: 20070826
+Release: 10%{?dist}
Summary: Optimizing compiler for Standard ML
Group: Development/Languages
License: MIT
URL: http://mlton.org/
-Source0: mlton-%{version}.tar.bz2
-%if %{mlton_bootstrap}
-# taken from mlton_20060213-1 from Debian
-Source1: mlton-bootstrap.i386.tar.bz2
-Source2: mlton-bootstrap.ppc.tar.bz2
-%endif
+Source0: http://mlton.org/pages/Download/attachments/%{name}-%{version}-1.src.tgz
+
+#Source1: mlton-20061107-1.ppc-linux.tgz
-Patch0: mlton-20051202-pdf-docs.patch
-Patch1: mlton-20061107-debuginfo.patch
-Patch2: mlton-20061107-optflags.patch
+Patch0: mlton-20070826-debuginfo.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -29,8 +24,8 @@
Requires: gmp-devel gcc
-# not yet available for 64-bit arch (#198764)
-ExcludeArch: x86_64 ppc64
+# need to bootstrap ppc64 still
+ExcludeArch: ppc64
# description taken from the Debian package by Stephen Weeks
@@ -45,35 +40,30 @@
%prep
%setup -q
-# instantiate version numbers
-make version VERSION=%{version}
-
-# build documentation as PDF
-%patch -P 0 -p1 -b .pdf-docs
# disable strip so debuginfo packages work
-%patch -P 1 -p1 -b .debuginfo
-# enable RPM_OPT_FLAGS
-%patch -P 2 -p1 -b .optflags
-
-# set correct version of PDF guide until this is fixed upstream
-sed -i 's/\(^version=\).*$/\1%{version}/g' bin/make-pdf-guide
+%patch -P 0 -p1 -b .debuginfo
%if %{mlton_bootstrap}
-%ifarch i386
%setup -T -D -q -a 1
+sed -i 's/\(^lib=\).*$/\1\$MLTON_BOOTSTRAP_DIR\/lib\/mlton/g' \
+ usr/bin/mlton
%endif
-%ifarch ppc
-%setup -T -D -q -a 2
-%endif
-sed -i 's/\(^lib=\).*$/\1\$MLTON_BOOTSTRAP_DIR\/usr\/lib\/mlton/g' \
- bootstrap/usr/bin/mlton
-%endif
+
+# Filter unwanted Requires:
+cat << \EOF > %{name}-req
+#!/bin/sh
+%{__perl_requires} $* |\
+ sed -e '/perl(mltex.thm)/d'
+EOF
+
+%define __perl_requires %{_builddir}/%{name}-%{version}/%{name}-req
+chmod +x %{__perl_requires}
%build
%if %{mlton_bootstrap}
-export MLTON_BOOTSTRAP_DIR=$(pwd)/bootstrap
-export PATH="${PATH}":$MLTON_BOOTSTRAP_DIR/usr/bin
+export MLTON_BOOTSTRAP_DIR=$(pwd)/usr
+export PATH="${PATH}":$MLTON_BOOTSTRAP_DIR/bin
%endif
make OPTFLAGS="$RPM_OPT_FLAGS"
@@ -82,7 +72,8 @@
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT MAN_PREFIX_EXTRA=/share \
- TDOC=$RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
+ TDOC=$RPM_BUILD_ROOT%{_docdir}/%{name}-%{version} \
+ ULIB=%{_lib}/mlton
# remove unecessary regression test
rm -rf $RPM_BUILD_ROOT%{_libdir}/mlton/sml/ckit-lib/regression
@@ -107,8 +98,40 @@
%changelog
-* Fri May 25 2007 Adam Goode <adam(a)spicenitz.org> - 20061107-2.1
-- ExcludeArch: ppc64
+* Thu Sep 27 2007 Adam Goode <adam(a)spicenitz.org> - 20070826-10
+- Disable bootstrap
+
+* Thu Sep 27 2007 Adam Goode <adam(a)spicenitz.org> - 20070826-9
+- Re-bootstrap ppc
+
+* Wed Sep 26 2007 Adam Goode <adam(a)spicenitz.org> - 20070826-8
+- Really fix SRPM conditionals
+
+* Wed Sep 26 2007 Adam Goode <adam(a)spicenitz.org> - 20070826-7
+- Work around strange SRPM problem in conditionals
+- Fix changelog (forgot release 5?)
+
+* Wed Sep 26 2007 Adam Goode <adam(a)spicenitz.org> - 20070826-6
+- Build on ppc now that #247407 is fixed
+
+* Thu Sep 13 2007 Adam Goode <adam(a)spicenitz.org> - 20070826-4
+- Do not condition bootstrap source tag
+
+* Thu Sep 13 2007 Adam Goode <adam(a)spicenitz.org> - 20070826-3
+- Bootstrap x86_64
+
+* Mon Aug 27 2007 Adam Goode <adam(a)spicenitz.org> - 20070826-2
+- Exclude ppc for now (GCC internal compiler error!)
+
+* Sun Aug 26 2007 Adam Goode <adam(a)spicenitz.org> - 20070826-1
+- Update to new release
+
+* Wed Aug 22 2007 Adam Goode <adam(a)spicenitz.org> - 20061107-4
+- Exclude ppc64 for now
+
+* Wed Aug 22 2007 Adam Goode <adam(a)spicenitz.org> - 20061107-3
+- Update license tag
+- Rebuild for buildid
* Fri Nov 24 2006 Adam Goode <adam(a)spicenitz.org> - 20061107-2
- Use RPM_OPT_FLAGS
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/mlton/F-7/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 13 Nov 2006 00:23:17 -0000 1.3
+++ sources 30 Sep 2007 22:58:38 -0000 1.4
@@ -1 +1 @@
-eb5766150520d493fe3f76ee83d475c9 mlton-20061107.tar.bz2
+08356566e20f47c1bcc8002fde72c2ec mlton-20070826-1.src.tgz
--- mlton-20051202-pdf-docs.patch DELETED ---
--- mlton-20061107-debuginfo.patch DELETED ---
--- mlton-20061107-optflags.patch DELETED ---
16 years
rpms/scribes/F-7 .cvsignore, 1.15, 1.16 scribes.spec, 1.31, 1.32 sources, 1.15, 1.16
by fedora-extras-commits@redhat.com
Author: pgordon
Update of /cvs/extras/rpms/scribes/F-7
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv2870/F-7
Modified Files:
.cvsignore scribes.spec sources
Log Message:
Update to 0.3.2.9, sync other changes from devel branch.
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/scribes/F-7/.cvsignore,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- .cvsignore 11 Jun 2007 02:44:37 -0000 1.15
+++ .cvsignore 30 Sep 2007 21:18:58 -0000 1.16
@@ -1 +1 @@
-scribes-0.3.2.8.tar.bz2
+scribes-0.3.2.9.tar.bz2
Index: scribes.spec
===================================================================
RCS file: /cvs/extras/rpms/scribes/F-7/scribes.spec,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- scribes.spec 11 Jun 2007 02:44:37 -0000 1.31
+++ scribes.spec 30 Sep 2007 21:18:58 -0000 1.32
@@ -3,11 +3,11 @@
%define python_module_name SCRIBES
Name: scribes
-Version: 0.3.2.8
+Version: 0.3.2.9
Release: 1%{?dist}
Summary: A sleek, simple, and powerful text editor for the GNOME desktop
Group: Applications/Editors
-License: GPL
+License: GPLv2+
URL: http://scribes.sourceforge.net/
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
@@ -25,6 +25,7 @@
BuildRequires: automake
BuildRequires: gnome-doc-utils
BuildRequires: GConf2
+BuildRequires: intltool
## pygtk2 depends on gtk2 as a run-time dependency, which in turn depends on
## hicolor-icon-theme; thus the %%_datadir/icons/hicolor directory tree is not
@@ -67,9 +68,9 @@
* Translations into several different languages,
...and more are in development!
-In order to make use of its runtime documentation facilities, you will need to
-install Yelp. Also, you may install the python-psyco package (x86-only) for a
-boost in startup speed.
+You may install the python-psyco package (x86-only) for a boost in startup
+speed. Also, you will need to install the Yelp package for Scribes' built-in
+help and documentation.
%prep
@@ -101,10 +102,7 @@
--remove-category=Application \
--delete-original \
%{buildroot}/%{_datadir}/applications/%{name}.desktop
-## Fix some plugin script permissions...
-chmod +x %{buildroot}/%{python_sitelib}/%{python_module_name}/syntax.py
-chmod +x %{buildroot}/%{python_sitelib}/%{python_module_name}/error.py
-chmod +x %{buildroot}/%{python_sitelib}/%{python_module_name}/license.py
+rm -f %{buildroot}/%{_datadir}/%{name}/plugins/*/.__junk
%find_lang %{name}
@@ -160,6 +158,10 @@
%changelog
+* Sun Sep 30 2007 Peter Gordon <peter(a)thecodergeek.com> - 0.3.2.9-1
+- Update to new upstream release (0.3.2.9).
+- Update License tag (GPLv2+).
+
* Sun Jun 10 2007 Peter Gordon <peter(a)thecodergeek.com> - 0.3.2.8-1
- Update to new upstream release (0.3.2.8).
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/scribes/F-7/sources,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- sources 11 Jun 2007 02:44:37 -0000 1.15
+++ sources 30 Sep 2007 21:18:58 -0000 1.16
@@ -1 +1 @@
-a593994bb80dd35a26a02676ba69e786 scribes-0.3.2.8.tar.bz2
+c2cc2dcc28853b950d618c5ef9a8c170 scribes-0.3.2.9.tar.bz2
16 years
rpms/libvirt/devel .cvsignore, 1.24, 1.25 libvirt.spec, 1.64, 1.65 sources, 1.25, 1.26
by fedora-extras-commits@redhat.com
Author: veillard
Update of /cvs/pkgs/rpms/libvirt/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv2846
Modified Files:
.cvsignore libvirt.spec sources
Log Message:
Upstream release 0.3.3
Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/libvirt/devel/.cvsignore,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- .cvsignore 21 Aug 2007 15:14:54 -0000 1.24
+++ .cvsignore 30 Sep 2007 21:18:47 -0000 1.25
@@ -21,3 +21,4 @@
libvirt-0.3.0.tar.gz
libvirt-0.3.1.tar.gz
libvirt-0.3.2.tar.gz
+libvirt-0.3.3.tar.gz
Index: libvirt.spec
===================================================================
RCS file: /cvs/pkgs/rpms/libvirt/devel/libvirt.spec,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- libvirt.spec 24 Aug 2007 15:34:27 -0000 1.64
+++ libvirt.spec 30 Sep 2007 21:18:47 -0000 1.65
@@ -2,8 +2,8 @@
Summary: Library providing a simple API virtualization
Name: libvirt
-Version: 0.3.2
-Release: 2%{?dist}%{?extra_release}
+Version: 0.3.3
+Release: 1%{?dist}%{?extra_release}
License: LGPL
Group: Development/Libraries
Source: libvirt-%{version}.tar.gz
@@ -25,6 +25,9 @@
BuildRequires: ncurses-devel
BuildRequires: gettext
BuildRequires: gnutls-devel
+BuildRequires: avahi-devel
+BuildRequires: dnsmasq
+BuildRequires: bridge-utils
Obsoletes: libvir
# Fedora build root suckage
@@ -180,6 +183,13 @@
%doc docs/examples/python
%changelog
+* Sun Sep 30 2007 Daniel Veillard <veillard(a)redhat.com> - 0.3.3-1
+- Release of 0.3.3
+- Avahi support
+- NUMA support
+- lots of assorted improvements, bugfixes and cleanups
+- documentation and localization improvements
+
* Fri Aug 24 2007 Daniel Veillard <veillard(a)redhat.com> - 0.3.2-2.fc8
- also build on arches where Xen is not available
Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/libvirt/devel/sources,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- sources 21 Aug 2007 15:14:54 -0000 1.25
+++ sources 30 Sep 2007 21:18:47 -0000 1.26
@@ -1 +1 @@
-8e6735446ae8a95cf47877725282d775 libvirt-0.3.2.tar.gz
+583fa13938df63bd404cc1b7cf553874 libvirt-0.3.3.tar.gz
16 years
rpms/scribes/devel .cvsignore, 1.16, 1.17 scribes.spec, 1.34, 1.35 sources, 1.16, 1.17
by fedora-extras-commits@redhat.com
Author: pgordon
Update of /cvs/extras/rpms/scribes/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv2306
Modified Files:
.cvsignore scribes.spec sources
Log Message:
Update to 0.3.2.9
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/scribes/devel/.cvsignore,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- .cvsignore 7 Jun 2007 02:00:27 -0000 1.16
+++ .cvsignore 30 Sep 2007 21:10:14 -0000 1.17
@@ -1 +1,2 @@
scribes-0.3.2.8.tar.bz2
+scribes-0.3.2.9.tar.bz2
Index: scribes.spec
===================================================================
RCS file: /cvs/extras/rpms/scribes/devel/scribes.spec,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- scribes.spec 10 Jun 2007 03:56:21 -0000 1.34
+++ scribes.spec 30 Sep 2007 21:10:14 -0000 1.35
@@ -3,11 +3,11 @@
%define python_module_name SCRIBES
Name: scribes
-Version: 0.3.2.8
-Release: 3%{?dist}
+Version: 0.3.2.9
+Release: 1%{?dist}
Summary: A sleek, simple, and powerful text editor for the GNOME desktop
Group: Applications/Editors
-License: GPL
+License: GPLv2+
URL: http://scribes.sourceforge.net/
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
@@ -158,6 +158,10 @@
%changelog
+* Sun Sep 30 2007 Peter Gordon <peter(a)thecodergeek.com> - 0.3.2.9-1
+- Update to new upstream release (0.3.2.9).
+- Update License tag (GPLv2+).
+
* Sat Jun 09 2007 Peter Gordon <peter(a)thecodergeek.com> - 0.3.2.8-3
- Revert previous Yelp dependency addition. It's in the default install (via
comps) and the only bad thing to happen if it's not available is that
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/scribes/devel/sources,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- sources 7 Jun 2007 02:00:27 -0000 1.16
+++ sources 30 Sep 2007 21:10:14 -0000 1.17
@@ -1 +1,2 @@
a593994bb80dd35a26a02676ba69e786 scribes-0.3.2.8.tar.bz2
+c2cc2dcc28853b950d618c5ef9a8c170 scribes-0.3.2.9.tar.bz2
16 years