Compare commits
70 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
844ab266dc | ||
|
|
0926b4d3af | ||
|
|
3ddea0e5a8 | ||
|
|
43f7ce7be3 | ||
|
|
eb16d2611e | ||
|
|
862d5b93ff | ||
|
|
16a7d3fb0a | ||
|
|
395ada809d | ||
|
|
05249eab74 | ||
|
|
8d37197566 | ||
|
|
ad3a229caf | ||
|
|
d20cee478a | ||
|
|
149fb186b4 | ||
|
|
81ac69f78b | ||
|
|
f1445367b0 | ||
|
|
a33559bc63 | ||
|
|
b10ec11996 | ||
|
|
b40b4fe31d | ||
|
|
db44a03bdc | ||
| a879c6d6d6 | |||
|
7e1fc2379b |
|||
|
6cc27e6f44 |
|||
|
|
f5c6ec42ef | ||
|
|
cc8fb62f85 | ||
|
|
c11b6f04ce | ||
|
04975b3882 |
|||
| fb1bd0319e | |||
|
|
69a96d3c97 | ||
|
|
c59a337891 | ||
|
|
4dbb6d3abb | ||
|
|
18c0ac4579 | ||
|
|
6df9573ff2 | ||
|
|
d952024c18 | ||
|
|
f745836e53 | ||
|
|
e6aa484383 | ||
| 4560a7e97f | |||
|
|
39675d8c34 | ||
|
|
6c30971136 | ||
|
|
07e4d64f2a | ||
|
|
7ce8fb6fe3 | ||
|
|
012ec49eb8 | ||
|
|
86c493e132 | ||
|
|
729a2732a4 | ||
|
|
fa0747acf8 | ||
|
|
42cfa31e00 | ||
|
|
6352a918bd | ||
|
|
0b6d20c9ff | ||
|
|
728ea3661f | ||
|
|
2f20f902e2 | ||
|
|
976b9f36ea | ||
|
|
9f272f5f60 | ||
|
|
677f5dbc2b | ||
|
|
5ace72010a | ||
|
|
7e1d1cfbab | ||
|
|
c846abc983 | ||
|
|
e0d1e36028 | ||
|
|
3f54622460 | ||
|
|
4364dd67a5 | ||
|
|
3e6c133b46 | ||
|
|
c33350119f | ||
|
|
f474fa5bdf | ||
|
|
e2be88eaad | ||
|
|
9f778516d4 | ||
|
|
49fc2c7d4d | ||
|
|
b23c7550b9 | ||
|
|
8b169887bd | ||
|
|
04eb82180c | ||
|
|
439f0e1749 | ||
|
|
34533a47dd | ||
|
|
c1f15a2629 |
6 changed files with 368 additions and 21 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
ustr-1.0.4.tar.bz2
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: ustr
|
||||
# $Id$
|
||||
NAME := ustr
|
||||
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)
|
||||
30
c99-inline.patch
Normal file
30
c99-inline.patch
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
diff -rup ustr-1.0.4-orig/ustr-compiler.h ustr-1.0.4/ustr-compiler.h
|
||||
--- ustr-1.0.4-orig/ustr-compiler.h 2008-02-15 15:12:28.000000000 -0500
|
||||
+++ ustr-1.0.4/ustr-compiler.h 2008-06-13 15:25:18.000000000 -0400
|
||||
@@ -113,17 +113,23 @@
|
||||
#endif
|
||||
|
||||
#ifndef USTR_CONF_EI_PROTO /* external inline */
|
||||
-# if USTR_CONF_INCLUDE_CODEONLY_HEADERS
|
||||
+# if USTR_CONF_INCLUDE_CODEONLY_HEADERS || ! defined(__GNUC__) || \
|
||||
+ ! USTR_CONF_COMPILE_USE_INLINE
|
||||
# define USTR_CONF_EI_PROTO static USTR__INLINE
|
||||
# else
|
||||
# define USTR_CONF_EI_PROTO extern
|
||||
# endif
|
||||
#endif
|
||||
#ifndef USTR_CONF_II_PROTO /* implementation of inline */
|
||||
-# if USTR_CONF_INCLUDE_CODEONLY_HEADERS
|
||||
+# if USTR_CONF_INCLUDE_CODEONLY_HEADERS || ! defined(__GNUC__) || \
|
||||
+ ! USTR_CONF_COMPILE_USE_INLINE
|
||||
# define USTR_CONF_II_PROTO static USTR__INLINE
|
||||
# else
|
||||
-# define USTR_CONF_II_PROTO extern inline
|
||||
+# if defined(__GNUC_STDC_INLINE__) || defined(__GNUC_GNU_INLINE__)
|
||||
+# define USTR_CONF_II_PROTO extern inline __attribute__ ((__gnu_inline__))
|
||||
+# else
|
||||
+# define USTR_CONF_II_PROTO extern inline
|
||||
+# endif
|
||||
# endif
|
||||
#endif
|
||||
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
93147d9f0c9765d4cd0f04f7e44bdfce ustr-1.0.4.tar.bz2
|
||||
336
ustr.spec
Normal file
336
ustr.spec
Normal file
|
|
@ -0,0 +1,336 @@
|
|||
|
||||
%define show_all_cmds 1
|
||||
%define broken_fed_dbg_opts 0
|
||||
%define multilib_inst 1
|
||||
|
||||
%if %{show_all_cmds}
|
||||
%define policy_cflags_hide HIDE=
|
||||
%else
|
||||
%define policy_cflags_hide %{nil}
|
||||
%endif
|
||||
|
||||
%if %{broken_fed_dbg_opts}
|
||||
# Variable name explains itself.
|
||||
%define policy_cflags_broken DBG_ONLY_BAD_POLICIES_HAVE_THIS_EMPTY_CFLAGS=
|
||||
%else
|
||||
%define policy_cflags_broken %{nil}
|
||||
%endif
|
||||
|
||||
%define policy_cflags %{policy_cflags_hide} %{policy_cflags_broken}
|
||||
|
||||
%if %{multilib_inst}
|
||||
%define ustr_make_install install-multilib-linux
|
||||
%else
|
||||
%define ustr_make_install install
|
||||
%endif
|
||||
|
||||
|
||||
Name: ustr
|
||||
Version: 1.0.4
|
||||
Release: 44%{?dist}
|
||||
Summary: String library, very low memory overhead, simple to import
|
||||
# Automatically converted from old format: MIT or LGPLv2+ or BSD - review is highly recommended.
|
||||
License: LicenseRef-Callaway-MIT OR LicenseRef-Callaway-LGPLv2+ OR LicenseRef-Callaway-BSD
|
||||
URL: http://www.and.org/ustr/
|
||||
Source0: http://www.and.org/ustr/%{version}/%{name}-%{version}.tar.bz2
|
||||
Patch0: c99-inline.patch
|
||||
# BuildRequires: make gcc sed
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: gcc
|
||||
%description
|
||||
Micro string library, very low overhead from plain strdup() (Ave. 44% for
|
||||
0-20B strings). Very easy to use in existing C code. At it's simplest you can
|
||||
just include a single header file into your .c and start using it.
|
||||
This package also distributes pre-built shared libraries.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
# This isn't required, but Fedora policy makes it so
|
||||
Requires: pkgconfig >= 0.14
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
Header files for the Ustr string library, and the .so to link with.
|
||||
Also includes a %{name}.pc file for pkg-config usage.
|
||||
Includes the ustr-import tool, for if you jsut want to include
|
||||
the code in your projects ... you don't have to link to the shared lib.
|
||||
|
||||
%package static
|
||||
Summary: Static development files for %{name}
|
||||
Requires: %{name}-devel = %{version}-%{release}
|
||||
|
||||
%description static
|
||||
Static library for the Ustr string library.
|
||||
|
||||
%package debug
|
||||
Summary: Development files for %{name}, with debugging options turned on
|
||||
# This isn't required, but Fedora policy makes it so
|
||||
Requires: pkgconfig >= 0.14
|
||||
Requires: %{name}-devel = %{version}-%{release}
|
||||
|
||||
%description debug
|
||||
Header files and dynamic libraries for a debug build of the Ustr string
|
||||
library.
|
||||
Also includes a %{name}-debug.pc file for pkg-config usage.
|
||||
|
||||
%package debug-static
|
||||
Summary: Static development files for %{name}, with debugging options turned on
|
||||
Requires: %{name}-debug = %{version}-%{release}
|
||||
|
||||
%description debug-static
|
||||
Static library for the debug build of the Ustr string library.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch -P0 -p1
|
||||
|
||||
%build
|
||||
make %{?_smp_mflags} all-shared CFLAGS="${CFLAGS:-%optflags} -fgnu89-inline" \
|
||||
LDFLAGS="$RPM_LD_FLAGS" %{policy_cflags}
|
||||
|
||||
%check
|
||||
%if %{?chk}%{!?chk:1}
|
||||
make %{?_smp_mflags} check CFLAGS="${CFLAGS:-%optflags} -fgnu89-inline"
|
||||
LDFLAGS="$RPM_LD_FLAGS" %{policy_cflags}
|
||||
%endif
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make $@ %{ustr_make_install} prefix=%{_prefix} \
|
||||
bindir=%{_bindir} mandir=%{_mandir} \
|
||||
datadir=%{_datadir} libdir=%{_libdir} \
|
||||
includedir=%{_includedir} libexecdir=%{_libexecdir} \
|
||||
DOCSHRDIR=%{_datadir}/doc/ustr-devel \
|
||||
DESTDIR=$RPM_BUILD_ROOT LDCONFIG=/bin/true HIDE=
|
||||
|
||||
%ldconfig_scriptlets
|
||||
|
||||
%ldconfig_scriptlets debug
|
||||
|
||||
%files
|
||||
%{_libdir}/libustr-1.0.so.*
|
||||
%{!?_licensedir:%global license %%doc}
|
||||
%license LICENSE*
|
||||
%doc ChangeLog README NEWS
|
||||
|
||||
%files devel
|
||||
%{_datadir}/ustr-%{version}
|
||||
%{_bindir}/ustr-import
|
||||
%if %{multilib_inst}
|
||||
%{_libexecdir}/ustr-%{version}
|
||||
%endif
|
||||
%{_includedir}/ustr.h
|
||||
%{_includedir}/ustr-*.h
|
||||
%exclude %{_includedir}/ustr*debug*.h
|
||||
%{_libdir}/pkgconfig/ustr.pc
|
||||
%{_libdir}/libustr.so
|
||||
%{_datadir}/doc/ustr-devel
|
||||
%{_mandir}/man1/*
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%files static
|
||||
%{_libdir}/libustr.a
|
||||
|
||||
%files debug
|
||||
%{_libdir}/libustr-debug-1.0.so.*
|
||||
%{_libdir}/libustr-debug.so
|
||||
%{_includedir}/ustr*debug*.h
|
||||
%{_libdir}/pkgconfig/ustr-debug.pc
|
||||
|
||||
%files debug-static
|
||||
%{_libdir}/libustr-debug.a
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-44
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-43
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-42
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-41
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Wed Sep 04 2024 Miroslav Suchý <msuchy@redhat.com> - 1.0.4-40
|
||||
- convert license to SPDX
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-39
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-38
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-37
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-36
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-35
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-34
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-33
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-32
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-31
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-30
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-29
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-28
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-27
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Feb 23 2018 Florian Weimer <fweimer@redhat.com> - 1.0.4-26
|
||||
- Use LDFLAGS from redhat-rpm-config
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-25
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-24
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-23
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-22
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Oct 30 2015 James Antill <james@fedoraproject.org> - 1.0.4-20
|
||||
- Move doc/ustr-devel-<version> to doc/ustr-devel. BZ 993940.
|
||||
- Use -fgnu89-inline workaround for gcc5.
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Wed Aug 6 2014 Tom Callaway <spot@fedoraproject.org> - 1.0.4-17
|
||||
- fix license handling
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Tue Aug 11 2009 Ville Skyttä <ville.skytta@iki.fi> - 1.0.4-10
|
||||
- Use bzipped upstream tarball.
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Fri Jun 13 2008 James Antill <james@fedoraproject.org> - 1.0.4-7
|
||||
- Fix c99 inline problems, newer GCC
|
||||
|
||||
* Sun Mar 9 2008 James Antill <james@fedoraproject.org> - 1.0.4-6
|
||||
- Fix dir. ownership bug.
|
||||
- Resolves: rhbz#436711
|
||||
|
||||
* Wed Mar 5 2008 James Antill <james@fedoraproject.org> - 1.0.4-5
|
||||
- New new upstream: 1.0.4
|
||||
|
||||
* Thu Feb 21 2008 Dennis Gilmore <dennis@ausil.us> - 1.0.3-5
|
||||
- set broken_fed_dbg_opts to 0 its the recomended option upstream
|
||||
- this works around sparc GCC problems
|
||||
- add smpflags and cflags to make check
|
||||
|
||||
* Wed Feb 13 2008 James Antill <james@fedoraproject.org> - 1.0.3-4
|
||||
- Preserve timestamps for shared multilib. files.
|
||||
- Relates: bug#343351
|
||||
|
||||
* Sun Feb 10 2008 James Antill <james@fedoraproject.org> - 1.0.3-3
|
||||
- Add upstream multilib patch for ustr-import
|
||||
- Resolves: bug#343351
|
||||
|
||||
* Mon Jan 14 2008 James Antill <james@fedoraproject.org> - 1.0.3-2
|
||||
- Build new upstream in Fedora
|
||||
|
||||
* Tue Oct 30 2007 James Antill <james@and.org> - 1.0.2-2
|
||||
- Build new upstream in Fedora
|
||||
|
||||
* Mon Oct 29 2007 James Antill <james@and.org> - 1.0.2-1
|
||||
- New release
|
||||
|
||||
* Tue Aug 28 2007 James Antill <jantill@redhat.com> - 1.0.1-6
|
||||
- Add options for fedora policy brokeness, so it's easy to undo.
|
||||
- Rebuild for buildid.
|
||||
|
||||
* Wed Aug 8 2007 James Antill <james@and.org> - 1.0.1-5
|
||||
- Import fix for ustr-import, wrt. repl <=> replace
|
||||
|
||||
* Sun Aug 5 2007 James Antill <james@and.org> - 1.0.1-4
|
||||
- Patches for minor GIT HEAD documentation fixes.
|
||||
- Install mkdir_p and fgrep examples.
|
||||
|
||||
* Sat Aug 4 2007 James Antill <james@and.org> - 1.0.1-2
|
||||
- First upload to Fedora repos.
|
||||
|
||||
* Fri Aug 3 2007 James Antill <james@and.org> - 1.0.1-0.10.fc7
|
||||
- Re-fix dups in -devel and -debug file lists.
|
||||
- Change license to new format
|
||||
|
||||
* Thu Aug 2 2007 James Antill <james@and.org> - 1.0.1-0.9.fc7
|
||||
- Fix dups in -devel and -debug file lists.
|
||||
|
||||
* Wed Aug 1 2007 James Antill <james@and.org> - 1.0.1-0.8.fc7
|
||||
- Required to make DBG_ONLY_BAD_POLICIES_HAVE_THIS_EMPTY_CFLAGS empty
|
||||
- due to so called "review"
|
||||
|
||||
* Fri Jul 27 2007 James Antill <james@and.org> - 1.0.1-0.2.fc7
|
||||
- Next test release of 1.0.1, lots of fixes from Fedora review.
|
||||
|
||||
* Wed Jul 25 2007 James Antill <james@and.org> - 1.0.1-0
|
||||
- Test release of 1.0.1.
|
||||
|
||||
* Wed Jul 11 2007 James Antill <james@and.org> - 1.0.0-1
|
||||
- Upgrade to 1.0.0
|
||||
- Minor fixes on specfile
|
||||
|
||||
* Sun Jun 3 2007 James Antill <james@and.org> - 0.99.2-1
|
||||
- Upgrade to 0.99.2
|
||||
|
||||
* Thu May 24 2007 James Antill <james@and.org> - 0.99.1-2
|
||||
- Fix ver typo to be version.
|
||||
|
||||
* Fri May 18 2007 James Antill <james@and.org> - 0.99.1-1
|
||||
- Use all-shared to get GCC-ish specific shared libs.
|
||||
|
||||
* Mon May 14 2007 James Antill <james@and.org> - 0.98.1-0
|
||||
- Initial spec
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue