[bmake/f16] change tar add makefile
by Luis Enrique Bazán De León
commit 32d70fbb823e0c94a12c389d0b8d74bab8acf08c
Author: Luis Bazán <lbazan(a)BAKER-MINI-001.(none)>
Date: Tue Jan 31 17:12:20 2012 -0500
change tar add makefile
bmake.spec | 9 +++++----
sources | 2 +-
2 files changed, 6 insertions(+), 5 deletions(-)
---
diff --git a/bmake.spec b/bmake.spec
index e5d507e..75bbb22 100644
--- a/bmake.spec
+++ b/bmake.spec
@@ -1,7 +1,7 @@
Summary: The NetBSD make(1) tool
Name: bmake
Version: 20111111
-Release: 3%{?dist}
+Release: 4%{?dist}
License: BSD with advertising
Group: Development/Tools
URL: ftp://ftp.NetBSD.org/pub/NetBSD/misc/sjg/
@@ -26,7 +26,7 @@ supported in Makefiles is very different.
%build
%configure --with-default-sys-path=%{_datadir}/mk
-make -f Makefile.in %{?_smp_mflags} bootstrap
+make -f makefile.boot %{?_smp_mflags} bootstrap
%install
rm -rf ${RPM_BUILD_ROOT}
@@ -45,9 +45,10 @@ rm -rf ${RPM_BUILD_ROOT}
%{_mandir}/man1/*
%changelog
-* Tue Jan 31 2012 Luis Bazan <lbazan(a)fedoraproject.org> - 20111111-3
+* Tue Jan 31 2012 Luis Bazan <lbazan(a)fedoraproject.org> - 20111111-4
- New Upstream version
-
+- add makefile.boot
+
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 20090222-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
diff --git a/sources b/sources
index 7f4fc90..f11bcd6 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-aa88e7038a532c53cac6b45d867002bf bmake-20111111.tar.gz
+efaf55f47562ba7383705d0be7d7de43 bmake-20111111.tar.gz
11Â years
[python-anyjson] * Tue Jan 31 2012 Fabian Affolter <mail@fabian-affolter.ch> - 0.3.1-3 - Minor py3 fixes
by Fabian Affolter
commit 2cba5086297ad80d6b5349b0ffe73518b6c007d5
Author: Fabian Affolter <mail(a)fabian-affolter.ch>
Date: Tue Jan 31 23:07:30 2012 +0100
* Tue Jan 31 2012 Fabian Affolter <mail(a)fabian-affolter.ch> - 0.3.1-3
- Minor py3 fixes
* Sun Jan 29 2012 Haïkel Guémar <hguemar(a)fedoraproject.org> - 0.3.1-2
- add python3 variant
python-anyjson.spec | 53 +++++++++++++++++++++++++++++++++++++++-----------
1 files changed, 41 insertions(+), 12 deletions(-)
---
diff --git a/python-anyjson.spec b/python-anyjson.spec
index 3c7ee93..5f2834b 100644
--- a/python-anyjson.spec
+++ b/python-anyjson.spec
@@ -1,12 +1,14 @@
-%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%if 0%{?fedora} > 12 || 0%{?rhel} > 6
+%global with_python3 1
+%else
+%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print (get_python_lib())")}
%endif
%global srcname anyjson
Name: python-%{srcname}
Version: 0.3.1
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Wraps the best available JSON implementation available
Group: Development/Languages
@@ -16,42 +18,69 @@ Source0: http://pypi.python.org/packages/source/a/%{srcname}/%{srcname}-%
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
-BuildRequires: python-devel
-BuildRequires: python-setuptools
-
+BuildRequires: python2-devel
+BuildRequires: python2-setuptools
%description
Anyjson loads whichever is the fastest JSON module installed and
provides a uniform API regardless of which JSON implementation is used.
+%if 0%{?with_python3}
+%package -n python3-%{srcname}
+Summary: Wraps the best available JSON implementation available
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+
+%description -n python3-%{srcname}
+Anyjson loads whichever is the fastest JSON module installed and
+provides a uniform API regardless of which JSON implementation is used.
+%endif
%prep
%setup -q -n %{srcname}-%{version}
-
+%if 0%{?with_python3}
+cp -a . %{py3dir}
+%endif
%build
%{__python} setup.py build
-
+%if 0%{?with_python3}
+pushd %{py3dir}
+%{__python3} setup.py build
+popd
+%endif
%install
rm -rf %{buildroot}
%{__python} setup.py install --skip-build --root %{buildroot}
-
+%if 0%{?with_python3}
+pushd %{py3dir}
+%{__python3} setup.py install --skip-build --root %{buildroot}
+popd
+%endif
%clean
rm -rf %{buildroot}
-
%files
%defattr(-,root,root,-)
%doc CHANGELOG LICENSE README
%{python_sitelib}/%{srcname}/
%{python_sitelib}/%{srcname}*.egg-info
+%if 0%{?with_python3}
+%files -n python3-%{srcname}
+%doc CHANGELOG LICENSE README
+%{python3_sitelib}/%{srcname}/
+%{python3_sitelib}/%{srcname}*.egg-info
+%endif
%changelog
-* Sat Jan 14 2012 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0.3.1-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+* Tue Jan 31 2012 Fabian Affolter <mail(a)fabian-affolter.ch> - 0.3.1-3
+- Minor py3 fixes
+
+* Sun Jan 29 2012 Haïkel Guémar <hguemar(a)fedoraproject.org> - 0.3.1-2
+- add python3 variant
* Sun Apr 03 2011 Fabian Affolter <fabian(a)bernewireless.net> - 0.3.1-1
- Updated to new upstream version 0.3.1
11Â years
[bmake/f16] insert makefile
by Luis Enrique Bazán De León
commit de0345f4f0aeae8181b1a88be913ed784462200a
Author: Luis Bazán <lbazan(a)BAKER-MINI-001.(none)>
Date: Tue Jan 31 17:04:48 2012 -0500
insert makefile
bmake.spec | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/bmake.spec b/bmake.spec
index 1758b8f..e5d507e 100644
--- a/bmake.spec
+++ b/bmake.spec
@@ -26,7 +26,7 @@ supported in Makefiles is very different.
%build
%configure --with-default-sys-path=%{_datadir}/mk
-make -f bmake.boot %{?_smp_mflags} bootstrap
+make -f Makefile.in %{?_smp_mflags} bootstrap
%install
rm -rf ${RPM_BUILD_ROOT}
11Â years
[mingw32-libglade2] Fix compilation against pango 1.29.5 and dropped .la files
by Erik van Pienbroek
commit b6e0889b5ac11ae5bfa56ce46e8c2064a282ac2d
Author: Erik van Pienbroek <epienbro(a)fedoraproject.org>
Date: Tue Jan 31 23:04:25 2012 +0100
Fix compilation against pango 1.29.5 and dropped .la files
libglade-link-against-gmodule.patch | 12 ++++++++++++
mingw32-libglade2.spec | 14 +++++++++++++-
2 files changed, 25 insertions(+), 1 deletions(-)
---
diff --git a/libglade-link-against-gmodule.patch b/libglade-link-against-gmodule.patch
new file mode 100644
index 0000000..2771448
--- /dev/null
+++ b/libglade-link-against-gmodule.patch
@@ -0,0 +1,12 @@
+--- configure.in.orig 2012-01-31 22:48:44.250167665 +0100
++++ configure.in 2012-01-31 22:49:05.397546359 +0100
+@@ -46,7 +46,8 @@
+ libxml-2.0 >= required_libxml_version dnl
+ atk >= required_atk_version dnl
+ gtk+-2.0 >= required_gtk_version dnl
+- glib-2.0 >= required_glib_version])
++ glib-2.0 >= required_glib_version dnl
++ gmodule-2.0 >= required_glib_version])
+
+ AC_MSG_CHECKING([for native Win32])
+ case "$host" in
diff --git a/mingw32-libglade2.spec b/mingw32-libglade2.spec
index 439638e..888417d 100644
--- a/mingw32-libglade2.spec
+++ b/mingw32-libglade2.spec
@@ -15,6 +15,8 @@ Source0: http://download.gnome.org/sources/libglade/2.6/libglade-%{versio
Patch1: libglade-2.0.1-nowarning.patch
# http://bugzilla.gnome.org/show_bug.cgi?id=510736
Patch2: libglade-secondary.patch
+# As of pango 1.29.5 the gmodule library isn't pulled in automatically anymore
+Patch3: libglade-link-against-gmodule.patch
BuildArch: noarch
@@ -30,6 +32,10 @@ BuildRequires: mingw32-libxml2
# Native one for msgfmt
BuildRequires: gettext
+# Needed for patch3
+BuildRequires: gtk2-devel
+BuildRequires: autoconf automake libtool
+
Requires: pkgconfig
%description
@@ -51,7 +57,9 @@ Static MinGW Windows Libglade2 library.
%setup -q -n libglade-%{version}
%patch1 -p1 -b .nowarning
%patch2 -p1 -b .secondary
+%patch3 -p0 -b .gmodule
+autoreconf --install --force
%build
%{_mingw32_configure} --disable-gtk-doc
@@ -62,6 +70,9 @@ make %{?_smp_mflags}
make DESTDIR=$RPM_BUILD_ROOT install
rm -rf $RPM_BUILD_ROOT/%{_mingw32_datadir}/gtk-doc/html/libglade
+# Drop all .la files
+find $RPM_BUILD_ROOT -name "*.la" -delete
+
%files
%doc COPYING
@@ -69,7 +80,6 @@ rm -rf $RPM_BUILD_ROOT/%{_mingw32_datadir}/gtk-doc/html/libglade
%{_mingw32_bindir}/libglade-convert
%{_mingw32_includedir}/libglade-2.0
%{_mingw32_libdir}/libglade-2.0.dll.a
-%{_mingw32_libdir}/libglade-2.0.la
%{_mingw32_libdir}/pkgconfig/libglade-2.0.pc
%dir %{_mingw32_datadir}/xml/libglade
@@ -82,8 +92,10 @@ rm -rf $RPM_BUILD_ROOT/%{_mingw32_datadir}/gtk-doc/html/libglade
%changelog
* Tue Jan 31 2012 Erik van Pienbroek <epienbro(a)fedoraproject.org> - 2.6.4-10
- Rebuild against libpng 1.5
+- Fix compilation against pango 1.29.5
- Dropped unneeded RPM tags
- Dropped the dependency extraction overrides as that's done automatically as of RPM 4.9
+- Dropped .la files
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 2.6.4-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
11Â years
[selinux-policy] Fix file_context.subs_dist for now to work with pre usrmove
by Daniel J Walsh
commit 3515d8b4e73f867c49503e65615c3581e6af0406
Author: Dan Walsh <dwalsh(a)redhat.com>
Date: Tue Jan 31 17:01:07 2012 -0500
Fix file_context.subs_dist for now to work with pre usrmove
selinux-policy.spec | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/selinux-policy.spec b/selinux-policy.spec
index ee1c07a..4827ad9 100644
--- a/selinux-policy.spec
+++ b/selinux-policy.spec
@@ -16,7 +16,7 @@
Summary: SELinux policy configuration
Name: selinux-policy
Version: 3.10.0
-Release: 81.1%{?dist}
+Release: 81.2%{?dist}
License: GPLv2+
Group: System Environment/Base
Source: serefpolicy-%{version}.tgz
@@ -471,7 +471,7 @@ SELinux Reference policy mls base module.
%endif
%changelog
-* Tue Jan 31 2012 Dan Walsh <dwalsh(a)redhat.com> 3.10.0-81.1
+* Tue Jan 31 2012 Dan Walsh <dwalsh(a)redhat.com> 3.10.0-81.2
- Fix file_context.subs_dist for now to work with pre usrmove
* Mon Jan 30 2012 Miroslav Grepl <mgrepl(a)redhat.com> 3.10.0-81
11Â years
[bmake/f16] bmake.boot
by Luis Enrique Bazán De León
commit f96372824bc06132073d15b6ed7c62b58464f6bf
Author: Luis Bazán <lbazan(a)BAKER-MINI-001.(none)>
Date: Tue Jan 31 16:57:45 2012 -0500
bmake.boot
bmake.spec | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/bmake.spec b/bmake.spec
index 1c5c215..1758b8f 100644
--- a/bmake.spec
+++ b/bmake.spec
@@ -1,7 +1,7 @@
Summary: The NetBSD make(1) tool
Name: bmake
Version: 20111111
-Release: 1%{?dist}
+Release: 3%{?dist}
License: BSD with advertising
Group: Development/Tools
URL: ftp://ftp.NetBSD.org/pub/NetBSD/misc/sjg/
@@ -26,7 +26,7 @@ supported in Makefiles is very different.
%build
%configure --with-default-sys-path=%{_datadir}/mk
-make -f Makefile %{?_smp_mflags} boot-strap
+make -f bmake.boot %{?_smp_mflags} bootstrap
%install
rm -rf ${RPM_BUILD_ROOT}
@@ -45,7 +45,7 @@ rm -rf ${RPM_BUILD_ROOT}
%{_mandir}/man1/*
%changelog
-* Tue Jan 31 2012 Luis Bazan <lbazan(a)fedoraproject.org> - 20111111-1
+* Tue Jan 31 2012 Luis Bazan <lbazan(a)fedoraproject.org> - 20111111-3
- New Upstream version
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 20090222-3
11Â years
[bmake/f16] +
by Luis Enrique Bazán De León
commit a4865d263171d1617fa9465b1ab670b8e1cd3cd5
Author: Luis Bazán <lbazan(a)BAKER-MINI-001.(none)>
Date: Tue Jan 31 16:51:02 2012 -0500
+
bmake.spec | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/bmake.spec b/bmake.spec
index cfd4297..1c5c215 100644
--- a/bmake.spec
+++ b/bmake.spec
@@ -26,7 +26,7 @@ supported in Makefiles is very different.
%build
%configure --with-default-sys-path=%{_datadir}/mk
-make -f makefile.boot %{?_smp_mflags} boot-strap
+make -f Makefile %{?_smp_mflags} boot-strap
%install
rm -rf ${RPM_BUILD_ROOT}
11Â years