Compare commits

...
Sign in to create a new pull request.

5 commits

Author SHA1 Message Date
Fedora Release Engineering
30039c8457 dist-git conversion 2010-07-29 16:12:02 +00:00
Bill Nottingham
4be1aa8932 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:39:04 +00:00
Yanko Kaneti
61d92db8e0 1.2-1 New upstream release. Drop patches. 2009-10-01 14:33:23 +00:00
Yanko Kaneti
abaa0a4e59 Initial import on branch F-10 2009-07-01 05:24:09 +00:00
Jason ティビツ
33d083d6bf Initialize branch F-10 for xscope 2009-07-01 02:36:09 +00:00
7 changed files with 16755 additions and 21 deletions

View file

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
xscope-1.2.tar.bz2

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: xscope
# $Id$
NAME := xscope
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View file

@ -0,0 +1 @@
1a9df0ac0dd5a2c2a7948dcf48d126c3 xscope-1.2.tar.bz2

16684
xscope-1.1-diff_to_git.patch Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,12 @@
diff -ur xscope-1.1/configure.ac xscope-1.1.lessmacros/configure.ac
--- xscope-1.1/configure.ac 2009-06-27 08:16:40.000000000 +0300
+++ xscope-1.1.lessmacros/configure.ac 2009-06-27 08:17:33.000000000 +0300
@@ -39,7 +39,7 @@
# Require xorg-macros: XORG_CWARNFLAGS, XORG_CHANGELOG, XORG_WITH_LINT
m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])])
-XORG_MACROS_VERSION(1.2)
+XORG_MACROS_VERSION(1.1)
AC_PROG_CC
XORG_CWARNFLAGS

57
xscope.spec Normal file
View file

@ -0,0 +1,57 @@
Name: xscope
Version: 1.2
Release: 1%{?dist}
Summary: X Window Protocol Viewer
Group: User Interface/X
License: MIT
URL: http://cgit.freedesktop.org/xorg/app/xscope/
Source0: ftp://ftp.freedesktop.org/pub/xorg/individual/app/%{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: xorg-x11-xtrans-devel, xorg-x11-proto-devel
%description
xscope sits in-between an X11 client and an X11 server and prints the contents
of each request, reply, error, or event that is communicated between them.
This information can be useful in debugging and performance tuning of X11
servers and clients.
%prep
%setup -q
%build
%configure
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc AUTHORS README COPYING ChangeLog
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.1.gz
%changelog
* Thu Oct 1 2009 Yanko Kaneti <yaneti@declera.com> 1.2-1
- New upstream release. Drop patches.
* Sun Jun 28 2009 Yanko Kaneti <yaneti@declera.com> 1.1-3.gitfccbbd6
- The software has a MIT not BSD license
* Sat Jun 27 2009 Yanko Kaneti <yaneti@declera.com> 1.1-2.gitfccbbd6
- Implement review feedback
- Patch to build on Fedora 10
* Sun Jun 14 2009 Yanko Kaneti <yaneti@declera.com> 1.1-1.gitfccbbd6
- First attempt at packaging.